]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
Merge remote-tracking branch 'qatar/master'
[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 delogo
3219
3220 Suppress a TV station logo by a simple interpolation of the surrounding
3221 pixels. Just set a rectangle covering the logo and watch it disappear
3222 (and sometimes something even uglier appear - your mileage may vary).
3223
3224 This filter accepts the following options:
3225 @table @option
3226
3227 @item x
3228 @item y
3229 Specify the top left corner coordinates of the logo. They must be
3230 specified.
3231
3232 @item w
3233 @item h
3234 Specify the width and height of the logo to clear. They must be
3235 specified.
3236
3237 @item band, t
3238 Specify the thickness of the fuzzy edge of the rectangle (added to
3239 @var{w} and @var{h}). The default value is 4.
3240
3241 @item show
3242 When set to 1, a green rectangle is drawn on the screen to simplify
3243 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
3244 The default value is 0.
3245
3246 The rectangle is drawn on the outermost pixels which will be (partly)
3247 replaced with interpolated values. The values of the next pixels
3248 immediately outside this rectangle in each direction will be used to
3249 compute the interpolated pixel values inside the rectangle.
3250
3251 @end table
3252
3253 @subsection Examples
3254
3255 @itemize
3256 @item
3257 Set a rectangle covering the area with top left corner coordinates 0,0
3258 and size 100x77, setting a band of size 10:
3259 @example
3260 delogo=x=0:y=0:w=100:h=77:band=10
3261 @end example
3262
3263 @end itemize
3264
3265 @section deshake
3266
3267 Attempt to fix small changes in horizontal and/or vertical shift. This
3268 filter helps remove camera shake from hand-holding a camera, bumping a
3269 tripod, moving on a vehicle, etc.
3270
3271 The filter accepts the following options:
3272
3273 @table @option
3274
3275 @item x
3276 @item y
3277 @item w
3278 @item h
3279 Specify a rectangular area where to limit the search for motion
3280 vectors.
3281 If desired the search for motion vectors can be limited to a
3282 rectangular area of the frame defined by its top left corner, width
3283 and height. These parameters have the same meaning as the drawbox
3284 filter which can be used to visualise the position of the bounding
3285 box.
3286
3287 This is useful when simultaneous movement of subjects within the frame
3288 might be confused for camera motion by the motion vector search.
3289
3290 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
3291 then the full frame is used. This allows later options to be set
3292 without specifying the bounding box for the motion vector search.
3293
3294 Default - search the whole frame.
3295
3296 @item rx
3297 @item ry
3298 Specify the maximum extent of movement in x and y directions in the
3299 range 0-64 pixels. Default 16.
3300
3301 @item edge
3302 Specify how to generate pixels to fill blanks at the edge of the
3303 frame. Available values are:
3304 @table @samp
3305 @item blank, 0
3306 Fill zeroes at blank locations
3307 @item original, 1
3308 Original image at blank locations
3309 @item clamp, 2
3310 Extruded edge value at blank locations
3311 @item mirror, 3
3312 Mirrored edge at blank locations
3313 @end table
3314 Default value is @samp{mirror}.
3315
3316 @item blocksize
3317 Specify the blocksize to use for motion search. Range 4-128 pixels,
3318 default 8.
3319
3320 @item contrast
3321 Specify the contrast threshold for blocks. Only blocks with more than
3322 the specified contrast (difference between darkest and lightest
3323 pixels) will be considered. Range 1-255, default 125.
3324
3325 @item search
3326 Specify the search strategy. Available values are:
3327 @table @samp
3328 @item exhaustive, 0
3329 Set exhaustive search
3330 @item less, 1
3331 Set less exhaustive search.
3332 @end table
3333 Default value is @samp{exhaustive}.
3334
3335 @item filename
3336 If set then a detailed log of the motion search is written to the
3337 specified file.
3338
3339 @item opencl
3340 If set to 1, specify using OpenCL capabilities, only available if
3341 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
3342
3343 @end table
3344
3345 @section drawbox
3346
3347 Draw a colored box on the input image.
3348
3349 This filter accepts the following options:
3350
3351 @table @option
3352 @item x
3353 @item y
3354 The expressions which specify the top left corner coordinates of the box. Default to 0.
3355
3356 @item width, w
3357 @item height, h
3358 The expressions which specify the width and height of the box, if 0 they are interpreted as
3359 the input width and height. Default to 0.
3360
3361 @item color, c
3362 Specify the color of the box to write. For the general syntax of this option,
3363 check the "Color" section in the ffmpeg-utils manual. If the special
3364 value @code{invert} is used, the box edge color is the same as the
3365 video with inverted luma.
3366
3367 @item thickness, t
3368 The expression which sets the thickness of the box edge. Default value is @code{3}.
3369
3370 See below for the list of accepted constants.
3371 @end table
3372
3373 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
3374 following constants:
3375
3376 @table @option
3377 @item dar
3378 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
3379
3380 @item hsub
3381 @item vsub
3382 horizontal and vertical chroma subsample values. For example for the
3383 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
3384
3385 @item in_h, ih
3386 @item in_w, iw
3387 The input width and height.
3388
3389 @item sar
3390 The input sample aspect ratio.
3391
3392 @item x
3393 @item y
3394 The x and y offset coordinates where the box is drawn.
3395
3396 @item w
3397 @item h
3398 The width and height of the drawn box.
3399
3400 @item t
3401 The thickness of the drawn box.
3402
3403 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
3404 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
3405
3406 @end table
3407
3408 @subsection Examples
3409
3410 @itemize
3411 @item
3412 Draw a black box around the edge of the input image:
3413 @example
3414 drawbox
3415 @end example
3416
3417 @item
3418 Draw a box with color red and an opacity of 50%:
3419 @example
3420 drawbox=10:20:200:60:red@@0.5
3421 @end example
3422
3423 The previous example can be specified as:
3424 @example
3425 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
3426 @end example
3427
3428 @item
3429 Fill the box with pink color:
3430 @example
3431 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=max
3432 @end example
3433
3434 @item
3435 Draw a 2-pixel red 2.40:1 mask:
3436 @example
3437 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
3438 @end example
3439 @end itemize
3440
3441 @section drawgrid
3442
3443 Draw a grid on the input image.
3444
3445 This filter accepts the following options:
3446
3447 @table @option
3448 @item x
3449 @item y
3450 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
3451
3452 @item width, w
3453 @item height, h
3454 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
3455 input width and height, respectively, minus @code{thickness}, so image gets
3456 framed. Default to 0.
3457
3458 @item color, c
3459 Specify the color of the grid. For the general syntax of this option,
3460 check the "Color" section in the ffmpeg-utils manual. If the special
3461 value @code{invert} is used, the grid color is the same as the
3462 video with inverted luma.
3463
3464 @item thickness, t
3465 The expression which sets the thickness of the grid line. Default value is @code{1}.
3466
3467 See below for the list of accepted constants.
3468 @end table
3469
3470 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
3471 following constants:
3472
3473 @table @option
3474 @item dar
3475 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
3476
3477 @item hsub
3478 @item vsub
3479 horizontal and vertical chroma subsample values. For example for the
3480 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
3481
3482 @item in_h, ih
3483 @item in_w, iw
3484 The input grid cell width and height.
3485
3486 @item sar
3487 The input sample aspect ratio.
3488
3489 @item x
3490 @item y
3491 The x and y coordinates of some point of grid intersection (meant to configure offset).
3492
3493 @item w
3494 @item h
3495 The width and height of the drawn cell.
3496
3497 @item t
3498 The thickness of the drawn cell.
3499
3500 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
3501 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
3502
3503 @end table
3504
3505 @subsection Examples
3506
3507 @itemize
3508 @item
3509 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
3510 @example
3511 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
3512 @end example
3513
3514 @item
3515 Draw a white 3x3 grid with an opacity of 50%:
3516 @example
3517 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
3518 @end example
3519 @end itemize
3520
3521 @anchor{drawtext}
3522 @section drawtext
3523
3524 Draw text string or text from specified file on top of video using the
3525 libfreetype library.
3526
3527 To enable compilation of this filter you need to configure FFmpeg with
3528 @code{--enable-libfreetype}.
3529
3530 @subsection Syntax
3531
3532 The description of the accepted parameters follows.
3533
3534 @table @option
3535
3536 @item box
3537 Used to draw a box around text using background color.
3538 Value should be either 1 (enable) or 0 (disable).
3539 The default value of @var{box} is 0.
3540
3541 @item boxcolor
3542 The color to be used for drawing box around text. For the syntax of this
3543 option, check the "Color" section in the ffmpeg-utils manual.
3544
3545 The default value of @var{boxcolor} is "white".
3546
3547 @item borderw
3548 Set the width of the border to be drawn around the text using @var{bordercolor}.
3549 The default value of @var{borderw} is 0.
3550
3551 @item bordercolor
3552 Set the color to be used for drawing border around text. For the syntax of this
3553 option, check the "Color" section in the ffmpeg-utils manual.
3554
3555 The default value of @var{bordercolor} is "black".
3556
3557 @item expansion
3558 Select how the @var{text} is expanded. Can be either @code{none},
3559 @code{strftime} (deprecated) or
3560 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
3561 below for details.
3562
3563 @item fix_bounds
3564 If true, check and fix text coords to avoid clipping.
3565
3566 @item fontcolor
3567 The color to be used for drawing fonts. For the syntax of this option, check
3568 the "Color" section in the ffmpeg-utils manual.
3569
3570 The default value of @var{fontcolor} is "black".
3571
3572 @item fontfile
3573 The font file to be used for drawing text. Path must be included.
3574 This parameter is mandatory.
3575
3576 @item fontsize
3577 The font size to be used for drawing text.
3578 The default value of @var{fontsize} is 16.
3579
3580 @item ft_load_flags
3581 Flags to be used for loading the fonts.
3582
3583 The flags map the corresponding flags supported by libfreetype, and are
3584 a combination of the following values:
3585 @table @var
3586 @item default
3587 @item no_scale
3588 @item no_hinting
3589 @item render
3590 @item no_bitmap
3591 @item vertical_layout
3592 @item force_autohint
3593 @item crop_bitmap
3594 @item pedantic
3595 @item ignore_global_advance_width
3596 @item no_recurse
3597 @item ignore_transform
3598 @item monochrome
3599 @item linear_design
3600 @item no_autohint
3601 @end table
3602
3603 Default value is "default".
3604
3605 For more information consult the documentation for the FT_LOAD_*
3606 libfreetype flags.
3607
3608 @item shadowcolor
3609 The color to be used for drawing a shadow behind the drawn text. For the
3610 syntax of this option, check the "Color" section in the ffmpeg-utils manual.
3611
3612 The default value of @var{shadowcolor} is "black".
3613
3614 @item shadowx
3615 @item shadowy
3616 The x and y offsets for the text shadow position with respect to the
3617 position of the text. They can be either positive or negative
3618 values. Default value for both is "0".
3619
3620 @item start_number
3621 The starting frame number for the n/frame_num variable. The default value
3622 is "0".
3623
3624 @item tabsize
3625 The size in number of spaces to use for rendering the tab.
3626 Default value is 4.
3627
3628 @item timecode
3629 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
3630 format. It can be used with or without text parameter. @var{timecode_rate}
3631 option must be specified.
3632
3633 @item timecode_rate, rate, r
3634 Set the timecode frame rate (timecode only).
3635
3636 @item text
3637 The text string to be drawn. The text must be a sequence of UTF-8
3638 encoded characters.
3639 This parameter is mandatory if no file is specified with the parameter
3640 @var{textfile}.
3641
3642 @item textfile
3643 A text file containing text to be drawn. The text must be a sequence
3644 of UTF-8 encoded characters.
3645
3646 This parameter is mandatory if no text string is specified with the
3647 parameter @var{text}.
3648
3649 If both @var{text} and @var{textfile} are specified, an error is thrown.
3650
3651 @item reload
3652 If set to 1, the @var{textfile} will be reloaded before each frame.
3653 Be sure to update it atomically, or it may be read partially, or even fail.
3654
3655 @item x
3656 @item y
3657 The expressions which specify the offsets where text will be drawn
3658 within the video frame. They are relative to the top/left border of the
3659 output image.
3660
3661 The default value of @var{x} and @var{y} is "0".
3662
3663 See below for the list of accepted constants and functions.
3664 @end table
3665
3666 The parameters for @var{x} and @var{y} are expressions containing the
3667 following constants and functions:
3668
3669 @table @option
3670 @item dar
3671 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
3672
3673 @item hsub
3674 @item vsub
3675 horizontal and vertical chroma subsample values. For example for the
3676 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
3677
3678 @item line_h, lh
3679 the height of each text line
3680
3681 @item main_h, h, H
3682 the input height
3683
3684 @item main_w, w, W
3685 the input width
3686
3687 @item max_glyph_a, ascent
3688 the maximum distance from the baseline to the highest/upper grid
3689 coordinate used to place a glyph outline point, for all the rendered
3690 glyphs.
3691 It is a positive value, due to the grid's orientation with the Y axis
3692 upwards.
3693
3694 @item max_glyph_d, descent
3695 the maximum distance from the baseline to the lowest grid coordinate
3696 used to place a glyph outline point, for all the rendered glyphs.
3697 This is a negative value, due to the grid's orientation, with the Y axis
3698 upwards.
3699
3700 @item max_glyph_h
3701 maximum glyph height, that is the maximum height for all the glyphs
3702 contained in the rendered text, it is equivalent to @var{ascent} -
3703 @var{descent}.
3704
3705 @item max_glyph_w
3706 maximum glyph width, that is the maximum width for all the glyphs
3707 contained in the rendered text
3708
3709 @item n
3710 the number of input frame, starting from 0
3711
3712 @item rand(min, max)
3713 return a random number included between @var{min} and @var{max}
3714
3715 @item sar
3716 input sample aspect ratio
3717
3718 @item t
3719 timestamp expressed in seconds, NAN if the input timestamp is unknown
3720
3721 @item text_h, th
3722 the height of the rendered text
3723
3724 @item text_w, tw
3725 the width of the rendered text
3726
3727 @item x
3728 @item y
3729 the x and y offset coordinates where the text is drawn.
3730
3731 These parameters allow the @var{x} and @var{y} expressions to refer
3732 each other, so you can for example specify @code{y=x/dar}.
3733 @end table
3734
3735 If libavfilter was built with @code{--enable-fontconfig}, then
3736 @option{fontfile} can be a fontconfig pattern or omitted.
3737
3738 @anchor{drawtext_expansion}
3739 @subsection Text expansion
3740
3741 If @option{expansion} is set to @code{strftime},
3742 the filter recognizes strftime() sequences in the provided text and
3743 expands them accordingly. Check the documentation of strftime(). This
3744 feature is deprecated.
3745
3746 If @option{expansion} is set to @code{none}, the text is printed verbatim.
3747
3748 If @option{expansion} is set to @code{normal} (which is the default),
3749 the following expansion mechanism is used.
3750
3751 The backslash character '\', followed by any character, always expands to
3752 the second character.
3753
3754 Sequence of the form @code{%@{...@}} are expanded. The text between the
3755 braces is a function name, possibly followed by arguments separated by ':'.
3756 If the arguments contain special characters or delimiters (':' or '@}'),
3757 they should be escaped.
3758
3759 Note that they probably must also be escaped as the value for the
3760 @option{text} option in the filter argument string and as the filter
3761 argument in the filtergraph description, and possibly also for the shell,
3762 that makes up to four levels of escaping; using a text file avoids these
3763 problems.
3764
3765 The following functions are available:
3766
3767 @table @command
3768
3769 @item expr, e
3770 The expression evaluation result.
3771
3772 It must take one argument specifying the expression to be evaluated,
3773 which accepts the same constants and functions as the @var{x} and
3774 @var{y} values. Note that not all constants should be used, for
3775 example the text size is not known when evaluating the expression, so
3776 the constants @var{text_w} and @var{text_h} will have an undefined
3777 value.
3778
3779 @item gmtime
3780 The time at which the filter is running, expressed in UTC.
3781 It can accept an argument: a strftime() format string.
3782
3783 @item localtime
3784 The time at which the filter is running, expressed in the local time zone.
3785 It can accept an argument: a strftime() format string.
3786
3787 @item metadata
3788 Frame metadata. It must take one argument specifying metadata key.
3789
3790 @item n, frame_num
3791 The frame number, starting from 0.
3792
3793 @item pict_type
3794 A 1 character description of the current picture type.
3795
3796 @item pts
3797 The timestamp of the current frame, in seconds, with microsecond accuracy.
3798
3799 @end table
3800
3801 @subsection Examples
3802
3803 @itemize
3804 @item
3805 Draw "Test Text" with font FreeSerif, using the default values for the
3806 optional parameters.
3807
3808 @example
3809 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
3810 @end example
3811
3812 @item
3813 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
3814 and y=50 (counting from the top-left corner of the screen), text is
3815 yellow with a red box around it. Both the text and the box have an
3816 opacity of 20%.
3817
3818 @example
3819 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
3820           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
3821 @end example
3822
3823 Note that the double quotes are not necessary if spaces are not used
3824 within the parameter list.
3825
3826 @item
3827 Show the text at the center of the video frame:
3828 @example
3829 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h-line_h)/2"
3830 @end example
3831
3832 @item
3833 Show a text line sliding from right to left in the last row of the video
3834 frame. The file @file{LONG_LINE} is assumed to contain a single line
3835 with no newlines.
3836 @example
3837 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
3838 @end example
3839
3840 @item
3841 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
3842 @example
3843 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
3844 @end example
3845
3846 @item
3847 Draw a single green letter "g", at the center of the input video.
3848 The glyph baseline is placed at half screen height.
3849 @example
3850 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
3851 @end example
3852
3853 @item
3854 Show text for 1 second every 3 seconds:
3855 @example
3856 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
3857 @end example
3858
3859 @item
3860 Use fontconfig to set the font. Note that the colons need to be escaped.
3861 @example
3862 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
3863 @end example
3864
3865 @item
3866 Print the date of a real-time encoding (see strftime(3)):
3867 @example
3868 drawtext='fontfile=FreeSans.ttf:text=%@{localtime:%a %b %d %Y@}'
3869 @end example
3870
3871 @end itemize
3872
3873 For more information about libfreetype, check:
3874 @url{http://www.freetype.org/}.
3875
3876 For more information about fontconfig, check:
3877 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
3878
3879 @section edgedetect
3880
3881 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
3882
3883 The filter accepts the following options:
3884
3885 @table @option
3886 @item low
3887 @item high
3888 Set low and high threshold values used by the Canny thresholding
3889 algorithm.
3890
3891 The high threshold selects the "strong" edge pixels, which are then
3892 connected through 8-connectivity with the "weak" edge pixels selected
3893 by the low threshold.
3894
3895 @var{low} and @var{high} threshold values must be choosen in the range
3896 [0,1], and @var{low} should be lesser or equal to @var{high}.
3897
3898 Default value for @var{low} is @code{20/255}, and default value for @var{high}
3899 is @code{50/255}.
3900 @end table
3901
3902 Example:
3903 @example
3904 edgedetect=low=0.1:high=0.4
3905 @end example
3906
3907 @section extractplanes
3908
3909 Extract color channel components from input video stream into
3910 separate grayscale video streams.
3911
3912 The filter accepts the following option:
3913
3914 @table @option
3915 @item planes
3916 Set plane(s) to extract.
3917
3918 Available values for planes are:
3919 @table @samp
3920 @item y
3921 @item u
3922 @item v
3923 @item a
3924 @item r
3925 @item g
3926 @item b
3927 @end table
3928
3929 Choosing planes not available in the input will result in an error.
3930 That means you cannot select @code{r}, @code{g}, @code{b} planes
3931 with @code{y}, @code{u}, @code{v} planes at same time.
3932 @end table
3933
3934 @subsection Examples
3935
3936 @itemize
3937 @item
3938 Extract luma, u and v color channel component from input video frame
3939 into 3 grayscale outputs:
3940 @example
3941 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
3942 @end example
3943 @end itemize
3944
3945 @section elbg
3946
3947 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
3948
3949 For each input image, the filter will compute the optimal mapping from
3950 the input to the output given the codebook length, that is the number
3951 of distinct output colors.
3952
3953 This filter accepts the following options.
3954
3955 @table @option
3956 @item codebook_length, l
3957 Set codebook length. The value must be a positive integer, and
3958 represents the number of distinct output colors. Default value is 256.
3959
3960 @item nb_steps, n
3961 Set the maximum number of iterations to apply for computing the optimal
3962 mapping. The higher the value the better the result and the higher the
3963 computation time. Default value is 1.
3964
3965 @item seed, s
3966 Set a random seed, must be an integer included between 0 and
3967 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
3968 will try to use a good random seed on a best effort basis.
3969 @end table
3970
3971 @section fade
3972
3973 Apply fade-in/out effect to input video.
3974
3975 This filter accepts the following options:
3976
3977 @table @option
3978 @item type, t
3979 The effect type -- can be either "in" for fade-in, or "out" for a fade-out
3980 effect.
3981 Default is @code{in}.
3982
3983 @item start_frame, s
3984 Specify the number of the start frame for starting to apply the fade
3985 effect. Default is 0.
3986
3987 @item nb_frames, n
3988 The number of frames for which the fade effect has to last. At the end of the
3989 fade-in effect the output video will have the same intensity as the input video,
3990 at the end of the fade-out transition the output video will be filled with the
3991 selected @option{color}.
3992 Default is 25.
3993
3994 @item alpha
3995 If set to 1, fade only alpha channel, if one exists on the input.
3996 Default value is 0.
3997
3998 @item start_time, st
3999 Specify the timestamp (in seconds) of the frame to start to apply the fade
4000 effect. If both start_frame and start_time are specified, the fade will start at
4001 whichever comes last.  Default is 0.
4002
4003 @item duration, d
4004 The number of seconds for which the fade effect has to last. At the end of the
4005 fade-in effect the output video will have the same intensity as the input video,
4006 at the end of the fade-out transition the output video will be filled with the
4007 selected @option{color}.
4008 If both duration and nb_frames are specified, duration is used. Default is 0.
4009
4010 @item color, c
4011 Specify the color of the fade. Default is "black".
4012 @end table
4013
4014 @subsection Examples
4015
4016 @itemize
4017 @item
4018 Fade in first 30 frames of video:
4019 @example
4020 fade=in:0:30
4021 @end example
4022
4023 The command above is equivalent to:
4024 @example
4025 fade=t=in:s=0:n=30
4026 @end example
4027
4028 @item
4029 Fade out last 45 frames of a 200-frame video:
4030 @example
4031 fade=out:155:45
4032 fade=type=out:start_frame=155:nb_frames=45
4033 @end example
4034
4035 @item
4036 Fade in first 25 frames and fade out last 25 frames of a 1000-frame video:
4037 @example
4038 fade=in:0:25, fade=out:975:25
4039 @end example
4040
4041 @item
4042 Make first 5 frames yellow, then fade in from frame 5-24:
4043 @example
4044 fade=in:5:20:color=yellow
4045 @end example
4046
4047 @item
4048 Fade in alpha over first 25 frames of video:
4049 @example
4050 fade=in:0:25:alpha=1
4051 @end example
4052
4053 @item
4054 Make first 5.5 seconds black, then fade in for 0.5 seconds:
4055 @example
4056 fade=t=in:st=5.5:d=0.5
4057 @end example
4058
4059 @end itemize
4060
4061 @section field
4062
4063 Extract a single field from an interlaced image using stride
4064 arithmetic to avoid wasting CPU time. The output frames are marked as
4065 non-interlaced.
4066
4067 The filter accepts the following options:
4068
4069 @table @option
4070 @item type
4071 Specify whether to extract the top (if the value is @code{0} or
4072 @code{top}) or the bottom field (if the value is @code{1} or
4073 @code{bottom}).
4074 @end table
4075
4076 @section fieldmatch
4077
4078 Field matching filter for inverse telecine. It is meant to reconstruct the
4079 progressive frames from a telecined stream. The filter does not drop duplicated
4080 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
4081 followed by a decimation filter such as @ref{decimate} in the filtergraph.
4082
4083 The separation of the field matching and the decimation is notably motivated by
4084 the possibility of inserting a de-interlacing filter fallback between the two.
4085 If the source has mixed telecined and real interlaced content,
4086 @code{fieldmatch} will not be able to match fields for the interlaced parts.
4087 But these remaining combed frames will be marked as interlaced, and thus can be
4088 de-interlaced by a later filter such as @ref{yadif} before decimation.
4089
4090 In addition to the various configuration options, @code{fieldmatch} can take an
4091 optional second stream, activated through the @option{ppsrc} option. If
4092 enabled, the frames reconstruction will be based on the fields and frames from
4093 this second stream. This allows the first input to be pre-processed in order to
4094 help the various algorithms of the filter, while keeping the output lossless
4095 (assuming the fields are matched properly). Typically, a field-aware denoiser,
4096 or brightness/contrast adjustments can help.
4097
4098 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
4099 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
4100 which @code{fieldmatch} is based on. While the semantic and usage are very
4101 close, some behaviour and options names can differ.
4102
4103 The filter accepts the following options:
4104
4105 @table @option
4106 @item order
4107 Specify the assumed field order of the input stream. Available values are:
4108
4109 @table @samp
4110 @item auto
4111 Auto detect parity (use FFmpeg's internal parity value).
4112 @item bff
4113 Assume bottom field first.
4114 @item tff
4115 Assume top field first.
4116 @end table
4117
4118 Note that it is sometimes recommended not to trust the parity announced by the
4119 stream.
4120
4121 Default value is @var{auto}.
4122
4123 @item mode
4124 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
4125 sense that it won't risk creating jerkiness due to duplicate frames when
4126 possible, but if there are bad edits or blended fields it will end up
4127 outputting combed frames when a good match might actually exist. On the other
4128 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
4129 but will almost always find a good frame if there is one. The other values are
4130 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
4131 jerkiness and creating duplicate frames versus finding good matches in sections
4132 with bad edits, orphaned fields, blended fields, etc.
4133
4134 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
4135
4136 Available values are:
4137
4138 @table @samp
4139 @item pc
4140 2-way matching (p/c)
4141 @item pc_n
4142 2-way matching, and trying 3rd match if still combed (p/c + n)
4143 @item pc_u
4144 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
4145 @item pc_n_ub
4146 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
4147 still combed (p/c + n + u/b)
4148 @item pcn
4149 3-way matching (p/c/n)
4150 @item pcn_ub
4151 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
4152 detected as combed (p/c/n + u/b)
4153 @end table
4154
4155 The parenthesis at the end indicate the matches that would be used for that
4156 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
4157 @var{top}).
4158
4159 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
4160 the slowest.
4161
4162 Default value is @var{pc_n}.
4163
4164 @item ppsrc
4165 Mark the main input stream as a pre-processed input, and enable the secondary
4166 input stream as the clean source to pick the fields from. See the filter
4167 introduction for more details. It is similar to the @option{clip2} feature from
4168 VFM/TFM.
4169
4170 Default value is @code{0} (disabled).
4171
4172 @item field
4173 Set the field to match from. It is recommended to set this to the same value as
4174 @option{order} unless you experience matching failures with that setting. In
4175 certain circumstances changing the field that is used to match from can have a
4176 large impact on matching performance. Available values are:
4177
4178 @table @samp
4179 @item auto
4180 Automatic (same value as @option{order}).
4181 @item bottom
4182 Match from the bottom field.
4183 @item top
4184 Match from the top field.
4185 @end table
4186
4187 Default value is @var{auto}.
4188
4189 @item mchroma
4190 Set whether or not chroma is included during the match comparisons. In most
4191 cases it is recommended to leave this enabled. You should set this to @code{0}
4192 only if your clip has bad chroma problems such as heavy rainbowing or other
4193 artifacts. Setting this to @code{0} could also be used to speed things up at
4194 the cost of some accuracy.
4195
4196 Default value is @code{1}.
4197
4198 @item y0
4199 @item y1
4200 These define an exclusion band which excludes the lines between @option{y0} and
4201 @option{y1} from being included in the field matching decision. An exclusion
4202 band can be used to ignore subtitles, a logo, or other things that may
4203 interfere with the matching. @option{y0} sets the starting scan line and
4204 @option{y1} sets the ending line; all lines in between @option{y0} and
4205 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
4206 @option{y0} and @option{y1} to the same value will disable the feature.
4207 @option{y0} and @option{y1} defaults to @code{0}.
4208
4209 @item scthresh
4210 Set the scene change detection threshold as a percentage of maximum change on
4211 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
4212 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
4213 @option{scthresh} is @code{[0.0, 100.0]}.
4214
4215 Default value is @code{12.0}.
4216
4217 @item combmatch
4218 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
4219 account the combed scores of matches when deciding what match to use as the
4220 final match. Available values are:
4221
4222 @table @samp
4223 @item none
4224 No final matching based on combed scores.
4225 @item sc
4226 Combed scores are only used when a scene change is detected.
4227 @item full
4228 Use combed scores all the time.
4229 @end table
4230
4231 Default is @var{sc}.
4232
4233 @item combdbg
4234 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
4235 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
4236 Available values are:
4237
4238 @table @samp
4239 @item none
4240 No forced calculation.
4241 @item pcn
4242 Force p/c/n calculations.
4243 @item pcnub
4244 Force p/c/n/u/b calculations.
4245 @end table
4246
4247 Default value is @var{none}.
4248
4249 @item cthresh
4250 This is the area combing threshold used for combed frame detection. This
4251 essentially controls how "strong" or "visible" combing must be to be detected.
4252 Larger values mean combing must be more visible and smaller values mean combing
4253 can be less visible or strong and still be detected. Valid settings are from
4254 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
4255 be detected as combed). This is basically a pixel difference value. A good
4256 range is @code{[8, 12]}.
4257
4258 Default value is @code{9}.
4259
4260 @item chroma
4261 Sets whether or not chroma is considered in the combed frame decision.  Only
4262 disable this if your source has chroma problems (rainbowing, etc.) that are
4263 causing problems for the combed frame detection with chroma enabled. Actually,
4264 using @option{chroma}=@var{0} is usually more reliable, except for the case
4265 where there is chroma only combing in the source.
4266
4267 Default value is @code{0}.
4268
4269 @item blockx
4270 @item blocky
4271 Respectively set the x-axis and y-axis size of the window used during combed
4272 frame detection. This has to do with the size of the area in which
4273 @option{combpel} pixels are required to be detected as combed for a frame to be
4274 declared combed. See the @option{combpel} parameter description for more info.
4275 Possible values are any number that is a power of 2 starting at 4 and going up
4276 to 512.
4277
4278 Default value is @code{16}.
4279
4280 @item combpel
4281 The number of combed pixels inside any of the @option{blocky} by
4282 @option{blockx} size blocks on the frame for the frame to be detected as
4283 combed. While @option{cthresh} controls how "visible" the combing must be, this
4284 setting controls "how much" combing there must be in any localized area (a
4285 window defined by the @option{blockx} and @option{blocky} settings) on the
4286 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
4287 which point no frames will ever be detected as combed). This setting is known
4288 as @option{MI} in TFM/VFM vocabulary.
4289
4290 Default value is @code{80}.
4291 @end table
4292
4293 @anchor{p/c/n/u/b meaning}
4294 @subsection p/c/n/u/b meaning
4295
4296 @subsubsection p/c/n
4297
4298 We assume the following telecined stream:
4299
4300 @example
4301 Top fields:     1 2 2 3 4
4302 Bottom fields:  1 2 3 4 4
4303 @end example
4304
4305 The numbers correspond to the progressive frame the fields relate to. Here, the
4306 first two frames are progressive, the 3rd and 4th are combed, and so on.
4307
4308 When @code{fieldmatch} is configured to run a matching from bottom
4309 (@option{field}=@var{bottom}) this is how this input stream get transformed:
4310
4311 @example
4312 Input stream:
4313                 T     1 2 2 3 4
4314                 B     1 2 3 4 4   <-- matching reference
4315
4316 Matches:              c c n n c
4317
4318 Output stream:
4319                 T     1 2 3 4 4
4320                 B     1 2 3 4 4
4321 @end example
4322
4323 As a result of the field matching, we can see that some frames get duplicated.
4324 To perform a complete inverse telecine, you need to rely on a decimation filter
4325 after this operation. See for instance the @ref{decimate} filter.
4326
4327 The same operation now matching from top fields (@option{field}=@var{top})
4328 looks like this:
4329
4330 @example
4331 Input stream:
4332                 T     1 2 2 3 4   <-- matching reference
4333                 B     1 2 3 4 4
4334
4335 Matches:              c c p p c
4336
4337 Output stream:
4338                 T     1 2 2 3 4
4339                 B     1 2 2 3 4
4340 @end example
4341
4342 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
4343 basically, they refer to the frame and field of the opposite parity:
4344
4345 @itemize
4346 @item @var{p} matches the field of the opposite parity in the previous frame
4347 @item @var{c} matches the field of the opposite parity in the current frame
4348 @item @var{n} matches the field of the opposite parity in the next frame
4349 @end itemize
4350
4351 @subsubsection u/b
4352
4353 The @var{u} and @var{b} matching are a bit special in the sense that they match
4354 from the opposite parity flag. In the following examples, we assume that we are
4355 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
4356 'x' is placed above and below each matched fields.
4357
4358 With bottom matching (@option{field}=@var{bottom}):
4359 @example
4360 Match:           c         p           n          b          u
4361
4362                  x       x               x        x          x
4363   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
4364   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
4365                  x         x           x        x              x
4366
4367 Output frames:
4368                  2          1          2          2          2
4369                  2          2          2          1          3
4370 @end example
4371
4372 With top matching (@option{field}=@var{top}):
4373 @example
4374 Match:           c         p           n          b          u
4375
4376                  x         x           x        x              x
4377   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
4378   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
4379                  x       x               x        x          x
4380
4381 Output frames:
4382                  2          2          2          1          2
4383                  2          1          3          2          2
4384 @end example
4385
4386 @subsection Examples
4387
4388 Simple IVTC of a top field first telecined stream:
4389 @example
4390 fieldmatch=order=tff:combmatch=none, decimate
4391 @end example
4392
4393 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
4394 @example
4395 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
4396 @end example
4397
4398 @section fieldorder
4399
4400 Transform the field order of the input video.
4401
4402 This filter accepts the following options:
4403
4404 @table @option
4405
4406 @item order
4407 Output field order. Valid values are @var{tff} for top field first or @var{bff}
4408 for bottom field first.
4409 @end table
4410
4411 Default value is @samp{tff}.
4412
4413 Transformation is achieved by shifting the picture content up or down
4414 by one line, and filling the remaining line with appropriate picture content.
4415 This method is consistent with most broadcast field order converters.
4416
4417 If the input video is not flagged as being interlaced, or it is already
4418 flagged as being of the required output field order then this filter does
4419 not alter the incoming video.
4420
4421 This filter is very useful when converting to or from PAL DV material,
4422 which is bottom field first.
4423
4424 For example:
4425 @example
4426 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
4427 @end example
4428
4429 @section fifo
4430
4431 Buffer input images and send them when they are requested.
4432
4433 This filter is mainly useful when auto-inserted by the libavfilter
4434 framework.
4435
4436 The filter does not take parameters.
4437
4438 @anchor{format}
4439 @section format
4440
4441 Convert the input video to one of the specified pixel formats.
4442 Libavfilter will try to pick one that is supported for the input to
4443 the next filter.
4444
4445 This filter accepts the following parameters:
4446 @table @option
4447
4448 @item pix_fmts
4449 A '|'-separated list of pixel format names, for example
4450 "pix_fmts=yuv420p|monow|rgb24".
4451
4452 @end table
4453
4454 @subsection Examples
4455
4456 @itemize
4457 @item
4458 Convert the input video to the format @var{yuv420p}
4459 @example
4460 format=pix_fmts=yuv420p
4461 @end example
4462
4463 Convert the input video to any of the formats in the list
4464 @example
4465 format=pix_fmts=yuv420p|yuv444p|yuv410p
4466 @end example
4467 @end itemize
4468
4469 @anchor{fps}
4470 @section fps
4471
4472 Convert the video to specified constant frame rate by duplicating or dropping
4473 frames as necessary.
4474
4475 This filter accepts the following named parameters:
4476 @table @option
4477
4478 @item fps
4479 Desired output frame rate. The default is @code{25}.
4480
4481 @item round
4482 Rounding method.
4483
4484 Possible values are:
4485 @table @option
4486 @item zero
4487 zero round towards 0
4488 @item inf
4489 round away from 0
4490 @item down
4491 round towards -infinity
4492 @item up
4493 round towards +infinity
4494 @item near
4495 round to nearest
4496 @end table
4497 The default is @code{near}.
4498
4499 @item start_time
4500 Assume the first PTS should be the given value, in seconds. This allows for
4501 padding/trimming at the start of stream. By default, no assumption is made
4502 about the first frame's expected PTS, so no padding or trimming is done.
4503 For example, this could be set to 0 to pad the beginning with duplicates of
4504 the first frame if a video stream starts after the audio stream or to trim any
4505 frames with a negative PTS.
4506
4507 @end table
4508
4509 Alternatively, the options can be specified as a flat string:
4510 @var{fps}[:@var{round}].
4511
4512 See also the @ref{setpts} filter.
4513
4514 @subsection Examples
4515
4516 @itemize
4517 @item
4518 A typical usage in order to set the fps to 25:
4519 @example
4520 fps=fps=25
4521 @end example
4522
4523 @item
4524 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
4525 @example
4526 fps=fps=film:round=near
4527 @end example
4528 @end itemize
4529
4530 @section framepack
4531
4532 Pack two different video streams into a stereoscopic video, setting proper
4533 metadata on supported codecs. The two views should have the same size and
4534 framerate and processing will stop when the shorter video ends. Please note
4535 that you may conveniently adjust view properties with the @ref{scale} and
4536 @ref{fps} filters.
4537
4538 This filter accepts the following named parameters:
4539 @table @option
4540
4541 @item format
4542 Desired packing format. Supported values are:
4543
4544 @table @option
4545
4546 @item sbs
4547 Views are next to each other (default).
4548
4549 @item tab
4550 Views are on top of each other.
4551
4552 @item lines
4553 Views are packed by line.
4554
4555 @item columns
4556 Views are eacked by column.
4557
4558 @item frameseq
4559 Views are temporally interleaved.
4560
4561 @end table
4562
4563 @end table
4564
4565 Some examples follow:
4566
4567 @example
4568 # Convert left and right views into a frame sequential video.
4569 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
4570
4571 # Convert views into a side-by-side video with the same output resolution as the input.
4572 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
4573 @end example
4574
4575 @section framestep
4576
4577 Select one frame every N-th frame.
4578
4579 This filter accepts the following option:
4580 @table @option
4581 @item step
4582 Select frame after every @code{step} frames.
4583 Allowed values are positive integers higher than 0. Default value is @code{1}.
4584 @end table
4585
4586 @anchor{frei0r}
4587 @section frei0r
4588
4589 Apply a frei0r effect to the input video.
4590
4591 To enable compilation of this filter you need to install the frei0r
4592 header and configure FFmpeg with @code{--enable-frei0r}.
4593
4594 This filter accepts the following options:
4595
4596 @table @option
4597
4598 @item filter_name
4599 The name to the frei0r effect to load. If the environment variable
4600 @env{FREI0R_PATH} is defined, the frei0r effect is searched in each one of the
4601 directories specified by the colon separated list in @env{FREIOR_PATH},
4602 otherwise in the standard frei0r paths, which are in this order:
4603 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
4604 @file{/usr/lib/frei0r-1/}.
4605
4606 @item filter_params
4607 A '|'-separated list of parameters to pass to the frei0r effect.
4608
4609 @end table
4610
4611 A frei0r effect parameter can be a boolean (whose values are specified
4612 with "y" and "n"), a double, a color (specified by the syntax
4613 @var{R}/@var{G}/@var{B}, (@var{R}, @var{G}, and @var{B} being float
4614 numbers from 0.0 to 1.0) or by a color description specified in the "Color"
4615 section in the ffmpeg-utils manual), a position (specified by the syntax @var{X}/@var{Y},
4616 @var{X} and @var{Y} being float numbers) and a string.
4617
4618 The number and kind of parameters depend on the loaded effect. If an
4619 effect parameter is not specified the default value is set.
4620
4621 @subsection Examples
4622
4623 @itemize
4624 @item
4625 Apply the distort0r effect, set the first two double parameters:
4626 @example
4627 frei0r=filter_name=distort0r:filter_params=0.5|0.01
4628 @end example
4629
4630 @item
4631 Apply the colordistance effect, take a color as first parameter:
4632 @example
4633 frei0r=colordistance:0.2/0.3/0.4
4634 frei0r=colordistance:violet
4635 frei0r=colordistance:0x112233
4636 @end example
4637
4638 @item
4639 Apply the perspective effect, specify the top left and top right image
4640 positions:
4641 @example
4642 frei0r=perspective:0.2/0.2|0.8/0.2
4643 @end example
4644 @end itemize
4645
4646 For more information see:
4647 @url{http://frei0r.dyne.org}
4648
4649 @section geq
4650
4651 The filter accepts the following options:
4652
4653 @table @option
4654 @item lum_expr, lum
4655 Set the luminance expression.
4656 @item cb_expr, cb
4657 Set the chrominance blue expression.
4658 @item cr_expr, cr
4659 Set the chrominance red expression.
4660 @item alpha_expr, a
4661 Set the alpha expression.
4662 @item red_expr, r
4663 Set the red expression.
4664 @item green_expr, g
4665 Set the green expression.
4666 @item blue_expr, b
4667 Set the blue expression.
4668 @end table
4669
4670 The colorspace is selected according to the specified options. If one
4671 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
4672 options is specified, the filter will automatically select a YCbCr
4673 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
4674 @option{blue_expr} options is specified, it will select an RGB
4675 colorspace.
4676
4677 If one of the chrominance expression is not defined, it falls back on the other
4678 one. If no alpha expression is specified it will evaluate to opaque value.
4679 If none of chrominance expressions are specified, they will evaluate
4680 to the luminance expression.
4681
4682 The expressions can use the following variables and functions:
4683
4684 @table @option
4685 @item N
4686 The sequential number of the filtered frame, starting from @code{0}.
4687
4688 @item X
4689 @item Y
4690 The coordinates of the current sample.
4691
4692 @item W
4693 @item H
4694 The width and height of the image.
4695
4696 @item SW
4697 @item SH
4698 Width and height scale depending on the currently filtered plane. It is the
4699 ratio between the corresponding luma plane number of pixels and the current
4700 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
4701 @code{0.5,0.5} for chroma planes.
4702
4703 @item T
4704 Time of the current frame, expressed in seconds.
4705
4706 @item p(x, y)
4707 Return the value of the pixel at location (@var{x},@var{y}) of the current
4708 plane.
4709
4710 @item lum(x, y)
4711 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
4712 plane.
4713
4714 @item cb(x, y)
4715 Return the value of the pixel at location (@var{x},@var{y}) of the
4716 blue-difference chroma plane. Return 0 if there is no such plane.
4717
4718 @item cr(x, y)
4719 Return the value of the pixel at location (@var{x},@var{y}) of the
4720 red-difference chroma plane. Return 0 if there is no such plane.
4721
4722 @item r(x, y)
4723 @item g(x, y)
4724 @item b(x, y)
4725 Return the value of the pixel at location (@var{x},@var{y}) of the
4726 red/green/blue component. Return 0 if there is no such component.
4727
4728 @item alpha(x, y)
4729 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
4730 plane. Return 0 if there is no such plane.
4731 @end table
4732
4733 For functions, if @var{x} and @var{y} are outside the area, the value will be
4734 automatically clipped to the closer edge.
4735
4736 @subsection Examples
4737
4738 @itemize
4739 @item
4740 Flip the image horizontally:
4741 @example
4742 geq=p(W-X\,Y)
4743 @end example
4744
4745 @item
4746 Generate a bidimensional sine wave, with angle @code{PI/3} and a
4747 wavelength of 100 pixels:
4748 @example
4749 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
4750 @end example
4751
4752 @item
4753 Generate a fancy enigmatic moving light:
4754 @example
4755 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
4756 @end example
4757
4758 @item
4759 Generate a quick emboss effect:
4760 @example
4761 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
4762 @end example
4763
4764 @item
4765 Modify RGB components depending on pixel position:
4766 @example
4767 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
4768 @end example
4769 @end itemize
4770
4771 @section gradfun
4772
4773 Fix the banding artifacts that are sometimes introduced into nearly flat
4774 regions by truncation to 8bit color depth.
4775 Interpolate the gradients that should go where the bands are, and
4776 dither them.
4777
4778 This filter is designed for playback only.  Do not use it prior to
4779 lossy compression, because compression tends to lose the dither and
4780 bring back the bands.
4781
4782 This filter accepts the following options:
4783
4784 @table @option
4785
4786 @item strength
4787 The maximum amount by which the filter will change any one pixel. Also the
4788 threshold for detecting nearly flat regions. Acceptable values range from .51 to
4789 64, default value is 1.2, out-of-range values will be clipped to the valid
4790 range.
4791
4792 @item radius
4793 The neighborhood to fit the gradient to. A larger radius makes for smoother
4794 gradients, but also prevents the filter from modifying the pixels near detailed
4795 regions. Acceptable values are 8-32, default value is 16, out-of-range values
4796 will be clipped to the valid range.
4797
4798 @end table
4799
4800 Alternatively, the options can be specified as a flat string:
4801 @var{strength}[:@var{radius}]
4802
4803 @subsection Examples
4804
4805 @itemize
4806 @item
4807 Apply the filter with a @code{3.5} strength and radius of @code{8}:
4808 @example
4809 gradfun=3.5:8
4810 @end example
4811
4812 @item
4813 Specify radius, omitting the strength (which will fall-back to the default
4814 value):
4815 @example
4816 gradfun=radius=8
4817 @end example
4818
4819 @end itemize
4820
4821 @anchor{haldclut}
4822 @section haldclut
4823
4824 Apply a Hald CLUT to a video stream.
4825
4826 First input is the video stream to process, and second one is the Hald CLUT.
4827 The Hald CLUT input can be a simple picture or a complete video stream.
4828
4829 The filter accepts the following options:
4830
4831 @table @option
4832 @item shortest
4833 Force termination when the shortest input terminates. Default is @code{0}.
4834 @item repeatlast
4835 Continue applying the last CLUT after the end of the stream. A value of
4836 @code{0} disable the filter after the last frame of the CLUT is reached.
4837 Default is @code{1}.
4838 @end table
4839
4840 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
4841 filters share the same internals).
4842
4843 More information about the Hald CLUT can be found on Eskil Steenberg's website
4844 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
4845
4846 @subsection Workflow examples
4847
4848 @subsubsection Hald CLUT video stream
4849
4850 Generate an identity Hald CLUT stream altered with various effects:
4851 @example
4852 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
4853 @end example
4854
4855 Note: make sure you use a lossless codec.
4856
4857 Then use it with @code{haldclut} to apply it on some random stream:
4858 @example
4859 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
4860 @end example
4861
4862 The Hald CLUT will be applied to the 10 first seconds (duration of
4863 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
4864 to the remaining frames of the @code{mandelbrot} stream.
4865
4866 @subsubsection Hald CLUT with preview
4867
4868 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
4869 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
4870 biggest possible square starting at the top left of the picture. The remaining
4871 padding pixels (bottom or right) will be ignored. This area can be used to add
4872 a preview of the Hald CLUT.
4873
4874 Typically, the following generated Hald CLUT will be supported by the
4875 @code{haldclut} filter:
4876
4877 @example
4878 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
4879    pad=iw+320 [padded_clut];
4880    smptebars=s=320x256, split [a][b];
4881    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
4882    [main][b] overlay=W-320" -frames:v 1 clut.png
4883 @end example
4884
4885 It contains the original and a preview of the effect of the CLUT: SMPTE color
4886 bars are displayed on the right-top, and below the same color bars processed by
4887 the color changes.
4888
4889 Then, the effect of this Hald CLUT can be visualized with:
4890 @example
4891 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
4892 @end example
4893
4894 @section hflip
4895
4896 Flip the input video horizontally.
4897
4898 For example to horizontally flip the input video with @command{ffmpeg}:
4899 @example
4900 ffmpeg -i in.avi -vf "hflip" out.avi
4901 @end example
4902
4903 @section histeq
4904 This filter applies a global color histogram equalization on a
4905 per-frame basis.
4906
4907 It can be used to correct video that has a compressed range of pixel
4908 intensities.  The filter redistributes the pixel intensities to
4909 equalize their distribution across the intensity range. It may be
4910 viewed as an "automatically adjusting contrast filter". This filter is
4911 useful only for correcting degraded or poorly captured source
4912 video.
4913
4914 The filter accepts the following options:
4915
4916 @table @option
4917 @item strength
4918 Determine the amount of equalization to be applied.  As the strength
4919 is reduced, the distribution of pixel intensities more-and-more
4920 approaches that of the input frame. The value must be a float number
4921 in the range [0,1] and defaults to 0.200.
4922
4923 @item intensity
4924 Set the maximum intensity that can generated and scale the output
4925 values appropriately.  The strength should be set as desired and then
4926 the intensity can be limited if needed to avoid washing-out. The value
4927 must be a float number in the range [0,1] and defaults to 0.210.
4928
4929 @item antibanding
4930 Set the antibanding level. If enabled the filter will randomly vary
4931 the luminance of output pixels by a small amount to avoid banding of
4932 the histogram. Possible values are @code{none}, @code{weak} or
4933 @code{strong}. It defaults to @code{none}.
4934 @end table
4935
4936 @section histogram
4937
4938 Compute and draw a color distribution histogram for the input video.
4939
4940 The computed histogram is a representation of distribution of color components
4941 in an image.
4942
4943 The filter accepts the following options:
4944
4945 @table @option
4946 @item mode
4947 Set histogram mode.
4948
4949 It accepts the following values:
4950 @table @samp
4951 @item levels
4952 standard histogram that display color components distribution in an image.
4953 Displays color graph for each color component. Shows distribution
4954 of the Y, U, V, A or R, G, B components, depending on input format,
4955 in current frame. Bellow each graph is color component scale meter.
4956
4957 @item color
4958 chroma values in vectorscope, if brighter more such chroma values are
4959 distributed in an image.
4960 Displays chroma values (U/V color placement) in two dimensional graph
4961 (which is called a vectorscope). It can be used to read of the hue and
4962 saturation of the current frame. At a same time it is a histogram.
4963 The whiter a pixel in the vectorscope, the more pixels of the input frame
4964 correspond to that pixel (that is the more pixels have this chroma value).
4965 The V component is displayed on the horizontal (X) axis, with the leftmost
4966 side being V = 0 and the rightmost side being V = 255.
4967 The U component is displayed on the vertical (Y) axis, with the top
4968 representing U = 0 and the bottom representing U = 255.
4969
4970 The position of a white pixel in the graph corresponds to the chroma value
4971 of a pixel of the input clip. So the graph can be used to read of the
4972 hue (color flavor) and the saturation (the dominance of the hue in the color).
4973 As the hue of a color changes, it moves around the square. At the center of
4974 the square, the saturation is zero, which means that the corresponding pixel
4975 has no color. If you increase the amount of a specific color, while leaving
4976 the other colors unchanged, the saturation increases, and you move towards
4977 the edge of the square.
4978
4979 @item color2
4980 chroma values in vectorscope, similar as @code{color} but actual chroma values
4981 are displayed.
4982
4983 @item waveform
4984 per row/column color component graph. In row mode graph in the left side represents
4985 color component value 0 and right side represents value = 255. In column mode top
4986 side represents color component value = 0 and bottom side represents value = 255.
4987 @end table
4988 Default value is @code{levels}.
4989
4990 @item level_height
4991 Set height of level in @code{levels}. Default value is @code{200}.
4992 Allowed range is [50, 2048].
4993
4994 @item scale_height
4995 Set height of color scale in @code{levels}. Default value is @code{12}.
4996 Allowed range is [0, 40].
4997
4998 @item step
4999 Set step for @code{waveform} mode. Smaller values are useful to find out how much
5000 of same luminance values across input rows/columns are distributed.
5001 Default value is @code{10}. Allowed range is [1, 255].
5002
5003 @item waveform_mode
5004 Set mode for @code{waveform}. Can be either @code{row}, or @code{column}.
5005 Default is @code{row}.
5006
5007 @item waveform_mirror
5008 Set mirroring mode for @code{waveform}. @code{0} means unmirrored, @code{1}
5009 means mirrored. In mirrored mode, higher values will be represented on the left
5010 side for @code{row} mode and at the top for @code{column} mode. Default is
5011 @code{0} (unmirrored).
5012
5013 @item display_mode
5014 Set display mode for @code{waveform} and @code{levels}.
5015 It accepts the following values:
5016 @table @samp
5017 @item parade
5018 Display separate graph for the color components side by side in
5019 @code{row} waveform mode or one below other in @code{column} waveform mode
5020 for @code{waveform} histogram mode. For @code{levels} histogram mode
5021 per color component graphs are placed one bellow other.
5022
5023 This display mode in @code{waveform} histogram mode makes it easy to spot
5024 color casts in the highlights and shadows of an image, by comparing the
5025 contours of the top and the bottom of each waveform.
5026 Since whites, grays, and blacks are characterized by
5027 exactly equal amounts of red, green, and blue, neutral areas of the
5028 picture should display three waveforms of roughly equal width/height.
5029 If not, the correction is easy to make by making adjustments to level the
5030 three waveforms.
5031
5032 @item overlay
5033 Presents information that's identical to that in the @code{parade}, except
5034 that the graphs representing color components are superimposed directly
5035 over one another.
5036
5037 This display mode in @code{waveform} histogram mode can make it easier to spot
5038 the relative differences or similarities in overlapping areas of the color
5039 components that are supposed to be identical, such as neutral whites, grays,
5040 or blacks.
5041 @end table
5042 Default is @code{parade}.
5043
5044 @item levels_mode
5045 Set mode for @code{levels}. Can be either @code{linear}, or @code{logarithmic}.
5046 Default is @code{linear}.
5047 @end table
5048
5049 @subsection Examples
5050
5051 @itemize
5052
5053 @item
5054 Calculate and draw histogram:
5055 @example
5056 ffplay -i input -vf histogram
5057 @end example
5058
5059 @end itemize
5060
5061 @anchor{hqdn3d}
5062 @section hqdn3d
5063
5064 High precision/quality 3d denoise filter. This filter aims to reduce
5065 image noise producing smooth images and making still images really
5066 still. It should enhance compressibility.
5067
5068 It accepts the following optional parameters:
5069
5070 @table @option
5071 @item luma_spatial
5072 a non-negative float number which specifies spatial luma strength,
5073 defaults to 4.0
5074
5075 @item chroma_spatial
5076 a non-negative float number which specifies spatial chroma strength,
5077 defaults to 3.0*@var{luma_spatial}/4.0
5078
5079 @item luma_tmp
5080 a float number which specifies luma temporal strength, defaults to
5081 6.0*@var{luma_spatial}/4.0
5082
5083 @item chroma_tmp
5084 a float number which specifies chroma temporal strength, defaults to
5085 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}
5086 @end table
5087
5088 @section hue
5089
5090 Modify the hue and/or the saturation of the input.
5091
5092 This filter accepts the following options:
5093
5094 @table @option
5095 @item h
5096 Specify the hue angle as a number of degrees. It accepts an expression,
5097 and defaults to "0".
5098
5099 @item s
5100 Specify the saturation in the [-10,10] range. It accepts an expression and
5101 defaults to "1".
5102
5103 @item H
5104 Specify the hue angle as a number of radians. It accepts an
5105 expression, and defaults to "0".
5106
5107 @item b
5108 Specify the brightness in the [-10,10] range. It accepts an expression and
5109 defaults to "0".
5110 @end table
5111
5112 @option{h} and @option{H} are mutually exclusive, and can't be
5113 specified at the same time.
5114
5115 The @option{b}, @option{h}, @option{H} and @option{s} option values are
5116 expressions containing the following constants:
5117
5118 @table @option
5119 @item n
5120 frame count of the input frame starting from 0
5121
5122 @item pts
5123 presentation timestamp of the input frame expressed in time base units
5124
5125 @item r
5126 frame rate of the input video, NAN if the input frame rate is unknown
5127
5128 @item t
5129 timestamp expressed in seconds, NAN if the input timestamp is unknown
5130
5131 @item tb
5132 time base of the input video
5133 @end table
5134
5135 @subsection Examples
5136
5137 @itemize
5138 @item
5139 Set the hue to 90 degrees and the saturation to 1.0:
5140 @example
5141 hue=h=90:s=1
5142 @end example
5143
5144 @item
5145 Same command but expressing the hue in radians:
5146 @example
5147 hue=H=PI/2:s=1
5148 @end example
5149
5150 @item
5151 Rotate hue and make the saturation swing between 0
5152 and 2 over a period of 1 second:
5153 @example
5154 hue="H=2*PI*t: s=sin(2*PI*t)+1"
5155 @end example
5156
5157 @item
5158 Apply a 3 seconds saturation fade-in effect starting at 0:
5159 @example
5160 hue="s=min(t/3\,1)"
5161 @end example
5162
5163 The general fade-in expression can be written as:
5164 @example
5165 hue="s=min(0\, max((t-START)/DURATION\, 1))"
5166 @end example
5167
5168 @item
5169 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
5170 @example
5171 hue="s=max(0\, min(1\, (8-t)/3))"
5172 @end example
5173
5174 The general fade-out expression can be written as:
5175 @example
5176 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
5177 @end example
5178
5179 @end itemize
5180
5181 @subsection Commands
5182
5183 This filter supports the following commands:
5184 @table @option
5185 @item b
5186 @item s
5187 @item h
5188 @item H
5189 Modify the hue and/or the saturation and/or brightness of the input video.
5190 The command accepts the same syntax of the corresponding option.
5191
5192 If the specified expression is not valid, it is kept at its current
5193 value.
5194 @end table
5195
5196 @section idet
5197
5198 Detect video interlacing type.
5199
5200 This filter tries to detect if the input is interlaced or progressive,
5201 top or bottom field first.
5202
5203 The filter accepts the following options:
5204
5205 @table @option
5206 @item intl_thres
5207 Set interlacing threshold.
5208 @item prog_thres
5209 Set progressive threshold.
5210 @end table
5211
5212 @section il
5213
5214 Deinterleave or interleave fields.
5215
5216 This filter allows to process interlaced images fields without
5217 deinterlacing them. Deinterleaving splits the input frame into 2
5218 fields (so called half pictures). Odd lines are moved to the top
5219 half of the output image, even lines to the bottom half.
5220 You can process (filter) them independently and then re-interleave them.
5221
5222 The filter accepts the following options:
5223
5224 @table @option
5225 @item luma_mode, l
5226 @item chroma_mode, c
5227 @item alpha_mode, a
5228 Available values for @var{luma_mode}, @var{chroma_mode} and
5229 @var{alpha_mode} are:
5230
5231 @table @samp
5232 @item none
5233 Do nothing.
5234
5235 @item deinterleave, d
5236 Deinterleave fields, placing one above the other.
5237
5238 @item interleave, i
5239 Interleave fields. Reverse the effect of deinterleaving.
5240 @end table
5241 Default value is @code{none}.
5242
5243 @item luma_swap, ls
5244 @item chroma_swap, cs
5245 @item alpha_swap, as
5246 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
5247 @end table
5248
5249 @section interlace
5250
5251 Simple interlacing filter from progressive contents. This interleaves upper (or
5252 lower) lines from odd frames with lower (or upper) lines from even frames,
5253 halving the frame rate and preserving image height.
5254
5255 @example
5256    Original        Original             New Frame
5257    Frame 'j'      Frame 'j+1'             (tff)
5258   ==========      ===========       ==================
5259     Line 0  -------------------->    Frame 'j' Line 0
5260     Line 1          Line 1  ---->   Frame 'j+1' Line 1
5261     Line 2 --------------------->    Frame 'j' Line 2
5262     Line 3          Line 3  ---->   Frame 'j+1' Line 3
5263      ...             ...                   ...
5264 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
5265 @end example
5266
5267 It accepts the following optional parameters:
5268
5269 @table @option
5270 @item scan
5271 determines whether the interlaced frame is taken from the even (tff - default)
5272 or odd (bff) lines of the progressive frame.
5273
5274 @item lowpass
5275 Enable (default) or disable the vertical lowpass filter to avoid twitter
5276 interlacing and reduce moire patterns.
5277 @end table
5278
5279 @section kerndeint
5280
5281 Deinterlace input video by applying Donald Graft's adaptive kernel
5282 deinterling. Work on interlaced parts of a video to produce
5283 progressive frames.
5284
5285 The description of the accepted parameters follows.
5286
5287 @table @option
5288 @item thresh
5289 Set the threshold which affects the filter's tolerance when
5290 determining if a pixel line must be processed. It must be an integer
5291 in the range [0,255] and defaults to 10. A value of 0 will result in
5292 applying the process on every pixels.
5293
5294 @item map
5295 Paint pixels exceeding the threshold value to white if set to 1.
5296 Default is 0.
5297
5298 @item order
5299 Set the fields order. Swap fields if set to 1, leave fields alone if
5300 0. Default is 0.
5301
5302 @item sharp
5303 Enable additional sharpening if set to 1. Default is 0.
5304
5305 @item twoway
5306 Enable twoway sharpening if set to 1. Default is 0.
5307 @end table
5308
5309 @subsection Examples
5310
5311 @itemize
5312 @item
5313 Apply default values:
5314 @example
5315 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
5316 @end example
5317
5318 @item
5319 Enable additional sharpening:
5320 @example
5321 kerndeint=sharp=1
5322 @end example
5323
5324 @item
5325 Paint processed pixels in white:
5326 @example
5327 kerndeint=map=1
5328 @end example
5329 @end itemize
5330
5331 @anchor{lut3d}
5332 @section lut3d
5333
5334 Apply a 3D LUT to an input video.
5335
5336 The filter accepts the following options:
5337
5338 @table @option
5339 @item file
5340 Set the 3D LUT file name.
5341
5342 Currently supported formats:
5343 @table @samp
5344 @item 3dl
5345 AfterEffects
5346 @item cube
5347 Iridas
5348 @item dat
5349 DaVinci
5350 @item m3d
5351 Pandora
5352 @end table
5353 @item interp
5354 Select interpolation mode.
5355
5356 Available values are:
5357
5358 @table @samp
5359 @item nearest
5360 Use values from the nearest defined point.
5361 @item trilinear
5362 Interpolate values using the 8 points defining a cube.
5363 @item tetrahedral
5364 Interpolate values using a tetrahedron.
5365 @end table
5366 @end table
5367
5368 @section lut, lutrgb, lutyuv
5369
5370 Compute a look-up table for binding each pixel component input value
5371 to an output value, and apply it to input video.
5372
5373 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
5374 to an RGB input video.
5375
5376 These filters accept the following options:
5377 @table @option
5378 @item c0
5379 set first pixel component expression
5380 @item c1
5381 set second pixel component expression
5382 @item c2
5383 set third pixel component expression
5384 @item c3
5385 set fourth pixel component expression, corresponds to the alpha component
5386
5387 @item r
5388 set red component expression
5389 @item g
5390 set green component expression
5391 @item b
5392 set blue component expression
5393 @item a
5394 alpha component expression
5395
5396 @item y
5397 set Y/luminance component expression
5398 @item u
5399 set U/Cb component expression
5400 @item v
5401 set V/Cr component expression
5402 @end table
5403
5404 Each of them specifies the expression to use for computing the lookup table for
5405 the corresponding pixel component values.
5406
5407 The exact component associated to each of the @var{c*} options depends on the
5408 format in input.
5409
5410 The @var{lut} filter requires either YUV or RGB pixel formats in input,
5411 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
5412
5413 The expressions can contain the following constants and functions:
5414
5415 @table @option
5416 @item w
5417 @item h
5418 the input width and height
5419
5420 @item val
5421 input value for the pixel component
5422
5423 @item clipval
5424 the input value clipped in the @var{minval}-@var{maxval} range
5425
5426 @item maxval
5427 maximum value for the pixel component
5428
5429 @item minval
5430 minimum value for the pixel component
5431
5432 @item negval
5433 the negated value for the pixel component value clipped in the
5434 @var{minval}-@var{maxval} range , it corresponds to the expression
5435 "maxval-clipval+minval"
5436
5437 @item clip(val)
5438 the computed value in @var{val} clipped in the
5439 @var{minval}-@var{maxval} range
5440
5441 @item gammaval(gamma)
5442 the computed gamma correction value of the pixel component value
5443 clipped in the @var{minval}-@var{maxval} range, corresponds to the
5444 expression
5445 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
5446
5447 @end table
5448
5449 All expressions default to "val".
5450
5451 @subsection Examples
5452
5453 @itemize
5454 @item
5455 Negate input video:
5456 @example
5457 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
5458 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
5459 @end example
5460
5461 The above is the same as:
5462 @example
5463 lutrgb="r=negval:g=negval:b=negval"
5464 lutyuv="y=negval:u=negval:v=negval"
5465 @end example
5466
5467 @item
5468 Negate luminance:
5469 @example
5470 lutyuv=y=negval
5471 @end example
5472
5473 @item
5474 Remove chroma components, turns the video into a graytone image:
5475 @example
5476 lutyuv="u=128:v=128"
5477 @end example
5478
5479 @item
5480 Apply a luma burning effect:
5481 @example
5482 lutyuv="y=2*val"
5483 @end example
5484
5485 @item
5486 Remove green and blue components:
5487 @example
5488 lutrgb="g=0:b=0"
5489 @end example
5490
5491 @item
5492 Set a constant alpha channel value on input:
5493 @example
5494 format=rgba,lutrgb=a="maxval-minval/2"
5495 @end example
5496
5497 @item
5498 Correct luminance gamma by a 0.5 factor:
5499 @example
5500 lutyuv=y=gammaval(0.5)
5501 @end example
5502
5503 @item
5504 Discard least significant bits of luma:
5505 @example
5506 lutyuv=y='bitand(val, 128+64+32)'
5507 @end example
5508 @end itemize
5509
5510 @section mergeplanes
5511
5512 Merge color channel components from several video streams.
5513
5514 The filter accepts up to 4 input streams, and merge selected input
5515 planes to the output video.
5516
5517 This filter accepts the following options:
5518 @table @option
5519 @item mapping
5520 Set input to output plane mapping. Default is @code{0}.
5521
5522 The mappings is specified as a bitmap. It should be specified as a
5523 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
5524 mapping for the first plane of the output stream. 'A' sets the number of
5525 the input stream to use (from 0 to 3), and 'a' the plane number of the
5526 corresponding input to use (from 0 to 3). The rest of the mappings is
5527 similar, 'Bb' describes the mapping for the output stream second
5528 plane, 'Cc' describes the mapping for the output stream third plane and
5529 'Dd' describes the mapping for the output stream fourth plane.
5530
5531 @item format
5532 Set output pixel format. Default is @code{yuva444p}.
5533 @end table
5534
5535 @subsection Examples
5536
5537 @itemize
5538 @item
5539 Merge three gray video streams of same width and height into single video stream:
5540 @example
5541 [a0][a1][a2]mergeplanes=0x001020:yuv444p
5542 @end example
5543
5544 @item
5545 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
5546 @example
5547 [a0][a1]mergeplanes=0x00010210:yuva444p
5548 @end example
5549
5550 @item
5551 Swap Y and A plane in yuva444p stream:
5552 @example
5553 format=yuva444p,mergeplanes=0x03010200:yuva444p
5554 @end example
5555
5556 @item
5557 Swap U and V plane in yuv420p stream:
5558 @example
5559 format=yuv420p,mergeplanes=0x000201:yuv420p
5560 @end example
5561
5562 @item
5563 Cast a rgb24 clip to yuv444p:
5564 @example
5565 format=rgb24,mergeplanes=0x000102:yuv444p
5566 @end example
5567 @end itemize
5568
5569 @section mcdeint
5570
5571 Apply motion-compensation deinterlacing.
5572
5573 It needs one field per frame as input and must thus be used together
5574 with yadif=1/3 or equivalent.
5575
5576 This filter accepts the following options:
5577 @table @option
5578 @item mode
5579 Set the deinterlacing mode.
5580
5581 It accepts one of the following values:
5582 @table @samp
5583 @item fast
5584 @item medium
5585 @item slow
5586 use iterative motion estimation
5587 @item extra_slow
5588 like @samp{slow}, but use multiple reference frames.
5589 @end table
5590 Default value is @samp{fast}.
5591
5592 @item parity
5593 Set the picture field parity assumed for the input video. It must be
5594 one of the following values:
5595
5596 @table @samp
5597 @item 0, tff
5598 assume top field first
5599 @item 1, bff
5600 assume bottom field first
5601 @end table
5602
5603 Default value is @samp{bff}.
5604
5605 @item qp
5606 Set per-block quantization parameter (QP) used by the internal
5607 encoder.
5608
5609 Higher values should result in a smoother motion vector field but less
5610 optimal individual vectors. Default value is 1.
5611 @end table
5612
5613 @section mp
5614
5615 Apply an MPlayer filter to the input video.
5616
5617 This filter provides a wrapper around some of the filters of
5618 MPlayer/MEncoder.
5619
5620 This wrapper is considered experimental. Some of the wrapped filters
5621 may not work properly and we may drop support for them, as they will
5622 be implemented natively into FFmpeg. Thus you should avoid
5623 depending on them when writing portable scripts.
5624
5625 The filter accepts the parameters:
5626 @var{filter_name}[:=]@var{filter_params}
5627
5628 @var{filter_name} is the name of a supported MPlayer filter,
5629 @var{filter_params} is a string containing the parameters accepted by
5630 the named filter.
5631
5632 The list of the currently supported filters follows:
5633 @table @var
5634 @item eq2
5635 @item eq
5636 @item fspp
5637 @item ilpack
5638 @item pp7
5639 @item softpulldown
5640 @item uspp
5641 @end table
5642
5643 The parameter syntax and behavior for the listed filters are the same
5644 of the corresponding MPlayer filters. For detailed instructions check
5645 the "VIDEO FILTERS" section in the MPlayer manual.
5646
5647 @subsection Examples
5648
5649 @itemize
5650 @item
5651 Adjust gamma, brightness, contrast:
5652 @example
5653 mp=eq2=1.0:2:0.5
5654 @end example
5655 @end itemize
5656
5657 See also mplayer(1), @url{http://www.mplayerhq.hu/}.
5658
5659 @section mpdecimate
5660
5661 Drop frames that do not differ greatly from the previous frame in
5662 order to reduce frame rate.
5663
5664 The main use of this filter is for very-low-bitrate encoding
5665 (e.g. streaming over dialup modem), but it could in theory be used for
5666 fixing movies that were inverse-telecined incorrectly.
5667
5668 A description of the accepted options follows.
5669
5670 @table @option
5671 @item max
5672 Set the maximum number of consecutive frames which can be dropped (if
5673 positive), or the minimum interval between dropped frames (if
5674 negative). If the value is 0, the frame is dropped unregarding the
5675 number of previous sequentially dropped frames.
5676
5677 Default value is 0.
5678
5679 @item hi
5680 @item lo
5681 @item frac
5682 Set the dropping threshold values.
5683
5684 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
5685 represent actual pixel value differences, so a threshold of 64
5686 corresponds to 1 unit of difference for each pixel, or the same spread
5687 out differently over the block.
5688
5689 A frame is a candidate for dropping if no 8x8 blocks differ by more
5690 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
5691 meaning the whole image) differ by more than a threshold of @option{lo}.
5692
5693 Default value for @option{hi} is 64*12, default value for @option{lo} is
5694 64*5, and default value for @option{frac} is 0.33.
5695 @end table
5696
5697
5698 @section negate
5699
5700 Negate input video.
5701
5702 This filter accepts an integer in input, if non-zero it negates the
5703 alpha component (if available). The default value in input is 0.
5704
5705 @section noformat
5706
5707 Force libavfilter not to use any of the specified pixel formats for the
5708 input to the next filter.
5709
5710 This filter accepts the following parameters:
5711 @table @option
5712
5713 @item pix_fmts
5714 A '|'-separated list of pixel format names, for example
5715 "pix_fmts=yuv420p|monow|rgb24".
5716
5717 @end table
5718
5719 @subsection Examples
5720
5721 @itemize
5722 @item
5723 Force libavfilter to use a format different from @var{yuv420p} for the
5724 input to the vflip filter:
5725 @example
5726 noformat=pix_fmts=yuv420p,vflip
5727 @end example
5728
5729 @item
5730 Convert the input video to any of the formats not contained in the list:
5731 @example
5732 noformat=yuv420p|yuv444p|yuv410p
5733 @end example
5734 @end itemize
5735
5736 @section noise
5737
5738 Add noise on video input frame.
5739
5740 The filter accepts the following options:
5741
5742 @table @option
5743 @item all_seed
5744 @item c0_seed
5745 @item c1_seed
5746 @item c2_seed
5747 @item c3_seed
5748 Set noise seed for specific pixel component or all pixel components in case
5749 of @var{all_seed}. Default value is @code{123457}.
5750
5751 @item all_strength, alls
5752 @item c0_strength, c0s
5753 @item c1_strength, c1s
5754 @item c2_strength, c2s
5755 @item c3_strength, c3s
5756 Set noise strength for specific pixel component or all pixel components in case
5757 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
5758
5759 @item all_flags, allf
5760 @item c0_flags, c0f
5761 @item c1_flags, c1f
5762 @item c2_flags, c2f
5763 @item c3_flags, c3f
5764 Set pixel component flags or set flags for all components if @var{all_flags}.
5765 Available values for component flags are:
5766 @table @samp
5767 @item a
5768 averaged temporal noise (smoother)
5769 @item p
5770 mix random noise with a (semi)regular pattern
5771 @item t
5772 temporal noise (noise pattern changes between frames)
5773 @item u
5774 uniform noise (gaussian otherwise)
5775 @end table
5776 @end table
5777
5778 @subsection Examples
5779
5780 Add temporal and uniform noise to input video:
5781 @example
5782 noise=alls=20:allf=t+u
5783 @end example
5784
5785 @section null
5786
5787 Pass the video source unchanged to the output.
5788
5789 @section ocv
5790
5791 Apply video transform using libopencv.
5792
5793 To enable this filter install libopencv library and headers and
5794 configure FFmpeg with @code{--enable-libopencv}.
5795
5796 This filter accepts the following parameters:
5797
5798 @table @option
5799
5800 @item filter_name
5801 The name of the libopencv filter to apply.
5802
5803 @item filter_params
5804 The parameters to pass to the libopencv filter. If not specified the default
5805 values are assumed.
5806
5807 @end table
5808
5809 Refer to the official libopencv documentation for more precise
5810 information:
5811 @url{http://opencv.willowgarage.com/documentation/c/image_filtering.html}
5812
5813 Follows the list of supported libopencv filters.
5814
5815 @anchor{dilate}
5816 @subsection dilate
5817
5818 Dilate an image by using a specific structuring element.
5819 This filter corresponds to the libopencv function @code{cvDilate}.
5820
5821 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
5822
5823 @var{struct_el} represents a structuring element, and has the syntax:
5824 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
5825
5826 @var{cols} and @var{rows} represent the number of columns and rows of
5827 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
5828 point, and @var{shape} the shape for the structuring element, and
5829 can be one of the values "rect", "cross", "ellipse", "custom".
5830
5831 If the value for @var{shape} is "custom", it must be followed by a
5832 string of the form "=@var{filename}". The file with name
5833 @var{filename} is assumed to represent a binary image, with each
5834 printable character corresponding to a bright pixel. When a custom
5835 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
5836 or columns and rows of the read file are assumed instead.
5837
5838 The default value for @var{struct_el} is "3x3+0x0/rect".
5839
5840 @var{nb_iterations} specifies the number of times the transform is
5841 applied to the image, and defaults to 1.
5842
5843 Follow some example:
5844 @example
5845 # use the default values
5846 ocv=dilate
5847
5848 # dilate using a structuring element with a 5x5 cross, iterate two times
5849 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
5850
5851 # read the shape from the file diamond.shape, iterate two times
5852 # the file diamond.shape may contain a pattern of characters like this:
5853 #   *
5854 #  ***
5855 # *****
5856 #  ***
5857 #   *
5858 # the specified cols and rows are ignored (but not the anchor point coordinates)
5859 ocv=dilate:0x0+2x2/custom=diamond.shape|2
5860 @end example
5861
5862 @subsection erode
5863
5864 Erode an image by using a specific structuring element.
5865 This filter corresponds to the libopencv function @code{cvErode}.
5866
5867 The filter accepts the parameters: @var{struct_el}:@var{nb_iterations},
5868 with the same syntax and semantics as the @ref{dilate} filter.
5869
5870 @subsection smooth
5871
5872 Smooth the input video.
5873
5874 The filter takes the following parameters:
5875 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
5876
5877 @var{type} is the type of smooth filter to apply, and can be one of
5878 the following values: "blur", "blur_no_scale", "median", "gaussian",
5879 "bilateral". The default value is "gaussian".
5880
5881 @var{param1}, @var{param2}, @var{param3}, and @var{param4} are
5882 parameters whose meanings depend on smooth type. @var{param1} and
5883 @var{param2} accept integer positive values or 0, @var{param3} and
5884 @var{param4} accept float values.
5885
5886 The default value for @var{param1} is 3, the default value for the
5887 other parameters is 0.
5888
5889 These parameters correspond to the parameters assigned to the
5890 libopencv function @code{cvSmooth}.
5891
5892 @anchor{overlay}
5893 @section overlay
5894
5895 Overlay one video on top of another.
5896
5897 It takes two inputs and one output, the first input is the "main"
5898 video on which the second input is overlayed.
5899
5900 This filter accepts the following parameters:
5901
5902 A description of the accepted options follows.
5903
5904 @table @option
5905 @item x
5906 @item y
5907 Set the expression for the x and y coordinates of the overlayed video
5908 on the main video. Default value is "0" for both expressions. In case
5909 the expression is invalid, it is set to a huge value (meaning that the
5910 overlay will not be displayed within the output visible area).
5911
5912 @item eof_action
5913 The action to take when EOF is encountered on the secondary input, accepts one
5914 of the following values:
5915
5916 @table @option
5917 @item repeat
5918 repeat the last frame (the default)
5919 @item endall
5920 end both streams
5921 @item pass
5922 pass through the main input
5923 @end table
5924
5925 @item eval
5926 Set when the expressions for @option{x}, and @option{y} are evaluated.
5927
5928 It accepts the following values:
5929 @table @samp
5930 @item init
5931 only evaluate expressions once during the filter initialization or
5932 when a command is processed
5933
5934 @item frame
5935 evaluate expressions for each incoming frame
5936 @end table
5937
5938 Default value is @samp{frame}.
5939
5940 @item shortest
5941 If set to 1, force the output to terminate when the shortest input
5942 terminates. Default value is 0.
5943
5944 @item format
5945 Set the format for the output video.
5946
5947 It accepts the following values:
5948 @table @samp
5949 @item yuv420
5950 force YUV420 output
5951
5952 @item yuv422
5953 force YUV422 output
5954
5955 @item yuv444
5956 force YUV444 output
5957
5958 @item rgb
5959 force RGB output
5960 @end table
5961
5962 Default value is @samp{yuv420}.
5963
5964 @item rgb @emph{(deprecated)}
5965 If set to 1, force the filter to accept inputs in the RGB
5966 color space. Default value is 0. This option is deprecated, use
5967 @option{format} instead.
5968
5969 @item repeatlast
5970 If set to 1, force the filter to draw the last overlay frame over the
5971 main input until the end of the stream. A value of 0 disables this
5972 behavior. Default value is 1.
5973 @end table
5974
5975 The @option{x}, and @option{y} expressions can contain the following
5976 parameters.
5977
5978 @table @option
5979 @item main_w, W
5980 @item main_h, H
5981 main input width and height
5982
5983 @item overlay_w, w
5984 @item overlay_h, h
5985 overlay input width and height
5986
5987 @item x
5988 @item y
5989 the computed values for @var{x} and @var{y}. They are evaluated for
5990 each new frame.
5991
5992 @item hsub
5993 @item vsub
5994 horizontal and vertical chroma subsample values of the output
5995 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
5996 @var{vsub} is 1.
5997
5998 @item n
5999 the number of input frame, starting from 0
6000
6001 @item pos
6002 the position in the file of the input frame, NAN if unknown
6003
6004 @item t
6005 timestamp expressed in seconds, NAN if the input timestamp is unknown
6006
6007 @end table
6008
6009 Note that the @var{n}, @var{pos}, @var{t} variables are available only
6010 when evaluation is done @emph{per frame}, and will evaluate to NAN
6011 when @option{eval} is set to @samp{init}.
6012
6013 Be aware that frames are taken from each input video in timestamp
6014 order, hence, if their initial timestamps differ, it is a good idea
6015 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
6016 have them begin in the same zero timestamp, as it does the example for
6017 the @var{movie} filter.
6018
6019 You can chain together more overlays but you should test the
6020 efficiency of such approach.
6021
6022 @subsection Commands
6023
6024 This filter supports the following commands:
6025 @table @option
6026 @item x
6027 @item y
6028 Modify the x and y of the overlay input.
6029 The command accepts the same syntax of the corresponding option.
6030
6031 If the specified expression is not valid, it is kept at its current
6032 value.
6033 @end table
6034
6035 @subsection Examples
6036
6037 @itemize
6038 @item
6039 Draw the overlay at 10 pixels from the bottom right corner of the main
6040 video:
6041 @example
6042 overlay=main_w-overlay_w-10:main_h-overlay_h-10
6043 @end example
6044
6045 Using named options the example above becomes:
6046 @example
6047 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
6048 @end example
6049
6050 @item
6051 Insert a transparent PNG logo in the bottom left corner of the input,
6052 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
6053 @example
6054 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
6055 @end example
6056
6057 @item
6058 Insert 2 different transparent PNG logos (second logo on bottom
6059 right corner) using the @command{ffmpeg} tool:
6060 @example
6061 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
6062 @end example
6063
6064 @item
6065 Add a transparent color layer on top of the main video, @code{WxH}
6066 must specify the size of the main input to the overlay filter:
6067 @example
6068 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
6069 @end example
6070
6071 @item
6072 Play an original video and a filtered version (here with the deshake
6073 filter) side by side using the @command{ffplay} tool:
6074 @example
6075 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
6076 @end example
6077
6078 The above command is the same as:
6079 @example
6080 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
6081 @end example
6082
6083 @item
6084 Make a sliding overlay appearing from the left to the right top part of the
6085 screen starting since time 2:
6086 @example
6087 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
6088 @end example
6089
6090 @item
6091 Compose output by putting two input videos side to side:
6092 @example
6093 ffmpeg -i left.avi -i right.avi -filter_complex "
6094 nullsrc=size=200x100 [background];
6095 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
6096 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
6097 [background][left]       overlay=shortest=1       [background+left];
6098 [background+left][right] overlay=shortest=1:x=100 [left+right]
6099 "
6100 @end example
6101
6102 @item
6103 mask 10-20 seconds of a video by applying the delogo filter to a section
6104 @example
6105 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
6106 -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]'
6107 masked.avi
6108 @end example
6109
6110 @item
6111 Chain several overlays in cascade:
6112 @example
6113 nullsrc=s=200x200 [bg];
6114 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
6115 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
6116 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
6117 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
6118 [in3] null,       [mid2] overlay=100:100 [out0]
6119 @end example
6120
6121 @end itemize
6122
6123 @section owdenoise
6124
6125 Apply Overcomplete Wavelet denoiser.
6126
6127 The filter accepts the following options:
6128
6129 @table @option
6130 @item depth
6131 Set depth.
6132
6133 Larger depth values will denoise lower frequency components more, but
6134 slow down filtering.
6135
6136 Must be an int in the range 8-16, default is @code{8}.
6137
6138 @item luma_strength, ls
6139 Set luma strength.
6140
6141 Must be a double value in the range 0-1000, default is @code{1.0}.
6142
6143 @item chroma_strength, cs
6144 Set chroma strength.
6145
6146 Must be a double value in the range 0-1000, default is @code{1.0}.
6147 @end table
6148
6149 @section pad
6150
6151 Add paddings to the input image, and place the original input at the
6152 given coordinates @var{x}, @var{y}.
6153
6154 This filter accepts the following parameters:
6155
6156 @table @option
6157 @item width, w
6158 @item height, h
6159 Specify an expression for the size of the output image with the
6160 paddings added. If the value for @var{width} or @var{height} is 0, the
6161 corresponding input size is used for the output.
6162
6163 The @var{width} expression can reference the value set by the
6164 @var{height} expression, and vice versa.
6165
6166 The default value of @var{width} and @var{height} is 0.
6167
6168 @item x
6169 @item y
6170 Specify an expression for the offsets where to place the input image
6171 in the padded area with respect to the top/left border of the output
6172 image.
6173
6174 The @var{x} expression can reference the value set by the @var{y}
6175 expression, and vice versa.
6176
6177 The default value of @var{x} and @var{y} is 0.
6178
6179 @item color
6180 Specify the color of the padded area. For the syntax of this option,
6181 check the "Color" section in the ffmpeg-utils manual.
6182
6183 The default value of @var{color} is "black".
6184 @end table
6185
6186 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
6187 options are expressions containing the following constants:
6188
6189 @table @option
6190 @item in_w
6191 @item in_h
6192 the input video width and height
6193
6194 @item iw
6195 @item ih
6196 same as @var{in_w} and @var{in_h}
6197
6198 @item out_w
6199 @item out_h
6200 the output width and height, that is the size of the padded area as
6201 specified by the @var{width} and @var{height} expressions
6202
6203 @item ow
6204 @item oh
6205 same as @var{out_w} and @var{out_h}
6206
6207 @item x
6208 @item y
6209 x and y offsets as specified by the @var{x} and @var{y}
6210 expressions, or NAN if not yet specified
6211
6212 @item a
6213 same as @var{iw} / @var{ih}
6214
6215 @item sar
6216 input sample aspect ratio
6217
6218 @item dar
6219 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
6220
6221 @item hsub
6222 @item vsub
6223 horizontal and vertical chroma subsample values. For example for the
6224 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6225 @end table
6226
6227 @subsection Examples
6228
6229 @itemize
6230 @item
6231 Add paddings with color "violet" to the input video. Output video
6232 size is 640x480, the top-left corner of the input video is placed at
6233 column 0, row 40:
6234 @example
6235 pad=640:480:0:40:violet
6236 @end example
6237
6238 The example above is equivalent to the following command:
6239 @example
6240 pad=width=640:height=480:x=0:y=40:color=violet
6241 @end example
6242
6243 @item
6244 Pad the input to get an output with dimensions increased by 3/2,
6245 and put the input video at the center of the padded area:
6246 @example
6247 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
6248 @end example
6249
6250 @item
6251 Pad the input to get a squared output with size equal to the maximum
6252 value between the input width and height, and put the input video at
6253 the center of the padded area:
6254 @example
6255 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
6256 @end example
6257
6258 @item
6259 Pad the input to get a final w/h ratio of 16:9:
6260 @example
6261 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
6262 @end example
6263
6264 @item
6265 In case of anamorphic video, in order to set the output display aspect
6266 correctly, it is necessary to use @var{sar} in the expression,
6267 according to the relation:
6268 @example
6269 (ih * X / ih) * sar = output_dar
6270 X = output_dar / sar
6271 @end example
6272
6273 Thus the previous example needs to be modified to:
6274 @example
6275 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
6276 @end example
6277
6278 @item
6279 Double output size and put the input video in the bottom-right
6280 corner of the output padded area:
6281 @example
6282 pad="2*iw:2*ih:ow-iw:oh-ih"
6283 @end example
6284 @end itemize
6285
6286 @section perspective
6287
6288 Correct perspective of video not recorded perpendicular to the screen.
6289
6290 A description of the accepted parameters follows.
6291
6292 @table @option
6293 @item x0
6294 @item y0
6295 @item x1
6296 @item y1
6297 @item x2
6298 @item y2
6299 @item x3
6300 @item y3
6301 Set coordinates expression for top left, top right, bottom left and bottom right corners.
6302 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
6303
6304 The expressions can use the following variables:
6305
6306 @table @option
6307 @item W
6308 @item H
6309 the width and height of video frame.
6310 @end table
6311
6312 @item interpolation
6313 Set interpolation for perspective correction.
6314
6315 It accepts the following values:
6316 @table @samp
6317 @item linear
6318 @item cubic
6319 @end table
6320
6321 Default value is @samp{linear}.
6322 @end table
6323
6324 @section phase
6325
6326 Delay interlaced video by one field time so that the field order changes.
6327
6328 The intended use is to fix PAL movies that have been captured with the
6329 opposite field order to the film-to-video transfer.
6330
6331 A description of the accepted parameters follows.
6332
6333 @table @option
6334 @item mode
6335 Set phase mode.
6336
6337 It accepts the following values:
6338 @table @samp
6339 @item t
6340 Capture field order top-first, transfer bottom-first.
6341 Filter will delay the bottom field.
6342
6343 @item b
6344 Capture field order bottom-first, transfer top-first.
6345 Filter will delay the top field.
6346
6347 @item p
6348 Capture and transfer with the same field order. This mode only exists
6349 for the documentation of the other options to refer to, but if you
6350 actually select it, the filter will faithfully do nothing.
6351
6352 @item a
6353 Capture field order determined automatically by field flags, transfer
6354 opposite.
6355 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
6356 basis using field flags. If no field information is available,
6357 then this works just like @samp{u}.
6358
6359 @item u
6360 Capture unknown or varying, transfer opposite.
6361 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
6362 analyzing the images and selecting the alternative that produces best
6363 match between the fields.
6364
6365 @item T
6366 Capture top-first, transfer unknown or varying.
6367 Filter selects among @samp{t} and @samp{p} using image analysis.
6368
6369 @item B
6370 Capture bottom-first, transfer unknown or varying.
6371 Filter selects among @samp{b} and @samp{p} using image analysis.
6372
6373 @item A
6374 Capture determined by field flags, transfer unknown or varying.
6375 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
6376 image analysis. If no field information is available, then this works just
6377 like @samp{U}. This is the default mode.
6378
6379 @item U
6380 Both capture and transfer unknown or varying.
6381 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
6382 @end table
6383 @end table
6384
6385 @section pixdesctest
6386
6387 Pixel format descriptor test filter, mainly useful for internal
6388 testing. The output video should be equal to the input video.
6389
6390 For example:
6391 @example
6392 format=monow, pixdesctest
6393 @end example
6394
6395 can be used to test the monowhite pixel format descriptor definition.
6396
6397 @section pp
6398
6399 Enable the specified chain of postprocessing subfilters using libpostproc. This
6400 library should be automatically selected with a GPL build (@code{--enable-gpl}).
6401 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
6402 Each subfilter and some options have a short and a long name that can be used
6403 interchangeably, i.e. dr/dering are the same.
6404
6405 The filters accept the following options:
6406
6407 @table @option
6408 @item subfilters
6409 Set postprocessing subfilters string.
6410 @end table
6411
6412 All subfilters share common options to determine their scope:
6413
6414 @table @option
6415 @item a/autoq
6416 Honor the quality commands for this subfilter.
6417
6418 @item c/chrom
6419 Do chrominance filtering, too (default).
6420
6421 @item y/nochrom
6422 Do luminance filtering only (no chrominance).
6423
6424 @item n/noluma
6425 Do chrominance filtering only (no luminance).
6426 @end table
6427
6428 These options can be appended after the subfilter name, separated by a '|'.
6429
6430 Available subfilters are:
6431
6432 @table @option
6433 @item hb/hdeblock[|difference[|flatness]]
6434 Horizontal deblocking filter
6435 @table @option
6436 @item difference
6437 Difference factor where higher values mean more deblocking (default: @code{32}).
6438 @item flatness
6439 Flatness threshold where lower values mean more deblocking (default: @code{39}).
6440 @end table
6441
6442 @item vb/vdeblock[|difference[|flatness]]
6443 Vertical deblocking filter
6444 @table @option
6445 @item difference
6446 Difference factor where higher values mean more deblocking (default: @code{32}).
6447 @item flatness
6448 Flatness threshold where lower values mean more deblocking (default: @code{39}).
6449 @end table
6450
6451 @item ha/hadeblock[|difference[|flatness]]
6452 Accurate horizontal deblocking filter
6453 @table @option
6454 @item difference
6455 Difference factor where higher values mean more deblocking (default: @code{32}).
6456 @item flatness
6457 Flatness threshold where lower values mean more deblocking (default: @code{39}).
6458 @end table
6459
6460 @item va/vadeblock[|difference[|flatness]]
6461 Accurate vertical deblocking filter
6462 @table @option
6463 @item difference
6464 Difference factor where higher values mean more deblocking (default: @code{32}).
6465 @item flatness
6466 Flatness threshold where lower values mean more deblocking (default: @code{39}).
6467 @end table
6468 @end table
6469
6470 The horizontal and vertical deblocking filters share the difference and
6471 flatness values so you cannot set different horizontal and vertical
6472 thresholds.
6473
6474 @table @option
6475 @item h1/x1hdeblock
6476 Experimental horizontal deblocking filter
6477
6478 @item v1/x1vdeblock
6479 Experimental vertical deblocking filter
6480
6481 @item dr/dering
6482 Deringing filter
6483
6484 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
6485 @table @option
6486 @item threshold1
6487 larger -> stronger filtering
6488 @item threshold2
6489 larger -> stronger filtering
6490 @item threshold3
6491 larger -> stronger filtering
6492 @end table
6493
6494 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
6495 @table @option
6496 @item f/fullyrange
6497 Stretch luminance to @code{0-255}.
6498 @end table
6499
6500 @item lb/linblenddeint
6501 Linear blend deinterlacing filter that deinterlaces the given block by
6502 filtering all lines with a @code{(1 2 1)} filter.
6503
6504 @item li/linipoldeint
6505 Linear interpolating deinterlacing filter that deinterlaces the given block by
6506 linearly interpolating every second line.
6507
6508 @item ci/cubicipoldeint
6509 Cubic interpolating deinterlacing filter deinterlaces the given block by
6510 cubically interpolating every second line.
6511
6512 @item md/mediandeint
6513 Median deinterlacing filter that deinterlaces the given block by applying a
6514 median filter to every second line.
6515
6516 @item fd/ffmpegdeint
6517 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
6518 second line with a @code{(-1 4 2 4 -1)} filter.
6519
6520 @item l5/lowpass5
6521 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
6522 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
6523
6524 @item fq/forceQuant[|quantizer]
6525 Overrides the quantizer table from the input with the constant quantizer you
6526 specify.
6527 @table @option
6528 @item quantizer
6529 Quantizer to use
6530 @end table
6531
6532 @item de/default
6533 Default pp filter combination (@code{hb|a,vb|a,dr|a})
6534
6535 @item fa/fast
6536 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
6537
6538 @item ac
6539 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
6540 @end table
6541
6542 @subsection Examples
6543
6544 @itemize
6545 @item
6546 Apply horizontal and vertical deblocking, deringing and automatic
6547 brightness/contrast:
6548 @example
6549 pp=hb/vb/dr/al
6550 @end example
6551
6552 @item
6553 Apply default filters without brightness/contrast correction:
6554 @example
6555 pp=de/-al
6556 @end example
6557
6558 @item
6559 Apply default filters and temporal denoiser:
6560 @example
6561 pp=default/tmpnoise|1|2|3
6562 @end example
6563
6564 @item
6565 Apply deblocking on luminance only, and switch vertical deblocking on or off
6566 automatically depending on available CPU time:
6567 @example
6568 pp=hb|y/vb|a
6569 @end example
6570 @end itemize
6571
6572 @section psnr
6573
6574 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
6575 Ratio) between two input videos.
6576
6577 This filter takes in input two input videos, the first input is
6578 considered the "main" source and is passed unchanged to the
6579 output. The second input is used as a "reference" video for computing
6580 the PSNR.
6581
6582 Both video inputs must have the same resolution and pixel format for
6583 this filter to work correctly. Also it assumes that both inputs
6584 have the same number of frames, which are compared one by one.
6585
6586 The obtained average PSNR is printed through the logging system.
6587
6588 The filter stores the accumulated MSE (mean squared error) of each
6589 frame, and at the end of the processing it is averaged across all frames
6590 equally, and the following formula is applied to obtain the PSNR:
6591
6592 @example
6593 PSNR = 10*log10(MAX^2/MSE)
6594 @end example
6595
6596 Where MAX is the average of the maximum values of each component of the
6597 image.
6598
6599 The description of the accepted parameters follows.
6600
6601 @table @option
6602 @item stats_file, f
6603 If specified the filter will use the named file to save the PSNR of
6604 each individual frame.
6605 @end table
6606
6607 The file printed if @var{stats_file} is selected, contains a sequence of
6608 key/value pairs of the form @var{key}:@var{value} for each compared
6609 couple of frames.
6610
6611 A description of each shown parameter follows:
6612
6613 @table @option
6614 @item n
6615 sequential number of the input frame, starting from 1
6616
6617 @item mse_avg
6618 Mean Square Error pixel-by-pixel average difference of the compared
6619 frames, averaged over all the image components.
6620
6621 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_g, mse_a
6622 Mean Square Error pixel-by-pixel average difference of the compared
6623 frames for the component specified by the suffix.
6624
6625 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
6626 Peak Signal to Noise ratio of the compared frames for the component
6627 specified by the suffix.
6628 @end table
6629
6630 For example:
6631 @example
6632 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
6633 [main][ref] psnr="stats_file=stats.log" [out]
6634 @end example
6635
6636 On this example the input file being processed is compared with the
6637 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
6638 is stored in @file{stats.log}.
6639
6640 @section pullup
6641
6642 Pulldown reversal (inverse telecine) filter, capable of handling mixed
6643 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
6644 content.
6645
6646 The pullup filter is designed to take advantage of future context in making
6647 its decisions. This filter is stateless in the sense that it does not lock
6648 onto a pattern to follow, but it instead looks forward to the following
6649 fields in order to identify matches and rebuild progressive frames.
6650
6651 To produce content with an even framerate, insert the fps filter after
6652 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
6653 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
6654
6655 The filter accepts the following options:
6656
6657 @table @option
6658 @item jl
6659 @item jr
6660 @item jt
6661 @item jb
6662 These options set the amount of "junk" to ignore at the left, right, top, and
6663 bottom of the image, respectively. Left and right are in units of 8 pixels,
6664 while top and bottom are in units of 2 lines.
6665 The default is 8 pixels on each side.
6666
6667 @item sb
6668 Set the strict breaks. Setting this option to 1 will reduce the chances of
6669 filter generating an occasional mismatched frame, but it may also cause an
6670 excessive number of frames to be dropped during high motion sequences.
6671 Conversely, setting it to -1 will make filter match fields more easily.
6672 This may help processing of video where there is slight blurring between
6673 the fields, but may also cause there to be interlaced frames in the output.
6674 Default value is @code{0}.
6675
6676 @item mp
6677 Set the metric plane to use. It accepts the following values:
6678 @table @samp
6679 @item l
6680 Use luma plane.
6681
6682 @item u
6683 Use chroma blue plane.
6684
6685 @item v
6686 Use chroma red plane.
6687 @end table
6688
6689 This option may be set to use chroma plane instead of the default luma plane
6690 for doing filter's computations. This may improve accuracy on very clean
6691 source material, but more likely will decrease accuracy, especially if there
6692 is chroma noise (rainbow effect) or any grayscale video.
6693 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
6694 load and make pullup usable in realtime on slow machines.
6695 @end table
6696
6697 For best results (without duplicated frames in the output file) it is
6698 necessary to change the output frame rate. For example, to inverse
6699 telecine NTSC input:
6700 @example
6701 ffmpeg -i input -vf pullup -r 24000/1001 ...
6702 @end example
6703
6704 @section removelogo
6705
6706 Suppress a TV station logo, using an image file to determine which
6707 pixels comprise the logo. It works by filling in the pixels that
6708 comprise the logo with neighboring pixels.
6709
6710 The filter accepts the following options:
6711
6712 @table @option
6713 @item filename, f
6714 Set the filter bitmap file, which can be any image format supported by
6715 libavformat. The width and height of the image file must match those of the
6716 video stream being processed.
6717 @end table
6718
6719 Pixels in the provided bitmap image with a value of zero are not
6720 considered part of the logo, non-zero pixels are considered part of
6721 the logo. If you use white (255) for the logo and black (0) for the
6722 rest, you will be safe. For making the filter bitmap, it is
6723 recommended to take a screen capture of a black frame with the logo
6724 visible, and then using a threshold filter followed by the erode
6725 filter once or twice.
6726
6727 If needed, little splotches can be fixed manually. Remember that if
6728 logo pixels are not covered, the filter quality will be much
6729 reduced. Marking too many pixels as part of the logo does not hurt as
6730 much, but it will increase the amount of blurring needed to cover over
6731 the image and will destroy more information than necessary, and extra
6732 pixels will slow things down on a large logo.
6733
6734 @section rotate
6735
6736 Rotate video by an arbitrary angle expressed in radians.
6737
6738 The filter accepts the following options:
6739
6740 A description of the optional parameters follows.
6741 @table @option
6742 @item angle, a
6743 Set an expression for the angle by which to rotate the input video
6744 clockwise, expressed as a number of radians. A negative value will
6745 result in a counter-clockwise rotation. By default it is set to "0".
6746
6747 This expression is evaluated for each frame.
6748
6749 @item out_w, ow
6750 Set the output width expression, default value is "iw".
6751 This expression is evaluated just once during configuration.
6752
6753 @item out_h, oh
6754 Set the output height expression, default value is "ih".
6755 This expression is evaluated just once during configuration.
6756
6757 @item bilinear
6758 Enable bilinear interpolation if set to 1, a value of 0 disables
6759 it. Default value is 1.
6760
6761 @item fillcolor, c
6762 Set the color used to fill the output area not covered by the rotated
6763 image. For the generalsyntax of this option, check the "Color" section in the
6764 ffmpeg-utils manual. If the special value "none" is selected then no
6765 background is printed (useful for example if the background is never shown).
6766
6767 Default value is "black".
6768 @end table
6769
6770 The expressions for the angle and the output size can contain the
6771 following constants and functions:
6772
6773 @table @option
6774 @item n
6775 sequential number of the input frame, starting from 0. It is always NAN
6776 before the first frame is filtered.
6777
6778 @item t
6779 time in seconds of the input frame, it is set to 0 when the filter is
6780 configured. It is always NAN before the first frame is filtered.
6781
6782 @item hsub
6783 @item vsub
6784 horizontal and vertical chroma subsample values. For example for the
6785 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6786
6787 @item in_w, iw
6788 @item in_h, ih
6789 the input video width and height
6790
6791 @item out_w, ow
6792 @item out_h, oh
6793 the output width and height, that is the size of the padded area as
6794 specified by the @var{width} and @var{height} expressions
6795
6796 @item rotw(a)
6797 @item roth(a)
6798 the minimal width/height required for completely containing the input
6799 video rotated by @var{a} radians.
6800
6801 These are only available when computing the @option{out_w} and
6802 @option{out_h} expressions.
6803 @end table
6804
6805 @subsection Examples
6806
6807 @itemize
6808 @item
6809 Rotate the input by PI/6 radians clockwise:
6810 @example
6811 rotate=PI/6
6812 @end example
6813
6814 @item
6815 Rotate the input by PI/6 radians counter-clockwise:
6816 @example
6817 rotate=-PI/6
6818 @end example
6819
6820 @item
6821 Rotate the input by 45 degrees clockwise:
6822 @example
6823 rotate=45*PI/180
6824 @end example
6825
6826 @item
6827 Apply a constant rotation with period T, starting from an angle of PI/3:
6828 @example
6829 rotate=PI/3+2*PI*t/T
6830 @end example
6831
6832 @item
6833 Make the input video rotation oscillating with a period of T
6834 seconds and an amplitude of A radians:
6835 @example
6836 rotate=A*sin(2*PI/T*t)
6837 @end example
6838
6839 @item
6840 Rotate the video, output size is choosen so that the whole rotating
6841 input video is always completely contained in the output:
6842 @example
6843 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
6844 @end example
6845
6846 @item
6847 Rotate the video, reduce the output size so that no background is ever
6848 shown:
6849 @example
6850 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
6851 @end example
6852 @end itemize
6853
6854 @subsection Commands
6855
6856 The filter supports the following commands:
6857
6858 @table @option
6859 @item a, angle
6860 Set the angle expression.
6861 The command accepts the same syntax of the corresponding option.
6862
6863 If the specified expression is not valid, it is kept at its current
6864 value.
6865 @end table
6866
6867 @section sab
6868
6869 Apply Shape Adaptive Blur.
6870
6871 The filter accepts the following options:
6872
6873 @table @option
6874 @item luma_radius, lr
6875 Set luma blur filter strength, must be a value in range 0.1-4.0, default
6876 value is 1.0. A greater value will result in a more blurred image, and
6877 in slower processing.
6878
6879 @item luma_pre_filter_radius, lpfr
6880 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
6881 value is 1.0.
6882
6883 @item luma_strength, ls
6884 Set luma maximum difference between pixels to still be considered, must
6885 be a value in the 0.1-100.0 range, default value is 1.0.
6886
6887 @item chroma_radius, cr
6888 Set chroma blur filter strength, must be a value in range 0.1-4.0. A
6889 greater value will result in a more blurred image, and in slower
6890 processing.
6891
6892 @item chroma_pre_filter_radius, cpfr
6893 Set chroma pre-filter radius, must be a value in the 0.1-2.0 range.
6894
6895 @item chroma_strength, cs
6896 Set chroma maximum difference between pixels to still be considered,
6897 must be a value in the 0.1-100.0 range.
6898 @end table
6899
6900 Each chroma option value, if not explicitly specified, is set to the
6901 corresponding luma option value.
6902
6903 @anchor{scale}
6904 @section scale
6905
6906 Scale (resize) the input video, using the libswscale library.
6907
6908 The scale filter forces the output display aspect ratio to be the same
6909 of the input, by changing the output sample aspect ratio.
6910
6911 If the input image format is different from the format requested by
6912 the next filter, the scale filter will convert the input to the
6913 requested format.
6914
6915 @subsection Options
6916 The filter accepts the following options, or any of the options
6917 supported by the libswscale scaler.
6918
6919 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
6920 the complete list of scaler options.
6921
6922 @table @option
6923 @item width, w
6924 @item height, h
6925 Set the output video dimension expression. Default value is the input
6926 dimension.
6927
6928 If the value is 0, the input width is used for the output.
6929
6930 If one of the values is -1, the scale filter will use a value that
6931 maintains the aspect ratio of the input image, calculated from the
6932 other specified dimension. If both of them are -1, the input size is
6933 used
6934
6935 If one of the values is -n with n > 1, the scale filter will also use a value
6936 that maintains the aspect ratio of the input image, calculated from the other
6937 specified dimension. After that it will, however, make sure that the calculated
6938 dimension is divisible by n and adjust the value if necessary.
6939
6940 See below for the list of accepted constants for use in the dimension
6941 expression.
6942
6943 @item interl
6944 Set the interlacing mode. It accepts the following values:
6945
6946 @table @samp
6947 @item 1
6948 Force interlaced aware scaling.
6949
6950 @item 0
6951 Do not apply interlaced scaling.
6952
6953 @item -1
6954 Select interlaced aware scaling depending on whether the source frames
6955 are flagged as interlaced or not.
6956 @end table
6957
6958 Default value is @samp{0}.
6959
6960 @item flags
6961 Set libswscale scaling flags. See
6962 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
6963 complete list of values. If not explictly specified the filter applies
6964 the default flags.
6965
6966 @item size, s
6967 Set the video size. For the syntax of this option, check the "Video size"
6968 section in the ffmpeg-utils manual.
6969
6970 @item in_color_matrix
6971 @item out_color_matrix
6972 Set in/output YCbCr color space type.
6973
6974 This allows the autodetected value to be overridden as well as allows forcing
6975 a specific value used for the output and encoder.
6976
6977 If not specified, the color space type depends on the pixel format.
6978
6979 Possible values:
6980
6981 @table @samp
6982 @item auto
6983 Choose automatically.
6984
6985 @item bt709
6986 Format conforming to International Telecommunication Union (ITU)
6987 Recommendation BT.709.
6988
6989 @item fcc
6990 Set color space conforming to the United States Federal Communications
6991 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
6992
6993 @item bt601
6994 Set color space conforming to:
6995
6996 @itemize
6997 @item
6998 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
6999
7000 @item
7001 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
7002
7003 @item
7004 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
7005
7006 @end itemize
7007
7008 @item smpte240m
7009 Set color space conforming to SMPTE ST 240:1999.
7010 @end table
7011
7012 @item in_range
7013 @item out_range
7014 Set in/output YCbCr sample range.
7015
7016 This allows the autodetected value to be overridden as well as allows forcing
7017 a specific value used for the output and encoder. If not specified, the
7018 range depends on the pixel format. Possible values:
7019
7020 @table @samp
7021 @item auto
7022 Choose automatically.
7023
7024 @item jpeg/full/pc
7025 Set full range (0-255 in case of 8-bit luma).
7026
7027 @item mpeg/tv
7028 Set "MPEG" range (16-235 in case of 8-bit luma).
7029 @end table
7030
7031 @item force_original_aspect_ratio
7032 Enable decreasing or increasing output video width or height if necessary to
7033 keep the original aspect ratio. Possible values:
7034
7035 @table @samp
7036 @item disable
7037 Scale the video as specified and disable this feature.
7038
7039 @item decrease
7040 The output video dimensions will automatically be decreased if needed.
7041
7042 @item increase
7043 The output video dimensions will automatically be increased if needed.
7044
7045 @end table
7046
7047 One useful instance of this option is that when you know a specific device's
7048 maximum allowed resolution, you can use this to limit the output video to
7049 that, while retaining the aspect ratio. For example, device A allows
7050 1280x720 playback, and your video is 1920x800. Using this option (set it to
7051 decrease) and specifying 1280x720 to the command line makes the output
7052 1280x533.
7053
7054 Please note that this is a different thing than specifying -1 for @option{w}
7055 or @option{h}, you still need to specify the output resolution for this option
7056 to work.
7057
7058 @end table
7059
7060 The values of the @option{w} and @option{h} options are expressions
7061 containing the following constants:
7062
7063 @table @var
7064 @item in_w
7065 @item in_h
7066 the input width and height
7067
7068 @item iw
7069 @item ih
7070 same as @var{in_w} and @var{in_h}
7071
7072 @item out_w
7073 @item out_h
7074 the output (scaled) width and height
7075
7076 @item ow
7077 @item oh
7078 same as @var{out_w} and @var{out_h}
7079
7080 @item a
7081 same as @var{iw} / @var{ih}
7082
7083 @item sar
7084 input sample aspect ratio
7085
7086 @item dar
7087 input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
7088
7089 @item hsub
7090 @item vsub
7091 horizontal and vertical input chroma subsample values. For example for the
7092 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
7093
7094 @item ohsub
7095 @item ovsub
7096 horizontal and vertical output chroma subsample values. For example for the
7097 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
7098 @end table
7099
7100 @subsection Examples
7101
7102 @itemize
7103 @item
7104 Scale the input video to a size of 200x100:
7105 @example
7106 scale=w=200:h=100
7107 @end example
7108
7109 This is equivalent to:
7110 @example
7111 scale=200:100
7112 @end example
7113
7114 or:
7115 @example
7116 scale=200x100
7117 @end example
7118
7119 @item
7120 Specify a size abbreviation for the output size:
7121 @example
7122 scale=qcif
7123 @end example
7124
7125 which can also be written as:
7126 @example
7127 scale=size=qcif
7128 @end example
7129
7130 @item
7131 Scale the input to 2x:
7132 @example
7133 scale=w=2*iw:h=2*ih
7134 @end example
7135
7136 @item
7137 The above is the same as:
7138 @example
7139 scale=2*in_w:2*in_h
7140 @end example
7141
7142 @item
7143 Scale the input to 2x with forced interlaced scaling:
7144 @example
7145 scale=2*iw:2*ih:interl=1
7146 @end example
7147
7148 @item
7149 Scale the input to half size:
7150 @example
7151 scale=w=iw/2:h=ih/2
7152 @end example
7153
7154 @item
7155 Increase the width, and set the height to the same size:
7156 @example
7157 scale=3/2*iw:ow
7158 @end example
7159
7160 @item
7161 Seek for Greek harmony:
7162 @example
7163 scale=iw:1/PHI*iw
7164 scale=ih*PHI:ih
7165 @end example
7166
7167 @item
7168 Increase the height, and set the width to 3/2 of the height:
7169 @example
7170 scale=w=3/2*oh:h=3/5*ih
7171 @end example
7172
7173 @item
7174 Increase the size, but make the size a multiple of the chroma
7175 subsample values:
7176 @example
7177 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
7178 @end example
7179
7180 @item
7181 Increase the width to a maximum of 500 pixels, keep the same input
7182 aspect ratio:
7183 @example
7184 scale=w='min(500\, iw*3/2):h=-1'
7185 @end example
7186 @end itemize
7187
7188 @section separatefields
7189
7190 The @code{separatefields} takes a frame-based video input and splits
7191 each frame into its components fields, producing a new half height clip
7192 with twice the frame rate and twice the frame count.
7193
7194 This filter use field-dominance information in frame to decide which
7195 of each pair of fields to place first in the output.
7196 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
7197
7198 @section setdar, setsar
7199
7200 The @code{setdar} filter sets the Display Aspect Ratio for the filter
7201 output video.
7202
7203 This is done by changing the specified Sample (aka Pixel) Aspect
7204 Ratio, according to the following equation:
7205 @example
7206 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
7207 @end example
7208
7209 Keep in mind that the @code{setdar} filter does not modify the pixel
7210 dimensions of the video frame. Also the display aspect ratio set by
7211 this filter may be changed by later filters in the filterchain,
7212 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
7213 applied.
7214
7215 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
7216 the filter output video.
7217
7218 Note that as a consequence of the application of this filter, the
7219 output display aspect ratio will change according to the equation
7220 above.
7221
7222 Keep in mind that the sample aspect ratio set by the @code{setsar}
7223 filter may be changed by later filters in the filterchain, e.g. if
7224 another "setsar" or a "setdar" filter is applied.
7225
7226 The filters accept the following options:
7227
7228 @table @option
7229 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
7230 Set the aspect ratio used by the filter.
7231
7232 The parameter can be a floating point number string, an expression, or
7233 a string of the form @var{num}:@var{den}, where @var{num} and
7234 @var{den} are the numerator and denominator of the aspect ratio. If
7235 the parameter is not specified, it is assumed the value "0".
7236 In case the form "@var{num}:@var{den}" is used, the @code{:} character
7237 should be escaped.
7238
7239 @item max
7240 Set the maximum integer value to use for expressing numerator and
7241 denominator when reducing the expressed aspect ratio to a rational.
7242 Default value is @code{100}.
7243
7244 @end table
7245
7246 The parameter @var{sar} is an expression containing
7247 the following constants:
7248
7249 @table @option
7250 @item E, PI, PHI
7251 the corresponding mathematical approximated values for e
7252 (euler number), pi (greek PI), phi (golden ratio)
7253
7254 @item w, h
7255 the input width and height
7256
7257 @item a
7258 same as @var{w} / @var{h}
7259
7260 @item sar
7261 input sample aspect ratio
7262
7263 @item dar
7264 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
7265
7266 @item hsub, vsub
7267 horizontal and vertical chroma subsample values. For example for the
7268 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
7269 @end table
7270
7271 @subsection Examples
7272
7273 @itemize
7274
7275 @item
7276 To change the display aspect ratio to 16:9, specify one of the following:
7277 @example
7278 setdar=dar=1.77777
7279 setdar=dar=16/9
7280 setdar=dar=1.77777
7281 @end example
7282
7283 @item
7284 To change the sample aspect ratio to 10:11, specify:
7285 @example
7286 setsar=sar=10/11
7287 @end example
7288
7289 @item
7290 To set a display aspect ratio of 16:9, and specify a maximum integer value of
7291 1000 in the aspect ratio reduction, use the command:
7292 @example
7293 setdar=ratio=16/9:max=1000
7294 @end example
7295
7296 @end itemize
7297
7298 @anchor{setfield}
7299 @section setfield
7300
7301 Force field for the output video frame.
7302
7303 The @code{setfield} filter marks the interlace type field for the
7304 output frames. It does not change the input frame, but only sets the
7305 corresponding property, which affects how the frame is treated by
7306 following filters (e.g. @code{fieldorder} or @code{yadif}).
7307
7308 The filter accepts the following options:
7309
7310 @table @option
7311
7312 @item mode
7313 Available values are:
7314
7315 @table @samp
7316 @item auto
7317 Keep the same field property.
7318
7319 @item bff
7320 Mark the frame as bottom-field-first.
7321
7322 @item tff
7323 Mark the frame as top-field-first.
7324
7325 @item prog
7326 Mark the frame as progressive.
7327 @end table
7328 @end table
7329
7330 @section showinfo
7331
7332 Show a line containing various information for each input video frame.
7333 The input video is not modified.
7334
7335 The shown line contains a sequence of key/value pairs of the form
7336 @var{key}:@var{value}.
7337
7338 A description of each shown parameter follows:
7339
7340 @table @option
7341 @item n
7342 sequential number of the input frame, starting from 0
7343
7344 @item pts
7345 Presentation TimeStamp of the input frame, expressed as a number of
7346 time base units. The time base unit depends on the filter input pad.
7347
7348 @item pts_time
7349 Presentation TimeStamp of the input frame, expressed as a number of
7350 seconds
7351
7352 @item pos
7353 position of the frame in the input stream, -1 if this information in
7354 unavailable and/or meaningless (for example in case of synthetic video)
7355
7356 @item fmt
7357 pixel format name
7358
7359 @item sar
7360 sample aspect ratio of the input frame, expressed in the form
7361 @var{num}/@var{den}
7362
7363 @item s
7364 size of the input frame. For the syntax of this option, check the "Video size"
7365 section in the ffmpeg-utils manual.
7366
7367 @item i
7368 interlaced mode ("P" for "progressive", "T" for top field first, "B"
7369 for bottom field first)
7370
7371 @item iskey
7372 1 if the frame is a key frame, 0 otherwise
7373
7374 @item type
7375 picture type of the input frame ("I" for an I-frame, "P" for a
7376 P-frame, "B" for a B-frame, "?" for unknown type).
7377 Check also the documentation of the @code{AVPictureType} enum and of
7378 the @code{av_get_picture_type_char} function defined in
7379 @file{libavutil/avutil.h}.
7380
7381 @item checksum
7382 Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame
7383
7384 @item plane_checksum
7385 Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
7386 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]"
7387 @end table
7388
7389 @anchor{smartblur}
7390 @section smartblur
7391
7392 Blur the input video without impacting the outlines.
7393
7394 The filter accepts the following options:
7395
7396 @table @option
7397 @item luma_radius, lr
7398 Set the luma radius. The option value must be a float number in
7399 the range [0.1,5.0] that specifies the variance of the gaussian filter
7400 used to blur the image (slower if larger). Default value is 1.0.
7401
7402 @item luma_strength, ls
7403 Set the luma strength. The option value must be a float number
7404 in the range [-1.0,1.0] that configures the blurring. A value included
7405 in [0.0,1.0] will blur the image whereas a value included in
7406 [-1.0,0.0] will sharpen the image. Default value is 1.0.
7407
7408 @item luma_threshold, lt
7409 Set the luma threshold used as a coefficient to determine
7410 whether a pixel should be blurred or not. The option value must be an
7411 integer in the range [-30,30]. A value of 0 will filter all the image,
7412 a value included in [0,30] will filter flat areas and a value included
7413 in [-30,0] will filter edges. Default value is 0.
7414
7415 @item chroma_radius, cr
7416 Set the chroma radius. The option value must be a float number in
7417 the range [0.1,5.0] that specifies the variance of the gaussian filter
7418 used to blur the image (slower if larger). Default value is 1.0.
7419
7420 @item chroma_strength, cs
7421 Set the chroma strength. The option value must be a float number
7422 in the range [-1.0,1.0] that configures the blurring. A value included
7423 in [0.0,1.0] will blur the image whereas a value included in
7424 [-1.0,0.0] will sharpen the image. Default value is 1.0.
7425
7426 @item chroma_threshold, ct
7427 Set the chroma threshold used as a coefficient to determine
7428 whether a pixel should be blurred or not. The option value must be an
7429 integer in the range [-30,30]. A value of 0 will filter all the image,
7430 a value included in [0,30] will filter flat areas and a value included
7431 in [-30,0] will filter edges. Default value is 0.
7432 @end table
7433
7434 If a chroma option is not explicitly set, the corresponding luma value
7435 is set.
7436
7437 @section stereo3d
7438
7439 Convert between different stereoscopic image formats.
7440
7441 The filters accept the following options:
7442
7443 @table @option
7444 @item in
7445 Set stereoscopic image format of input.
7446
7447 Available values for input image formats are:
7448 @table @samp
7449 @item sbsl
7450 side by side parallel (left eye left, right eye right)
7451
7452 @item sbsr
7453 side by side crosseye (right eye left, left eye right)
7454
7455 @item sbs2l
7456 side by side parallel with half width resolution
7457 (left eye left, right eye right)
7458
7459 @item sbs2r
7460 side by side crosseye with half width resolution
7461 (right eye left, left eye right)
7462
7463 @item abl
7464 above-below (left eye above, right eye below)
7465
7466 @item abr
7467 above-below (right eye above, left eye below)
7468
7469 @item ab2l
7470 above-below with half height resolution
7471 (left eye above, right eye below)
7472
7473 @item ab2r
7474 above-below with half height resolution
7475 (right eye above, left eye below)
7476
7477 @item al
7478 alternating frames (left eye first, right eye second)
7479
7480 @item ar
7481 alternating frames (right eye first, left eye second)
7482
7483 Default value is @samp{sbsl}.
7484 @end table
7485
7486 @item out
7487 Set stereoscopic image format of output.
7488
7489 Available values for output image formats are all the input formats as well as:
7490 @table @samp
7491 @item arbg
7492 anaglyph red/blue gray
7493 (red filter on left eye, blue filter on right eye)
7494
7495 @item argg
7496 anaglyph red/green gray
7497 (red filter on left eye, green filter on right eye)
7498
7499 @item arcg
7500 anaglyph red/cyan gray
7501 (red filter on left eye, cyan filter on right eye)
7502
7503 @item arch
7504 anaglyph red/cyan half colored
7505 (red filter on left eye, cyan filter on right eye)
7506
7507 @item arcc
7508 anaglyph red/cyan color
7509 (red filter on left eye, cyan filter on right eye)
7510
7511 @item arcd
7512 anaglyph red/cyan color optimized with the least squares projection of dubois
7513 (red filter on left eye, cyan filter on right eye)
7514
7515 @item agmg
7516 anaglyph green/magenta gray
7517 (green filter on left eye, magenta filter on right eye)
7518
7519 @item agmh
7520 anaglyph green/magenta half colored
7521 (green filter on left eye, magenta filter on right eye)
7522
7523 @item agmc
7524 anaglyph green/magenta colored
7525 (green filter on left eye, magenta filter on right eye)
7526
7527 @item agmd
7528 anaglyph green/magenta color optimized with the least squares projection of dubois
7529 (green filter on left eye, magenta filter on right eye)
7530
7531 @item aybg
7532 anaglyph yellow/blue gray
7533 (yellow filter on left eye, blue filter on right eye)
7534
7535 @item aybh
7536 anaglyph yellow/blue half colored
7537 (yellow filter on left eye, blue filter on right eye)
7538
7539 @item aybc
7540 anaglyph yellow/blue colored
7541 (yellow filter on left eye, blue filter on right eye)
7542
7543 @item aybd
7544 anaglyph yellow/blue color optimized with the least squares projection of dubois
7545 (yellow filter on left eye, blue filter on right eye)
7546
7547 @item irl
7548 interleaved rows (left eye has top row, right eye starts on next row)
7549
7550 @item irr
7551 interleaved rows (right eye has top row, left eye starts on next row)
7552
7553 @item ml
7554 mono output (left eye only)
7555
7556 @item mr
7557 mono output (right eye only)
7558 @end table
7559
7560 Default value is @samp{arcd}.
7561 @end table
7562
7563 @subsection Examples
7564
7565 @itemize
7566 @item
7567 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
7568 @example
7569 stereo3d=sbsl:aybd
7570 @end example
7571
7572 @item
7573 Convert input video from above bellow (left eye above, right eye below) to side by side crosseye.
7574 @example
7575 stereo3d=abl:sbsr
7576 @end example
7577 @end itemize
7578
7579 @section spp
7580
7581 Apply a simple postprocessing filter that compresses and decompresses the image
7582 at several (or - in the case of @option{quality} level @code{6} - all) shifts
7583 and average the results.
7584
7585 The filter accepts the following options:
7586
7587 @table @option
7588 @item quality
7589 Set quality. This option defines the number of levels for averaging. It accepts
7590 an integer in the range 0-6. If set to @code{0}, the filter will have no
7591 effect. A value of @code{6} means the higher quality. For each increment of
7592 that value the speed drops by a factor of approximately 2.  Default value is
7593 @code{3}.
7594
7595 @item qp
7596 Force a constant quantization parameter. If not set, the filter will use the QP
7597 from the video stream (if available).
7598
7599 @item mode
7600 Set thresholding mode. Available modes are:
7601
7602 @table @samp
7603 @item hard
7604 Set hard thresholding (default).
7605 @item soft
7606 Set soft thresholding (better de-ringing effect, but likely blurrier).
7607 @end table
7608
7609 @item use_bframe_qp
7610 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
7611 option may cause flicker since the B-Frames have often larger QP. Default is
7612 @code{0} (not enabled).
7613 @end table
7614
7615 @anchor{subtitles}
7616 @section subtitles
7617
7618 Draw subtitles on top of input video using the libass library.
7619
7620 To enable compilation of this filter you need to configure FFmpeg with
7621 @code{--enable-libass}. This filter also requires a build with libavcodec and
7622 libavformat to convert the passed subtitles file to ASS (Advanced Substation
7623 Alpha) subtitles format.
7624
7625 The filter accepts the following options:
7626
7627 @table @option
7628 @item filename, f
7629 Set the filename of the subtitle file to read. It must be specified.
7630
7631 @item original_size
7632 Specify the size of the original video, the video for which the ASS file
7633 was composed. For the syntax of this option, check the "Video size" section in
7634 the ffmpeg-utils manual. Due to a misdesign in ASS aspect ratio arithmetic,
7635 this is necessary to correctly scale the fonts if the aspect ratio has been
7636 changed.
7637
7638 @item charenc
7639 Set subtitles input character encoding. @code{subtitles} filter only. Only
7640 useful if not UTF-8.
7641 @end table
7642
7643 If the first key is not specified, it is assumed that the first value
7644 specifies the @option{filename}.
7645
7646 For example, to render the file @file{sub.srt} on top of the input
7647 video, use the command:
7648 @example
7649 subtitles=sub.srt
7650 @end example
7651
7652 which is equivalent to:
7653 @example
7654 subtitles=filename=sub.srt
7655 @end example
7656
7657 @section super2xsai
7658
7659 Scale the input by 2x and smooth using the Super2xSaI (Scale and
7660 Interpolate) pixel art scaling algorithm.
7661
7662 Useful for enlarging pixel art images without reducing sharpness.
7663
7664 @section swapuv
7665 Swap U & V plane.
7666
7667 @section telecine
7668
7669 Apply telecine process to the video.
7670
7671 This filter accepts the following options:
7672
7673 @table @option
7674 @item first_field
7675 @table @samp
7676 @item top, t
7677 top field first
7678 @item bottom, b
7679 bottom field first
7680 The default value is @code{top}.
7681 @end table
7682
7683 @item pattern
7684 A string of numbers representing the pulldown pattern you wish to apply.
7685 The default value is @code{23}.
7686 @end table
7687
7688 @example
7689 Some typical patterns:
7690
7691 NTSC output (30i):
7692 27.5p: 32222
7693 24p: 23 (classic)
7694 24p: 2332 (preferred)
7695 20p: 33
7696 18p: 334
7697 16p: 3444
7698
7699 PAL output (25i):
7700 27.5p: 12222
7701 24p: 222222222223 ("Euro pulldown")
7702 16.67p: 33
7703 16p: 33333334
7704 @end example
7705
7706 @section thumbnail
7707 Select the most representative frame in a given sequence of consecutive frames.
7708
7709 The filter accepts the following options:
7710
7711 @table @option
7712 @item n
7713 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
7714 will pick one of them, and then handle the next batch of @var{n} frames until
7715 the end. Default is @code{100}.
7716 @end table
7717
7718 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
7719 value will result in a higher memory usage, so a high value is not recommended.
7720
7721 @subsection Examples
7722
7723 @itemize
7724 @item
7725 Extract one picture each 50 frames:
7726 @example
7727 thumbnail=50
7728 @end example
7729
7730 @item
7731 Complete example of a thumbnail creation with @command{ffmpeg}:
7732 @example
7733 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
7734 @end example
7735 @end itemize
7736
7737 @section tile
7738
7739 Tile several successive frames together.
7740
7741 The filter accepts the following options:
7742
7743 @table @option
7744
7745 @item layout
7746 Set the grid size (i.e. the number of lines and columns). For the syntax of
7747 this option, check the "Video size" section in the ffmpeg-utils manual.
7748
7749 @item nb_frames
7750 Set the maximum number of frames to render in the given area. It must be less
7751 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
7752 the area will be used.
7753
7754 @item margin
7755 Set the outer border margin in pixels.
7756
7757 @item padding
7758 Set the inner border thickness (i.e. the number of pixels between frames). For
7759 more advanced padding options (such as having different values for the edges),
7760 refer to the pad video filter.
7761
7762 @item color
7763 Specify the color of the unused areaFor the syntax of this option, check the
7764 "Color" section in the ffmpeg-utils manual. The default value of @var{color}
7765 is "black".
7766 @end table
7767
7768 @subsection Examples
7769
7770 @itemize
7771 @item
7772 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
7773 @example
7774 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
7775 @end example
7776 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
7777 duplicating each output frame to accomodate the originally detected frame
7778 rate.
7779
7780 @item
7781 Display @code{5} pictures in an area of @code{3x2} frames,
7782 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
7783 mixed flat and named options:
7784 @example
7785 tile=3x2:nb_frames=5:padding=7:margin=2
7786 @end example
7787 @end itemize
7788
7789 @section tinterlace
7790
7791 Perform various types of temporal field interlacing.
7792
7793 Frames are counted starting from 1, so the first input frame is
7794 considered odd.
7795
7796 The filter accepts the following options:
7797
7798 @table @option
7799
7800 @item mode
7801 Specify the mode of the interlacing. This option can also be specified
7802 as a value alone. See below for a list of values for this option.
7803
7804 Available values are:
7805
7806 @table @samp
7807 @item merge, 0
7808 Move odd frames into the upper field, even into the lower field,
7809 generating a double height frame at half frame rate.
7810
7811 @item drop_odd, 1
7812 Only output even frames, odd frames are dropped, generating a frame with
7813 unchanged height at half frame rate.
7814
7815 @item drop_even, 2
7816 Only output odd frames, even frames are dropped, generating a frame with
7817 unchanged height at half frame rate.
7818
7819 @item pad, 3
7820 Expand each frame to full height, but pad alternate lines with black,
7821 generating a frame with double height at the same input frame rate.
7822
7823 @item interleave_top, 4
7824 Interleave the upper field from odd frames with the lower field from
7825 even frames, generating a frame with unchanged height at half frame rate.
7826
7827 @item interleave_bottom, 5
7828 Interleave the lower field from odd frames with the upper field from
7829 even frames, generating a frame with unchanged height at half frame rate.
7830
7831 @item interlacex2, 6
7832 Double frame rate with unchanged height. Frames are inserted each
7833 containing the second temporal field from the previous input frame and
7834 the first temporal field from the next input frame. This mode relies on
7835 the top_field_first flag. Useful for interlaced video displays with no
7836 field synchronisation.
7837 @end table
7838
7839 Numeric values are deprecated but are accepted for backward
7840 compatibility reasons.
7841
7842 Default mode is @code{merge}.
7843
7844 @item flags
7845 Specify flags influencing the filter process.
7846
7847 Available value for @var{flags} is:
7848
7849 @table @option
7850 @item low_pass_filter, vlfp
7851 Enable vertical low-pass filtering in the filter.
7852 Vertical low-pass filtering is required when creating an interlaced
7853 destination from a progressive source which contains high-frequency
7854 vertical detail. Filtering will reduce interlace 'twitter' and Moire
7855 patterning.
7856
7857 Vertical low-pass filtering can only be enabled for @option{mode}
7858 @var{interleave_top} and @var{interleave_bottom}.
7859
7860 @end table
7861 @end table
7862
7863 @section transpose
7864
7865 Transpose rows with columns in the input video and optionally flip it.
7866
7867 This filter accepts the following options:
7868
7869 @table @option
7870
7871 @item dir
7872 Specify the transposition direction.
7873
7874 Can assume the following values:
7875 @table @samp
7876 @item 0, 4, cclock_flip
7877 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
7878 @example
7879 L.R     L.l
7880 . . ->  . .
7881 l.r     R.r
7882 @end example
7883
7884 @item 1, 5, clock
7885 Rotate by 90 degrees clockwise, that is:
7886 @example
7887 L.R     l.L
7888 . . ->  . .
7889 l.r     r.R
7890 @end example
7891
7892 @item 2, 6, cclock
7893 Rotate by 90 degrees counterclockwise, that is:
7894 @example
7895 L.R     R.r
7896 . . ->  . .
7897 l.r     L.l
7898 @end example
7899
7900 @item 3, 7, clock_flip
7901 Rotate by 90 degrees clockwise and vertically flip, that is:
7902 @example
7903 L.R     r.R
7904 . . ->  . .
7905 l.r     l.L
7906 @end example
7907 @end table
7908
7909 For values between 4-7, the transposition is only done if the input
7910 video geometry is portrait and not landscape. These values are
7911 deprecated, the @code{passthrough} option should be used instead.
7912
7913 Numerical values are deprecated, and should be dropped in favor of
7914 symbolic constants.
7915
7916 @item passthrough
7917 Do not apply the transposition if the input geometry matches the one
7918 specified by the specified value. It accepts the following values:
7919 @table @samp
7920 @item none
7921 Always apply transposition.
7922 @item portrait
7923 Preserve portrait geometry (when @var{height} >= @var{width}).
7924 @item landscape
7925 Preserve landscape geometry (when @var{width} >= @var{height}).
7926 @end table
7927
7928 Default value is @code{none}.
7929 @end table
7930
7931 For example to rotate by 90 degrees clockwise and preserve portrait
7932 layout:
7933 @example
7934 transpose=dir=1:passthrough=portrait
7935 @end example
7936
7937 The command above can also be specified as:
7938 @example
7939 transpose=1:portrait
7940 @end example
7941
7942 @section trim
7943 Trim the input so that the output contains one continuous subpart of the input.
7944
7945 This filter accepts the following options:
7946 @table @option
7947 @item start
7948 Specify time of the start of the kept section, i.e. the frame with the
7949 timestamp @var{start} will be the first frame in the output.
7950
7951 @item end
7952 Specify time of the first frame that will be dropped, i.e. the frame
7953 immediately preceding the one with the timestamp @var{end} will be the last
7954 frame in the output.
7955
7956 @item start_pts
7957 Same as @var{start}, except this option sets the start timestamp in timebase
7958 units instead of seconds.
7959
7960 @item end_pts
7961 Same as @var{end}, except this option sets the end timestamp in timebase units
7962 instead of seconds.
7963
7964 @item duration
7965 Specify maximum duration of the output.
7966
7967 @item start_frame
7968 Number of the first frame that should be passed to output.
7969
7970 @item end_frame
7971 Number of the first frame that should be dropped.
7972 @end table
7973
7974 @option{start}, @option{end}, @option{duration} are expressed as time
7975 duration specifications, check the "Time duration" section in the
7976 ffmpeg-utils manual.
7977
7978 Note that the first two sets of the start/end options and the @option{duration}
7979 option look at the frame timestamp, while the _frame variants simply count the
7980 frames that pass through the filter. Also note that this filter does not modify
7981 the timestamps. If you wish that the output timestamps start at zero, insert a
7982 setpts filter after the trim filter.
7983
7984 If multiple start or end options are set, this filter tries to be greedy and
7985 keep all the frames that match at least one of the specified constraints. To keep
7986 only the part that matches all the constraints at once, chain multiple trim
7987 filters.
7988
7989 The defaults are such that all the input is kept. So it is possible to set e.g.
7990 just the end values to keep everything before the specified time.
7991
7992 Examples:
7993 @itemize
7994 @item
7995 drop everything except the second minute of input
7996 @example
7997 ffmpeg -i INPUT -vf trim=60:120
7998 @end example
7999
8000 @item
8001 keep only the first second
8002 @example
8003 ffmpeg -i INPUT -vf trim=duration=1
8004 @end example
8005
8006 @end itemize
8007
8008
8009 @section unsharp
8010
8011 Sharpen or blur the input video.
8012
8013 It accepts the following parameters:
8014
8015 @table @option
8016 @item luma_msize_x, lx
8017 Set the luma matrix horizontal size. It must be an odd integer between
8018 3 and 63, default value is 5.
8019
8020 @item luma_msize_y, ly
8021 Set the luma matrix vertical size. It must be an odd integer between 3
8022 and 63, default value is 5.
8023
8024 @item luma_amount, la
8025 Set the luma effect strength. It can be a float number, reasonable
8026 values lay between -1.5 and 1.5.
8027
8028 Negative values will blur the input video, while positive values will
8029 sharpen it, a value of zero will disable the effect.
8030
8031 Default value is 1.0.
8032
8033 @item chroma_msize_x, cx
8034 Set the chroma matrix horizontal size. It must be an odd integer
8035 between 3 and 63, default value is 5.
8036
8037 @item chroma_msize_y, cy
8038 Set the chroma matrix vertical size. It must be an odd integer
8039 between 3 and 63, default value is 5.
8040
8041 @item chroma_amount, ca
8042 Set the chroma effect strength. It can be a float number, reasonable
8043 values lay between -1.5 and 1.5.
8044
8045 Negative values will blur the input video, while positive values will
8046 sharpen it, a value of zero will disable the effect.
8047
8048 Default value is 0.0.
8049
8050 @item opencl
8051 If set to 1, specify using OpenCL capabilities, only available if
8052 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
8053
8054 @end table
8055
8056 All parameters are optional and default to the equivalent of the
8057 string '5:5:1.0:5:5:0.0'.
8058
8059 @subsection Examples
8060
8061 @itemize
8062 @item
8063 Apply strong luma sharpen effect:
8064 @example
8065 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
8066 @end example
8067
8068 @item
8069 Apply strong blur of both luma and chroma parameters:
8070 @example
8071 unsharp=7:7:-2:7:7:-2
8072 @end example
8073 @end itemize
8074
8075 @anchor{vidstabdetect}
8076 @section vidstabdetect
8077
8078 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
8079 @ref{vidstabtransform} for pass 2.
8080
8081 This filter generates a file with relative translation and rotation
8082 transform information about subsequent frames, which is then used by
8083 the @ref{vidstabtransform} filter.
8084
8085 To enable compilation of this filter you need to configure FFmpeg with
8086 @code{--enable-libvidstab}.
8087
8088 This filter accepts the following options:
8089
8090 @table @option
8091 @item result
8092 Set the path to the file used to write the transforms information.
8093 Default value is @file{transforms.trf}.
8094
8095 @item shakiness
8096 Set how shaky the video is and how quick the camera is. It accepts an
8097 integer in the range 1-10, a value of 1 means little shakiness, a
8098 value of 10 means strong shakiness. Default value is 5.
8099
8100 @item accuracy
8101 Set the accuracy of the detection process. It must be a value in the
8102 range 1-15. A value of 1 means low accuracy, a value of 15 means high
8103 accuracy. Default value is 15.
8104
8105 @item stepsize
8106 Set stepsize of the search process. The region around minimum is
8107 scanned with 1 pixel resolution. Default value is 6.
8108
8109 @item mincontrast
8110 Set minimum contrast. Below this value a local measurement field is
8111 discarded. Must be a floating point value in the range 0-1. Default
8112 value is 0.3.
8113
8114 @item tripod
8115 Set reference frame number for tripod mode.
8116
8117 If enabled, the motion of the frames is compared to a reference frame
8118 in the filtered stream, identified by the specified number. The idea
8119 is to compensate all movements in a more-or-less static scene and keep
8120 the camera view absolutely still.
8121
8122 If set to 0, it is disabled. The frames are counted starting from 1.
8123
8124 @item show
8125 Show fields and transforms in the resulting frames. It accepts an
8126 integer in the range 0-2. Default value is 0, which disables any
8127 visualization.
8128 @end table
8129
8130 @subsection Examples
8131
8132 @itemize
8133 @item
8134 Use default values:
8135 @example
8136 vidstabdetect
8137 @end example
8138
8139 @item
8140 Analyze strongly shaky movie and put the results in file
8141 @file{mytransforms.trf}:
8142 @example
8143 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
8144 @end example
8145
8146 @item
8147 Visualize the result of internal transformations in the resulting
8148 video:
8149 @example
8150 vidstabdetect=show=1
8151 @end example
8152
8153 @item
8154 Analyze a video with medium shakiness using @command{ffmpeg}:
8155 @example
8156 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
8157 @end example
8158 @end itemize
8159
8160 @anchor{vidstabtransform}
8161 @section vidstabtransform
8162
8163 Video stabilization/deshaking: pass 2 of 2,
8164 see @ref{vidstabdetect} for pass 1.
8165
8166 Read a file with transform information for each frame and
8167 apply/compensate them. Together with the @ref{vidstabdetect}
8168 filter this can be used to deshake videos. See also
8169 @url{http://public.hronopik.de/vid.stab}. It is important to also use
8170 the unsharp filter, see below.
8171
8172 To enable compilation of this filter you need to configure FFmpeg with
8173 @code{--enable-libvidstab}.
8174
8175 @subsection Options
8176
8177 @table @option
8178 @item input
8179 Set path to the file used to read the transforms. Default value is
8180 @file{transforms.trf}).
8181
8182 @item smoothing
8183 Set the number of frames (value*2 + 1) used for lowpass filtering the
8184 camera movements. Default value is 10.
8185
8186 For example a number of 10 means that 21 frames are used (10 in the
8187 past and 10 in the future) to smoothen the motion in the video. A
8188 larger values leads to a smoother video, but limits the acceleration
8189 of the camera (pan/tilt movements). 0 is a special case where a
8190 static camera is simulated.
8191
8192 @item optalgo
8193 Set the camera path optimization algorithm.
8194
8195 Accepted values are:
8196 @table @samp
8197 @item gauss
8198 gaussian kernel low-pass filter on camera motion (default)
8199 @item avg
8200 averaging on transformations
8201 @end table
8202
8203 @item maxshift
8204 Set maximal number of pixels to translate frames. Default value is -1,
8205 meaning no limit.
8206
8207 @item maxangle
8208 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
8209 value is -1, meaning no limit.
8210
8211 @item crop
8212 Specify how to deal with borders that may be visible due to movement
8213 compensation.
8214
8215 Available values are:
8216 @table @samp
8217 @item keep
8218 keep image information from previous frame (default)
8219 @item black
8220 fill the border black
8221 @end table
8222
8223 @item invert
8224 Invert transforms if set to 1. Default value is 0.
8225
8226 @item relative
8227 Consider transforms as relative to previsou frame if set to 1,
8228 absolute if set to 0. Default value is 0.
8229
8230 @item zoom
8231 Set percentage to zoom. A positive value will result in a zoom-in
8232 effect, a negative value in a zoom-out effect. Default value is 0 (no
8233 zoom).
8234
8235 @item optzoom
8236 Set optimal zooming to avoid borders.
8237
8238 Accepted values are:
8239 @table @samp
8240 @item 0
8241 disabled
8242 @item 1
8243 optimal static zoom value is determined (only very strong movements
8244 will lead to visible borders) (default)
8245 @item 2
8246 optimal adaptive zoom value is determined (no borders will be
8247 visible), see @option{zoomspeed}
8248 @end table
8249
8250 Note that the value given at zoom is added to the one calculated here.
8251
8252 @item zoomspeed
8253 Set percent to zoom maximally each frame (enabled when
8254 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
8255 0.25.
8256
8257 @item interpol
8258 Specify type of interpolation.
8259
8260 Available values are:
8261 @table @samp
8262 @item no
8263 no interpolation
8264 @item linear
8265 linear only horizontal
8266 @item bilinear
8267 linear in both directions (default)
8268 @item bicubic
8269 cubic in both directions (slow)
8270 @end table
8271
8272 @item tripod
8273 Enable virtual tripod mode if set to 1, which is equivalent to
8274 @code{relative=0:smoothing=0}. Default value is 0.
8275
8276 Use also @code{tripod} option of @ref{vidstabdetect}.
8277
8278 @item debug
8279 Increase log verbosity if set to 1. Also the detected global motions
8280 are written to the temporary file @file{global_motions.trf}. Default
8281 value is 0.
8282 @end table
8283
8284 @subsection Examples
8285
8286 @itemize
8287 @item
8288 Use @command{ffmpeg} for a typical stabilization with default values:
8289 @example
8290 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
8291 @end example
8292
8293 Note the use of the unsharp filter which is always recommended.
8294
8295 @item
8296 Zoom in a bit more and load transform data from a given file:
8297 @example
8298 vidstabtransform=zoom=5:input="mytransforms.trf"
8299 @end example
8300
8301 @item
8302 Smoothen the video even more:
8303 @example
8304 vidstabtransform=smoothing=30
8305 @end example
8306 @end itemize
8307
8308 @section vflip
8309
8310 Flip the input video vertically.
8311
8312 For example, to vertically flip a video with @command{ffmpeg}:
8313 @example
8314 ffmpeg -i in.avi -vf "vflip" out.avi
8315 @end example
8316
8317 @section vignette
8318
8319 Make or reverse a natural vignetting effect.
8320
8321 The filter accepts the following options:
8322
8323 @table @option
8324 @item angle, a
8325 Set lens angle expression as a number of radians.
8326
8327 The value is clipped in the @code{[0,PI/2]} range.
8328
8329 Default value: @code{"PI/5"}
8330
8331 @item x0
8332 @item y0
8333 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
8334 by default.
8335
8336 @item mode
8337 Set forward/backward mode.
8338
8339 Available modes are:
8340 @table @samp
8341 @item forward
8342 The larger the distance from the central point, the darker the image becomes.
8343
8344 @item backward
8345 The larger the distance from the central point, the brighter the image becomes.
8346 This can be used to reverse a vignette effect, though there is no automatic
8347 detection to extract the lens @option{angle} and other settings (yet). It can
8348 also be used to create a burning effect.
8349 @end table
8350
8351 Default value is @samp{forward}.
8352
8353 @item eval
8354 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
8355
8356 It accepts the following values:
8357 @table @samp
8358 @item init
8359 Evaluate expressions only once during the filter initialization.
8360
8361 @item frame
8362 Evaluate expressions for each incoming frame. This is way slower than the
8363 @samp{init} mode since it requires all the scalers to be re-computed, but it
8364 allows advanced dynamic expressions.
8365 @end table
8366
8367 Default value is @samp{init}.
8368
8369 @item dither
8370 Set dithering to reduce the circular banding effects. Default is @code{1}
8371 (enabled).
8372
8373 @item aspect
8374 Set vignette aspect. This setting allows to adjust the shape of the vignette.
8375 Setting this value to the SAR of the input will make a rectangular vignetting
8376 following the dimensions of the video.
8377
8378 Default is @code{1/1}.
8379 @end table
8380
8381 @subsection Expressions
8382
8383 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
8384 following parameters.
8385
8386 @table @option
8387 @item w
8388 @item h
8389 input width and height
8390
8391 @item n
8392 the number of input frame, starting from 0
8393
8394 @item pts
8395 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
8396 @var{TB} units, NAN if undefined
8397
8398 @item r
8399 frame rate of the input video, NAN if the input frame rate is unknown
8400
8401 @item t
8402 the PTS (Presentation TimeStamp) of the filtered video frame,
8403 expressed in seconds, NAN if undefined
8404
8405 @item tb
8406 time base of the input video
8407 @end table
8408
8409
8410 @subsection Examples
8411
8412 @itemize
8413 @item
8414 Apply simple strong vignetting effect:
8415 @example
8416 vignette=PI/4
8417 @end example
8418
8419 @item
8420 Make a flickering vignetting:
8421 @example
8422 vignette='PI/4+random(1)*PI/50':eval=frame
8423 @end example
8424
8425 @end itemize
8426
8427 @section w3fdif
8428
8429 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
8430 Deinterlacing Filter").
8431
8432 Based on the process described by Martin Weston for BBC R&D, and
8433 implemented based on the de-interlace algorithm written by Jim
8434 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
8435 uses filter coefficients calculated by BBC R&D.
8436
8437 There are two sets of filter coefficients, so called "simple":
8438 and "complex". Which set of filter coefficients is used can
8439 be set by passing an optional parameter:
8440
8441 @table @option
8442 @item filter
8443 Set the interlacing filter coefficients. Accepts one of the following values:
8444
8445 @table @samp
8446 @item simple
8447 Simple filter coefficient set.
8448 @item complex
8449 More-complex filter coefficient set.
8450 @end table
8451 Default value is @samp{complex}.
8452
8453 @item deint
8454 Specify which frames to deinterlace. Accept one of the following values:
8455
8456 @table @samp
8457 @item all
8458 Deinterlace all frames,
8459 @item interlaced
8460 Only deinterlace frames marked as interlaced.
8461 @end table
8462
8463 Default value is @samp{all}.
8464 @end table
8465
8466 @anchor{yadif}
8467 @section yadif
8468
8469 Deinterlace the input video ("yadif" means "yet another deinterlacing
8470 filter").
8471
8472 This filter accepts the following options:
8473
8474
8475 @table @option
8476
8477 @item mode
8478 The interlacing mode to adopt, accepts one of the following values:
8479
8480 @table @option
8481 @item 0, send_frame
8482 output 1 frame for each frame
8483 @item 1, send_field
8484 output 1 frame for each field
8485 @item 2, send_frame_nospatial
8486 like @code{send_frame} but skip spatial interlacing check
8487 @item 3, send_field_nospatial
8488 like @code{send_field} but skip spatial interlacing check
8489 @end table
8490
8491 Default value is @code{send_frame}.
8492
8493 @item parity
8494 The picture field parity assumed for the input interlaced video, accepts one of
8495 the following values:
8496
8497 @table @option
8498 @item 0, tff
8499 assume top field first
8500 @item 1, bff
8501 assume bottom field first
8502 @item -1, auto
8503 enable automatic detection
8504 @end table
8505
8506 Default value is @code{auto}.
8507 If interlacing is unknown or decoder does not export this information,
8508 top field first will be assumed.
8509
8510 @item deint
8511 Specify which frames to deinterlace. Accept one of the following
8512 values:
8513
8514 @table @option
8515 @item 0, all
8516 deinterlace all frames
8517 @item 1, interlaced
8518 only deinterlace frames marked as interlaced
8519 @end table
8520
8521 Default value is @code{all}.
8522 @end table
8523
8524 @c man end VIDEO FILTERS
8525
8526 @chapter Video Sources
8527 @c man begin VIDEO SOURCES
8528
8529 Below is a description of the currently available video sources.
8530
8531 @section buffer
8532
8533 Buffer video frames, and make them available to the filter chain.
8534
8535 This source is mainly intended for a programmatic use, in particular
8536 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
8537
8538 This source accepts the following options:
8539
8540 @table @option
8541
8542 @item video_size
8543 Specify the size (width and height) of the buffered video frames. For the
8544 syntax of this option, check the "Video size" section in the ffmpeg-utils
8545 manual.
8546
8547 @item width
8548 Input video width.
8549
8550 @item height
8551 Input video height.
8552
8553 @item pix_fmt
8554 A string representing the pixel format of the buffered video frames.
8555 It may be a number corresponding to a pixel format, or a pixel format
8556 name.
8557
8558 @item time_base
8559 Specify the timebase assumed by the timestamps of the buffered frames.
8560
8561 @item frame_rate
8562 Specify the frame rate expected for the video stream.
8563
8564 @item pixel_aspect, sar
8565 Specify the sample aspect ratio assumed by the video frames.
8566
8567 @item sws_param
8568 Specify the optional parameters to be used for the scale filter which
8569 is automatically inserted when an input change is detected in the
8570 input size or format.
8571 @end table
8572
8573 For example:
8574 @example
8575 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
8576 @end example
8577
8578 will instruct the source to accept video frames with size 320x240 and
8579 with format "yuv410p", assuming 1/24 as the timestamps timebase and
8580 square pixels (1:1 sample aspect ratio).
8581 Since the pixel format with name "yuv410p" corresponds to the number 6
8582 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
8583 this example corresponds to:
8584 @example
8585 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
8586 @end example
8587
8588 Alternatively, the options can be specified as a flat string, but this
8589 syntax is deprecated:
8590
8591 @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}]
8592
8593 @section cellauto
8594
8595 Create a pattern generated by an elementary cellular automaton.
8596
8597 The initial state of the cellular automaton can be defined through the
8598 @option{filename}, and @option{pattern} options. If such options are
8599 not specified an initial state is created randomly.
8600
8601 At each new frame a new row in the video is filled with the result of
8602 the cellular automaton next generation. The behavior when the whole
8603 frame is filled is defined by the @option{scroll} option.
8604
8605 This source accepts the following options:
8606
8607 @table @option
8608 @item filename, f
8609 Read the initial cellular automaton state, i.e. the starting row, from
8610 the specified file.
8611 In the file, each non-whitespace character is considered an alive
8612 cell, a newline will terminate the row, and further characters in the
8613 file will be ignored.
8614
8615 @item pattern, p
8616 Read the initial cellular automaton state, i.e. the starting row, from
8617 the specified string.
8618
8619 Each non-whitespace character in the string is considered an alive
8620 cell, a newline will terminate the row, and further characters in the
8621 string will be ignored.
8622
8623 @item rate, r
8624 Set the video rate, that is the number of frames generated per second.
8625 Default is 25.
8626
8627 @item random_fill_ratio, ratio
8628 Set the random fill ratio for the initial cellular automaton row. It
8629 is a floating point number value ranging from 0 to 1, defaults to
8630 1/PHI.
8631
8632 This option is ignored when a file or a pattern is specified.
8633
8634 @item random_seed, seed
8635 Set the seed for filling randomly the initial row, must be an integer
8636 included between 0 and UINT32_MAX. If not specified, or if explicitly
8637 set to -1, the filter will try to use a good random seed on a best
8638 effort basis.
8639
8640 @item rule
8641 Set the cellular automaton rule, it is a number ranging from 0 to 255.
8642 Default value is 110.
8643
8644 @item size, s
8645 Set the size of the output video. For the syntax of this option, check
8646 the "Video size" section in the ffmpeg-utils manual.
8647
8648 If @option{filename} or @option{pattern} is specified, the size is set
8649 by default to the width of the specified initial state row, and the
8650 height is set to @var{width} * PHI.
8651
8652 If @option{size} is set, it must contain the width of the specified
8653 pattern string, and the specified pattern will be centered in the
8654 larger row.
8655
8656 If a filename or a pattern string is not specified, the size value
8657 defaults to "320x518" (used for a randomly generated initial state).
8658
8659 @item scroll
8660 If set to 1, scroll the output upward when all the rows in the output
8661 have been already filled. If set to 0, the new generated row will be
8662 written over the top row just after the bottom row is filled.
8663 Defaults to 1.
8664
8665 @item start_full, full
8666 If set to 1, completely fill the output with generated rows before
8667 outputting the first frame.
8668 This is the default behavior, for disabling set the value to 0.
8669
8670 @item stitch
8671 If set to 1, stitch the left and right row edges together.
8672 This is the default behavior, for disabling set the value to 0.
8673 @end table
8674
8675 @subsection Examples
8676
8677 @itemize
8678 @item
8679 Read the initial state from @file{pattern}, and specify an output of
8680 size 200x400.
8681 @example
8682 cellauto=f=pattern:s=200x400
8683 @end example
8684
8685 @item
8686 Generate a random initial row with a width of 200 cells, with a fill
8687 ratio of 2/3:
8688 @example
8689 cellauto=ratio=2/3:s=200x200
8690 @end example
8691
8692 @item
8693 Create a pattern generated by rule 18 starting by a single alive cell
8694 centered on an initial row with width 100:
8695 @example
8696 cellauto=p=@@:s=100x400:full=0:rule=18
8697 @end example
8698
8699 @item
8700 Specify a more elaborated initial pattern:
8701 @example
8702 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
8703 @end example
8704
8705 @end itemize
8706
8707 @section mandelbrot
8708
8709 Generate a Mandelbrot set fractal, and progressively zoom towards the
8710 point specified with @var{start_x} and @var{start_y}.
8711
8712 This source accepts the following options:
8713
8714 @table @option
8715
8716 @item end_pts
8717 Set the terminal pts value. Default value is 400.
8718
8719 @item end_scale
8720 Set the terminal scale value.
8721 Must be a floating point value. Default value is 0.3.
8722
8723 @item inner
8724 Set the inner coloring mode, that is the algorithm used to draw the
8725 Mandelbrot fractal internal region.
8726
8727 It shall assume one of the following values:
8728 @table @option
8729 @item black
8730 Set black mode.
8731 @item convergence
8732 Show time until convergence.
8733 @item mincol
8734 Set color based on point closest to the origin of the iterations.
8735 @item period
8736 Set period mode.
8737 @end table
8738
8739 Default value is @var{mincol}.
8740
8741 @item bailout
8742 Set the bailout value. Default value is 10.0.
8743
8744 @item maxiter
8745 Set the maximum of iterations performed by the rendering
8746 algorithm. Default value is 7189.
8747
8748 @item outer
8749 Set outer coloring mode.
8750 It shall assume one of following values:
8751 @table @option
8752 @item iteration_count
8753 Set iteration cound mode.
8754 @item normalized_iteration_count
8755 set normalized iteration count mode.
8756 @end table
8757 Default value is @var{normalized_iteration_count}.
8758
8759 @item rate, r
8760 Set frame rate, expressed as number of frames per second. Default
8761 value is "25".
8762
8763 @item size, s
8764 Set frame size. For the syntax of this option, check the "Video
8765 size" section in the ffmpeg-utils manual. Default value is "640x480".
8766
8767 @item start_scale
8768 Set the initial scale value. Default value is 3.0.
8769
8770 @item start_x
8771 Set the initial x position. Must be a floating point value between
8772 -100 and 100. Default value is -0.743643887037158704752191506114774.
8773
8774 @item start_y
8775 Set the initial y position. Must be a floating point value between
8776 -100 and 100. Default value is -0.131825904205311970493132056385139.
8777 @end table
8778
8779 @section mptestsrc
8780
8781 Generate various test patterns, as generated by the MPlayer test filter.
8782
8783 The size of the generated video is fixed, and is 256x256.
8784 This source is useful in particular for testing encoding features.
8785
8786 This source accepts the following options:
8787
8788 @table @option
8789
8790 @item rate, r
8791 Specify the frame rate of the sourced video, as the number of frames
8792 generated per second. It has to be a string in the format
8793 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a float
8794 number or a valid video frame rate abbreviation. The default value is
8795 "25".
8796
8797 @item duration, d
8798 Set the video duration of the sourced video. The accepted syntax is:
8799 @example
8800 [-]HH:MM:SS[.m...]
8801 [-]S+[.m...]
8802 @end example
8803 See also the function @code{av_parse_time()}.
8804
8805 If not specified, or the expressed duration is negative, the video is
8806 supposed to be generated forever.
8807
8808 @item test, t
8809
8810 Set the number or the name of the test to perform. Supported tests are:
8811 @table @option
8812 @item dc_luma
8813 @item dc_chroma
8814 @item freq_luma
8815 @item freq_chroma
8816 @item amp_luma
8817 @item amp_chroma
8818 @item cbp
8819 @item mv
8820 @item ring1
8821 @item ring2
8822 @item all
8823 @end table
8824
8825 Default value is "all", which will cycle through the list of all tests.
8826 @end table
8827
8828 For example the following:
8829 @example
8830 testsrc=t=dc_luma
8831 @end example
8832
8833 will generate a "dc_luma" test pattern.
8834
8835 @section frei0r_src
8836
8837 Provide a frei0r source.
8838
8839 To enable compilation of this filter you need to install the frei0r
8840 header and configure FFmpeg with @code{--enable-frei0r}.
8841
8842 This source accepts the following options:
8843
8844 @table @option
8845
8846 @item size
8847 The size of the video to generate. For the syntax of this option, check the
8848 "Video size" section in the ffmpeg-utils manual.
8849
8850 @item framerate
8851 Framerate of the generated video, may be a string of the form
8852 @var{num}/@var{den} or a frame rate abbreviation.
8853
8854 @item filter_name
8855 The name to the frei0r source to load. For more information regarding frei0r and
8856 how to set the parameters read the section @ref{frei0r} in the description of
8857 the video filters.
8858
8859 @item filter_params
8860 A '|'-separated list of parameters to pass to the frei0r source.
8861
8862 @end table
8863
8864 For example, to generate a frei0r partik0l source with size 200x200
8865 and frame rate 10 which is overlayed on the overlay filter main input:
8866 @example
8867 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
8868 @end example
8869
8870 @section life
8871
8872 Generate a life pattern.
8873
8874 This source is based on a generalization of John Conway's life game.
8875
8876 The sourced input represents a life grid, each pixel represents a cell
8877 which can be in one of two possible states, alive or dead. Every cell
8878 interacts with its eight neighbours, which are the cells that are
8879 horizontally, vertically, or diagonally adjacent.
8880
8881 At each interaction the grid evolves according to the adopted rule,
8882 which specifies the number of neighbor alive cells which will make a
8883 cell stay alive or born. The @option{rule} option allows to specify
8884 the rule to adopt.
8885
8886 This source accepts the following options:
8887
8888 @table @option
8889 @item filename, f
8890 Set the file from which to read the initial grid state. In the file,
8891 each non-whitespace character is considered an alive cell, and newline
8892 is used to delimit the end of each row.
8893
8894 If this option is not specified, the initial grid is generated
8895 randomly.
8896
8897 @item rate, r
8898 Set the video rate, that is the number of frames generated per second.
8899 Default is 25.
8900
8901 @item random_fill_ratio, ratio
8902 Set the random fill ratio for the initial random grid. It is a
8903 floating point number value ranging from 0 to 1, defaults to 1/PHI.
8904 It is ignored when a file is specified.
8905
8906 @item random_seed, seed
8907 Set the seed for filling the initial random grid, must be an integer
8908 included between 0 and UINT32_MAX. If not specified, or if explicitly
8909 set to -1, the filter will try to use a good random seed on a best
8910 effort basis.
8911
8912 @item rule
8913 Set the life rule.
8914
8915 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
8916 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
8917 @var{NS} specifies the number of alive neighbor cells which make a
8918 live cell stay alive, and @var{NB} the number of alive neighbor cells
8919 which make a dead cell to become alive (i.e. to "born").
8920 "s" and "b" can be used in place of "S" and "B", respectively.
8921
8922 Alternatively a rule can be specified by an 18-bits integer. The 9
8923 high order bits are used to encode the next cell state if it is alive
8924 for each number of neighbor alive cells, the low order bits specify
8925 the rule for "borning" new cells. Higher order bits encode for an
8926 higher number of neighbor cells.
8927 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
8928 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
8929
8930 Default value is "S23/B3", which is the original Conway's game of life
8931 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
8932 cells, and will born a new cell if there are three alive cells around
8933 a dead cell.
8934
8935 @item size, s
8936 Set the size of the output video. For the syntax of this option, check the
8937 "Video size" section in the ffmpeg-utils manual.
8938
8939 If @option{filename} is specified, the size is set by default to the
8940 same size of the input file. If @option{size} is set, it must contain
8941 the size specified in the input file, and the initial grid defined in
8942 that file is centered in the larger resulting area.
8943
8944 If a filename is not specified, the size value defaults to "320x240"
8945 (used for a randomly generated initial grid).
8946
8947 @item stitch
8948 If set to 1, stitch the left and right grid edges together, and the
8949 top and bottom edges also. Defaults to 1.
8950
8951 @item mold
8952 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
8953 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
8954 value from 0 to 255.
8955
8956 @item life_color
8957 Set the color of living (or new born) cells.
8958
8959 @item death_color
8960 Set the color of dead cells. If @option{mold} is set, this is the first color
8961 used to represent a dead cell.
8962
8963 @item mold_color
8964 Set mold color, for definitely dead and moldy cells.
8965
8966 For the syntax of these 3 color options, check the "Color" section in the
8967 ffmpeg-utils manual.
8968 @end table
8969
8970 @subsection Examples
8971
8972 @itemize
8973 @item
8974 Read a grid from @file{pattern}, and center it on a grid of size
8975 300x300 pixels:
8976 @example
8977 life=f=pattern:s=300x300
8978 @end example
8979
8980 @item
8981 Generate a random grid of size 200x200, with a fill ratio of 2/3:
8982 @example
8983 life=ratio=2/3:s=200x200
8984 @end example
8985
8986 @item
8987 Specify a custom rule for evolving a randomly generated grid:
8988 @example
8989 life=rule=S14/B34
8990 @end example
8991
8992 @item
8993 Full example with slow death effect (mold) using @command{ffplay}:
8994 @example
8995 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
8996 @end example
8997 @end itemize
8998
8999 @anchor{color}
9000 @anchor{haldclutsrc}
9001 @anchor{nullsrc}
9002 @anchor{rgbtestsrc}
9003 @anchor{smptebars}
9004 @anchor{smptehdbars}
9005 @anchor{testsrc}
9006 @section color, haldclutsrc, nullsrc, rgbtestsrc, smptebars, smptehdbars, testsrc
9007
9008 The @code{color} source provides an uniformly colored input.
9009
9010 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
9011 @ref{haldclut} filter.
9012
9013 The @code{nullsrc} source returns unprocessed video frames. It is
9014 mainly useful to be employed in analysis / debugging tools, or as the
9015 source for filters which ignore the input data.
9016
9017 The @code{rgbtestsrc} source generates an RGB test pattern useful for
9018 detecting RGB vs BGR issues. You should see a red, green and blue
9019 stripe from top to bottom.
9020
9021 The @code{smptebars} source generates a color bars pattern, based on
9022 the SMPTE Engineering Guideline EG 1-1990.
9023
9024 The @code{smptehdbars} source generates a color bars pattern, based on
9025 the SMPTE RP 219-2002.
9026
9027 The @code{testsrc} source generates a test video pattern, showing a
9028 color pattern, a scrolling gradient and a timestamp. This is mainly
9029 intended for testing purposes.
9030
9031 The sources accept the following options:
9032
9033 @table @option
9034
9035 @item color, c
9036 Specify the color of the source, only available in the @code{color}
9037 source. For the syntax of this option, check the "Color" section in the
9038 ffmpeg-utils manual.
9039
9040 @item level
9041 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
9042 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
9043 pixels to be used as identity matrix for 3D lookup tables. Each component is
9044 coded on a @code{1/(N*N)} scale.
9045
9046 @item size, s
9047 Specify the size of the sourced video. For the syntax of this option, check the
9048 "Video size" section in the ffmpeg-utils manual. The default value is
9049 "320x240".
9050
9051 This option is not available with the @code{haldclutsrc} filter.
9052
9053 @item rate, r
9054 Specify the frame rate of the sourced video, as the number of frames
9055 generated per second. It has to be a string in the format
9056 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a float
9057 number or a valid video frame rate abbreviation. The default value is
9058 "25".
9059
9060 @item sar
9061 Set the sample aspect ratio of the sourced video.
9062
9063 @item duration, d
9064 Set the video duration of the sourced video. The accepted syntax is:
9065 @example
9066 [-]HH[:MM[:SS[.m...]]]
9067 [-]S+[.m...]
9068 @end example
9069 See also the function @code{av_parse_time()}.
9070
9071 If not specified, or the expressed duration is negative, the video is
9072 supposed to be generated forever.
9073
9074 @item decimals, n
9075 Set the number of decimals to show in the timestamp, only available in the
9076 @code{testsrc} source.
9077
9078 The displayed timestamp value will correspond to the original
9079 timestamp value multiplied by the power of 10 of the specified
9080 value. Default value is 0.
9081 @end table
9082
9083 For example the following:
9084 @example
9085 testsrc=duration=5.3:size=qcif:rate=10
9086 @end example
9087
9088 will generate a video with a duration of 5.3 seconds, with size
9089 176x144 and a frame rate of 10 frames per second.
9090
9091 The following graph description will generate a red source
9092 with an opacity of 0.2, with size "qcif" and a frame rate of 10
9093 frames per second.
9094 @example
9095 color=c=red@@0.2:s=qcif:r=10
9096 @end example
9097
9098 If the input content is to be ignored, @code{nullsrc} can be used. The
9099 following command generates noise in the luminance plane by employing
9100 the @code{geq} filter:
9101 @example
9102 nullsrc=s=256x256, geq=random(1)*255:128:128
9103 @end example
9104
9105 @subsection Commands
9106
9107 The @code{color} source supports the following commands:
9108
9109 @table @option
9110 @item c, color
9111 Set the color of the created image. Accepts the same syntax of the
9112 corresponding @option{color} option.
9113 @end table
9114
9115 @c man end VIDEO SOURCES
9116
9117 @chapter Video Sinks
9118 @c man begin VIDEO SINKS
9119
9120 Below is a description of the currently available video sinks.
9121
9122 @section buffersink
9123
9124 Buffer video frames, and make them available to the end of the filter
9125 graph.
9126
9127 This sink is mainly intended for a programmatic use, in particular
9128 through the interface defined in @file{libavfilter/buffersink.h}
9129 or the options system.
9130
9131 It accepts a pointer to an AVBufferSinkContext structure, which
9132 defines the incoming buffers' formats, to be passed as the opaque
9133 parameter to @code{avfilter_init_filter} for initialization.
9134
9135 @section nullsink
9136
9137 Null video sink, do absolutely nothing with the input video. It is
9138 mainly useful as a template and to be employed in analysis / debugging
9139 tools.
9140
9141 @c man end VIDEO SINKS
9142
9143 @chapter Multimedia Filters
9144 @c man begin MULTIMEDIA FILTERS
9145
9146 Below is a description of the currently available multimedia filters.
9147
9148 @section avectorscope
9149
9150 Convert input audio to a video output, representing the audio vector
9151 scope.
9152
9153 The filter is used to measure the difference between channels of stereo
9154 audio stream. A monoaural signal, consisting of identical left and right
9155 signal, results in straight vertical line. Any stereo separation is visible
9156 as a deviation from this line, creating a Lissajous figure.
9157 If the straight (or deviation from it) but horizontal line appears this
9158 indicates that the left and right channels are out of phase.
9159
9160 The filter accepts the following options:
9161
9162 @table @option
9163 @item mode, m
9164 Set the vectorscope mode.
9165
9166 Available values are:
9167 @table @samp
9168 @item lissajous
9169 Lissajous rotated by 45 degrees.
9170
9171 @item lissajous_xy
9172 Same as above but not rotated.
9173 @end table
9174
9175 Default value is @samp{lissajous}.
9176
9177 @item size, s
9178 Set the video size for the output. For the syntax of this option, check the "Video size"
9179 section in the ffmpeg-utils manual. Default value is @code{400x400}.
9180
9181 @item rate, r
9182 Set the output frame rate. Default value is @code{25}.
9183
9184 @item rc
9185 @item gc
9186 @item bc
9187 Specify the red, green and blue contrast. Default values are @code{40}, @code{160} and @code{80}.
9188 Allowed range is @code{[0, 255]}.
9189
9190 @item rf
9191 @item gf
9192 @item bf
9193 Specify the red, green and blue fade. Default values are @code{15}, @code{10} and @code{5}.
9194 Allowed range is @code{[0, 255]}.
9195
9196 @item zoom
9197 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[1, 10]}.
9198 @end table
9199
9200 @subsection Examples
9201
9202 @itemize
9203 @item
9204 Complete example using @command{ffplay}:
9205 @example
9206 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
9207              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
9208 @end example
9209 @end itemize
9210
9211 @section concat
9212
9213 Concatenate audio and video streams, joining them together one after the
9214 other.
9215
9216 The filter works on segments of synchronized video and audio streams. All
9217 segments must have the same number of streams of each type, and that will
9218 also be the number of streams at output.
9219
9220 The filter accepts the following options:
9221
9222 @table @option
9223
9224 @item n
9225 Set the number of segments. Default is 2.
9226
9227 @item v
9228 Set the number of output video streams, that is also the number of video
9229 streams in each segment. Default is 1.
9230
9231 @item a
9232 Set the number of output audio streams, that is also the number of video
9233 streams in each segment. Default is 0.
9234
9235 @item unsafe
9236 Activate unsafe mode: do not fail if segments have a different format.
9237
9238 @end table
9239
9240 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
9241 @var{a} audio outputs.
9242
9243 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
9244 segment, in the same order as the outputs, then the inputs for the second
9245 segment, etc.
9246
9247 Related streams do not always have exactly the same duration, for various
9248 reasons including codec frame size or sloppy authoring. For that reason,
9249 related synchronized streams (e.g. a video and its audio track) should be
9250 concatenated at once. The concat filter will use the duration of the longest
9251 stream in each segment (except the last one), and if necessary pad shorter
9252 audio streams with silence.
9253
9254 For this filter to work correctly, all segments must start at timestamp 0.
9255
9256 All corresponding streams must have the same parameters in all segments; the
9257 filtering system will automatically select a common pixel format for video
9258 streams, and a common sample format, sample rate and channel layout for
9259 audio streams, but other settings, such as resolution, must be converted
9260 explicitly by the user.
9261
9262 Different frame rates are acceptable but will result in variable frame rate
9263 at output; be sure to configure the output file to handle it.
9264
9265 @subsection Examples
9266
9267 @itemize
9268 @item
9269 Concatenate an opening, an episode and an ending, all in bilingual version
9270 (video in stream 0, audio in streams 1 and 2):
9271 @example
9272 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
9273   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
9274    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
9275   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
9276 @end example
9277
9278 @item
9279 Concatenate two parts, handling audio and video separately, using the
9280 (a)movie sources, and adjusting the resolution:
9281 @example
9282 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
9283 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
9284 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
9285 @end example
9286 Note that a desync will happen at the stitch if the audio and video streams
9287 do not have exactly the same duration in the first file.
9288
9289 @end itemize
9290
9291 @section ebur128
9292
9293 EBU R128 scanner filter. This filter takes an audio stream as input and outputs
9294 it unchanged. By default, it logs a message at a frequency of 10Hz with the
9295 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
9296 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
9297
9298 The filter also has a video output (see the @var{video} option) with a real
9299 time graph to observe the loudness evolution. The graphic contains the logged
9300 message mentioned above, so it is not printed anymore when this option is set,
9301 unless the verbose logging is set. The main graphing area contains the
9302 short-term loudness (3 seconds of analysis), and the gauge on the right is for
9303 the momentary loudness (400 milliseconds).
9304
9305 More information about the Loudness Recommendation EBU R128 on
9306 @url{http://tech.ebu.ch/loudness}.
9307
9308 The filter accepts the following options:
9309
9310 @table @option
9311
9312 @item video
9313 Activate the video output. The audio stream is passed unchanged whether this
9314 option is set or no. The video stream will be the first output stream if
9315 activated. Default is @code{0}.
9316
9317 @item size
9318 Set the video size. This option is for video only. For the syntax of this
9319 option, check the "Video size" section in the ffmpeg-utils manual. Default
9320 and minimum resolution is @code{640x480}.
9321
9322 @item meter
9323 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
9324 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
9325 other integer value between this range is allowed.
9326
9327 @item metadata
9328 Set metadata injection. If set to @code{1}, the audio input will be segmented
9329 into 100ms output frames, each of them containing various loudness information
9330 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
9331
9332 Default is @code{0}.
9333
9334 @item framelog
9335 Force the frame logging level.
9336
9337 Available values are:
9338 @table @samp
9339 @item info
9340 information logging level
9341 @item verbose
9342 verbose logging level
9343 @end table
9344
9345 By default, the logging level is set to @var{info}. If the @option{video} or
9346 the @option{metadata} options are set, it switches to @var{verbose}.
9347
9348 @item peak
9349 Set peak mode(s).
9350
9351 Available modes can be cumulated (the option is a @code{flag} type). Possible
9352 values are:
9353 @table @samp
9354 @item none
9355 Disable any peak mode (default).
9356 @item sample
9357 Enable sample-peak mode.
9358
9359 Simple peak mode looking for the higher sample value. It logs a message
9360 for sample-peak (identified by @code{SPK}).
9361 @item true
9362 Enable true-peak mode.
9363
9364 If enabled, the peak lookup is done on an over-sampled version of the input
9365 stream for better peak accuracy. It logs a message for true-peak.
9366 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
9367 This mode requires a build with @code{libswresample}.
9368 @end table
9369
9370 @end table
9371
9372 @subsection Examples
9373
9374 @itemize
9375 @item
9376 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
9377 @example
9378 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
9379 @end example
9380
9381 @item
9382 Run an analysis with @command{ffmpeg}:
9383 @example
9384 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
9385 @end example
9386 @end itemize
9387
9388 @section interleave, ainterleave
9389
9390 Temporally interleave frames from several inputs.
9391
9392 @code{interleave} works with video inputs, @code{ainterleave} with audio.
9393
9394 These filters read frames from several inputs and send the oldest
9395 queued frame to the output.
9396
9397 Input streams must have a well defined, monotonically increasing frame
9398 timestamp values.
9399
9400 In order to submit one frame to output, these filters need to enqueue
9401 at least one frame for each input, so they cannot work in case one
9402 input is not yet terminated and will not receive incoming frames.
9403
9404 For example consider the case when one input is a @code{select} filter
9405 which always drop input frames. The @code{interleave} filter will keep
9406 reading from that input, but it will never be able to send new frames
9407 to output until the input will send an end-of-stream signal.
9408
9409 Also, depending on inputs synchronization, the filters will drop
9410 frames in case one input receives more frames than the other ones, and
9411 the queue is already filled.
9412
9413 These filters accept the following options:
9414
9415 @table @option
9416 @item nb_inputs, n
9417 Set the number of different inputs, it is 2 by default.
9418 @end table
9419
9420 @subsection Examples
9421
9422 @itemize
9423 @item
9424 Interleave frames belonging to different streams using @command{ffmpeg}:
9425 @example
9426 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
9427 @end example
9428
9429 @item
9430 Add flickering blur effect:
9431 @example
9432 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
9433 @end example
9434 @end itemize
9435
9436 @section perms, aperms
9437
9438 Set read/write permissions for the output frames.
9439
9440 These filters are mainly aimed at developers to test direct path in the
9441 following filter in the filtergraph.
9442
9443 The filters accept the following options:
9444
9445 @table @option
9446 @item mode
9447 Select the permissions mode.
9448
9449 It accepts the following values:
9450 @table @samp
9451 @item none
9452 Do nothing. This is the default.
9453 @item ro
9454 Set all the output frames read-only.
9455 @item rw
9456 Set all the output frames directly writable.
9457 @item toggle
9458 Make the frame read-only if writable, and writable if read-only.
9459 @item random
9460 Set each output frame read-only or writable randomly.
9461 @end table
9462
9463 @item seed
9464 Set the seed for the @var{random} mode, must be an integer included between
9465 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
9466 @code{-1}, the filter will try to use a good random seed on a best effort
9467 basis.
9468 @end table
9469
9470 Note: in case of auto-inserted filter between the permission filter and the
9471 following one, the permission might not be received as expected in that
9472 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
9473 perms/aperms filter can avoid this problem.
9474
9475 @section select, aselect
9476
9477 Select frames to pass in output.
9478
9479 This filter accepts the following options:
9480
9481 @table @option
9482
9483 @item expr, e
9484 Set expression, which is evaluated for each input frame.
9485
9486 If the expression is evaluated to zero, the frame is discarded.
9487
9488 If the evaluation result is negative or NaN, the frame is sent to the
9489 first output; otherwise it is sent to the output with index
9490 @code{ceil(val)-1}, assuming that the input index starts from 0.
9491
9492 For example a value of @code{1.2} corresponds to the output with index
9493 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
9494
9495 @item outputs, n
9496 Set the number of outputs. The output to which to send the selected
9497 frame is based on the result of the evaluation. Default value is 1.
9498 @end table
9499
9500 The expression can contain the following constants:
9501
9502 @table @option
9503 @item n
9504 the sequential number of the filtered frame, starting from 0
9505
9506 @item selected_n
9507 the sequential number of the selected frame, starting from 0
9508
9509 @item prev_selected_n
9510 the sequential number of the last selected frame, NAN if undefined
9511
9512 @item TB
9513 timebase of the input timestamps
9514
9515 @item pts
9516 the PTS (Presentation TimeStamp) of the filtered video frame,
9517 expressed in @var{TB} units, NAN if undefined
9518
9519 @item t
9520 the PTS (Presentation TimeStamp) of the filtered video frame,
9521 expressed in seconds, NAN if undefined
9522
9523 @item prev_pts
9524 the PTS of the previously filtered video frame, NAN if undefined
9525
9526 @item prev_selected_pts
9527 the PTS of the last previously filtered video frame, NAN if undefined
9528
9529 @item prev_selected_t
9530 the PTS of the last previously selected video frame, NAN if undefined
9531
9532 @item start_pts
9533 the PTS of the first video frame in the video, NAN if undefined
9534
9535 @item start_t
9536 the time of the first video frame in the video, NAN if undefined
9537
9538 @item pict_type @emph{(video only)}
9539 the type of the filtered frame, can assume one of the following
9540 values:
9541 @table @option
9542 @item I
9543 @item P
9544 @item B
9545 @item S
9546 @item SI
9547 @item SP
9548 @item BI
9549 @end table
9550
9551 @item interlace_type @emph{(video only)}
9552 the frame interlace type, can assume one of the following values:
9553 @table @option
9554 @item PROGRESSIVE
9555 the frame is progressive (not interlaced)
9556 @item TOPFIRST
9557 the frame is top-field-first
9558 @item BOTTOMFIRST
9559 the frame is bottom-field-first
9560 @end table
9561
9562 @item consumed_sample_n @emph{(audio only)}
9563 the number of selected samples before the current frame
9564
9565 @item samples_n @emph{(audio only)}
9566 the number of samples in the current frame
9567
9568 @item sample_rate @emph{(audio only)}
9569 the input sample rate
9570
9571 @item key
9572 1 if the filtered frame is a key-frame, 0 otherwise
9573
9574 @item pos
9575 the position in the file of the filtered frame, -1 if the information
9576 is not available (e.g. for synthetic video)
9577
9578 @item scene @emph{(video only)}
9579 value between 0 and 1 to indicate a new scene; a low value reflects a low
9580 probability for the current frame to introduce a new scene, while a higher
9581 value means the current frame is more likely to be one (see the example below)
9582
9583 @end table
9584
9585 The default value of the select expression is "1".
9586
9587 @subsection Examples
9588
9589 @itemize
9590 @item
9591 Select all frames in input:
9592 @example
9593 select
9594 @end example
9595
9596 The example above is the same as:
9597 @example
9598 select=1
9599 @end example
9600
9601 @item
9602 Skip all frames:
9603 @example
9604 select=0
9605 @end example
9606
9607 @item
9608 Select only I-frames:
9609 @example
9610 select='eq(pict_type\,I)'
9611 @end example
9612
9613 @item
9614 Select one frame every 100:
9615 @example
9616 select='not(mod(n\,100))'
9617 @end example
9618
9619 @item
9620 Select only frames contained in the 10-20 time interval:
9621 @example
9622 select=between(t\,10\,20)
9623 @end example
9624
9625 @item
9626 Select only I frames contained in the 10-20 time interval:
9627 @example
9628 select=between(t\,10\,20)*eq(pict_type\,I)
9629 @end example
9630
9631 @item
9632 Select frames with a minimum distance of 10 seconds:
9633 @example
9634 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
9635 @end example
9636
9637 @item
9638 Use aselect to select only audio frames with samples number > 100:
9639 @example
9640 aselect='gt(samples_n\,100)'
9641 @end example
9642
9643 @item
9644 Create a mosaic of the first scenes:
9645 @example
9646 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
9647 @end example
9648
9649 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
9650 choice.
9651
9652 @item
9653 Send even and odd frames to separate outputs, and compose them:
9654 @example
9655 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
9656 @end example
9657 @end itemize
9658
9659 @section sendcmd, asendcmd
9660
9661 Send commands to filters in the filtergraph.
9662
9663 These filters read commands to be sent to other filters in the
9664 filtergraph.
9665
9666 @code{sendcmd} must be inserted between two video filters,
9667 @code{asendcmd} must be inserted between two audio filters, but apart
9668 from that they act the same way.
9669
9670 The specification of commands can be provided in the filter arguments
9671 with the @var{commands} option, or in a file specified by the
9672 @var{filename} option.
9673
9674 These filters accept the following options:
9675 @table @option
9676 @item commands, c
9677 Set the commands to be read and sent to the other filters.
9678 @item filename, f
9679 Set the filename of the commands to be read and sent to the other
9680 filters.
9681 @end table
9682
9683 @subsection Commands syntax
9684
9685 A commands description consists of a sequence of interval
9686 specifications, comprising a list of commands to be executed when a
9687 particular event related to that interval occurs. The occurring event
9688 is typically the current frame time entering or leaving a given time
9689 interval.
9690
9691 An interval is specified by the following syntax:
9692 @example
9693 @var{START}[-@var{END}] @var{COMMANDS};
9694 @end example
9695
9696 The time interval is specified by the @var{START} and @var{END} times.
9697 @var{END} is optional and defaults to the maximum time.
9698
9699 The current frame time is considered within the specified interval if
9700 it is included in the interval [@var{START}, @var{END}), that is when
9701 the time is greater or equal to @var{START} and is lesser than
9702 @var{END}.
9703
9704 @var{COMMANDS} consists of a sequence of one or more command
9705 specifications, separated by ",", relating to that interval.  The
9706 syntax of a command specification is given by:
9707 @example
9708 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
9709 @end example
9710
9711 @var{FLAGS} is optional and specifies the type of events relating to
9712 the time interval which enable sending the specified command, and must
9713 be a non-null sequence of identifier flags separated by "+" or "|" and
9714 enclosed between "[" and "]".
9715
9716 The following flags are recognized:
9717 @table @option
9718 @item enter
9719 The command is sent when the current frame timestamp enters the
9720 specified interval. In other words, the command is sent when the
9721 previous frame timestamp was not in the given interval, and the
9722 current is.
9723
9724 @item leave
9725 The command is sent when the current frame timestamp leaves the
9726 specified interval. In other words, the command is sent when the
9727 previous frame timestamp was in the given interval, and the
9728 current is not.
9729 @end table
9730
9731 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
9732 assumed.
9733
9734 @var{TARGET} specifies the target of the command, usually the name of
9735 the filter class or a specific filter instance name.
9736
9737 @var{COMMAND} specifies the name of the command for the target filter.
9738
9739 @var{ARG} is optional and specifies the optional list of argument for
9740 the given @var{COMMAND}.
9741
9742 Between one interval specification and another, whitespaces, or
9743 sequences of characters starting with @code{#} until the end of line,
9744 are ignored and can be used to annotate comments.
9745
9746 A simplified BNF description of the commands specification syntax
9747 follows:
9748 @example
9749 @var{COMMAND_FLAG}  ::= "enter" | "leave"
9750 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
9751 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
9752 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
9753 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
9754 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
9755 @end example
9756
9757 @subsection Examples
9758
9759 @itemize
9760 @item
9761 Specify audio tempo change at second 4:
9762 @example
9763 asendcmd=c='4.0 atempo tempo 1.5',atempo
9764 @end example
9765
9766 @item
9767 Specify a list of drawtext and hue commands in a file.
9768 @example
9769 # show text in the interval 5-10
9770 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
9771          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
9772
9773 # desaturate the image in the interval 15-20
9774 15.0-20.0 [enter] hue s 0,
9775           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
9776           [leave] hue s 1,
9777           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
9778
9779 # apply an exponential saturation fade-out effect, starting from time 25
9780 25 [enter] hue s exp(25-t)
9781 @end example
9782
9783 A filtergraph allowing to read and process the above command list
9784 stored in a file @file{test.cmd}, can be specified with:
9785 @example
9786 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
9787 @end example
9788 @end itemize
9789
9790 @anchor{setpts}
9791 @section setpts, asetpts
9792
9793 Change the PTS (presentation timestamp) of the input frames.
9794
9795 @code{setpts} works on video frames, @code{asetpts} on audio frames.
9796
9797 This filter accepts the following options:
9798
9799 @table @option
9800
9801 @item expr
9802 The expression which is evaluated for each frame to construct its timestamp.
9803
9804 @end table
9805
9806 The expression is evaluated through the eval API and can contain the following
9807 constants:
9808
9809 @table @option
9810 @item FRAME_RATE
9811 frame rate, only defined for constant frame-rate video
9812
9813 @item PTS
9814 the presentation timestamp in input
9815
9816 @item N
9817 the count of the input frame for video or the number of consumed samples,
9818 not including the current frame for audio, starting from 0.
9819
9820 @item NB_CONSUMED_SAMPLES
9821 the number of consumed samples, not including the current frame (only
9822 audio)
9823
9824 @item NB_SAMPLES, S
9825 the number of samples in the current frame (only audio)
9826
9827 @item SAMPLE_RATE, SR
9828 audio sample rate
9829
9830 @item STARTPTS
9831 the PTS of the first frame
9832
9833 @item STARTT
9834 the time in seconds of the first frame
9835
9836 @item INTERLACED
9837 tell if the current frame is interlaced
9838
9839 @item T
9840 the time in seconds of the current frame
9841
9842 @item POS
9843 original position in the file of the frame, or undefined if undefined
9844 for the current frame
9845
9846 @item PREV_INPTS
9847 previous input PTS
9848
9849 @item PREV_INT
9850 previous input time in seconds
9851
9852 @item PREV_OUTPTS
9853 previous output PTS
9854
9855 @item PREV_OUTT
9856 previous output time in seconds
9857
9858 @item RTCTIME
9859 wallclock (RTC) time in microseconds. This is deprecated, use time(0)
9860 instead.
9861
9862 @item RTCSTART
9863 wallclock (RTC) time at the start of the movie in microseconds
9864
9865 @item TB
9866 timebase of the input timestamps
9867
9868 @end table
9869
9870 @subsection Examples
9871
9872 @itemize
9873 @item
9874 Start counting PTS from zero
9875 @example
9876 setpts=PTS-STARTPTS
9877 @end example
9878
9879 @item
9880 Apply fast motion effect:
9881 @example
9882 setpts=0.5*PTS
9883 @end example
9884
9885 @item
9886 Apply slow motion effect:
9887 @example
9888 setpts=2.0*PTS
9889 @end example
9890
9891 @item
9892 Set fixed rate of 25 frames per second:
9893 @example
9894 setpts=N/(25*TB)
9895 @end example
9896
9897 @item
9898 Set fixed rate 25 fps with some jitter:
9899 @example
9900 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
9901 @end example
9902
9903 @item
9904 Apply an offset of 10 seconds to the input PTS:
9905 @example
9906 setpts=PTS+10/TB
9907 @end example
9908
9909 @item
9910 Generate timestamps from a "live source" and rebase onto the current timebase:
9911 @example
9912 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
9913 @end example
9914
9915 @item
9916 Generate timestamps by counting samples:
9917 @example
9918 asetpts=N/SR/TB
9919 @end example
9920
9921 @end itemize
9922
9923 @section settb, asettb
9924
9925 Set the timebase to use for the output frames timestamps.
9926 It is mainly useful for testing timebase configuration.
9927
9928 This filter accepts the following options:
9929
9930 @table @option
9931
9932 @item expr, tb
9933 The expression which is evaluated into the output timebase.
9934
9935 @end table
9936
9937 The value for @option{tb} is an arithmetic expression representing a
9938 rational. The expression can contain the constants "AVTB" (the default
9939 timebase), "intb" (the input timebase) and "sr" (the sample rate,
9940 audio only). Default value is "intb".
9941
9942 @subsection Examples
9943
9944 @itemize
9945 @item
9946 Set the timebase to 1/25:
9947 @example
9948 settb=expr=1/25
9949 @end example
9950
9951 @item
9952 Set the timebase to 1/10:
9953 @example
9954 settb=expr=0.1
9955 @end example
9956
9957 @item
9958 Set the timebase to 1001/1000:
9959 @example
9960 settb=1+0.001
9961 @end example
9962
9963 @item
9964 Set the timebase to 2*intb:
9965 @example
9966 settb=2*intb
9967 @end example
9968
9969 @item
9970 Set the default timebase value:
9971 @example
9972 settb=AVTB
9973 @end example
9974 @end itemize
9975
9976 @section showspectrum
9977
9978 Convert input audio to a video output, representing the audio frequency
9979 spectrum.
9980
9981 The filter accepts the following options:
9982
9983 @table @option
9984 @item size, s
9985 Specify the video size for the output. For the syntax of this option, check
9986 the "Video size" section in the ffmpeg-utils manual. Default value is
9987 @code{640x512}.
9988
9989 @item slide
9990 Specify if the spectrum should slide along the window. Default value is
9991 @code{0}.
9992
9993 @item mode
9994 Specify display mode.
9995
9996 It accepts the following values:
9997 @table @samp
9998 @item combined
9999 all channels are displayed in the same row
10000 @item separate
10001 all channels are displayed in separate rows
10002 @end table
10003
10004 Default value is @samp{combined}.
10005
10006 @item color
10007 Specify display color mode.
10008
10009 It accepts the following values:
10010 @table @samp
10011 @item channel
10012 each channel is displayed in a separate color
10013 @item intensity
10014 each channel is is displayed using the same color scheme
10015 @end table
10016
10017 Default value is @samp{channel}.
10018
10019 @item scale
10020 Specify scale used for calculating intensity color values.
10021
10022 It accepts the following values:
10023 @table @samp
10024 @item lin
10025 linear
10026 @item sqrt
10027 square root, default
10028 @item cbrt
10029 cubic root
10030 @item log
10031 logarithmic
10032 @end table
10033
10034 Default value is @samp{sqrt}.
10035
10036 @item saturation
10037 Set saturation modifier for displayed colors. Negative values provide
10038 alternative color scheme. @code{0} is no saturation at all.
10039 Saturation must be in [-10.0, 10.0] range.
10040 Default value is @code{1}.
10041
10042 @item win_func
10043 Set window function.
10044
10045 It accepts the following values:
10046 @table @samp
10047 @item none
10048 No samples pre-processing (do not expect this to be faster)
10049 @item hann
10050 Hann window
10051 @item hamming
10052 Hamming window
10053 @item blackman
10054 Blackman window
10055 @end table
10056
10057 Default value is @code{hann}.
10058 @end table
10059
10060 The usage is very similar to the showwaves filter; see the examples in that
10061 section.
10062
10063 @subsection Examples
10064
10065 @itemize
10066 @item
10067 Large window with logarithmic color scaling:
10068 @example
10069 showspectrum=s=1280x480:scale=log
10070 @end example
10071
10072 @item
10073 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
10074 @example
10075 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
10076              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
10077 @end example
10078 @end itemize
10079
10080 @section showwaves
10081
10082 Convert input audio to a video output, representing the samples waves.
10083
10084 The filter accepts the following options:
10085
10086 @table @option
10087 @item size, s
10088 Specify the video size for the output. For the syntax of this option, check
10089 the "Video size" section in the ffmpeg-utils manual. Default value
10090 is "600x240".
10091
10092 @item mode
10093 Set display mode.
10094
10095 Available values are:
10096 @table @samp
10097 @item point
10098 Draw a point for each sample.
10099
10100 @item line
10101 Draw a vertical line for each sample.
10102 @end table
10103
10104 Default value is @code{point}.
10105
10106 @item n
10107 Set the number of samples which are printed on the same column. A
10108 larger value will decrease the frame rate. Must be a positive
10109 integer. This option can be set only if the value for @var{rate}
10110 is not explicitly specified.
10111
10112 @item rate, r
10113 Set the (approximate) output frame rate. This is done by setting the
10114 option @var{n}. Default value is "25".
10115
10116 @end table
10117
10118 @subsection Examples
10119
10120 @itemize
10121 @item
10122 Output the input file audio and the corresponding video representation
10123 at the same time:
10124 @example
10125 amovie=a.mp3,asplit[out0],showwaves[out1]
10126 @end example
10127
10128 @item
10129 Create a synthetic signal and show it with showwaves, forcing a
10130 frame rate of 30 frames per second:
10131 @example
10132 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
10133 @end example
10134 @end itemize
10135
10136 @section split, asplit
10137
10138 Split input into several identical outputs.
10139
10140 @code{asplit} works with audio input, @code{split} with video.
10141
10142 The filter accepts a single parameter which specifies the number of outputs. If
10143 unspecified, it defaults to 2.
10144
10145 @subsection Examples
10146
10147 @itemize
10148 @item
10149 Create two separate outputs from the same input:
10150 @example
10151 [in] split [out0][out1]
10152 @end example
10153
10154 @item
10155 To create 3 or more outputs, you need to specify the number of
10156 outputs, like in:
10157 @example
10158 [in] asplit=3 [out0][out1][out2]
10159 @end example
10160
10161 @item
10162 Create two separate outputs from the same input, one cropped and
10163 one padded:
10164 @example
10165 [in] split [splitout1][splitout2];
10166 [splitout1] crop=100:100:0:0    [cropout];
10167 [splitout2] pad=200:200:100:100 [padout];
10168 @end example
10169
10170 @item
10171 Create 5 copies of the input audio with @command{ffmpeg}:
10172 @example
10173 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
10174 @end example
10175 @end itemize
10176
10177 @section zmq, azmq
10178
10179 Receive commands sent through a libzmq client, and forward them to
10180 filters in the filtergraph.
10181
10182 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
10183 must be inserted between two video filters, @code{azmq} between two
10184 audio filters.
10185
10186 To enable these filters you need to install the libzmq library and
10187 headers and configure FFmpeg with @code{--enable-libzmq}.
10188
10189 For more information about libzmq see:
10190 @url{http://www.zeromq.org/}
10191
10192 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
10193 receives messages sent through a network interface defined by the
10194 @option{bind_address} option.
10195
10196 The received message must be in the form:
10197 @example
10198 @var{TARGET} @var{COMMAND} [@var{ARG}]
10199 @end example
10200
10201 @var{TARGET} specifies the target of the command, usually the name of
10202 the filter class or a specific filter instance name.
10203
10204 @var{COMMAND} specifies the name of the command for the target filter.
10205
10206 @var{ARG} is optional and specifies the optional argument list for the
10207 given @var{COMMAND}.
10208
10209 Upon reception, the message is processed and the corresponding command
10210 is injected into the filtergraph. Depending on the result, the filter
10211 will send a reply to the client, adopting the format:
10212 @example
10213 @var{ERROR_CODE} @var{ERROR_REASON}
10214 @var{MESSAGE}
10215 @end example
10216
10217 @var{MESSAGE} is optional.
10218
10219 @subsection Examples
10220
10221 Look at @file{tools/zmqsend} for an example of a zmq client which can
10222 be used to send commands processed by these filters.
10223
10224 Consider the following filtergraph generated by @command{ffplay}
10225 @example
10226 ffplay -dumpgraph 1 -f lavfi "
10227 color=s=100x100:c=red  [l];
10228 color=s=100x100:c=blue [r];
10229 nullsrc=s=200x100, zmq [bg];
10230 [bg][l]   overlay      [bg+l];
10231 [bg+l][r] overlay=x=100 "
10232 @end example
10233
10234 To change the color of the left side of the video, the following
10235 command can be used:
10236 @example
10237 echo Parsed_color_0 c yellow | tools/zmqsend
10238 @end example
10239
10240 To change the right side:
10241 @example
10242 echo Parsed_color_1 c pink | tools/zmqsend
10243 @end example
10244
10245 @c man end MULTIMEDIA FILTERS
10246
10247 @chapter Multimedia Sources
10248 @c man begin MULTIMEDIA SOURCES
10249
10250 Below is a description of the currently available multimedia sources.
10251
10252 @section amovie
10253
10254 This is the same as @ref{movie} source, except it selects an audio
10255 stream by default.
10256
10257 @anchor{movie}
10258 @section movie
10259
10260 Read audio and/or video stream(s) from a movie container.
10261
10262 This filter accepts the following options:
10263
10264 @table @option
10265 @item filename
10266 The name of the resource to read (not necessarily a file but also a device or a
10267 stream accessed through some protocol).
10268
10269 @item format_name, f
10270 Specifies the format assumed for the movie to read, and can be either
10271 the name of a container or an input device. If not specified the
10272 format is guessed from @var{movie_name} or by probing.
10273
10274 @item seek_point, sp
10275 Specifies the seek point in seconds, the frames will be output
10276 starting from this seek point, the parameter is evaluated with
10277 @code{av_strtod} so the numerical value may be suffixed by an IS
10278 postfix. Default value is "0".
10279
10280 @item streams, s
10281 Specifies the streams to read. Several streams can be specified,
10282 separated by "+". The source will then have as many outputs, in the
10283 same order. The syntax is explained in the ``Stream specifiers''
10284 section in the ffmpeg manual. Two special names, "dv" and "da" specify
10285 respectively the default (best suited) video and audio stream. Default
10286 is "dv", or "da" if the filter is called as "amovie".
10287
10288 @item stream_index, si
10289 Specifies the index of the video stream to read. If the value is -1,
10290 the best suited video stream will be automatically selected. Default
10291 value is "-1". Deprecated. If the filter is called "amovie", it will select
10292 audio instead of video.
10293
10294 @item loop
10295 Specifies how many times to read the stream in sequence.
10296 If the value is less than 1, the stream will be read again and again.
10297 Default value is "1".
10298
10299 Note that when the movie is looped the source timestamps are not
10300 changed, so it will generate non monotonically increasing timestamps.
10301 @end table
10302
10303 This filter allows to overlay a second video on top of main input of
10304 a filtergraph as shown in this graph:
10305 @example
10306 input -----------> deltapts0 --> overlay --> output
10307                                     ^
10308                                     |
10309 movie --> scale--> deltapts1 -------+
10310 @end example
10311
10312 @subsection Examples
10313
10314 @itemize
10315 @item
10316 Skip 3.2 seconds from the start of the avi file in.avi, and overlay it
10317 on top of the input labelled as "in":
10318 @example
10319 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
10320 [in] setpts=PTS-STARTPTS [main];
10321 [main][over] overlay=16:16 [out]
10322 @end example
10323
10324 @item
10325 Read from a video4linux2 device, and overlay it on top of the input
10326 labelled as "in":
10327 @example
10328 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
10329 [in] setpts=PTS-STARTPTS [main];
10330 [main][over] overlay=16:16 [out]
10331 @end example
10332
10333 @item
10334 Read the first video stream and the audio stream with id 0x81 from
10335 dvd.vob; the video is connected to the pad named "video" and the audio is
10336 connected to the pad named "audio":
10337 @example
10338 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
10339 @end example
10340 @end itemize
10341
10342 @c man end MULTIMEDIA SOURCES