]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
Merge commit '9c0e4b3395cad79c560d03d2a94595d89e017885'
[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 the color component
4941 distribution 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 displays the color components distribution in an
4953 image. Displays color graph for each color component. Shows distribution of
4954 the Y, U, V, A or R, G, B components, depending on input format, in the
4955 current frame. Below each graph a color component scale meter is shown.
4956
4957 @item color
4958 Displays chroma values (U/V color placement) in a two dimensional
4959 graph (which is called a vectorscope). The brighter a pixel in the
4960 vectorscope, the more pixels of the input frame correspond to that pixel
4961 (i.e., more pixels have this chroma value). The V component is displayed on
4962 the horizontal (X) axis, with the leftmost side being V = 0 and the rightmost
4963 side being V = 255. The U component is displayed on the vertical (Y) axis,
4964 with the top representing U = 0 and the bottom representing U = 255.
4965
4966 The position of a white pixel in the graph corresponds to the chroma value of
4967 a pixel of the input clip. The graph can therefore be used to read the hue
4968 (color flavor) and the saturation (the dominance of the hue in the color). As
4969 the hue of a color changes, it moves around the square. At the center of the
4970 square the saturation is zero, which means that the corresponding pixel has no
4971 color. If the amount of a specific color is increased (while leaving the other
4972 colors unchanged) the saturation increases, and the indicator moves towards
4973 the edge of the square.
4974
4975 @item color2
4976 Chroma values in vectorscope, similar as @code{color} but actual chroma values
4977 are displayed.
4978
4979 @item waveform
4980 Per row/column color component graph. In row mode, the graph on the left side
4981 represents color component value 0 and the right side represents value = 255.
4982 In column mode, the top side represents color component value = 0 and bottom
4983 side represents value = 255.
4984 @end table
4985 Default value is @code{levels}.
4986
4987 @item level_height
4988 Set height of level in @code{levels}. Default value is @code{200}.
4989 Allowed range is [50, 2048].
4990
4991 @item scale_height
4992 Set height of color scale in @code{levels}. Default value is @code{12}.
4993 Allowed range is [0, 40].
4994
4995 @item step
4996 Set step for @code{waveform} mode. Smaller values are useful to find out how
4997 many values of the same luminance are distributed across input rows/columns.
4998 Default value is @code{10}. Allowed range is [1, 255].
4999
5000 @item waveform_mode
5001 Set mode for @code{waveform}. Can be either @code{row}, or @code{column}.
5002 Default is @code{row}.
5003
5004 @item waveform_mirror
5005 Set mirroring mode for @code{waveform}. @code{0} means unmirrored, @code{1}
5006 means mirrored. In mirrored mode, higher values will be represented on the left
5007 side for @code{row} mode and at the top for @code{column} mode. Default is
5008 @code{0} (unmirrored).
5009
5010 @item display_mode
5011 Set display mode for @code{waveform} and @code{levels}.
5012 It accepts the following values:
5013 @table @samp
5014 @item parade
5015 Display separate graph for the color components side by side in
5016 @code{row} waveform mode or one below the other in @code{column} waveform mode
5017 for @code{waveform} histogram mode. For @code{levels} histogram mode,
5018 per color component graphs are placed below each other.
5019
5020 Using this display mode in @code{waveform} histogram mode makes it easy to
5021 spot color casts in the highlights and shadows of an image, by comparing the
5022 contours of the top and the bottom graphs of each waveform. Since whites,
5023 grays, and blacks are characterized by exactly equal amounts of red, green,
5024 and blue, neutral areas of the picture should display three waveforms of
5025 roughly equal width/height. If not, the correction is easy to perform by
5026 making level adjustments the three waveforms.
5027
5028 @item overlay
5029 Presents information identical to that in the @code{parade}, except
5030 that the graphs representing color components are superimposed directly
5031 over one another.
5032
5033 This display mode in @code{waveform} histogram mode makes it easier to spot
5034 relative differences or similarities in overlapping areas of the color
5035 components that are supposed to be identical, such as neutral whites, grays,
5036 or blacks.
5037 @end table
5038 Default is @code{parade}.
5039
5040 @item levels_mode
5041 Set mode for @code{levels}. Can be either @code{linear}, or @code{logarithmic}.
5042 Default is @code{linear}.
5043 @end table
5044
5045 @subsection Examples
5046
5047 @itemize
5048
5049 @item
5050 Calculate and draw histogram:
5051 @example
5052 ffplay -i input -vf histogram
5053 @end example
5054
5055 @end itemize
5056
5057 @anchor{hqdn3d}
5058 @section hqdn3d
5059
5060 High precision/quality 3d denoise filter. This filter aims to reduce
5061 image noise producing smooth images and making still images really
5062 still. It should enhance compressibility.
5063
5064 It accepts the following optional parameters:
5065
5066 @table @option
5067 @item luma_spatial
5068 a non-negative float number which specifies spatial luma strength,
5069 defaults to 4.0
5070
5071 @item chroma_spatial
5072 a non-negative float number which specifies spatial chroma strength,
5073 defaults to 3.0*@var{luma_spatial}/4.0
5074
5075 @item luma_tmp
5076 a float number which specifies luma temporal strength, defaults to
5077 6.0*@var{luma_spatial}/4.0
5078
5079 @item chroma_tmp
5080 a float number which specifies chroma temporal strength, defaults to
5081 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}
5082 @end table
5083
5084 @section hue
5085
5086 Modify the hue and/or the saturation of the input.
5087
5088 This filter accepts the following options:
5089
5090 @table @option
5091 @item h
5092 Specify the hue angle as a number of degrees. It accepts an expression,
5093 and defaults to "0".
5094
5095 @item s
5096 Specify the saturation in the [-10,10] range. It accepts an expression and
5097 defaults to "1".
5098
5099 @item H
5100 Specify the hue angle as a number of radians. It accepts an
5101 expression, and defaults to "0".
5102
5103 @item b
5104 Specify the brightness in the [-10,10] range. It accepts an expression and
5105 defaults to "0".
5106 @end table
5107
5108 @option{h} and @option{H} are mutually exclusive, and can't be
5109 specified at the same time.
5110
5111 The @option{b}, @option{h}, @option{H} and @option{s} option values are
5112 expressions containing the following constants:
5113
5114 @table @option
5115 @item n
5116 frame count of the input frame starting from 0
5117
5118 @item pts
5119 presentation timestamp of the input frame expressed in time base units
5120
5121 @item r
5122 frame rate of the input video, NAN if the input frame rate is unknown
5123
5124 @item t
5125 timestamp expressed in seconds, NAN if the input timestamp is unknown
5126
5127 @item tb
5128 time base of the input video
5129 @end table
5130
5131 @subsection Examples
5132
5133 @itemize
5134 @item
5135 Set the hue to 90 degrees and the saturation to 1.0:
5136 @example
5137 hue=h=90:s=1
5138 @end example
5139
5140 @item
5141 Same command but expressing the hue in radians:
5142 @example
5143 hue=H=PI/2:s=1
5144 @end example
5145
5146 @item
5147 Rotate hue and make the saturation swing between 0
5148 and 2 over a period of 1 second:
5149 @example
5150 hue="H=2*PI*t: s=sin(2*PI*t)+1"
5151 @end example
5152
5153 @item
5154 Apply a 3 seconds saturation fade-in effect starting at 0:
5155 @example
5156 hue="s=min(t/3\,1)"
5157 @end example
5158
5159 The general fade-in expression can be written as:
5160 @example
5161 hue="s=min(0\, max((t-START)/DURATION\, 1))"
5162 @end example
5163
5164 @item
5165 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
5166 @example
5167 hue="s=max(0\, min(1\, (8-t)/3))"
5168 @end example
5169
5170 The general fade-out expression can be written as:
5171 @example
5172 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
5173 @end example
5174
5175 @end itemize
5176
5177 @subsection Commands
5178
5179 This filter supports the following commands:
5180 @table @option
5181 @item b
5182 @item s
5183 @item h
5184 @item H
5185 Modify the hue and/or the saturation and/or brightness of the input video.
5186 The command accepts the same syntax of the corresponding option.
5187
5188 If the specified expression is not valid, it is kept at its current
5189 value.
5190 @end table
5191
5192 @section idet
5193
5194 Detect video interlacing type.
5195
5196 This filter tries to detect if the input is interlaced or progressive,
5197 top or bottom field first.
5198
5199 The filter accepts the following options:
5200
5201 @table @option
5202 @item intl_thres
5203 Set interlacing threshold.
5204 @item prog_thres
5205 Set progressive threshold.
5206 @end table
5207
5208 @section il
5209
5210 Deinterleave or interleave fields.
5211
5212 This filter allows to process interlaced images fields without
5213 deinterlacing them. Deinterleaving splits the input frame into 2
5214 fields (so called half pictures). Odd lines are moved to the top
5215 half of the output image, even lines to the bottom half.
5216 You can process (filter) them independently and then re-interleave them.
5217
5218 The filter accepts the following options:
5219
5220 @table @option
5221 @item luma_mode, l
5222 @item chroma_mode, c
5223 @item alpha_mode, a
5224 Available values for @var{luma_mode}, @var{chroma_mode} and
5225 @var{alpha_mode} are:
5226
5227 @table @samp
5228 @item none
5229 Do nothing.
5230
5231 @item deinterleave, d
5232 Deinterleave fields, placing one above the other.
5233
5234 @item interleave, i
5235 Interleave fields. Reverse the effect of deinterleaving.
5236 @end table
5237 Default value is @code{none}.
5238
5239 @item luma_swap, ls
5240 @item chroma_swap, cs
5241 @item alpha_swap, as
5242 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
5243 @end table
5244
5245 @section interlace
5246
5247 Simple interlacing filter from progressive contents. This interleaves upper (or
5248 lower) lines from odd frames with lower (or upper) lines from even frames,
5249 halving the frame rate and preserving image height.
5250
5251 @example
5252    Original        Original             New Frame
5253    Frame 'j'      Frame 'j+1'             (tff)
5254   ==========      ===========       ==================
5255     Line 0  -------------------->    Frame 'j' Line 0
5256     Line 1          Line 1  ---->   Frame 'j+1' Line 1
5257     Line 2 --------------------->    Frame 'j' Line 2
5258     Line 3          Line 3  ---->   Frame 'j+1' Line 3
5259      ...             ...                   ...
5260 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
5261 @end example
5262
5263 It accepts the following optional parameters:
5264
5265 @table @option
5266 @item scan
5267 determines whether the interlaced frame is taken from the even (tff - default)
5268 or odd (bff) lines of the progressive frame.
5269
5270 @item lowpass
5271 Enable (default) or disable the vertical lowpass filter to avoid twitter
5272 interlacing and reduce moire patterns.
5273 @end table
5274
5275 @section kerndeint
5276
5277 Deinterlace input video by applying Donald Graft's adaptive kernel
5278 deinterling. Work on interlaced parts of a video to produce
5279 progressive frames.
5280
5281 The description of the accepted parameters follows.
5282
5283 @table @option
5284 @item thresh
5285 Set the threshold which affects the filter's tolerance when
5286 determining if a pixel line must be processed. It must be an integer
5287 in the range [0,255] and defaults to 10. A value of 0 will result in
5288 applying the process on every pixels.
5289
5290 @item map
5291 Paint pixels exceeding the threshold value to white if set to 1.
5292 Default is 0.
5293
5294 @item order
5295 Set the fields order. Swap fields if set to 1, leave fields alone if
5296 0. Default is 0.
5297
5298 @item sharp
5299 Enable additional sharpening if set to 1. Default is 0.
5300
5301 @item twoway
5302 Enable twoway sharpening if set to 1. Default is 0.
5303 @end table
5304
5305 @subsection Examples
5306
5307 @itemize
5308 @item
5309 Apply default values:
5310 @example
5311 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
5312 @end example
5313
5314 @item
5315 Enable additional sharpening:
5316 @example
5317 kerndeint=sharp=1
5318 @end example
5319
5320 @item
5321 Paint processed pixels in white:
5322 @example
5323 kerndeint=map=1
5324 @end example
5325 @end itemize
5326
5327 @anchor{lut3d}
5328 @section lut3d
5329
5330 Apply a 3D LUT to an input video.
5331
5332 The filter accepts the following options:
5333
5334 @table @option
5335 @item file
5336 Set the 3D LUT file name.
5337
5338 Currently supported formats:
5339 @table @samp
5340 @item 3dl
5341 AfterEffects
5342 @item cube
5343 Iridas
5344 @item dat
5345 DaVinci
5346 @item m3d
5347 Pandora
5348 @end table
5349 @item interp
5350 Select interpolation mode.
5351
5352 Available values are:
5353
5354 @table @samp
5355 @item nearest
5356 Use values from the nearest defined point.
5357 @item trilinear
5358 Interpolate values using the 8 points defining a cube.
5359 @item tetrahedral
5360 Interpolate values using a tetrahedron.
5361 @end table
5362 @end table
5363
5364 @section lut, lutrgb, lutyuv
5365
5366 Compute a look-up table for binding each pixel component input value
5367 to an output value, and apply it to input video.
5368
5369 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
5370 to an RGB input video.
5371
5372 These filters accept the following options:
5373 @table @option
5374 @item c0
5375 set first pixel component expression
5376 @item c1
5377 set second pixel component expression
5378 @item c2
5379 set third pixel component expression
5380 @item c3
5381 set fourth pixel component expression, corresponds to the alpha component
5382
5383 @item r
5384 set red component expression
5385 @item g
5386 set green component expression
5387 @item b
5388 set blue component expression
5389 @item a
5390 alpha component expression
5391
5392 @item y
5393 set Y/luminance component expression
5394 @item u
5395 set U/Cb component expression
5396 @item v
5397 set V/Cr component expression
5398 @end table
5399
5400 Each of them specifies the expression to use for computing the lookup table for
5401 the corresponding pixel component values.
5402
5403 The exact component associated to each of the @var{c*} options depends on the
5404 format in input.
5405
5406 The @var{lut} filter requires either YUV or RGB pixel formats in input,
5407 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
5408
5409 The expressions can contain the following constants and functions:
5410
5411 @table @option
5412 @item w
5413 @item h
5414 the input width and height
5415
5416 @item val
5417 input value for the pixel component
5418
5419 @item clipval
5420 the input value clipped in the @var{minval}-@var{maxval} range
5421
5422 @item maxval
5423 maximum value for the pixel component
5424
5425 @item minval
5426 minimum value for the pixel component
5427
5428 @item negval
5429 the negated value for the pixel component value clipped in the
5430 @var{minval}-@var{maxval} range , it corresponds to the expression
5431 "maxval-clipval+minval"
5432
5433 @item clip(val)
5434 the computed value in @var{val} clipped in the
5435 @var{minval}-@var{maxval} range
5436
5437 @item gammaval(gamma)
5438 the computed gamma correction value of the pixel component value
5439 clipped in the @var{minval}-@var{maxval} range, corresponds to the
5440 expression
5441 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
5442
5443 @end table
5444
5445 All expressions default to "val".
5446
5447 @subsection Examples
5448
5449 @itemize
5450 @item
5451 Negate input video:
5452 @example
5453 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
5454 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
5455 @end example
5456
5457 The above is the same as:
5458 @example
5459 lutrgb="r=negval:g=negval:b=negval"
5460 lutyuv="y=negval:u=negval:v=negval"
5461 @end example
5462
5463 @item
5464 Negate luminance:
5465 @example
5466 lutyuv=y=negval
5467 @end example
5468
5469 @item
5470 Remove chroma components, turns the video into a graytone image:
5471 @example
5472 lutyuv="u=128:v=128"
5473 @end example
5474
5475 @item
5476 Apply a luma burning effect:
5477 @example
5478 lutyuv="y=2*val"
5479 @end example
5480
5481 @item
5482 Remove green and blue components:
5483 @example
5484 lutrgb="g=0:b=0"
5485 @end example
5486
5487 @item
5488 Set a constant alpha channel value on input:
5489 @example
5490 format=rgba,lutrgb=a="maxval-minval/2"
5491 @end example
5492
5493 @item
5494 Correct luminance gamma by a 0.5 factor:
5495 @example
5496 lutyuv=y=gammaval(0.5)
5497 @end example
5498
5499 @item
5500 Discard least significant bits of luma:
5501 @example
5502 lutyuv=y='bitand(val, 128+64+32)'
5503 @end example
5504 @end itemize
5505
5506 @section mergeplanes
5507
5508 Merge color channel components from several video streams.
5509
5510 The filter accepts up to 4 input streams, and merge selected input
5511 planes to the output video.
5512
5513 This filter accepts the following options:
5514 @table @option
5515 @item mapping
5516 Set input to output plane mapping. Default is @code{0}.
5517
5518 The mappings is specified as a bitmap. It should be specified as a
5519 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
5520 mapping for the first plane of the output stream. 'A' sets the number of
5521 the input stream to use (from 0 to 3), and 'a' the plane number of the
5522 corresponding input to use (from 0 to 3). The rest of the mappings is
5523 similar, 'Bb' describes the mapping for the output stream second
5524 plane, 'Cc' describes the mapping for the output stream third plane and
5525 'Dd' describes the mapping for the output stream fourth plane.
5526
5527 @item format
5528 Set output pixel format. Default is @code{yuva444p}.
5529 @end table
5530
5531 @subsection Examples
5532
5533 @itemize
5534 @item
5535 Merge three gray video streams of same width and height into single video stream:
5536 @example
5537 [a0][a1][a2]mergeplanes=0x001020:yuv444p
5538 @end example
5539
5540 @item
5541 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
5542 @example
5543 [a0][a1]mergeplanes=0x00010210:yuva444p
5544 @end example
5545
5546 @item
5547 Swap Y and A plane in yuva444p stream:
5548 @example
5549 format=yuva444p,mergeplanes=0x03010200:yuva444p
5550 @end example
5551
5552 @item
5553 Swap U and V plane in yuv420p stream:
5554 @example
5555 format=yuv420p,mergeplanes=0x000201:yuv420p
5556 @end example
5557
5558 @item
5559 Cast a rgb24 clip to yuv444p:
5560 @example
5561 format=rgb24,mergeplanes=0x000102:yuv444p
5562 @end example
5563 @end itemize
5564
5565 @section mcdeint
5566
5567 Apply motion-compensation deinterlacing.
5568
5569 It needs one field per frame as input and must thus be used together
5570 with yadif=1/3 or equivalent.
5571
5572 This filter accepts the following options:
5573 @table @option
5574 @item mode
5575 Set the deinterlacing mode.
5576
5577 It accepts one of the following values:
5578 @table @samp
5579 @item fast
5580 @item medium
5581 @item slow
5582 use iterative motion estimation
5583 @item extra_slow
5584 like @samp{slow}, but use multiple reference frames.
5585 @end table
5586 Default value is @samp{fast}.
5587
5588 @item parity
5589 Set the picture field parity assumed for the input video. It must be
5590 one of the following values:
5591
5592 @table @samp
5593 @item 0, tff
5594 assume top field first
5595 @item 1, bff
5596 assume bottom field first
5597 @end table
5598
5599 Default value is @samp{bff}.
5600
5601 @item qp
5602 Set per-block quantization parameter (QP) used by the internal
5603 encoder.
5604
5605 Higher values should result in a smoother motion vector field but less
5606 optimal individual vectors. Default value is 1.
5607 @end table
5608
5609 @section mp
5610
5611 Apply an MPlayer filter to the input video.
5612
5613 This filter provides a wrapper around some of the filters of
5614 MPlayer/MEncoder.
5615
5616 This wrapper is considered experimental. Some of the wrapped filters
5617 may not work properly and we may drop support for them, as they will
5618 be implemented natively into FFmpeg. Thus you should avoid
5619 depending on them when writing portable scripts.
5620
5621 The filter accepts the parameters:
5622 @var{filter_name}[:=]@var{filter_params}
5623
5624 @var{filter_name} is the name of a supported MPlayer filter,
5625 @var{filter_params} is a string containing the parameters accepted by
5626 the named filter.
5627
5628 The list of the currently supported filters follows:
5629 @table @var
5630 @item eq2
5631 @item eq
5632 @item fspp
5633 @item ilpack
5634 @item pp7
5635 @item softpulldown
5636 @item uspp
5637 @end table
5638
5639 The parameter syntax and behavior for the listed filters are the same
5640 of the corresponding MPlayer filters. For detailed instructions check
5641 the "VIDEO FILTERS" section in the MPlayer manual.
5642
5643 @subsection Examples
5644
5645 @itemize
5646 @item
5647 Adjust gamma, brightness, contrast:
5648 @example
5649 mp=eq2=1.0:2:0.5
5650 @end example
5651 @end itemize
5652
5653 See also mplayer(1), @url{http://www.mplayerhq.hu/}.
5654
5655 @section mpdecimate
5656
5657 Drop frames that do not differ greatly from the previous frame in
5658 order to reduce frame rate.
5659
5660 The main use of this filter is for very-low-bitrate encoding
5661 (e.g. streaming over dialup modem), but it could in theory be used for
5662 fixing movies that were inverse-telecined incorrectly.
5663
5664 A description of the accepted options follows.
5665
5666 @table @option
5667 @item max
5668 Set the maximum number of consecutive frames which can be dropped (if
5669 positive), or the minimum interval between dropped frames (if
5670 negative). If the value is 0, the frame is dropped unregarding the
5671 number of previous sequentially dropped frames.
5672
5673 Default value is 0.
5674
5675 @item hi
5676 @item lo
5677 @item frac
5678 Set the dropping threshold values.
5679
5680 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
5681 represent actual pixel value differences, so a threshold of 64
5682 corresponds to 1 unit of difference for each pixel, or the same spread
5683 out differently over the block.
5684
5685 A frame is a candidate for dropping if no 8x8 blocks differ by more
5686 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
5687 meaning the whole image) differ by more than a threshold of @option{lo}.
5688
5689 Default value for @option{hi} is 64*12, default value for @option{lo} is
5690 64*5, and default value for @option{frac} is 0.33.
5691 @end table
5692
5693
5694 @section negate
5695
5696 Negate input video.
5697
5698 This filter accepts an integer in input, if non-zero it negates the
5699 alpha component (if available). The default value in input is 0.
5700
5701 @section noformat
5702
5703 Force libavfilter not to use any of the specified pixel formats for the
5704 input to the next filter.
5705
5706 This filter accepts the following parameters:
5707 @table @option
5708
5709 @item pix_fmts
5710 A '|'-separated list of pixel format names, for example
5711 "pix_fmts=yuv420p|monow|rgb24".
5712
5713 @end table
5714
5715 @subsection Examples
5716
5717 @itemize
5718 @item
5719 Force libavfilter to use a format different from @var{yuv420p} for the
5720 input to the vflip filter:
5721 @example
5722 noformat=pix_fmts=yuv420p,vflip
5723 @end example
5724
5725 @item
5726 Convert the input video to any of the formats not contained in the list:
5727 @example
5728 noformat=yuv420p|yuv444p|yuv410p
5729 @end example
5730 @end itemize
5731
5732 @section noise
5733
5734 Add noise on video input frame.
5735
5736 The filter accepts the following options:
5737
5738 @table @option
5739 @item all_seed
5740 @item c0_seed
5741 @item c1_seed
5742 @item c2_seed
5743 @item c3_seed
5744 Set noise seed for specific pixel component or all pixel components in case
5745 of @var{all_seed}. Default value is @code{123457}.
5746
5747 @item all_strength, alls
5748 @item c0_strength, c0s
5749 @item c1_strength, c1s
5750 @item c2_strength, c2s
5751 @item c3_strength, c3s
5752 Set noise strength for specific pixel component or all pixel components in case
5753 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
5754
5755 @item all_flags, allf
5756 @item c0_flags, c0f
5757 @item c1_flags, c1f
5758 @item c2_flags, c2f
5759 @item c3_flags, c3f
5760 Set pixel component flags or set flags for all components if @var{all_flags}.
5761 Available values for component flags are:
5762 @table @samp
5763 @item a
5764 averaged temporal noise (smoother)
5765 @item p
5766 mix random noise with a (semi)regular pattern
5767 @item t
5768 temporal noise (noise pattern changes between frames)
5769 @item u
5770 uniform noise (gaussian otherwise)
5771 @end table
5772 @end table
5773
5774 @subsection Examples
5775
5776 Add temporal and uniform noise to input video:
5777 @example
5778 noise=alls=20:allf=t+u
5779 @end example
5780
5781 @section null
5782
5783 Pass the video source unchanged to the output.
5784
5785 @section ocv
5786
5787 Apply video transform using libopencv.
5788
5789 To enable this filter install libopencv library and headers and
5790 configure FFmpeg with @code{--enable-libopencv}.
5791
5792 This filter accepts the following parameters:
5793
5794 @table @option
5795
5796 @item filter_name
5797 The name of the libopencv filter to apply.
5798
5799 @item filter_params
5800 The parameters to pass to the libopencv filter. If not specified the default
5801 values are assumed.
5802
5803 @end table
5804
5805 Refer to the official libopencv documentation for more precise
5806 information:
5807 @url{http://opencv.willowgarage.com/documentation/c/image_filtering.html}
5808
5809 Follows the list of supported libopencv filters.
5810
5811 @anchor{dilate}
5812 @subsection dilate
5813
5814 Dilate an image by using a specific structuring element.
5815 This filter corresponds to the libopencv function @code{cvDilate}.
5816
5817 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
5818
5819 @var{struct_el} represents a structuring element, and has the syntax:
5820 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
5821
5822 @var{cols} and @var{rows} represent the number of columns and rows of
5823 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
5824 point, and @var{shape} the shape for the structuring element, and
5825 can be one of the values "rect", "cross", "ellipse", "custom".
5826
5827 If the value for @var{shape} is "custom", it must be followed by a
5828 string of the form "=@var{filename}". The file with name
5829 @var{filename} is assumed to represent a binary image, with each
5830 printable character corresponding to a bright pixel. When a custom
5831 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
5832 or columns and rows of the read file are assumed instead.
5833
5834 The default value for @var{struct_el} is "3x3+0x0/rect".
5835
5836 @var{nb_iterations} specifies the number of times the transform is
5837 applied to the image, and defaults to 1.
5838
5839 Follow some example:
5840 @example
5841 # use the default values
5842 ocv=dilate
5843
5844 # dilate using a structuring element with a 5x5 cross, iterate two times
5845 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
5846
5847 # read the shape from the file diamond.shape, iterate two times
5848 # the file diamond.shape may contain a pattern of characters like this:
5849 #   *
5850 #  ***
5851 # *****
5852 #  ***
5853 #   *
5854 # the specified cols and rows are ignored (but not the anchor point coordinates)
5855 ocv=dilate:0x0+2x2/custom=diamond.shape|2
5856 @end example
5857
5858 @subsection erode
5859
5860 Erode an image by using a specific structuring element.
5861 This filter corresponds to the libopencv function @code{cvErode}.
5862
5863 The filter accepts the parameters: @var{struct_el}:@var{nb_iterations},
5864 with the same syntax and semantics as the @ref{dilate} filter.
5865
5866 @subsection smooth
5867
5868 Smooth the input video.
5869
5870 The filter takes the following parameters:
5871 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
5872
5873 @var{type} is the type of smooth filter to apply, and can be one of
5874 the following values: "blur", "blur_no_scale", "median", "gaussian",
5875 "bilateral". The default value is "gaussian".
5876
5877 @var{param1}, @var{param2}, @var{param3}, and @var{param4} are
5878 parameters whose meanings depend on smooth type. @var{param1} and
5879 @var{param2} accept integer positive values or 0, @var{param3} and
5880 @var{param4} accept float values.
5881
5882 The default value for @var{param1} is 3, the default value for the
5883 other parameters is 0.
5884
5885 These parameters correspond to the parameters assigned to the
5886 libopencv function @code{cvSmooth}.
5887
5888 @anchor{overlay}
5889 @section overlay
5890
5891 Overlay one video on top of another.
5892
5893 It takes two inputs and one output, the first input is the "main"
5894 video on which the second input is overlayed.
5895
5896 This filter accepts the following parameters:
5897
5898 A description of the accepted options follows.
5899
5900 @table @option
5901 @item x
5902 @item y
5903 Set the expression for the x and y coordinates of the overlayed video
5904 on the main video. Default value is "0" for both expressions. In case
5905 the expression is invalid, it is set to a huge value (meaning that the
5906 overlay will not be displayed within the output visible area).
5907
5908 @item eof_action
5909 The action to take when EOF is encountered on the secondary input, accepts one
5910 of the following values:
5911
5912 @table @option
5913 @item repeat
5914 repeat the last frame (the default)
5915 @item endall
5916 end both streams
5917 @item pass
5918 pass through the main input
5919 @end table
5920
5921 @item eval
5922 Set when the expressions for @option{x}, and @option{y} are evaluated.
5923
5924 It accepts the following values:
5925 @table @samp
5926 @item init
5927 only evaluate expressions once during the filter initialization or
5928 when a command is processed
5929
5930 @item frame
5931 evaluate expressions for each incoming frame
5932 @end table
5933
5934 Default value is @samp{frame}.
5935
5936 @item shortest
5937 If set to 1, force the output to terminate when the shortest input
5938 terminates. Default value is 0.
5939
5940 @item format
5941 Set the format for the output video.
5942
5943 It accepts the following values:
5944 @table @samp
5945 @item yuv420
5946 force YUV420 output
5947
5948 @item yuv422
5949 force YUV422 output
5950
5951 @item yuv444
5952 force YUV444 output
5953
5954 @item rgb
5955 force RGB output
5956 @end table
5957
5958 Default value is @samp{yuv420}.
5959
5960 @item rgb @emph{(deprecated)}
5961 If set to 1, force the filter to accept inputs in the RGB
5962 color space. Default value is 0. This option is deprecated, use
5963 @option{format} instead.
5964
5965 @item repeatlast
5966 If set to 1, force the filter to draw the last overlay frame over the
5967 main input until the end of the stream. A value of 0 disables this
5968 behavior. Default value is 1.
5969 @end table
5970
5971 The @option{x}, and @option{y} expressions can contain the following
5972 parameters.
5973
5974 @table @option
5975 @item main_w, W
5976 @item main_h, H
5977 main input width and height
5978
5979 @item overlay_w, w
5980 @item overlay_h, h
5981 overlay input width and height
5982
5983 @item x
5984 @item y
5985 the computed values for @var{x} and @var{y}. They are evaluated for
5986 each new frame.
5987
5988 @item hsub
5989 @item vsub
5990 horizontal and vertical chroma subsample values of the output
5991 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
5992 @var{vsub} is 1.
5993
5994 @item n
5995 the number of input frame, starting from 0
5996
5997 @item pos
5998 the position in the file of the input frame, NAN if unknown
5999
6000 @item t
6001 timestamp expressed in seconds, NAN if the input timestamp is unknown
6002
6003 @end table
6004
6005 Note that the @var{n}, @var{pos}, @var{t} variables are available only
6006 when evaluation is done @emph{per frame}, and will evaluate to NAN
6007 when @option{eval} is set to @samp{init}.
6008
6009 Be aware that frames are taken from each input video in timestamp
6010 order, hence, if their initial timestamps differ, it is a good idea
6011 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
6012 have them begin in the same zero timestamp, as it does the example for
6013 the @var{movie} filter.
6014
6015 You can chain together more overlays but you should test the
6016 efficiency of such approach.
6017
6018 @subsection Commands
6019
6020 This filter supports the following commands:
6021 @table @option
6022 @item x
6023 @item y
6024 Modify the x and y of the overlay input.
6025 The command accepts the same syntax of the corresponding option.
6026
6027 If the specified expression is not valid, it is kept at its current
6028 value.
6029 @end table
6030
6031 @subsection Examples
6032
6033 @itemize
6034 @item
6035 Draw the overlay at 10 pixels from the bottom right corner of the main
6036 video:
6037 @example
6038 overlay=main_w-overlay_w-10:main_h-overlay_h-10
6039 @end example
6040
6041 Using named options the example above becomes:
6042 @example
6043 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
6044 @end example
6045
6046 @item
6047 Insert a transparent PNG logo in the bottom left corner of the input,
6048 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
6049 @example
6050 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
6051 @end example
6052
6053 @item
6054 Insert 2 different transparent PNG logos (second logo on bottom
6055 right corner) using the @command{ffmpeg} tool:
6056 @example
6057 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
6058 @end example
6059
6060 @item
6061 Add a transparent color layer on top of the main video, @code{WxH}
6062 must specify the size of the main input to the overlay filter:
6063 @example
6064 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
6065 @end example
6066
6067 @item
6068 Play an original video and a filtered version (here with the deshake
6069 filter) side by side using the @command{ffplay} tool:
6070 @example
6071 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
6072 @end example
6073
6074 The above command is the same as:
6075 @example
6076 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
6077 @end example
6078
6079 @item
6080 Make a sliding overlay appearing from the left to the right top part of the
6081 screen starting since time 2:
6082 @example
6083 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
6084 @end example
6085
6086 @item
6087 Compose output by putting two input videos side to side:
6088 @example
6089 ffmpeg -i left.avi -i right.avi -filter_complex "
6090 nullsrc=size=200x100 [background];
6091 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
6092 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
6093 [background][left]       overlay=shortest=1       [background+left];
6094 [background+left][right] overlay=shortest=1:x=100 [left+right]
6095 "
6096 @end example
6097
6098 @item
6099 mask 10-20 seconds of a video by applying the delogo filter to a section
6100 @example
6101 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
6102 -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]'
6103 masked.avi
6104 @end example
6105
6106 @item
6107 Chain several overlays in cascade:
6108 @example
6109 nullsrc=s=200x200 [bg];
6110 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
6111 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
6112 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
6113 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
6114 [in3] null,       [mid2] overlay=100:100 [out0]
6115 @end example
6116
6117 @end itemize
6118
6119 @section owdenoise
6120
6121 Apply Overcomplete Wavelet denoiser.
6122
6123 The filter accepts the following options:
6124
6125 @table @option
6126 @item depth
6127 Set depth.
6128
6129 Larger depth values will denoise lower frequency components more, but
6130 slow down filtering.
6131
6132 Must be an int in the range 8-16, default is @code{8}.
6133
6134 @item luma_strength, ls
6135 Set luma strength.
6136
6137 Must be a double value in the range 0-1000, default is @code{1.0}.
6138
6139 @item chroma_strength, cs
6140 Set chroma strength.
6141
6142 Must be a double value in the range 0-1000, default is @code{1.0}.
6143 @end table
6144
6145 @section pad
6146
6147 Add paddings to the input image, and place the original input at the
6148 given coordinates @var{x}, @var{y}.
6149
6150 This filter accepts the following parameters:
6151
6152 @table @option
6153 @item width, w
6154 @item height, h
6155 Specify an expression for the size of the output image with the
6156 paddings added. If the value for @var{width} or @var{height} is 0, the
6157 corresponding input size is used for the output.
6158
6159 The @var{width} expression can reference the value set by the
6160 @var{height} expression, and vice versa.
6161
6162 The default value of @var{width} and @var{height} is 0.
6163
6164 @item x
6165 @item y
6166 Specify an expression for the offsets where to place the input image
6167 in the padded area with respect to the top/left border of the output
6168 image.
6169
6170 The @var{x} expression can reference the value set by the @var{y}
6171 expression, and vice versa.
6172
6173 The default value of @var{x} and @var{y} is 0.
6174
6175 @item color
6176 Specify the color of the padded area. For the syntax of this option,
6177 check the "Color" section in the ffmpeg-utils manual.
6178
6179 The default value of @var{color} is "black".
6180 @end table
6181
6182 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
6183 options are expressions containing the following constants:
6184
6185 @table @option
6186 @item in_w
6187 @item in_h
6188 the input video width and height
6189
6190 @item iw
6191 @item ih
6192 same as @var{in_w} and @var{in_h}
6193
6194 @item out_w
6195 @item out_h
6196 the output width and height, that is the size of the padded area as
6197 specified by the @var{width} and @var{height} expressions
6198
6199 @item ow
6200 @item oh
6201 same as @var{out_w} and @var{out_h}
6202
6203 @item x
6204 @item y
6205 x and y offsets as specified by the @var{x} and @var{y}
6206 expressions, or NAN if not yet specified
6207
6208 @item a
6209 same as @var{iw} / @var{ih}
6210
6211 @item sar
6212 input sample aspect ratio
6213
6214 @item dar
6215 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
6216
6217 @item hsub
6218 @item vsub
6219 horizontal and vertical chroma subsample values. For example for the
6220 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6221 @end table
6222
6223 @subsection Examples
6224
6225 @itemize
6226 @item
6227 Add paddings with color "violet" to the input video. Output video
6228 size is 640x480, the top-left corner of the input video is placed at
6229 column 0, row 40:
6230 @example
6231 pad=640:480:0:40:violet
6232 @end example
6233
6234 The example above is equivalent to the following command:
6235 @example
6236 pad=width=640:height=480:x=0:y=40:color=violet
6237 @end example
6238
6239 @item
6240 Pad the input to get an output with dimensions increased by 3/2,
6241 and put the input video at the center of the padded area:
6242 @example
6243 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
6244 @end example
6245
6246 @item
6247 Pad the input to get a squared output with size equal to the maximum
6248 value between the input width and height, and put the input video at
6249 the center of the padded area:
6250 @example
6251 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
6252 @end example
6253
6254 @item
6255 Pad the input to get a final w/h ratio of 16:9:
6256 @example
6257 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
6258 @end example
6259
6260 @item
6261 In case of anamorphic video, in order to set the output display aspect
6262 correctly, it is necessary to use @var{sar} in the expression,
6263 according to the relation:
6264 @example
6265 (ih * X / ih) * sar = output_dar
6266 X = output_dar / sar
6267 @end example
6268
6269 Thus the previous example needs to be modified to:
6270 @example
6271 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
6272 @end example
6273
6274 @item
6275 Double output size and put the input video in the bottom-right
6276 corner of the output padded area:
6277 @example
6278 pad="2*iw:2*ih:ow-iw:oh-ih"
6279 @end example
6280 @end itemize
6281
6282 @section perspective
6283
6284 Correct perspective of video not recorded perpendicular to the screen.
6285
6286 A description of the accepted parameters follows.
6287
6288 @table @option
6289 @item x0
6290 @item y0
6291 @item x1
6292 @item y1
6293 @item x2
6294 @item y2
6295 @item x3
6296 @item y3
6297 Set coordinates expression for top left, top right, bottom left and bottom right corners.
6298 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
6299
6300 The expressions can use the following variables:
6301
6302 @table @option
6303 @item W
6304 @item H
6305 the width and height of video frame.
6306 @end table
6307
6308 @item interpolation
6309 Set interpolation for perspective correction.
6310
6311 It accepts the following values:
6312 @table @samp
6313 @item linear
6314 @item cubic
6315 @end table
6316
6317 Default value is @samp{linear}.
6318 @end table
6319
6320 @section phase
6321
6322 Delay interlaced video by one field time so that the field order changes.
6323
6324 The intended use is to fix PAL movies that have been captured with the
6325 opposite field order to the film-to-video transfer.
6326
6327 A description of the accepted parameters follows.
6328
6329 @table @option
6330 @item mode
6331 Set phase mode.
6332
6333 It accepts the following values:
6334 @table @samp
6335 @item t
6336 Capture field order top-first, transfer bottom-first.
6337 Filter will delay the bottom field.
6338
6339 @item b
6340 Capture field order bottom-first, transfer top-first.
6341 Filter will delay the top field.
6342
6343 @item p
6344 Capture and transfer with the same field order. This mode only exists
6345 for the documentation of the other options to refer to, but if you
6346 actually select it, the filter will faithfully do nothing.
6347
6348 @item a
6349 Capture field order determined automatically by field flags, transfer
6350 opposite.
6351 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
6352 basis using field flags. If no field information is available,
6353 then this works just like @samp{u}.
6354
6355 @item u
6356 Capture unknown or varying, transfer opposite.
6357 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
6358 analyzing the images and selecting the alternative that produces best
6359 match between the fields.
6360
6361 @item T
6362 Capture top-first, transfer unknown or varying.
6363 Filter selects among @samp{t} and @samp{p} using image analysis.
6364
6365 @item B
6366 Capture bottom-first, transfer unknown or varying.
6367 Filter selects among @samp{b} and @samp{p} using image analysis.
6368
6369 @item A
6370 Capture determined by field flags, transfer unknown or varying.
6371 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
6372 image analysis. If no field information is available, then this works just
6373 like @samp{U}. This is the default mode.
6374
6375 @item U
6376 Both capture and transfer unknown or varying.
6377 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
6378 @end table
6379 @end table
6380
6381 @section pixdesctest
6382
6383 Pixel format descriptor test filter, mainly useful for internal
6384 testing. The output video should be equal to the input video.
6385
6386 For example:
6387 @example
6388 format=monow, pixdesctest
6389 @end example
6390
6391 can be used to test the monowhite pixel format descriptor definition.
6392
6393 @section pp
6394
6395 Enable the specified chain of postprocessing subfilters using libpostproc. This
6396 library should be automatically selected with a GPL build (@code{--enable-gpl}).
6397 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
6398 Each subfilter and some options have a short and a long name that can be used
6399 interchangeably, i.e. dr/dering are the same.
6400
6401 The filters accept the following options:
6402
6403 @table @option
6404 @item subfilters
6405 Set postprocessing subfilters string.
6406 @end table
6407
6408 All subfilters share common options to determine their scope:
6409
6410 @table @option
6411 @item a/autoq
6412 Honor the quality commands for this subfilter.
6413
6414 @item c/chrom
6415 Do chrominance filtering, too (default).
6416
6417 @item y/nochrom
6418 Do luminance filtering only (no chrominance).
6419
6420 @item n/noluma
6421 Do chrominance filtering only (no luminance).
6422 @end table
6423
6424 These options can be appended after the subfilter name, separated by a '|'.
6425
6426 Available subfilters are:
6427
6428 @table @option
6429 @item hb/hdeblock[|difference[|flatness]]
6430 Horizontal deblocking filter
6431 @table @option
6432 @item difference
6433 Difference factor where higher values mean more deblocking (default: @code{32}).
6434 @item flatness
6435 Flatness threshold where lower values mean more deblocking (default: @code{39}).
6436 @end table
6437
6438 @item vb/vdeblock[|difference[|flatness]]
6439 Vertical deblocking filter
6440 @table @option
6441 @item difference
6442 Difference factor where higher values mean more deblocking (default: @code{32}).
6443 @item flatness
6444 Flatness threshold where lower values mean more deblocking (default: @code{39}).
6445 @end table
6446
6447 @item ha/hadeblock[|difference[|flatness]]
6448 Accurate horizontal deblocking filter
6449 @table @option
6450 @item difference
6451 Difference factor where higher values mean more deblocking (default: @code{32}).
6452 @item flatness
6453 Flatness threshold where lower values mean more deblocking (default: @code{39}).
6454 @end table
6455
6456 @item va/vadeblock[|difference[|flatness]]
6457 Accurate vertical deblocking filter
6458 @table @option
6459 @item difference
6460 Difference factor where higher values mean more deblocking (default: @code{32}).
6461 @item flatness
6462 Flatness threshold where lower values mean more deblocking (default: @code{39}).
6463 @end table
6464 @end table
6465
6466 The horizontal and vertical deblocking filters share the difference and
6467 flatness values so you cannot set different horizontal and vertical
6468 thresholds.
6469
6470 @table @option
6471 @item h1/x1hdeblock
6472 Experimental horizontal deblocking filter
6473
6474 @item v1/x1vdeblock
6475 Experimental vertical deblocking filter
6476
6477 @item dr/dering
6478 Deringing filter
6479
6480 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
6481 @table @option
6482 @item threshold1
6483 larger -> stronger filtering
6484 @item threshold2
6485 larger -> stronger filtering
6486 @item threshold3
6487 larger -> stronger filtering
6488 @end table
6489
6490 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
6491 @table @option
6492 @item f/fullyrange
6493 Stretch luminance to @code{0-255}.
6494 @end table
6495
6496 @item lb/linblenddeint
6497 Linear blend deinterlacing filter that deinterlaces the given block by
6498 filtering all lines with a @code{(1 2 1)} filter.
6499
6500 @item li/linipoldeint
6501 Linear interpolating deinterlacing filter that deinterlaces the given block by
6502 linearly interpolating every second line.
6503
6504 @item ci/cubicipoldeint
6505 Cubic interpolating deinterlacing filter deinterlaces the given block by
6506 cubically interpolating every second line.
6507
6508 @item md/mediandeint
6509 Median deinterlacing filter that deinterlaces the given block by applying a
6510 median filter to every second line.
6511
6512 @item fd/ffmpegdeint
6513 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
6514 second line with a @code{(-1 4 2 4 -1)} filter.
6515
6516 @item l5/lowpass5
6517 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
6518 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
6519
6520 @item fq/forceQuant[|quantizer]
6521 Overrides the quantizer table from the input with the constant quantizer you
6522 specify.
6523 @table @option
6524 @item quantizer
6525 Quantizer to use
6526 @end table
6527
6528 @item de/default
6529 Default pp filter combination (@code{hb|a,vb|a,dr|a})
6530
6531 @item fa/fast
6532 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
6533
6534 @item ac
6535 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
6536 @end table
6537
6538 @subsection Examples
6539
6540 @itemize
6541 @item
6542 Apply horizontal and vertical deblocking, deringing and automatic
6543 brightness/contrast:
6544 @example
6545 pp=hb/vb/dr/al
6546 @end example
6547
6548 @item
6549 Apply default filters without brightness/contrast correction:
6550 @example
6551 pp=de/-al
6552 @end example
6553
6554 @item
6555 Apply default filters and temporal denoiser:
6556 @example
6557 pp=default/tmpnoise|1|2|3
6558 @end example
6559
6560 @item
6561 Apply deblocking on luminance only, and switch vertical deblocking on or off
6562 automatically depending on available CPU time:
6563 @example
6564 pp=hb|y/vb|a
6565 @end example
6566 @end itemize
6567
6568 @section psnr
6569
6570 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
6571 Ratio) between two input videos.
6572
6573 This filter takes in input two input videos, the first input is
6574 considered the "main" source and is passed unchanged to the
6575 output. The second input is used as a "reference" video for computing
6576 the PSNR.
6577
6578 Both video inputs must have the same resolution and pixel format for
6579 this filter to work correctly. Also it assumes that both inputs
6580 have the same number of frames, which are compared one by one.
6581
6582 The obtained average PSNR is printed through the logging system.
6583
6584 The filter stores the accumulated MSE (mean squared error) of each
6585 frame, and at the end of the processing it is averaged across all frames
6586 equally, and the following formula is applied to obtain the PSNR:
6587
6588 @example
6589 PSNR = 10*log10(MAX^2/MSE)
6590 @end example
6591
6592 Where MAX is the average of the maximum values of each component of the
6593 image.
6594
6595 The description of the accepted parameters follows.
6596
6597 @table @option
6598 @item stats_file, f
6599 If specified the filter will use the named file to save the PSNR of
6600 each individual frame.
6601 @end table
6602
6603 The file printed if @var{stats_file} is selected, contains a sequence of
6604 key/value pairs of the form @var{key}:@var{value} for each compared
6605 couple of frames.
6606
6607 A description of each shown parameter follows:
6608
6609 @table @option
6610 @item n
6611 sequential number of the input frame, starting from 1
6612
6613 @item mse_avg
6614 Mean Square Error pixel-by-pixel average difference of the compared
6615 frames, averaged over all the image components.
6616
6617 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_g, mse_a
6618 Mean Square Error pixel-by-pixel average difference of the compared
6619 frames for the component specified by the suffix.
6620
6621 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
6622 Peak Signal to Noise ratio of the compared frames for the component
6623 specified by the suffix.
6624 @end table
6625
6626 For example:
6627 @example
6628 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
6629 [main][ref] psnr="stats_file=stats.log" [out]
6630 @end example
6631
6632 On this example the input file being processed is compared with the
6633 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
6634 is stored in @file{stats.log}.
6635
6636 @section pullup
6637
6638 Pulldown reversal (inverse telecine) filter, capable of handling mixed
6639 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
6640 content.
6641
6642 The pullup filter is designed to take advantage of future context in making
6643 its decisions. This filter is stateless in the sense that it does not lock
6644 onto a pattern to follow, but it instead looks forward to the following
6645 fields in order to identify matches and rebuild progressive frames.
6646
6647 To produce content with an even framerate, insert the fps filter after
6648 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
6649 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
6650
6651 The filter accepts the following options:
6652
6653 @table @option
6654 @item jl
6655 @item jr
6656 @item jt
6657 @item jb
6658 These options set the amount of "junk" to ignore at the left, right, top, and
6659 bottom of the image, respectively. Left and right are in units of 8 pixels,
6660 while top and bottom are in units of 2 lines.
6661 The default is 8 pixels on each side.
6662
6663 @item sb
6664 Set the strict breaks. Setting this option to 1 will reduce the chances of
6665 filter generating an occasional mismatched frame, but it may also cause an
6666 excessive number of frames to be dropped during high motion sequences.
6667 Conversely, setting it to -1 will make filter match fields more easily.
6668 This may help processing of video where there is slight blurring between
6669 the fields, but may also cause there to be interlaced frames in the output.
6670 Default value is @code{0}.
6671
6672 @item mp
6673 Set the metric plane to use. It accepts the following values:
6674 @table @samp
6675 @item l
6676 Use luma plane.
6677
6678 @item u
6679 Use chroma blue plane.
6680
6681 @item v
6682 Use chroma red plane.
6683 @end table
6684
6685 This option may be set to use chroma plane instead of the default luma plane
6686 for doing filter's computations. This may improve accuracy on very clean
6687 source material, but more likely will decrease accuracy, especially if there
6688 is chroma noise (rainbow effect) or any grayscale video.
6689 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
6690 load and make pullup usable in realtime on slow machines.
6691 @end table
6692
6693 For best results (without duplicated frames in the output file) it is
6694 necessary to change the output frame rate. For example, to inverse
6695 telecine NTSC input:
6696 @example
6697 ffmpeg -i input -vf pullup -r 24000/1001 ...
6698 @end example
6699
6700 @section removelogo
6701
6702 Suppress a TV station logo, using an image file to determine which
6703 pixels comprise the logo. It works by filling in the pixels that
6704 comprise the logo with neighboring pixels.
6705
6706 The filter accepts the following options:
6707
6708 @table @option
6709 @item filename, f
6710 Set the filter bitmap file, which can be any image format supported by
6711 libavformat. The width and height of the image file must match those of the
6712 video stream being processed.
6713 @end table
6714
6715 Pixels in the provided bitmap image with a value of zero are not
6716 considered part of the logo, non-zero pixels are considered part of
6717 the logo. If you use white (255) for the logo and black (0) for the
6718 rest, you will be safe. For making the filter bitmap, it is
6719 recommended to take a screen capture of a black frame with the logo
6720 visible, and then using a threshold filter followed by the erode
6721 filter once or twice.
6722
6723 If needed, little splotches can be fixed manually. Remember that if
6724 logo pixels are not covered, the filter quality will be much
6725 reduced. Marking too many pixels as part of the logo does not hurt as
6726 much, but it will increase the amount of blurring needed to cover over
6727 the image and will destroy more information than necessary, and extra
6728 pixels will slow things down on a large logo.
6729
6730 @section rotate
6731
6732 Rotate video by an arbitrary angle expressed in radians.
6733
6734 The filter accepts the following options:
6735
6736 A description of the optional parameters follows.
6737 @table @option
6738 @item angle, a
6739 Set an expression for the angle by which to rotate the input video
6740 clockwise, expressed as a number of radians. A negative value will
6741 result in a counter-clockwise rotation. By default it is set to "0".
6742
6743 This expression is evaluated for each frame.
6744
6745 @item out_w, ow
6746 Set the output width expression, default value is "iw".
6747 This expression is evaluated just once during configuration.
6748
6749 @item out_h, oh
6750 Set the output height expression, default value is "ih".
6751 This expression is evaluated just once during configuration.
6752
6753 @item bilinear
6754 Enable bilinear interpolation if set to 1, a value of 0 disables
6755 it. Default value is 1.
6756
6757 @item fillcolor, c
6758 Set the color used to fill the output area not covered by the rotated
6759 image. For the generalsyntax of this option, check the "Color" section in the
6760 ffmpeg-utils manual. If the special value "none" is selected then no
6761 background is printed (useful for example if the background is never shown).
6762
6763 Default value is "black".
6764 @end table
6765
6766 The expressions for the angle and the output size can contain the
6767 following constants and functions:
6768
6769 @table @option
6770 @item n
6771 sequential number of the input frame, starting from 0. It is always NAN
6772 before the first frame is filtered.
6773
6774 @item t
6775 time in seconds of the input frame, it is set to 0 when the filter is
6776 configured. It is always NAN before the first frame is filtered.
6777
6778 @item hsub
6779 @item vsub
6780 horizontal and vertical chroma subsample values. For example for the
6781 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6782
6783 @item in_w, iw
6784 @item in_h, ih
6785 the input video width and height
6786
6787 @item out_w, ow
6788 @item out_h, oh
6789 the output width and height, that is the size of the padded area as
6790 specified by the @var{width} and @var{height} expressions
6791
6792 @item rotw(a)
6793 @item roth(a)
6794 the minimal width/height required for completely containing the input
6795 video rotated by @var{a} radians.
6796
6797 These are only available when computing the @option{out_w} and
6798 @option{out_h} expressions.
6799 @end table
6800
6801 @subsection Examples
6802
6803 @itemize
6804 @item
6805 Rotate the input by PI/6 radians clockwise:
6806 @example
6807 rotate=PI/6
6808 @end example
6809
6810 @item
6811 Rotate the input by PI/6 radians counter-clockwise:
6812 @example
6813 rotate=-PI/6
6814 @end example
6815
6816 @item
6817 Rotate the input by 45 degrees clockwise:
6818 @example
6819 rotate=45*PI/180
6820 @end example
6821
6822 @item
6823 Apply a constant rotation with period T, starting from an angle of PI/3:
6824 @example
6825 rotate=PI/3+2*PI*t/T
6826 @end example
6827
6828 @item
6829 Make the input video rotation oscillating with a period of T
6830 seconds and an amplitude of A radians:
6831 @example
6832 rotate=A*sin(2*PI/T*t)
6833 @end example
6834
6835 @item
6836 Rotate the video, output size is choosen so that the whole rotating
6837 input video is always completely contained in the output:
6838 @example
6839 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
6840 @end example
6841
6842 @item
6843 Rotate the video, reduce the output size so that no background is ever
6844 shown:
6845 @example
6846 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
6847 @end example
6848 @end itemize
6849
6850 @subsection Commands
6851
6852 The filter supports the following commands:
6853
6854 @table @option
6855 @item a, angle
6856 Set the angle expression.
6857 The command accepts the same syntax of the corresponding option.
6858
6859 If the specified expression is not valid, it is kept at its current
6860 value.
6861 @end table
6862
6863 @section sab
6864
6865 Apply Shape Adaptive Blur.
6866
6867 The filter accepts the following options:
6868
6869 @table @option
6870 @item luma_radius, lr
6871 Set luma blur filter strength, must be a value in range 0.1-4.0, default
6872 value is 1.0. A greater value will result in a more blurred image, and
6873 in slower processing.
6874
6875 @item luma_pre_filter_radius, lpfr
6876 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
6877 value is 1.0.
6878
6879 @item luma_strength, ls
6880 Set luma maximum difference between pixels to still be considered, must
6881 be a value in the 0.1-100.0 range, default value is 1.0.
6882
6883 @item chroma_radius, cr
6884 Set chroma blur filter strength, must be a value in range 0.1-4.0. A
6885 greater value will result in a more blurred image, and in slower
6886 processing.
6887
6888 @item chroma_pre_filter_radius, cpfr
6889 Set chroma pre-filter radius, must be a value in the 0.1-2.0 range.
6890
6891 @item chroma_strength, cs
6892 Set chroma maximum difference between pixels to still be considered,
6893 must be a value in the 0.1-100.0 range.
6894 @end table
6895
6896 Each chroma option value, if not explicitly specified, is set to the
6897 corresponding luma option value.
6898
6899 @anchor{scale}
6900 @section scale
6901
6902 Scale (resize) the input video, using the libswscale library.
6903
6904 The scale filter forces the output display aspect ratio to be the same
6905 of the input, by changing the output sample aspect ratio.
6906
6907 If the input image format is different from the format requested by
6908 the next filter, the scale filter will convert the input to the
6909 requested format.
6910
6911 @subsection Options
6912 The filter accepts the following options, or any of the options
6913 supported by the libswscale scaler.
6914
6915 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
6916 the complete list of scaler options.
6917
6918 @table @option
6919 @item width, w
6920 @item height, h
6921 Set the output video dimension expression. Default value is the input
6922 dimension.
6923
6924 If the value is 0, the input width is used for the output.
6925
6926 If one of the values is -1, the scale filter will use a value that
6927 maintains the aspect ratio of the input image, calculated from the
6928 other specified dimension. If both of them are -1, the input size is
6929 used
6930
6931 If one of the values is -n with n > 1, the scale filter will also use a value
6932 that maintains the aspect ratio of the input image, calculated from the other
6933 specified dimension. After that it will, however, make sure that the calculated
6934 dimension is divisible by n and adjust the value if necessary.
6935
6936 See below for the list of accepted constants for use in the dimension
6937 expression.
6938
6939 @item interl
6940 Set the interlacing mode. It accepts the following values:
6941
6942 @table @samp
6943 @item 1
6944 Force interlaced aware scaling.
6945
6946 @item 0
6947 Do not apply interlaced scaling.
6948
6949 @item -1
6950 Select interlaced aware scaling depending on whether the source frames
6951 are flagged as interlaced or not.
6952 @end table
6953
6954 Default value is @samp{0}.
6955
6956 @item flags
6957 Set libswscale scaling flags. See
6958 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
6959 complete list of values. If not explictly specified the filter applies
6960 the default flags.
6961
6962 @item size, s
6963 Set the video size. For the syntax of this option, check the "Video size"
6964 section in the ffmpeg-utils manual.
6965
6966 @item in_color_matrix
6967 @item out_color_matrix
6968 Set in/output YCbCr color space type.
6969
6970 This allows the autodetected value to be overridden as well as allows forcing
6971 a specific value used for the output and encoder.
6972
6973 If not specified, the color space type depends on the pixel format.
6974
6975 Possible values:
6976
6977 @table @samp
6978 @item auto
6979 Choose automatically.
6980
6981 @item bt709
6982 Format conforming to International Telecommunication Union (ITU)
6983 Recommendation BT.709.
6984
6985 @item fcc
6986 Set color space conforming to the United States Federal Communications
6987 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
6988
6989 @item bt601
6990 Set color space conforming to:
6991
6992 @itemize
6993 @item
6994 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
6995
6996 @item
6997 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
6998
6999 @item
7000 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
7001
7002 @end itemize
7003
7004 @item smpte240m
7005 Set color space conforming to SMPTE ST 240:1999.
7006 @end table
7007
7008 @item in_range
7009 @item out_range
7010 Set in/output YCbCr sample range.
7011
7012 This allows the autodetected value to be overridden as well as allows forcing
7013 a specific value used for the output and encoder. If not specified, the
7014 range depends on the pixel format. Possible values:
7015
7016 @table @samp
7017 @item auto
7018 Choose automatically.
7019
7020 @item jpeg/full/pc
7021 Set full range (0-255 in case of 8-bit luma).
7022
7023 @item mpeg/tv
7024 Set "MPEG" range (16-235 in case of 8-bit luma).
7025 @end table
7026
7027 @item force_original_aspect_ratio
7028 Enable decreasing or increasing output video width or height if necessary to
7029 keep the original aspect ratio. Possible values:
7030
7031 @table @samp
7032 @item disable
7033 Scale the video as specified and disable this feature.
7034
7035 @item decrease
7036 The output video dimensions will automatically be decreased if needed.
7037
7038 @item increase
7039 The output video dimensions will automatically be increased if needed.
7040
7041 @end table
7042
7043 One useful instance of this option is that when you know a specific device's
7044 maximum allowed resolution, you can use this to limit the output video to
7045 that, while retaining the aspect ratio. For example, device A allows
7046 1280x720 playback, and your video is 1920x800. Using this option (set it to
7047 decrease) and specifying 1280x720 to the command line makes the output
7048 1280x533.
7049
7050 Please note that this is a different thing than specifying -1 for @option{w}
7051 or @option{h}, you still need to specify the output resolution for this option
7052 to work.
7053
7054 @end table
7055
7056 The values of the @option{w} and @option{h} options are expressions
7057 containing the following constants:
7058
7059 @table @var
7060 @item in_w
7061 @item in_h
7062 the input width and height
7063
7064 @item iw
7065 @item ih
7066 same as @var{in_w} and @var{in_h}
7067
7068 @item out_w
7069 @item out_h
7070 the output (scaled) width and height
7071
7072 @item ow
7073 @item oh
7074 same as @var{out_w} and @var{out_h}
7075
7076 @item a
7077 same as @var{iw} / @var{ih}
7078
7079 @item sar
7080 input sample aspect ratio
7081
7082 @item dar
7083 input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
7084
7085 @item hsub
7086 @item vsub
7087 horizontal and vertical input chroma subsample values. For example for the
7088 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
7089
7090 @item ohsub
7091 @item ovsub
7092 horizontal and vertical output chroma subsample values. For example for the
7093 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
7094 @end table
7095
7096 @subsection Examples
7097
7098 @itemize
7099 @item
7100 Scale the input video to a size of 200x100:
7101 @example
7102 scale=w=200:h=100
7103 @end example
7104
7105 This is equivalent to:
7106 @example
7107 scale=200:100
7108 @end example
7109
7110 or:
7111 @example
7112 scale=200x100
7113 @end example
7114
7115 @item
7116 Specify a size abbreviation for the output size:
7117 @example
7118 scale=qcif
7119 @end example
7120
7121 which can also be written as:
7122 @example
7123 scale=size=qcif
7124 @end example
7125
7126 @item
7127 Scale the input to 2x:
7128 @example
7129 scale=w=2*iw:h=2*ih
7130 @end example
7131
7132 @item
7133 The above is the same as:
7134 @example
7135 scale=2*in_w:2*in_h
7136 @end example
7137
7138 @item
7139 Scale the input to 2x with forced interlaced scaling:
7140 @example
7141 scale=2*iw:2*ih:interl=1
7142 @end example
7143
7144 @item
7145 Scale the input to half size:
7146 @example
7147 scale=w=iw/2:h=ih/2
7148 @end example
7149
7150 @item
7151 Increase the width, and set the height to the same size:
7152 @example
7153 scale=3/2*iw:ow
7154 @end example
7155
7156 @item
7157 Seek for Greek harmony:
7158 @example
7159 scale=iw:1/PHI*iw
7160 scale=ih*PHI:ih
7161 @end example
7162
7163 @item
7164 Increase the height, and set the width to 3/2 of the height:
7165 @example
7166 scale=w=3/2*oh:h=3/5*ih
7167 @end example
7168
7169 @item
7170 Increase the size, but make the size a multiple of the chroma
7171 subsample values:
7172 @example
7173 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
7174 @end example
7175
7176 @item
7177 Increase the width to a maximum of 500 pixels, keep the same input
7178 aspect ratio:
7179 @example
7180 scale=w='min(500\, iw*3/2):h=-1'
7181 @end example
7182 @end itemize
7183
7184 @section separatefields
7185
7186 The @code{separatefields} takes a frame-based video input and splits
7187 each frame into its components fields, producing a new half height clip
7188 with twice the frame rate and twice the frame count.
7189
7190 This filter use field-dominance information in frame to decide which
7191 of each pair of fields to place first in the output.
7192 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
7193
7194 @section setdar, setsar
7195
7196 The @code{setdar} filter sets the Display Aspect Ratio for the filter
7197 output video.
7198
7199 This is done by changing the specified Sample (aka Pixel) Aspect
7200 Ratio, according to the following equation:
7201 @example
7202 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
7203 @end example
7204
7205 Keep in mind that the @code{setdar} filter does not modify the pixel
7206 dimensions of the video frame. Also the display aspect ratio set by
7207 this filter may be changed by later filters in the filterchain,
7208 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
7209 applied.
7210
7211 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
7212 the filter output video.
7213
7214 Note that as a consequence of the application of this filter, the
7215 output display aspect ratio will change according to the equation
7216 above.
7217
7218 Keep in mind that the sample aspect ratio set by the @code{setsar}
7219 filter may be changed by later filters in the filterchain, e.g. if
7220 another "setsar" or a "setdar" filter is applied.
7221
7222 The filters accept the following options:
7223
7224 @table @option
7225 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
7226 Set the aspect ratio used by the filter.
7227
7228 The parameter can be a floating point number string, an expression, or
7229 a string of the form @var{num}:@var{den}, where @var{num} and
7230 @var{den} are the numerator and denominator of the aspect ratio. If
7231 the parameter is not specified, it is assumed the value "0".
7232 In case the form "@var{num}:@var{den}" is used, the @code{:} character
7233 should be escaped.
7234
7235 @item max
7236 Set the maximum integer value to use for expressing numerator and
7237 denominator when reducing the expressed aspect ratio to a rational.
7238 Default value is @code{100}.
7239
7240 @end table
7241
7242 The parameter @var{sar} is an expression containing
7243 the following constants:
7244
7245 @table @option
7246 @item E, PI, PHI
7247 the corresponding mathematical approximated values for e
7248 (euler number), pi (greek PI), phi (golden ratio)
7249
7250 @item w, h
7251 the input width and height
7252
7253 @item a
7254 same as @var{w} / @var{h}
7255
7256 @item sar
7257 input sample aspect ratio
7258
7259 @item dar
7260 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
7261
7262 @item hsub, vsub
7263 horizontal and vertical chroma subsample values. For example for the
7264 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
7265 @end table
7266
7267 @subsection Examples
7268
7269 @itemize
7270
7271 @item
7272 To change the display aspect ratio to 16:9, specify one of the following:
7273 @example
7274 setdar=dar=1.77777
7275 setdar=dar=16/9
7276 setdar=dar=1.77777
7277 @end example
7278
7279 @item
7280 To change the sample aspect ratio to 10:11, specify:
7281 @example
7282 setsar=sar=10/11
7283 @end example
7284
7285 @item
7286 To set a display aspect ratio of 16:9, and specify a maximum integer value of
7287 1000 in the aspect ratio reduction, use the command:
7288 @example
7289 setdar=ratio=16/9:max=1000
7290 @end example
7291
7292 @end itemize
7293
7294 @anchor{setfield}
7295 @section setfield
7296
7297 Force field for the output video frame.
7298
7299 The @code{setfield} filter marks the interlace type field for the
7300 output frames. It does not change the input frame, but only sets the
7301 corresponding property, which affects how the frame is treated by
7302 following filters (e.g. @code{fieldorder} or @code{yadif}).
7303
7304 The filter accepts the following options:
7305
7306 @table @option
7307
7308 @item mode
7309 Available values are:
7310
7311 @table @samp
7312 @item auto
7313 Keep the same field property.
7314
7315 @item bff
7316 Mark the frame as bottom-field-first.
7317
7318 @item tff
7319 Mark the frame as top-field-first.
7320
7321 @item prog
7322 Mark the frame as progressive.
7323 @end table
7324 @end table
7325
7326 @section showinfo
7327
7328 Show a line containing various information for each input video frame.
7329 The input video is not modified.
7330
7331 The shown line contains a sequence of key/value pairs of the form
7332 @var{key}:@var{value}.
7333
7334 A description of each shown parameter follows:
7335
7336 @table @option
7337 @item n
7338 sequential number of the input frame, starting from 0
7339
7340 @item pts
7341 Presentation TimeStamp of the input frame, expressed as a number of
7342 time base units. The time base unit depends on the filter input pad.
7343
7344 @item pts_time
7345 Presentation TimeStamp of the input frame, expressed as a number of
7346 seconds
7347
7348 @item pos
7349 position of the frame in the input stream, -1 if this information in
7350 unavailable and/or meaningless (for example in case of synthetic video)
7351
7352 @item fmt
7353 pixel format name
7354
7355 @item sar
7356 sample aspect ratio of the input frame, expressed in the form
7357 @var{num}/@var{den}
7358
7359 @item s
7360 size of the input frame. For the syntax of this option, check the "Video size"
7361 section in the ffmpeg-utils manual.
7362
7363 @item i
7364 interlaced mode ("P" for "progressive", "T" for top field first, "B"
7365 for bottom field first)
7366
7367 @item iskey
7368 1 if the frame is a key frame, 0 otherwise
7369
7370 @item type
7371 picture type of the input frame ("I" for an I-frame, "P" for a
7372 P-frame, "B" for a B-frame, "?" for unknown type).
7373 Check also the documentation of the @code{AVPictureType} enum and of
7374 the @code{av_get_picture_type_char} function defined in
7375 @file{libavutil/avutil.h}.
7376
7377 @item checksum
7378 Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame
7379
7380 @item plane_checksum
7381 Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
7382 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]"
7383 @end table
7384
7385 @anchor{smartblur}
7386 @section smartblur
7387
7388 Blur the input video without impacting the outlines.
7389
7390 The filter accepts the following options:
7391
7392 @table @option
7393 @item luma_radius, lr
7394 Set the luma radius. The option value must be a float number in
7395 the range [0.1,5.0] that specifies the variance of the gaussian filter
7396 used to blur the image (slower if larger). Default value is 1.0.
7397
7398 @item luma_strength, ls
7399 Set the luma strength. The option value must be a float number
7400 in the range [-1.0,1.0] that configures the blurring. A value included
7401 in [0.0,1.0] will blur the image whereas a value included in
7402 [-1.0,0.0] will sharpen the image. Default value is 1.0.
7403
7404 @item luma_threshold, lt
7405 Set the luma threshold used as a coefficient to determine
7406 whether a pixel should be blurred or not. The option value must be an
7407 integer in the range [-30,30]. A value of 0 will filter all the image,
7408 a value included in [0,30] will filter flat areas and a value included
7409 in [-30,0] will filter edges. Default value is 0.
7410
7411 @item chroma_radius, cr
7412 Set the chroma radius. The option value must be a float number in
7413 the range [0.1,5.0] that specifies the variance of the gaussian filter
7414 used to blur the image (slower if larger). Default value is 1.0.
7415
7416 @item chroma_strength, cs
7417 Set the chroma strength. The option value must be a float number
7418 in the range [-1.0,1.0] that configures the blurring. A value included
7419 in [0.0,1.0] will blur the image whereas a value included in
7420 [-1.0,0.0] will sharpen the image. Default value is 1.0.
7421
7422 @item chroma_threshold, ct
7423 Set the chroma threshold used as a coefficient to determine
7424 whether a pixel should be blurred or not. The option value must be an
7425 integer in the range [-30,30]. A value of 0 will filter all the image,
7426 a value included in [0,30] will filter flat areas and a value included
7427 in [-30,0] will filter edges. Default value is 0.
7428 @end table
7429
7430 If a chroma option is not explicitly set, the corresponding luma value
7431 is set.
7432
7433 @section stereo3d
7434
7435 Convert between different stereoscopic image formats.
7436
7437 The filters accept the following options:
7438
7439 @table @option
7440 @item in
7441 Set stereoscopic image format of input.
7442
7443 Available values for input image formats are:
7444 @table @samp
7445 @item sbsl
7446 side by side parallel (left eye left, right eye right)
7447
7448 @item sbsr
7449 side by side crosseye (right eye left, left eye right)
7450
7451 @item sbs2l
7452 side by side parallel with half width resolution
7453 (left eye left, right eye right)
7454
7455 @item sbs2r
7456 side by side crosseye with half width resolution
7457 (right eye left, left eye right)
7458
7459 @item abl
7460 above-below (left eye above, right eye below)
7461
7462 @item abr
7463 above-below (right eye above, left eye below)
7464
7465 @item ab2l
7466 above-below with half height resolution
7467 (left eye above, right eye below)
7468
7469 @item ab2r
7470 above-below with half height resolution
7471 (right eye above, left eye below)
7472
7473 @item al
7474 alternating frames (left eye first, right eye second)
7475
7476 @item ar
7477 alternating frames (right eye first, left eye second)
7478
7479 Default value is @samp{sbsl}.
7480 @end table
7481
7482 @item out
7483 Set stereoscopic image format of output.
7484
7485 Available values for output image formats are all the input formats as well as:
7486 @table @samp
7487 @item arbg
7488 anaglyph red/blue gray
7489 (red filter on left eye, blue filter on right eye)
7490
7491 @item argg
7492 anaglyph red/green gray
7493 (red filter on left eye, green filter on right eye)
7494
7495 @item arcg
7496 anaglyph red/cyan gray
7497 (red filter on left eye, cyan filter on right eye)
7498
7499 @item arch
7500 anaglyph red/cyan half colored
7501 (red filter on left eye, cyan filter on right eye)
7502
7503 @item arcc
7504 anaglyph red/cyan color
7505 (red filter on left eye, cyan filter on right eye)
7506
7507 @item arcd
7508 anaglyph red/cyan color optimized with the least squares projection of dubois
7509 (red filter on left eye, cyan filter on right eye)
7510
7511 @item agmg
7512 anaglyph green/magenta gray
7513 (green filter on left eye, magenta filter on right eye)
7514
7515 @item agmh
7516 anaglyph green/magenta half colored
7517 (green filter on left eye, magenta filter on right eye)
7518
7519 @item agmc
7520 anaglyph green/magenta colored
7521 (green filter on left eye, magenta filter on right eye)
7522
7523 @item agmd
7524 anaglyph green/magenta color optimized with the least squares projection of dubois
7525 (green filter on left eye, magenta filter on right eye)
7526
7527 @item aybg
7528 anaglyph yellow/blue gray
7529 (yellow filter on left eye, blue filter on right eye)
7530
7531 @item aybh
7532 anaglyph yellow/blue half colored
7533 (yellow filter on left eye, blue filter on right eye)
7534
7535 @item aybc
7536 anaglyph yellow/blue colored
7537 (yellow filter on left eye, blue filter on right eye)
7538
7539 @item aybd
7540 anaglyph yellow/blue color optimized with the least squares projection of dubois
7541 (yellow filter on left eye, blue filter on right eye)
7542
7543 @item irl
7544 interleaved rows (left eye has top row, right eye starts on next row)
7545
7546 @item irr
7547 interleaved rows (right eye has top row, left eye starts on next row)
7548
7549 @item ml
7550 mono output (left eye only)
7551
7552 @item mr
7553 mono output (right eye only)
7554 @end table
7555
7556 Default value is @samp{arcd}.
7557 @end table
7558
7559 @subsection Examples
7560
7561 @itemize
7562 @item
7563 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
7564 @example
7565 stereo3d=sbsl:aybd
7566 @end example
7567
7568 @item
7569 Convert input video from above bellow (left eye above, right eye below) to side by side crosseye.
7570 @example
7571 stereo3d=abl:sbsr
7572 @end example
7573 @end itemize
7574
7575 @section spp
7576
7577 Apply a simple postprocessing filter that compresses and decompresses the image
7578 at several (or - in the case of @option{quality} level @code{6} - all) shifts
7579 and average the results.
7580
7581 The filter accepts the following options:
7582
7583 @table @option
7584 @item quality
7585 Set quality. This option defines the number of levels for averaging. It accepts
7586 an integer in the range 0-6. If set to @code{0}, the filter will have no
7587 effect. A value of @code{6} means the higher quality. For each increment of
7588 that value the speed drops by a factor of approximately 2.  Default value is
7589 @code{3}.
7590
7591 @item qp
7592 Force a constant quantization parameter. If not set, the filter will use the QP
7593 from the video stream (if available).
7594
7595 @item mode
7596 Set thresholding mode. Available modes are:
7597
7598 @table @samp
7599 @item hard
7600 Set hard thresholding (default).
7601 @item soft
7602 Set soft thresholding (better de-ringing effect, but likely blurrier).
7603 @end table
7604
7605 @item use_bframe_qp
7606 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
7607 option may cause flicker since the B-Frames have often larger QP. Default is
7608 @code{0} (not enabled).
7609 @end table
7610
7611 @anchor{subtitles}
7612 @section subtitles
7613
7614 Draw subtitles on top of input video using the libass library.
7615
7616 To enable compilation of this filter you need to configure FFmpeg with
7617 @code{--enable-libass}. This filter also requires a build with libavcodec and
7618 libavformat to convert the passed subtitles file to ASS (Advanced Substation
7619 Alpha) subtitles format.
7620
7621 The filter accepts the following options:
7622
7623 @table @option
7624 @item filename, f
7625 Set the filename of the subtitle file to read. It must be specified.
7626
7627 @item original_size
7628 Specify the size of the original video, the video for which the ASS file
7629 was composed. For the syntax of this option, check the "Video size" section in
7630 the ffmpeg-utils manual. Due to a misdesign in ASS aspect ratio arithmetic,
7631 this is necessary to correctly scale the fonts if the aspect ratio has been
7632 changed.
7633
7634 @item charenc
7635 Set subtitles input character encoding. @code{subtitles} filter only. Only
7636 useful if not UTF-8.
7637 @end table
7638
7639 If the first key is not specified, it is assumed that the first value
7640 specifies the @option{filename}.
7641
7642 For example, to render the file @file{sub.srt} on top of the input
7643 video, use the command:
7644 @example
7645 subtitles=sub.srt
7646 @end example
7647
7648 which is equivalent to:
7649 @example
7650 subtitles=filename=sub.srt
7651 @end example
7652
7653 @section super2xsai
7654
7655 Scale the input by 2x and smooth using the Super2xSaI (Scale and
7656 Interpolate) pixel art scaling algorithm.
7657
7658 Useful for enlarging pixel art images without reducing sharpness.
7659
7660 @section swapuv
7661 Swap U & V plane.
7662
7663 @section telecine
7664
7665 Apply telecine process to the video.
7666
7667 This filter accepts the following options:
7668
7669 @table @option
7670 @item first_field
7671 @table @samp
7672 @item top, t
7673 top field first
7674 @item bottom, b
7675 bottom field first
7676 The default value is @code{top}.
7677 @end table
7678
7679 @item pattern
7680 A string of numbers representing the pulldown pattern you wish to apply.
7681 The default value is @code{23}.
7682 @end table
7683
7684 @example
7685 Some typical patterns:
7686
7687 NTSC output (30i):
7688 27.5p: 32222
7689 24p: 23 (classic)
7690 24p: 2332 (preferred)
7691 20p: 33
7692 18p: 334
7693 16p: 3444
7694
7695 PAL output (25i):
7696 27.5p: 12222
7697 24p: 222222222223 ("Euro pulldown")
7698 16.67p: 33
7699 16p: 33333334
7700 @end example
7701
7702 @section thumbnail
7703 Select the most representative frame in a given sequence of consecutive frames.
7704
7705 The filter accepts the following options:
7706
7707 @table @option
7708 @item n
7709 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
7710 will pick one of them, and then handle the next batch of @var{n} frames until
7711 the end. Default is @code{100}.
7712 @end table
7713
7714 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
7715 value will result in a higher memory usage, so a high value is not recommended.
7716
7717 @subsection Examples
7718
7719 @itemize
7720 @item
7721 Extract one picture each 50 frames:
7722 @example
7723 thumbnail=50
7724 @end example
7725
7726 @item
7727 Complete example of a thumbnail creation with @command{ffmpeg}:
7728 @example
7729 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
7730 @end example
7731 @end itemize
7732
7733 @section tile
7734
7735 Tile several successive frames together.
7736
7737 The filter accepts the following options:
7738
7739 @table @option
7740
7741 @item layout
7742 Set the grid size (i.e. the number of lines and columns). For the syntax of
7743 this option, check the "Video size" section in the ffmpeg-utils manual.
7744
7745 @item nb_frames
7746 Set the maximum number of frames to render in the given area. It must be less
7747 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
7748 the area will be used.
7749
7750 @item margin
7751 Set the outer border margin in pixels.
7752
7753 @item padding
7754 Set the inner border thickness (i.e. the number of pixels between frames). For
7755 more advanced padding options (such as having different values for the edges),
7756 refer to the pad video filter.
7757
7758 @item color
7759 Specify the color of the unused areaFor the syntax of this option, check the
7760 "Color" section in the ffmpeg-utils manual. The default value of @var{color}
7761 is "black".
7762 @end table
7763
7764 @subsection Examples
7765
7766 @itemize
7767 @item
7768 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
7769 @example
7770 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
7771 @end example
7772 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
7773 duplicating each output frame to accomodate the originally detected frame
7774 rate.
7775
7776 @item
7777 Display @code{5} pictures in an area of @code{3x2} frames,
7778 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
7779 mixed flat and named options:
7780 @example
7781 tile=3x2:nb_frames=5:padding=7:margin=2
7782 @end example
7783 @end itemize
7784
7785 @section tinterlace
7786
7787 Perform various types of temporal field interlacing.
7788
7789 Frames are counted starting from 1, so the first input frame is
7790 considered odd.
7791
7792 The filter accepts the following options:
7793
7794 @table @option
7795
7796 @item mode
7797 Specify the mode of the interlacing. This option can also be specified
7798 as a value alone. See below for a list of values for this option.
7799
7800 Available values are:
7801
7802 @table @samp
7803 @item merge, 0
7804 Move odd frames into the upper field, even into the lower field,
7805 generating a double height frame at half frame rate.
7806
7807 @item drop_odd, 1
7808 Only output even frames, odd frames are dropped, generating a frame with
7809 unchanged height at half frame rate.
7810
7811 @item drop_even, 2
7812 Only output odd frames, even frames are dropped, generating a frame with
7813 unchanged height at half frame rate.
7814
7815 @item pad, 3
7816 Expand each frame to full height, but pad alternate lines with black,
7817 generating a frame with double height at the same input frame rate.
7818
7819 @item interleave_top, 4
7820 Interleave the upper field from odd frames with the lower field from
7821 even frames, generating a frame with unchanged height at half frame rate.
7822
7823 @item interleave_bottom, 5
7824 Interleave the lower field from odd frames with the upper field from
7825 even frames, generating a frame with unchanged height at half frame rate.
7826
7827 @item interlacex2, 6
7828 Double frame rate with unchanged height. Frames are inserted each
7829 containing the second temporal field from the previous input frame and
7830 the first temporal field from the next input frame. This mode relies on
7831 the top_field_first flag. Useful for interlaced video displays with no
7832 field synchronisation.
7833 @end table
7834
7835 Numeric values are deprecated but are accepted for backward
7836 compatibility reasons.
7837
7838 Default mode is @code{merge}.
7839
7840 @item flags
7841 Specify flags influencing the filter process.
7842
7843 Available value for @var{flags} is:
7844
7845 @table @option
7846 @item low_pass_filter, vlfp
7847 Enable vertical low-pass filtering in the filter.
7848 Vertical low-pass filtering is required when creating an interlaced
7849 destination from a progressive source which contains high-frequency
7850 vertical detail. Filtering will reduce interlace 'twitter' and Moire
7851 patterning.
7852
7853 Vertical low-pass filtering can only be enabled for @option{mode}
7854 @var{interleave_top} and @var{interleave_bottom}.
7855
7856 @end table
7857 @end table
7858
7859 @section transpose
7860
7861 Transpose rows with columns in the input video and optionally flip it.
7862
7863 This filter accepts the following options:
7864
7865 @table @option
7866
7867 @item dir
7868 Specify the transposition direction.
7869
7870 Can assume the following values:
7871 @table @samp
7872 @item 0, 4, cclock_flip
7873 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
7874 @example
7875 L.R     L.l
7876 . . ->  . .
7877 l.r     R.r
7878 @end example
7879
7880 @item 1, 5, clock
7881 Rotate by 90 degrees clockwise, that is:
7882 @example
7883 L.R     l.L
7884 . . ->  . .
7885 l.r     r.R
7886 @end example
7887
7888 @item 2, 6, cclock
7889 Rotate by 90 degrees counterclockwise, that is:
7890 @example
7891 L.R     R.r
7892 . . ->  . .
7893 l.r     L.l
7894 @end example
7895
7896 @item 3, 7, clock_flip
7897 Rotate by 90 degrees clockwise and vertically flip, that is:
7898 @example
7899 L.R     r.R
7900 . . ->  . .
7901 l.r     l.L
7902 @end example
7903 @end table
7904
7905 For values between 4-7, the transposition is only done if the input
7906 video geometry is portrait and not landscape. These values are
7907 deprecated, the @code{passthrough} option should be used instead.
7908
7909 Numerical values are deprecated, and should be dropped in favor of
7910 symbolic constants.
7911
7912 @item passthrough
7913 Do not apply the transposition if the input geometry matches the one
7914 specified by the specified value. It accepts the following values:
7915 @table @samp
7916 @item none
7917 Always apply transposition.
7918 @item portrait
7919 Preserve portrait geometry (when @var{height} >= @var{width}).
7920 @item landscape
7921 Preserve landscape geometry (when @var{width} >= @var{height}).
7922 @end table
7923
7924 Default value is @code{none}.
7925 @end table
7926
7927 For example to rotate by 90 degrees clockwise and preserve portrait
7928 layout:
7929 @example
7930 transpose=dir=1:passthrough=portrait
7931 @end example
7932
7933 The command above can also be specified as:
7934 @example
7935 transpose=1:portrait
7936 @end example
7937
7938 @section trim
7939 Trim the input so that the output contains one continuous subpart of the input.
7940
7941 This filter accepts the following options:
7942 @table @option
7943 @item start
7944 Specify time of the start of the kept section, i.e. the frame with the
7945 timestamp @var{start} will be the first frame in the output.
7946
7947 @item end
7948 Specify time of the first frame that will be dropped, i.e. the frame
7949 immediately preceding the one with the timestamp @var{end} will be the last
7950 frame in the output.
7951
7952 @item start_pts
7953 Same as @var{start}, except this option sets the start timestamp in timebase
7954 units instead of seconds.
7955
7956 @item end_pts
7957 Same as @var{end}, except this option sets the end timestamp in timebase units
7958 instead of seconds.
7959
7960 @item duration
7961 Specify maximum duration of the output.
7962
7963 @item start_frame
7964 Number of the first frame that should be passed to output.
7965
7966 @item end_frame
7967 Number of the first frame that should be dropped.
7968 @end table
7969
7970 @option{start}, @option{end}, @option{duration} are expressed as time
7971 duration specifications, check the "Time duration" section in the
7972 ffmpeg-utils manual.
7973
7974 Note that the first two sets of the start/end options and the @option{duration}
7975 option look at the frame timestamp, while the _frame variants simply count the
7976 frames that pass through the filter. Also note that this filter does not modify
7977 the timestamps. If you wish that the output timestamps start at zero, insert a
7978 setpts filter after the trim filter.
7979
7980 If multiple start or end options are set, this filter tries to be greedy and
7981 keep all the frames that match at least one of the specified constraints. To keep
7982 only the part that matches all the constraints at once, chain multiple trim
7983 filters.
7984
7985 The defaults are such that all the input is kept. So it is possible to set e.g.
7986 just the end values to keep everything before the specified time.
7987
7988 Examples:
7989 @itemize
7990 @item
7991 drop everything except the second minute of input
7992 @example
7993 ffmpeg -i INPUT -vf trim=60:120
7994 @end example
7995
7996 @item
7997 keep only the first second
7998 @example
7999 ffmpeg -i INPUT -vf trim=duration=1
8000 @end example
8001
8002 @end itemize
8003
8004
8005 @section unsharp
8006
8007 Sharpen or blur the input video.
8008
8009 It accepts the following parameters:
8010
8011 @table @option
8012 @item luma_msize_x, lx
8013 Set the luma matrix horizontal size. It must be an odd integer between
8014 3 and 63, default value is 5.
8015
8016 @item luma_msize_y, ly
8017 Set the luma matrix vertical size. It must be an odd integer between 3
8018 and 63, default value is 5.
8019
8020 @item luma_amount, la
8021 Set the luma effect strength. It can be a float number, reasonable
8022 values lay between -1.5 and 1.5.
8023
8024 Negative values will blur the input video, while positive values will
8025 sharpen it, a value of zero will disable the effect.
8026
8027 Default value is 1.0.
8028
8029 @item chroma_msize_x, cx
8030 Set the chroma matrix horizontal size. It must be an odd integer
8031 between 3 and 63, default value is 5.
8032
8033 @item chroma_msize_y, cy
8034 Set the chroma matrix vertical size. It must be an odd integer
8035 between 3 and 63, default value is 5.
8036
8037 @item chroma_amount, ca
8038 Set the chroma effect strength. It can be a float number, reasonable
8039 values lay between -1.5 and 1.5.
8040
8041 Negative values will blur the input video, while positive values will
8042 sharpen it, a value of zero will disable the effect.
8043
8044 Default value is 0.0.
8045
8046 @item opencl
8047 If set to 1, specify using OpenCL capabilities, only available if
8048 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
8049
8050 @end table
8051
8052 All parameters are optional and default to the equivalent of the
8053 string '5:5:1.0:5:5:0.0'.
8054
8055 @subsection Examples
8056
8057 @itemize
8058 @item
8059 Apply strong luma sharpen effect:
8060 @example
8061 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
8062 @end example
8063
8064 @item
8065 Apply strong blur of both luma and chroma parameters:
8066 @example
8067 unsharp=7:7:-2:7:7:-2
8068 @end example
8069 @end itemize
8070
8071 @anchor{vidstabdetect}
8072 @section vidstabdetect
8073
8074 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
8075 @ref{vidstabtransform} for pass 2.
8076
8077 This filter generates a file with relative translation and rotation
8078 transform information about subsequent frames, which is then used by
8079 the @ref{vidstabtransform} filter.
8080
8081 To enable compilation of this filter you need to configure FFmpeg with
8082 @code{--enable-libvidstab}.
8083
8084 This filter accepts the following options:
8085
8086 @table @option
8087 @item result
8088 Set the path to the file used to write the transforms information.
8089 Default value is @file{transforms.trf}.
8090
8091 @item shakiness
8092 Set how shaky the video is and how quick the camera is. It accepts an
8093 integer in the range 1-10, a value of 1 means little shakiness, a
8094 value of 10 means strong shakiness. Default value is 5.
8095
8096 @item accuracy
8097 Set the accuracy of the detection process. It must be a value in the
8098 range 1-15. A value of 1 means low accuracy, a value of 15 means high
8099 accuracy. Default value is 15.
8100
8101 @item stepsize
8102 Set stepsize of the search process. The region around minimum is
8103 scanned with 1 pixel resolution. Default value is 6.
8104
8105 @item mincontrast
8106 Set minimum contrast. Below this value a local measurement field is
8107 discarded. Must be a floating point value in the range 0-1. Default
8108 value is 0.3.
8109
8110 @item tripod
8111 Set reference frame number for tripod mode.
8112
8113 If enabled, the motion of the frames is compared to a reference frame
8114 in the filtered stream, identified by the specified number. The idea
8115 is to compensate all movements in a more-or-less static scene and keep
8116 the camera view absolutely still.
8117
8118 If set to 0, it is disabled. The frames are counted starting from 1.
8119
8120 @item show
8121 Show fields and transforms in the resulting frames. It accepts an
8122 integer in the range 0-2. Default value is 0, which disables any
8123 visualization.
8124 @end table
8125
8126 @subsection Examples
8127
8128 @itemize
8129 @item
8130 Use default values:
8131 @example
8132 vidstabdetect
8133 @end example
8134
8135 @item
8136 Analyze strongly shaky movie and put the results in file
8137 @file{mytransforms.trf}:
8138 @example
8139 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
8140 @end example
8141
8142 @item
8143 Visualize the result of internal transformations in the resulting
8144 video:
8145 @example
8146 vidstabdetect=show=1
8147 @end example
8148
8149 @item
8150 Analyze a video with medium shakiness using @command{ffmpeg}:
8151 @example
8152 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
8153 @end example
8154 @end itemize
8155
8156 @anchor{vidstabtransform}
8157 @section vidstabtransform
8158
8159 Video stabilization/deshaking: pass 2 of 2,
8160 see @ref{vidstabdetect} for pass 1.
8161
8162 Read a file with transform information for each frame and
8163 apply/compensate them. Together with the @ref{vidstabdetect}
8164 filter this can be used to deshake videos. See also
8165 @url{http://public.hronopik.de/vid.stab}. It is important to also use
8166 the unsharp filter, see below.
8167
8168 To enable compilation of this filter you need to configure FFmpeg with
8169 @code{--enable-libvidstab}.
8170
8171 @subsection Options
8172
8173 @table @option
8174 @item input
8175 Set path to the file used to read the transforms. Default value is
8176 @file{transforms.trf}).
8177
8178 @item smoothing
8179 Set the number of frames (value*2 + 1) used for lowpass filtering the
8180 camera movements. Default value is 10.
8181
8182 For example a number of 10 means that 21 frames are used (10 in the
8183 past and 10 in the future) to smoothen the motion in the video. A
8184 larger values leads to a smoother video, but limits the acceleration
8185 of the camera (pan/tilt movements). 0 is a special case where a
8186 static camera is simulated.
8187
8188 @item optalgo
8189 Set the camera path optimization algorithm.
8190
8191 Accepted values are:
8192 @table @samp
8193 @item gauss
8194 gaussian kernel low-pass filter on camera motion (default)
8195 @item avg
8196 averaging on transformations
8197 @end table
8198
8199 @item maxshift
8200 Set maximal number of pixels to translate frames. Default value is -1,
8201 meaning no limit.
8202
8203 @item maxangle
8204 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
8205 value is -1, meaning no limit.
8206
8207 @item crop
8208 Specify how to deal with borders that may be visible due to movement
8209 compensation.
8210
8211 Available values are:
8212 @table @samp
8213 @item keep
8214 keep image information from previous frame (default)
8215 @item black
8216 fill the border black
8217 @end table
8218
8219 @item invert
8220 Invert transforms if set to 1. Default value is 0.
8221
8222 @item relative
8223 Consider transforms as relative to previsou frame if set to 1,
8224 absolute if set to 0. Default value is 0.
8225
8226 @item zoom
8227 Set percentage to zoom. A positive value will result in a zoom-in
8228 effect, a negative value in a zoom-out effect. Default value is 0 (no
8229 zoom).
8230
8231 @item optzoom
8232 Set optimal zooming to avoid borders.
8233
8234 Accepted values are:
8235 @table @samp
8236 @item 0
8237 disabled
8238 @item 1
8239 optimal static zoom value is determined (only very strong movements
8240 will lead to visible borders) (default)
8241 @item 2
8242 optimal adaptive zoom value is determined (no borders will be
8243 visible), see @option{zoomspeed}
8244 @end table
8245
8246 Note that the value given at zoom is added to the one calculated here.
8247
8248 @item zoomspeed
8249 Set percent to zoom maximally each frame (enabled when
8250 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
8251 0.25.
8252
8253 @item interpol
8254 Specify type of interpolation.
8255
8256 Available values are:
8257 @table @samp
8258 @item no
8259 no interpolation
8260 @item linear
8261 linear only horizontal
8262 @item bilinear
8263 linear in both directions (default)
8264 @item bicubic
8265 cubic in both directions (slow)
8266 @end table
8267
8268 @item tripod
8269 Enable virtual tripod mode if set to 1, which is equivalent to
8270 @code{relative=0:smoothing=0}. Default value is 0.
8271
8272 Use also @code{tripod} option of @ref{vidstabdetect}.
8273
8274 @item debug
8275 Increase log verbosity if set to 1. Also the detected global motions
8276 are written to the temporary file @file{global_motions.trf}. Default
8277 value is 0.
8278 @end table
8279
8280 @subsection Examples
8281
8282 @itemize
8283 @item
8284 Use @command{ffmpeg} for a typical stabilization with default values:
8285 @example
8286 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
8287 @end example
8288
8289 Note the use of the unsharp filter which is always recommended.
8290
8291 @item
8292 Zoom in a bit more and load transform data from a given file:
8293 @example
8294 vidstabtransform=zoom=5:input="mytransforms.trf"
8295 @end example
8296
8297 @item
8298 Smoothen the video even more:
8299 @example
8300 vidstabtransform=smoothing=30
8301 @end example
8302 @end itemize
8303
8304 @section vflip
8305
8306 Flip the input video vertically.
8307
8308 For example, to vertically flip a video with @command{ffmpeg}:
8309 @example
8310 ffmpeg -i in.avi -vf "vflip" out.avi
8311 @end example
8312
8313 @section vignette
8314
8315 Make or reverse a natural vignetting effect.
8316
8317 The filter accepts the following options:
8318
8319 @table @option
8320 @item angle, a
8321 Set lens angle expression as a number of radians.
8322
8323 The value is clipped in the @code{[0,PI/2]} range.
8324
8325 Default value: @code{"PI/5"}
8326
8327 @item x0
8328 @item y0
8329 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
8330 by default.
8331
8332 @item mode
8333 Set forward/backward mode.
8334
8335 Available modes are:
8336 @table @samp
8337 @item forward
8338 The larger the distance from the central point, the darker the image becomes.
8339
8340 @item backward
8341 The larger the distance from the central point, the brighter the image becomes.
8342 This can be used to reverse a vignette effect, though there is no automatic
8343 detection to extract the lens @option{angle} and other settings (yet). It can
8344 also be used to create a burning effect.
8345 @end table
8346
8347 Default value is @samp{forward}.
8348
8349 @item eval
8350 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
8351
8352 It accepts the following values:
8353 @table @samp
8354 @item init
8355 Evaluate expressions only once during the filter initialization.
8356
8357 @item frame
8358 Evaluate expressions for each incoming frame. This is way slower than the
8359 @samp{init} mode since it requires all the scalers to be re-computed, but it
8360 allows advanced dynamic expressions.
8361 @end table
8362
8363 Default value is @samp{init}.
8364
8365 @item dither
8366 Set dithering to reduce the circular banding effects. Default is @code{1}
8367 (enabled).
8368
8369 @item aspect
8370 Set vignette aspect. This setting allows to adjust the shape of the vignette.
8371 Setting this value to the SAR of the input will make a rectangular vignetting
8372 following the dimensions of the video.
8373
8374 Default is @code{1/1}.
8375 @end table
8376
8377 @subsection Expressions
8378
8379 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
8380 following parameters.
8381
8382 @table @option
8383 @item w
8384 @item h
8385 input width and height
8386
8387 @item n
8388 the number of input frame, starting from 0
8389
8390 @item pts
8391 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
8392 @var{TB} units, NAN if undefined
8393
8394 @item r
8395 frame rate of the input video, NAN if the input frame rate is unknown
8396
8397 @item t
8398 the PTS (Presentation TimeStamp) of the filtered video frame,
8399 expressed in seconds, NAN if undefined
8400
8401 @item tb
8402 time base of the input video
8403 @end table
8404
8405
8406 @subsection Examples
8407
8408 @itemize
8409 @item
8410 Apply simple strong vignetting effect:
8411 @example
8412 vignette=PI/4
8413 @end example
8414
8415 @item
8416 Make a flickering vignetting:
8417 @example
8418 vignette='PI/4+random(1)*PI/50':eval=frame
8419 @end example
8420
8421 @end itemize
8422
8423 @section w3fdif
8424
8425 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
8426 Deinterlacing Filter").
8427
8428 Based on the process described by Martin Weston for BBC R&D, and
8429 implemented based on the de-interlace algorithm written by Jim
8430 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
8431 uses filter coefficients calculated by BBC R&D.
8432
8433 There are two sets of filter coefficients, so called "simple":
8434 and "complex". Which set of filter coefficients is used can
8435 be set by passing an optional parameter:
8436
8437 @table @option
8438 @item filter
8439 Set the interlacing filter coefficients. Accepts one of the following values:
8440
8441 @table @samp
8442 @item simple
8443 Simple filter coefficient set.
8444 @item complex
8445 More-complex filter coefficient set.
8446 @end table
8447 Default value is @samp{complex}.
8448
8449 @item deint
8450 Specify which frames to deinterlace. Accept one of the following values:
8451
8452 @table @samp
8453 @item all
8454 Deinterlace all frames,
8455 @item interlaced
8456 Only deinterlace frames marked as interlaced.
8457 @end table
8458
8459 Default value is @samp{all}.
8460 @end table
8461
8462 @anchor{yadif}
8463 @section yadif
8464
8465 Deinterlace the input video ("yadif" means "yet another deinterlacing
8466 filter").
8467
8468 This filter accepts the following options:
8469
8470
8471 @table @option
8472
8473 @item mode
8474 The interlacing mode to adopt, accepts one of the following values:
8475
8476 @table @option
8477 @item 0, send_frame
8478 output 1 frame for each frame
8479 @item 1, send_field
8480 output 1 frame for each field
8481 @item 2, send_frame_nospatial
8482 like @code{send_frame} but skip spatial interlacing check
8483 @item 3, send_field_nospatial
8484 like @code{send_field} but skip spatial interlacing check
8485 @end table
8486
8487 Default value is @code{send_frame}.
8488
8489 @item parity
8490 The picture field parity assumed for the input interlaced video, accepts one of
8491 the following values:
8492
8493 @table @option
8494 @item 0, tff
8495 assume top field first
8496 @item 1, bff
8497 assume bottom field first
8498 @item -1, auto
8499 enable automatic detection
8500 @end table
8501
8502 Default value is @code{auto}.
8503 If interlacing is unknown or decoder does not export this information,
8504 top field first will be assumed.
8505
8506 @item deint
8507 Specify which frames to deinterlace. Accept one of the following
8508 values:
8509
8510 @table @option
8511 @item 0, all
8512 deinterlace all frames
8513 @item 1, interlaced
8514 only deinterlace frames marked as interlaced
8515 @end table
8516
8517 Default value is @code{all}.
8518 @end table
8519
8520 @c man end VIDEO FILTERS
8521
8522 @chapter Video Sources
8523 @c man begin VIDEO SOURCES
8524
8525 Below is a description of the currently available video sources.
8526
8527 @section buffer
8528
8529 Buffer video frames, and make them available to the filter chain.
8530
8531 This source is mainly intended for a programmatic use, in particular
8532 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
8533
8534 This source accepts the following options:
8535
8536 @table @option
8537
8538 @item video_size
8539 Specify the size (width and height) of the buffered video frames. For the
8540 syntax of this option, check the "Video size" section in the ffmpeg-utils
8541 manual.
8542
8543 @item width
8544 Input video width.
8545
8546 @item height
8547 Input video height.
8548
8549 @item pix_fmt
8550 A string representing the pixel format of the buffered video frames.
8551 It may be a number corresponding to a pixel format, or a pixel format
8552 name.
8553
8554 @item time_base
8555 Specify the timebase assumed by the timestamps of the buffered frames.
8556
8557 @item frame_rate
8558 Specify the frame rate expected for the video stream.
8559
8560 @item pixel_aspect, sar
8561 Specify the sample aspect ratio assumed by the video frames.
8562
8563 @item sws_param
8564 Specify the optional parameters to be used for the scale filter which
8565 is automatically inserted when an input change is detected in the
8566 input size or format.
8567 @end table
8568
8569 For example:
8570 @example
8571 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
8572 @end example
8573
8574 will instruct the source to accept video frames with size 320x240 and
8575 with format "yuv410p", assuming 1/24 as the timestamps timebase and
8576 square pixels (1:1 sample aspect ratio).
8577 Since the pixel format with name "yuv410p" corresponds to the number 6
8578 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
8579 this example corresponds to:
8580 @example
8581 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
8582 @end example
8583
8584 Alternatively, the options can be specified as a flat string, but this
8585 syntax is deprecated:
8586
8587 @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}]
8588
8589 @section cellauto
8590
8591 Create a pattern generated by an elementary cellular automaton.
8592
8593 The initial state of the cellular automaton can be defined through the
8594 @option{filename}, and @option{pattern} options. If such options are
8595 not specified an initial state is created randomly.
8596
8597 At each new frame a new row in the video is filled with the result of
8598 the cellular automaton next generation. The behavior when the whole
8599 frame is filled is defined by the @option{scroll} option.
8600
8601 This source accepts the following options:
8602
8603 @table @option
8604 @item filename, f
8605 Read the initial cellular automaton state, i.e. the starting row, from
8606 the specified file.
8607 In the file, each non-whitespace character is considered an alive
8608 cell, a newline will terminate the row, and further characters in the
8609 file will be ignored.
8610
8611 @item pattern, p
8612 Read the initial cellular automaton state, i.e. the starting row, from
8613 the specified string.
8614
8615 Each non-whitespace character in the string is considered an alive
8616 cell, a newline will terminate the row, and further characters in the
8617 string will be ignored.
8618
8619 @item rate, r
8620 Set the video rate, that is the number of frames generated per second.
8621 Default is 25.
8622
8623 @item random_fill_ratio, ratio
8624 Set the random fill ratio for the initial cellular automaton row. It
8625 is a floating point number value ranging from 0 to 1, defaults to
8626 1/PHI.
8627
8628 This option is ignored when a file or a pattern is specified.
8629
8630 @item random_seed, seed
8631 Set the seed for filling randomly the initial row, must be an integer
8632 included between 0 and UINT32_MAX. If not specified, or if explicitly
8633 set to -1, the filter will try to use a good random seed on a best
8634 effort basis.
8635
8636 @item rule
8637 Set the cellular automaton rule, it is a number ranging from 0 to 255.
8638 Default value is 110.
8639
8640 @item size, s
8641 Set the size of the output video. For the syntax of this option, check
8642 the "Video size" section in the ffmpeg-utils manual.
8643
8644 If @option{filename} or @option{pattern} is specified, the size is set
8645 by default to the width of the specified initial state row, and the
8646 height is set to @var{width} * PHI.
8647
8648 If @option{size} is set, it must contain the width of the specified
8649 pattern string, and the specified pattern will be centered in the
8650 larger row.
8651
8652 If a filename or a pattern string is not specified, the size value
8653 defaults to "320x518" (used for a randomly generated initial state).
8654
8655 @item scroll
8656 If set to 1, scroll the output upward when all the rows in the output
8657 have been already filled. If set to 0, the new generated row will be
8658 written over the top row just after the bottom row is filled.
8659 Defaults to 1.
8660
8661 @item start_full, full
8662 If set to 1, completely fill the output with generated rows before
8663 outputting the first frame.
8664 This is the default behavior, for disabling set the value to 0.
8665
8666 @item stitch
8667 If set to 1, stitch the left and right row edges together.
8668 This is the default behavior, for disabling set the value to 0.
8669 @end table
8670
8671 @subsection Examples
8672
8673 @itemize
8674 @item
8675 Read the initial state from @file{pattern}, and specify an output of
8676 size 200x400.
8677 @example
8678 cellauto=f=pattern:s=200x400
8679 @end example
8680
8681 @item
8682 Generate a random initial row with a width of 200 cells, with a fill
8683 ratio of 2/3:
8684 @example
8685 cellauto=ratio=2/3:s=200x200
8686 @end example
8687
8688 @item
8689 Create a pattern generated by rule 18 starting by a single alive cell
8690 centered on an initial row with width 100:
8691 @example
8692 cellauto=p=@@:s=100x400:full=0:rule=18
8693 @end example
8694
8695 @item
8696 Specify a more elaborated initial pattern:
8697 @example
8698 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
8699 @end example
8700
8701 @end itemize
8702
8703 @section mandelbrot
8704
8705 Generate a Mandelbrot set fractal, and progressively zoom towards the
8706 point specified with @var{start_x} and @var{start_y}.
8707
8708 This source accepts the following options:
8709
8710 @table @option
8711
8712 @item end_pts
8713 Set the terminal pts value. Default value is 400.
8714
8715 @item end_scale
8716 Set the terminal scale value.
8717 Must be a floating point value. Default value is 0.3.
8718
8719 @item inner
8720 Set the inner coloring mode, that is the algorithm used to draw the
8721 Mandelbrot fractal internal region.
8722
8723 It shall assume one of the following values:
8724 @table @option
8725 @item black
8726 Set black mode.
8727 @item convergence
8728 Show time until convergence.
8729 @item mincol
8730 Set color based on point closest to the origin of the iterations.
8731 @item period
8732 Set period mode.
8733 @end table
8734
8735 Default value is @var{mincol}.
8736
8737 @item bailout
8738 Set the bailout value. Default value is 10.0.
8739
8740 @item maxiter
8741 Set the maximum of iterations performed by the rendering
8742 algorithm. Default value is 7189.
8743
8744 @item outer
8745 Set outer coloring mode.
8746 It shall assume one of following values:
8747 @table @option
8748 @item iteration_count
8749 Set iteration cound mode.
8750 @item normalized_iteration_count
8751 set normalized iteration count mode.
8752 @end table
8753 Default value is @var{normalized_iteration_count}.
8754
8755 @item rate, r
8756 Set frame rate, expressed as number of frames per second. Default
8757 value is "25".
8758
8759 @item size, s
8760 Set frame size. For the syntax of this option, check the "Video
8761 size" section in the ffmpeg-utils manual. Default value is "640x480".
8762
8763 @item start_scale
8764 Set the initial scale value. Default value is 3.0.
8765
8766 @item start_x
8767 Set the initial x position. Must be a floating point value between
8768 -100 and 100. Default value is -0.743643887037158704752191506114774.
8769
8770 @item start_y
8771 Set the initial y position. Must be a floating point value between
8772 -100 and 100. Default value is -0.131825904205311970493132056385139.
8773 @end table
8774
8775 @section mptestsrc
8776
8777 Generate various test patterns, as generated by the MPlayer test filter.
8778
8779 The size of the generated video is fixed, and is 256x256.
8780 This source is useful in particular for testing encoding features.
8781
8782 This source accepts the following options:
8783
8784 @table @option
8785
8786 @item rate, r
8787 Specify the frame rate of the sourced video, as the number of frames
8788 generated per second. It has to be a string in the format
8789 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a float
8790 number or a valid video frame rate abbreviation. The default value is
8791 "25".
8792
8793 @item duration, d
8794 Set the video duration of the sourced video. The accepted syntax is:
8795 @example
8796 [-]HH:MM:SS[.m...]
8797 [-]S+[.m...]
8798 @end example
8799 See also the function @code{av_parse_time()}.
8800
8801 If not specified, or the expressed duration is negative, the video is
8802 supposed to be generated forever.
8803
8804 @item test, t
8805
8806 Set the number or the name of the test to perform. Supported tests are:
8807 @table @option
8808 @item dc_luma
8809 @item dc_chroma
8810 @item freq_luma
8811 @item freq_chroma
8812 @item amp_luma
8813 @item amp_chroma
8814 @item cbp
8815 @item mv
8816 @item ring1
8817 @item ring2
8818 @item all
8819 @end table
8820
8821 Default value is "all", which will cycle through the list of all tests.
8822 @end table
8823
8824 For example the following:
8825 @example
8826 testsrc=t=dc_luma
8827 @end example
8828
8829 will generate a "dc_luma" test pattern.
8830
8831 @section frei0r_src
8832
8833 Provide a frei0r source.
8834
8835 To enable compilation of this filter you need to install the frei0r
8836 header and configure FFmpeg with @code{--enable-frei0r}.
8837
8838 This source accepts the following options:
8839
8840 @table @option
8841
8842 @item size
8843 The size of the video to generate. For the syntax of this option, check the
8844 "Video size" section in the ffmpeg-utils manual.
8845
8846 @item framerate
8847 Framerate of the generated video, may be a string of the form
8848 @var{num}/@var{den} or a frame rate abbreviation.
8849
8850 @item filter_name
8851 The name to the frei0r source to load. For more information regarding frei0r and
8852 how to set the parameters read the section @ref{frei0r} in the description of
8853 the video filters.
8854
8855 @item filter_params
8856 A '|'-separated list of parameters to pass to the frei0r source.
8857
8858 @end table
8859
8860 For example, to generate a frei0r partik0l source with size 200x200
8861 and frame rate 10 which is overlayed on the overlay filter main input:
8862 @example
8863 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
8864 @end example
8865
8866 @section life
8867
8868 Generate a life pattern.
8869
8870 This source is based on a generalization of John Conway's life game.
8871
8872 The sourced input represents a life grid, each pixel represents a cell
8873 which can be in one of two possible states, alive or dead. Every cell
8874 interacts with its eight neighbours, which are the cells that are
8875 horizontally, vertically, or diagonally adjacent.
8876
8877 At each interaction the grid evolves according to the adopted rule,
8878 which specifies the number of neighbor alive cells which will make a
8879 cell stay alive or born. The @option{rule} option allows to specify
8880 the rule to adopt.
8881
8882 This source accepts the following options:
8883
8884 @table @option
8885 @item filename, f
8886 Set the file from which to read the initial grid state. In the file,
8887 each non-whitespace character is considered an alive cell, and newline
8888 is used to delimit the end of each row.
8889
8890 If this option is not specified, the initial grid is generated
8891 randomly.
8892
8893 @item rate, r
8894 Set the video rate, that is the number of frames generated per second.
8895 Default is 25.
8896
8897 @item random_fill_ratio, ratio
8898 Set the random fill ratio for the initial random grid. It is a
8899 floating point number value ranging from 0 to 1, defaults to 1/PHI.
8900 It is ignored when a file is specified.
8901
8902 @item random_seed, seed
8903 Set the seed for filling the initial random grid, must be an integer
8904 included between 0 and UINT32_MAX. If not specified, or if explicitly
8905 set to -1, the filter will try to use a good random seed on a best
8906 effort basis.
8907
8908 @item rule
8909 Set the life rule.
8910
8911 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
8912 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
8913 @var{NS} specifies the number of alive neighbor cells which make a
8914 live cell stay alive, and @var{NB} the number of alive neighbor cells
8915 which make a dead cell to become alive (i.e. to "born").
8916 "s" and "b" can be used in place of "S" and "B", respectively.
8917
8918 Alternatively a rule can be specified by an 18-bits integer. The 9
8919 high order bits are used to encode the next cell state if it is alive
8920 for each number of neighbor alive cells, the low order bits specify
8921 the rule for "borning" new cells. Higher order bits encode for an
8922 higher number of neighbor cells.
8923 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
8924 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
8925
8926 Default value is "S23/B3", which is the original Conway's game of life
8927 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
8928 cells, and will born a new cell if there are three alive cells around
8929 a dead cell.
8930
8931 @item size, s
8932 Set the size of the output video. For the syntax of this option, check the
8933 "Video size" section in the ffmpeg-utils manual.
8934
8935 If @option{filename} is specified, the size is set by default to the
8936 same size of the input file. If @option{size} is set, it must contain
8937 the size specified in the input file, and the initial grid defined in
8938 that file is centered in the larger resulting area.
8939
8940 If a filename is not specified, the size value defaults to "320x240"
8941 (used for a randomly generated initial grid).
8942
8943 @item stitch
8944 If set to 1, stitch the left and right grid edges together, and the
8945 top and bottom edges also. Defaults to 1.
8946
8947 @item mold
8948 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
8949 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
8950 value from 0 to 255.
8951
8952 @item life_color
8953 Set the color of living (or new born) cells.
8954
8955 @item death_color
8956 Set the color of dead cells. If @option{mold} is set, this is the first color
8957 used to represent a dead cell.
8958
8959 @item mold_color
8960 Set mold color, for definitely dead and moldy cells.
8961
8962 For the syntax of these 3 color options, check the "Color" section in the
8963 ffmpeg-utils manual.
8964 @end table
8965
8966 @subsection Examples
8967
8968 @itemize
8969 @item
8970 Read a grid from @file{pattern}, and center it on a grid of size
8971 300x300 pixels:
8972 @example
8973 life=f=pattern:s=300x300
8974 @end example
8975
8976 @item
8977 Generate a random grid of size 200x200, with a fill ratio of 2/3:
8978 @example
8979 life=ratio=2/3:s=200x200
8980 @end example
8981
8982 @item
8983 Specify a custom rule for evolving a randomly generated grid:
8984 @example
8985 life=rule=S14/B34
8986 @end example
8987
8988 @item
8989 Full example with slow death effect (mold) using @command{ffplay}:
8990 @example
8991 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
8992 @end example
8993 @end itemize
8994
8995 @anchor{color}
8996 @anchor{haldclutsrc}
8997 @anchor{nullsrc}
8998 @anchor{rgbtestsrc}
8999 @anchor{smptebars}
9000 @anchor{smptehdbars}
9001 @anchor{testsrc}
9002 @section color, haldclutsrc, nullsrc, rgbtestsrc, smptebars, smptehdbars, testsrc
9003
9004 The @code{color} source provides an uniformly colored input.
9005
9006 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
9007 @ref{haldclut} filter.
9008
9009 The @code{nullsrc} source returns unprocessed video frames. It is
9010 mainly useful to be employed in analysis / debugging tools, or as the
9011 source for filters which ignore the input data.
9012
9013 The @code{rgbtestsrc} source generates an RGB test pattern useful for
9014 detecting RGB vs BGR issues. You should see a red, green and blue
9015 stripe from top to bottom.
9016
9017 The @code{smptebars} source generates a color bars pattern, based on
9018 the SMPTE Engineering Guideline EG 1-1990.
9019
9020 The @code{smptehdbars} source generates a color bars pattern, based on
9021 the SMPTE RP 219-2002.
9022
9023 The @code{testsrc} source generates a test video pattern, showing a
9024 color pattern, a scrolling gradient and a timestamp. This is mainly
9025 intended for testing purposes.
9026
9027 The sources accept the following options:
9028
9029 @table @option
9030
9031 @item color, c
9032 Specify the color of the source, only available in the @code{color}
9033 source. For the syntax of this option, check the "Color" section in the
9034 ffmpeg-utils manual.
9035
9036 @item level
9037 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
9038 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
9039 pixels to be used as identity matrix for 3D lookup tables. Each component is
9040 coded on a @code{1/(N*N)} scale.
9041
9042 @item size, s
9043 Specify the size of the sourced video. For the syntax of this option, check the
9044 "Video size" section in the ffmpeg-utils manual. The default value is
9045 "320x240".
9046
9047 This option is not available with the @code{haldclutsrc} filter.
9048
9049 @item rate, r
9050 Specify the frame rate of the sourced video, as the number of frames
9051 generated per second. It has to be a string in the format
9052 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a float
9053 number or a valid video frame rate abbreviation. The default value is
9054 "25".
9055
9056 @item sar
9057 Set the sample aspect ratio of the sourced video.
9058
9059 @item duration, d
9060 Set the video duration of the sourced video. The accepted syntax is:
9061 @example
9062 [-]HH[:MM[:SS[.m...]]]
9063 [-]S+[.m...]
9064 @end example
9065 See also the function @code{av_parse_time()}.
9066
9067 If not specified, or the expressed duration is negative, the video is
9068 supposed to be generated forever.
9069
9070 @item decimals, n
9071 Set the number of decimals to show in the timestamp, only available in the
9072 @code{testsrc} source.
9073
9074 The displayed timestamp value will correspond to the original
9075 timestamp value multiplied by the power of 10 of the specified
9076 value. Default value is 0.
9077 @end table
9078
9079 For example the following:
9080 @example
9081 testsrc=duration=5.3:size=qcif:rate=10
9082 @end example
9083
9084 will generate a video with a duration of 5.3 seconds, with size
9085 176x144 and a frame rate of 10 frames per second.
9086
9087 The following graph description will generate a red source
9088 with an opacity of 0.2, with size "qcif" and a frame rate of 10
9089 frames per second.
9090 @example
9091 color=c=red@@0.2:s=qcif:r=10
9092 @end example
9093
9094 If the input content is to be ignored, @code{nullsrc} can be used. The
9095 following command generates noise in the luminance plane by employing
9096 the @code{geq} filter:
9097 @example
9098 nullsrc=s=256x256, geq=random(1)*255:128:128
9099 @end example
9100
9101 @subsection Commands
9102
9103 The @code{color} source supports the following commands:
9104
9105 @table @option
9106 @item c, color
9107 Set the color of the created image. Accepts the same syntax of the
9108 corresponding @option{color} option.
9109 @end table
9110
9111 @c man end VIDEO SOURCES
9112
9113 @chapter Video Sinks
9114 @c man begin VIDEO SINKS
9115
9116 Below is a description of the currently available video sinks.
9117
9118 @section buffersink
9119
9120 Buffer video frames, and make them available to the end of the filter
9121 graph.
9122
9123 This sink is mainly intended for a programmatic use, in particular
9124 through the interface defined in @file{libavfilter/buffersink.h}
9125 or the options system.
9126
9127 It accepts a pointer to an AVBufferSinkContext structure, which
9128 defines the incoming buffers' formats, to be passed as the opaque
9129 parameter to @code{avfilter_init_filter} for initialization.
9130
9131 @section nullsink
9132
9133 Null video sink, do absolutely nothing with the input video. It is
9134 mainly useful as a template and to be employed in analysis / debugging
9135 tools.
9136
9137 @c man end VIDEO SINKS
9138
9139 @chapter Multimedia Filters
9140 @c man begin MULTIMEDIA FILTERS
9141
9142 Below is a description of the currently available multimedia filters.
9143
9144 @section avectorscope
9145
9146 Convert input audio to a video output, representing the audio vector
9147 scope.
9148
9149 The filter is used to measure the difference between channels of stereo
9150 audio stream. A monoaural signal, consisting of identical left and right
9151 signal, results in straight vertical line. Any stereo separation is visible
9152 as a deviation from this line, creating a Lissajous figure.
9153 If the straight (or deviation from it) but horizontal line appears this
9154 indicates that the left and right channels are out of phase.
9155
9156 The filter accepts the following options:
9157
9158 @table @option
9159 @item mode, m
9160 Set the vectorscope mode.
9161
9162 Available values are:
9163 @table @samp
9164 @item lissajous
9165 Lissajous rotated by 45 degrees.
9166
9167 @item lissajous_xy
9168 Same as above but not rotated.
9169 @end table
9170
9171 Default value is @samp{lissajous}.
9172
9173 @item size, s
9174 Set the video size for the output. For the syntax of this option, check the "Video size"
9175 section in the ffmpeg-utils manual. Default value is @code{400x400}.
9176
9177 @item rate, r
9178 Set the output frame rate. Default value is @code{25}.
9179
9180 @item rc
9181 @item gc
9182 @item bc
9183 Specify the red, green and blue contrast. Default values are @code{40}, @code{160} and @code{80}.
9184 Allowed range is @code{[0, 255]}.
9185
9186 @item rf
9187 @item gf
9188 @item bf
9189 Specify the red, green and blue fade. Default values are @code{15}, @code{10} and @code{5}.
9190 Allowed range is @code{[0, 255]}.
9191
9192 @item zoom
9193 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[1, 10]}.
9194 @end table
9195
9196 @subsection Examples
9197
9198 @itemize
9199 @item
9200 Complete example using @command{ffplay}:
9201 @example
9202 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
9203              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
9204 @end example
9205 @end itemize
9206
9207 @section concat
9208
9209 Concatenate audio and video streams, joining them together one after the
9210 other.
9211
9212 The filter works on segments of synchronized video and audio streams. All
9213 segments must have the same number of streams of each type, and that will
9214 also be the number of streams at output.
9215
9216 The filter accepts the following options:
9217
9218 @table @option
9219
9220 @item n
9221 Set the number of segments. Default is 2.
9222
9223 @item v
9224 Set the number of output video streams, that is also the number of video
9225 streams in each segment. Default is 1.
9226
9227 @item a
9228 Set the number of output audio streams, that is also the number of video
9229 streams in each segment. Default is 0.
9230
9231 @item unsafe
9232 Activate unsafe mode: do not fail if segments have a different format.
9233
9234 @end table
9235
9236 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
9237 @var{a} audio outputs.
9238
9239 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
9240 segment, in the same order as the outputs, then the inputs for the second
9241 segment, etc.
9242
9243 Related streams do not always have exactly the same duration, for various
9244 reasons including codec frame size or sloppy authoring. For that reason,
9245 related synchronized streams (e.g. a video and its audio track) should be
9246 concatenated at once. The concat filter will use the duration of the longest
9247 stream in each segment (except the last one), and if necessary pad shorter
9248 audio streams with silence.
9249
9250 For this filter to work correctly, all segments must start at timestamp 0.
9251
9252 All corresponding streams must have the same parameters in all segments; the
9253 filtering system will automatically select a common pixel format for video
9254 streams, and a common sample format, sample rate and channel layout for
9255 audio streams, but other settings, such as resolution, must be converted
9256 explicitly by the user.
9257
9258 Different frame rates are acceptable but will result in variable frame rate
9259 at output; be sure to configure the output file to handle it.
9260
9261 @subsection Examples
9262
9263 @itemize
9264 @item
9265 Concatenate an opening, an episode and an ending, all in bilingual version
9266 (video in stream 0, audio in streams 1 and 2):
9267 @example
9268 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
9269   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
9270    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
9271   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
9272 @end example
9273
9274 @item
9275 Concatenate two parts, handling audio and video separately, using the
9276 (a)movie sources, and adjusting the resolution:
9277 @example
9278 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
9279 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
9280 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
9281 @end example
9282 Note that a desync will happen at the stitch if the audio and video streams
9283 do not have exactly the same duration in the first file.
9284
9285 @end itemize
9286
9287 @section ebur128
9288
9289 EBU R128 scanner filter. This filter takes an audio stream as input and outputs
9290 it unchanged. By default, it logs a message at a frequency of 10Hz with the
9291 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
9292 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
9293
9294 The filter also has a video output (see the @var{video} option) with a real
9295 time graph to observe the loudness evolution. The graphic contains the logged
9296 message mentioned above, so it is not printed anymore when this option is set,
9297 unless the verbose logging is set. The main graphing area contains the
9298 short-term loudness (3 seconds of analysis), and the gauge on the right is for
9299 the momentary loudness (400 milliseconds).
9300
9301 More information about the Loudness Recommendation EBU R128 on
9302 @url{http://tech.ebu.ch/loudness}.
9303
9304 The filter accepts the following options:
9305
9306 @table @option
9307
9308 @item video
9309 Activate the video output. The audio stream is passed unchanged whether this
9310 option is set or no. The video stream will be the first output stream if
9311 activated. Default is @code{0}.
9312
9313 @item size
9314 Set the video size. This option is for video only. For the syntax of this
9315 option, check the "Video size" section in the ffmpeg-utils manual. Default
9316 and minimum resolution is @code{640x480}.
9317
9318 @item meter
9319 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
9320 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
9321 other integer value between this range is allowed.
9322
9323 @item metadata
9324 Set metadata injection. If set to @code{1}, the audio input will be segmented
9325 into 100ms output frames, each of them containing various loudness information
9326 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
9327
9328 Default is @code{0}.
9329
9330 @item framelog
9331 Force the frame logging level.
9332
9333 Available values are:
9334 @table @samp
9335 @item info
9336 information logging level
9337 @item verbose
9338 verbose logging level
9339 @end table
9340
9341 By default, the logging level is set to @var{info}. If the @option{video} or
9342 the @option{metadata} options are set, it switches to @var{verbose}.
9343
9344 @item peak
9345 Set peak mode(s).
9346
9347 Available modes can be cumulated (the option is a @code{flag} type). Possible
9348 values are:
9349 @table @samp
9350 @item none
9351 Disable any peak mode (default).
9352 @item sample
9353 Enable sample-peak mode.
9354
9355 Simple peak mode looking for the higher sample value. It logs a message
9356 for sample-peak (identified by @code{SPK}).
9357 @item true
9358 Enable true-peak mode.
9359
9360 If enabled, the peak lookup is done on an over-sampled version of the input
9361 stream for better peak accuracy. It logs a message for true-peak.
9362 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
9363 This mode requires a build with @code{libswresample}.
9364 @end table
9365
9366 @end table
9367
9368 @subsection Examples
9369
9370 @itemize
9371 @item
9372 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
9373 @example
9374 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
9375 @end example
9376
9377 @item
9378 Run an analysis with @command{ffmpeg}:
9379 @example
9380 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
9381 @end example
9382 @end itemize
9383
9384 @section interleave, ainterleave
9385
9386 Temporally interleave frames from several inputs.
9387
9388 @code{interleave} works with video inputs, @code{ainterleave} with audio.
9389
9390 These filters read frames from several inputs and send the oldest
9391 queued frame to the output.
9392
9393 Input streams must have a well defined, monotonically increasing frame
9394 timestamp values.
9395
9396 In order to submit one frame to output, these filters need to enqueue
9397 at least one frame for each input, so they cannot work in case one
9398 input is not yet terminated and will not receive incoming frames.
9399
9400 For example consider the case when one input is a @code{select} filter
9401 which always drop input frames. The @code{interleave} filter will keep
9402 reading from that input, but it will never be able to send new frames
9403 to output until the input will send an end-of-stream signal.
9404
9405 Also, depending on inputs synchronization, the filters will drop
9406 frames in case one input receives more frames than the other ones, and
9407 the queue is already filled.
9408
9409 These filters accept the following options:
9410
9411 @table @option
9412 @item nb_inputs, n
9413 Set the number of different inputs, it is 2 by default.
9414 @end table
9415
9416 @subsection Examples
9417
9418 @itemize
9419 @item
9420 Interleave frames belonging to different streams using @command{ffmpeg}:
9421 @example
9422 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
9423 @end example
9424
9425 @item
9426 Add flickering blur effect:
9427 @example
9428 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
9429 @end example
9430 @end itemize
9431
9432 @section perms, aperms
9433
9434 Set read/write permissions for the output frames.
9435
9436 These filters are mainly aimed at developers to test direct path in the
9437 following filter in the filtergraph.
9438
9439 The filters accept the following options:
9440
9441 @table @option
9442 @item mode
9443 Select the permissions mode.
9444
9445 It accepts the following values:
9446 @table @samp
9447 @item none
9448 Do nothing. This is the default.
9449 @item ro
9450 Set all the output frames read-only.
9451 @item rw
9452 Set all the output frames directly writable.
9453 @item toggle
9454 Make the frame read-only if writable, and writable if read-only.
9455 @item random
9456 Set each output frame read-only or writable randomly.
9457 @end table
9458
9459 @item seed
9460 Set the seed for the @var{random} mode, must be an integer included between
9461 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
9462 @code{-1}, the filter will try to use a good random seed on a best effort
9463 basis.
9464 @end table
9465
9466 Note: in case of auto-inserted filter between the permission filter and the
9467 following one, the permission might not be received as expected in that
9468 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
9469 perms/aperms filter can avoid this problem.
9470
9471 @section select, aselect
9472
9473 Select frames to pass in output.
9474
9475 This filter accepts the following options:
9476
9477 @table @option
9478
9479 @item expr, e
9480 Set expression, which is evaluated for each input frame.
9481
9482 If the expression is evaluated to zero, the frame is discarded.
9483
9484 If the evaluation result is negative or NaN, the frame is sent to the
9485 first output; otherwise it is sent to the output with index
9486 @code{ceil(val)-1}, assuming that the input index starts from 0.
9487
9488 For example a value of @code{1.2} corresponds to the output with index
9489 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
9490
9491 @item outputs, n
9492 Set the number of outputs. The output to which to send the selected
9493 frame is based on the result of the evaluation. Default value is 1.
9494 @end table
9495
9496 The expression can contain the following constants:
9497
9498 @table @option
9499 @item n
9500 the sequential number of the filtered frame, starting from 0
9501
9502 @item selected_n
9503 the sequential number of the selected frame, starting from 0
9504
9505 @item prev_selected_n
9506 the sequential number of the last selected frame, NAN if undefined
9507
9508 @item TB
9509 timebase of the input timestamps
9510
9511 @item pts
9512 the PTS (Presentation TimeStamp) of the filtered video frame,
9513 expressed in @var{TB} units, NAN if undefined
9514
9515 @item t
9516 the PTS (Presentation TimeStamp) of the filtered video frame,
9517 expressed in seconds, NAN if undefined
9518
9519 @item prev_pts
9520 the PTS of the previously filtered video frame, NAN if undefined
9521
9522 @item prev_selected_pts
9523 the PTS of the last previously filtered video frame, NAN if undefined
9524
9525 @item prev_selected_t
9526 the PTS of the last previously selected video frame, NAN if undefined
9527
9528 @item start_pts
9529 the PTS of the first video frame in the video, NAN if undefined
9530
9531 @item start_t
9532 the time of the first video frame in the video, NAN if undefined
9533
9534 @item pict_type @emph{(video only)}
9535 the type of the filtered frame, can assume one of the following
9536 values:
9537 @table @option
9538 @item I
9539 @item P
9540 @item B
9541 @item S
9542 @item SI
9543 @item SP
9544 @item BI
9545 @end table
9546
9547 @item interlace_type @emph{(video only)}
9548 the frame interlace type, can assume one of the following values:
9549 @table @option
9550 @item PROGRESSIVE
9551 the frame is progressive (not interlaced)
9552 @item TOPFIRST
9553 the frame is top-field-first
9554 @item BOTTOMFIRST
9555 the frame is bottom-field-first
9556 @end table
9557
9558 @item consumed_sample_n @emph{(audio only)}
9559 the number of selected samples before the current frame
9560
9561 @item samples_n @emph{(audio only)}
9562 the number of samples in the current frame
9563
9564 @item sample_rate @emph{(audio only)}
9565 the input sample rate
9566
9567 @item key
9568 1 if the filtered frame is a key-frame, 0 otherwise
9569
9570 @item pos
9571 the position in the file of the filtered frame, -1 if the information
9572 is not available (e.g. for synthetic video)
9573
9574 @item scene @emph{(video only)}
9575 value between 0 and 1 to indicate a new scene; a low value reflects a low
9576 probability for the current frame to introduce a new scene, while a higher
9577 value means the current frame is more likely to be one (see the example below)
9578
9579 @end table
9580
9581 The default value of the select expression is "1".
9582
9583 @subsection Examples
9584
9585 @itemize
9586 @item
9587 Select all frames in input:
9588 @example
9589 select
9590 @end example
9591
9592 The example above is the same as:
9593 @example
9594 select=1
9595 @end example
9596
9597 @item
9598 Skip all frames:
9599 @example
9600 select=0
9601 @end example
9602
9603 @item
9604 Select only I-frames:
9605 @example
9606 select='eq(pict_type\,I)'
9607 @end example
9608
9609 @item
9610 Select one frame every 100:
9611 @example
9612 select='not(mod(n\,100))'
9613 @end example
9614
9615 @item
9616 Select only frames contained in the 10-20 time interval:
9617 @example
9618 select=between(t\,10\,20)
9619 @end example
9620
9621 @item
9622 Select only I frames contained in the 10-20 time interval:
9623 @example
9624 select=between(t\,10\,20)*eq(pict_type\,I)
9625 @end example
9626
9627 @item
9628 Select frames with a minimum distance of 10 seconds:
9629 @example
9630 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
9631 @end example
9632
9633 @item
9634 Use aselect to select only audio frames with samples number > 100:
9635 @example
9636 aselect='gt(samples_n\,100)'
9637 @end example
9638
9639 @item
9640 Create a mosaic of the first scenes:
9641 @example
9642 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
9643 @end example
9644
9645 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
9646 choice.
9647
9648 @item
9649 Send even and odd frames to separate outputs, and compose them:
9650 @example
9651 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
9652 @end example
9653 @end itemize
9654
9655 @section sendcmd, asendcmd
9656
9657 Send commands to filters in the filtergraph.
9658
9659 These filters read commands to be sent to other filters in the
9660 filtergraph.
9661
9662 @code{sendcmd} must be inserted between two video filters,
9663 @code{asendcmd} must be inserted between two audio filters, but apart
9664 from that they act the same way.
9665
9666 The specification of commands can be provided in the filter arguments
9667 with the @var{commands} option, or in a file specified by the
9668 @var{filename} option.
9669
9670 These filters accept the following options:
9671 @table @option
9672 @item commands, c
9673 Set the commands to be read and sent to the other filters.
9674 @item filename, f
9675 Set the filename of the commands to be read and sent to the other
9676 filters.
9677 @end table
9678
9679 @subsection Commands syntax
9680
9681 A commands description consists of a sequence of interval
9682 specifications, comprising a list of commands to be executed when a
9683 particular event related to that interval occurs. The occurring event
9684 is typically the current frame time entering or leaving a given time
9685 interval.
9686
9687 An interval is specified by the following syntax:
9688 @example
9689 @var{START}[-@var{END}] @var{COMMANDS};
9690 @end example
9691
9692 The time interval is specified by the @var{START} and @var{END} times.
9693 @var{END} is optional and defaults to the maximum time.
9694
9695 The current frame time is considered within the specified interval if
9696 it is included in the interval [@var{START}, @var{END}), that is when
9697 the time is greater or equal to @var{START} and is lesser than
9698 @var{END}.
9699
9700 @var{COMMANDS} consists of a sequence of one or more command
9701 specifications, separated by ",", relating to that interval.  The
9702 syntax of a command specification is given by:
9703 @example
9704 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
9705 @end example
9706
9707 @var{FLAGS} is optional and specifies the type of events relating to
9708 the time interval which enable sending the specified command, and must
9709 be a non-null sequence of identifier flags separated by "+" or "|" and
9710 enclosed between "[" and "]".
9711
9712 The following flags are recognized:
9713 @table @option
9714 @item enter
9715 The command is sent when the current frame timestamp enters the
9716 specified interval. In other words, the command is sent when the
9717 previous frame timestamp was not in the given interval, and the
9718 current is.
9719
9720 @item leave
9721 The command is sent when the current frame timestamp leaves the
9722 specified interval. In other words, the command is sent when the
9723 previous frame timestamp was in the given interval, and the
9724 current is not.
9725 @end table
9726
9727 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
9728 assumed.
9729
9730 @var{TARGET} specifies the target of the command, usually the name of
9731 the filter class or a specific filter instance name.
9732
9733 @var{COMMAND} specifies the name of the command for the target filter.
9734
9735 @var{ARG} is optional and specifies the optional list of argument for
9736 the given @var{COMMAND}.
9737
9738 Between one interval specification and another, whitespaces, or
9739 sequences of characters starting with @code{#} until the end of line,
9740 are ignored and can be used to annotate comments.
9741
9742 A simplified BNF description of the commands specification syntax
9743 follows:
9744 @example
9745 @var{COMMAND_FLAG}  ::= "enter" | "leave"
9746 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
9747 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
9748 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
9749 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
9750 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
9751 @end example
9752
9753 @subsection Examples
9754
9755 @itemize
9756 @item
9757 Specify audio tempo change at second 4:
9758 @example
9759 asendcmd=c='4.0 atempo tempo 1.5',atempo
9760 @end example
9761
9762 @item
9763 Specify a list of drawtext and hue commands in a file.
9764 @example
9765 # show text in the interval 5-10
9766 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
9767          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
9768
9769 # desaturate the image in the interval 15-20
9770 15.0-20.0 [enter] hue s 0,
9771           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
9772           [leave] hue s 1,
9773           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
9774
9775 # apply an exponential saturation fade-out effect, starting from time 25
9776 25 [enter] hue s exp(25-t)
9777 @end example
9778
9779 A filtergraph allowing to read and process the above command list
9780 stored in a file @file{test.cmd}, can be specified with:
9781 @example
9782 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
9783 @end example
9784 @end itemize
9785
9786 @anchor{setpts}
9787 @section setpts, asetpts
9788
9789 Change the PTS (presentation timestamp) of the input frames.
9790
9791 @code{setpts} works on video frames, @code{asetpts} on audio frames.
9792
9793 This filter accepts the following options:
9794
9795 @table @option
9796
9797 @item expr
9798 The expression which is evaluated for each frame to construct its timestamp.
9799
9800 @end table
9801
9802 The expression is evaluated through the eval API and can contain the following
9803 constants:
9804
9805 @table @option
9806 @item FRAME_RATE
9807 frame rate, only defined for constant frame-rate video
9808
9809 @item PTS
9810 the presentation timestamp in input
9811
9812 @item N
9813 the count of the input frame for video or the number of consumed samples,
9814 not including the current frame for audio, starting from 0.
9815
9816 @item NB_CONSUMED_SAMPLES
9817 the number of consumed samples, not including the current frame (only
9818 audio)
9819
9820 @item NB_SAMPLES, S
9821 the number of samples in the current frame (only audio)
9822
9823 @item SAMPLE_RATE, SR
9824 audio sample rate
9825
9826 @item STARTPTS
9827 the PTS of the first frame
9828
9829 @item STARTT
9830 the time in seconds of the first frame
9831
9832 @item INTERLACED
9833 tell if the current frame is interlaced
9834
9835 @item T
9836 the time in seconds of the current frame
9837
9838 @item POS
9839 original position in the file of the frame, or undefined if undefined
9840 for the current frame
9841
9842 @item PREV_INPTS
9843 previous input PTS
9844
9845 @item PREV_INT
9846 previous input time in seconds
9847
9848 @item PREV_OUTPTS
9849 previous output PTS
9850
9851 @item PREV_OUTT
9852 previous output time in seconds
9853
9854 @item RTCTIME
9855 wallclock (RTC) time in microseconds. This is deprecated, use time(0)
9856 instead.
9857
9858 @item RTCSTART
9859 wallclock (RTC) time at the start of the movie in microseconds
9860
9861 @item TB
9862 timebase of the input timestamps
9863
9864 @end table
9865
9866 @subsection Examples
9867
9868 @itemize
9869 @item
9870 Start counting PTS from zero
9871 @example
9872 setpts=PTS-STARTPTS
9873 @end example
9874
9875 @item
9876 Apply fast motion effect:
9877 @example
9878 setpts=0.5*PTS
9879 @end example
9880
9881 @item
9882 Apply slow motion effect:
9883 @example
9884 setpts=2.0*PTS
9885 @end example
9886
9887 @item
9888 Set fixed rate of 25 frames per second:
9889 @example
9890 setpts=N/(25*TB)
9891 @end example
9892
9893 @item
9894 Set fixed rate 25 fps with some jitter:
9895 @example
9896 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
9897 @end example
9898
9899 @item
9900 Apply an offset of 10 seconds to the input PTS:
9901 @example
9902 setpts=PTS+10/TB
9903 @end example
9904
9905 @item
9906 Generate timestamps from a "live source" and rebase onto the current timebase:
9907 @example
9908 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
9909 @end example
9910
9911 @item
9912 Generate timestamps by counting samples:
9913 @example
9914 asetpts=N/SR/TB
9915 @end example
9916
9917 @end itemize
9918
9919 @section settb, asettb
9920
9921 Set the timebase to use for the output frames timestamps.
9922 It is mainly useful for testing timebase configuration.
9923
9924 This filter accepts the following options:
9925
9926 @table @option
9927
9928 @item expr, tb
9929 The expression which is evaluated into the output timebase.
9930
9931 @end table
9932
9933 The value for @option{tb} is an arithmetic expression representing a
9934 rational. The expression can contain the constants "AVTB" (the default
9935 timebase), "intb" (the input timebase) and "sr" (the sample rate,
9936 audio only). Default value is "intb".
9937
9938 @subsection Examples
9939
9940 @itemize
9941 @item
9942 Set the timebase to 1/25:
9943 @example
9944 settb=expr=1/25
9945 @end example
9946
9947 @item
9948 Set the timebase to 1/10:
9949 @example
9950 settb=expr=0.1
9951 @end example
9952
9953 @item
9954 Set the timebase to 1001/1000:
9955 @example
9956 settb=1+0.001
9957 @end example
9958
9959 @item
9960 Set the timebase to 2*intb:
9961 @example
9962 settb=2*intb
9963 @end example
9964
9965 @item
9966 Set the default timebase value:
9967 @example
9968 settb=AVTB
9969 @end example
9970 @end itemize
9971
9972 @section showspectrum
9973
9974 Convert input audio to a video output, representing the audio frequency
9975 spectrum.
9976
9977 The filter accepts the following options:
9978
9979 @table @option
9980 @item size, s
9981 Specify the video size for the output. For the syntax of this option, check
9982 the "Video size" section in the ffmpeg-utils manual. Default value is
9983 @code{640x512}.
9984
9985 @item slide
9986 Specify if the spectrum should slide along the window. Default value is
9987 @code{0}.
9988
9989 @item mode
9990 Specify display mode.
9991
9992 It accepts the following values:
9993 @table @samp
9994 @item combined
9995 all channels are displayed in the same row
9996 @item separate
9997 all channels are displayed in separate rows
9998 @end table
9999
10000 Default value is @samp{combined}.
10001
10002 @item color
10003 Specify display color mode.
10004
10005 It accepts the following values:
10006 @table @samp
10007 @item channel
10008 each channel is displayed in a separate color
10009 @item intensity
10010 each channel is is displayed using the same color scheme
10011 @end table
10012
10013 Default value is @samp{channel}.
10014
10015 @item scale
10016 Specify scale used for calculating intensity color values.
10017
10018 It accepts the following values:
10019 @table @samp
10020 @item lin
10021 linear
10022 @item sqrt
10023 square root, default
10024 @item cbrt
10025 cubic root
10026 @item log
10027 logarithmic
10028 @end table
10029
10030 Default value is @samp{sqrt}.
10031
10032 @item saturation
10033 Set saturation modifier for displayed colors. Negative values provide
10034 alternative color scheme. @code{0} is no saturation at all.
10035 Saturation must be in [-10.0, 10.0] range.
10036 Default value is @code{1}.
10037
10038 @item win_func
10039 Set window function.
10040
10041 It accepts the following values:
10042 @table @samp
10043 @item none
10044 No samples pre-processing (do not expect this to be faster)
10045 @item hann
10046 Hann window
10047 @item hamming
10048 Hamming window
10049 @item blackman
10050 Blackman window
10051 @end table
10052
10053 Default value is @code{hann}.
10054 @end table
10055
10056 The usage is very similar to the showwaves filter; see the examples in that
10057 section.
10058
10059 @subsection Examples
10060
10061 @itemize
10062 @item
10063 Large window with logarithmic color scaling:
10064 @example
10065 showspectrum=s=1280x480:scale=log
10066 @end example
10067
10068 @item
10069 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
10070 @example
10071 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
10072              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
10073 @end example
10074 @end itemize
10075
10076 @section showwaves
10077
10078 Convert input audio to a video output, representing the samples waves.
10079
10080 The filter accepts the following options:
10081
10082 @table @option
10083 @item size, s
10084 Specify the video size for the output. For the syntax of this option, check
10085 the "Video size" section in the ffmpeg-utils manual. Default value
10086 is "600x240".
10087
10088 @item mode
10089 Set display mode.
10090
10091 Available values are:
10092 @table @samp
10093 @item point
10094 Draw a point for each sample.
10095
10096 @item line
10097 Draw a vertical line for each sample.
10098 @end table
10099
10100 Default value is @code{point}.
10101
10102 @item n
10103 Set the number of samples which are printed on the same column. A
10104 larger value will decrease the frame rate. Must be a positive
10105 integer. This option can be set only if the value for @var{rate}
10106 is not explicitly specified.
10107
10108 @item rate, r
10109 Set the (approximate) output frame rate. This is done by setting the
10110 option @var{n}. Default value is "25".
10111
10112 @end table
10113
10114 @subsection Examples
10115
10116 @itemize
10117 @item
10118 Output the input file audio and the corresponding video representation
10119 at the same time:
10120 @example
10121 amovie=a.mp3,asplit[out0],showwaves[out1]
10122 @end example
10123
10124 @item
10125 Create a synthetic signal and show it with showwaves, forcing a
10126 frame rate of 30 frames per second:
10127 @example
10128 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
10129 @end example
10130 @end itemize
10131
10132 @section split, asplit
10133
10134 Split input into several identical outputs.
10135
10136 @code{asplit} works with audio input, @code{split} with video.
10137
10138 The filter accepts a single parameter which specifies the number of outputs. If
10139 unspecified, it defaults to 2.
10140
10141 @subsection Examples
10142
10143 @itemize
10144 @item
10145 Create two separate outputs from the same input:
10146 @example
10147 [in] split [out0][out1]
10148 @end example
10149
10150 @item
10151 To create 3 or more outputs, you need to specify the number of
10152 outputs, like in:
10153 @example
10154 [in] asplit=3 [out0][out1][out2]
10155 @end example
10156
10157 @item
10158 Create two separate outputs from the same input, one cropped and
10159 one padded:
10160 @example
10161 [in] split [splitout1][splitout2];
10162 [splitout1] crop=100:100:0:0    [cropout];
10163 [splitout2] pad=200:200:100:100 [padout];
10164 @end example
10165
10166 @item
10167 Create 5 copies of the input audio with @command{ffmpeg}:
10168 @example
10169 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
10170 @end example
10171 @end itemize
10172
10173 @section zmq, azmq
10174
10175 Receive commands sent through a libzmq client, and forward them to
10176 filters in the filtergraph.
10177
10178 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
10179 must be inserted between two video filters, @code{azmq} between two
10180 audio filters.
10181
10182 To enable these filters you need to install the libzmq library and
10183 headers and configure FFmpeg with @code{--enable-libzmq}.
10184
10185 For more information about libzmq see:
10186 @url{http://www.zeromq.org/}
10187
10188 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
10189 receives messages sent through a network interface defined by the
10190 @option{bind_address} option.
10191
10192 The received message must be in the form:
10193 @example
10194 @var{TARGET} @var{COMMAND} [@var{ARG}]
10195 @end example
10196
10197 @var{TARGET} specifies the target of the command, usually the name of
10198 the filter class or a specific filter instance name.
10199
10200 @var{COMMAND} specifies the name of the command for the target filter.
10201
10202 @var{ARG} is optional and specifies the optional argument list for the
10203 given @var{COMMAND}.
10204
10205 Upon reception, the message is processed and the corresponding command
10206 is injected into the filtergraph. Depending on the result, the filter
10207 will send a reply to the client, adopting the format:
10208 @example
10209 @var{ERROR_CODE} @var{ERROR_REASON}
10210 @var{MESSAGE}
10211 @end example
10212
10213 @var{MESSAGE} is optional.
10214
10215 @subsection Examples
10216
10217 Look at @file{tools/zmqsend} for an example of a zmq client which can
10218 be used to send commands processed by these filters.
10219
10220 Consider the following filtergraph generated by @command{ffplay}
10221 @example
10222 ffplay -dumpgraph 1 -f lavfi "
10223 color=s=100x100:c=red  [l];
10224 color=s=100x100:c=blue [r];
10225 nullsrc=s=200x100, zmq [bg];
10226 [bg][l]   overlay      [bg+l];
10227 [bg+l][r] overlay=x=100 "
10228 @end example
10229
10230 To change the color of the left side of the video, the following
10231 command can be used:
10232 @example
10233 echo Parsed_color_0 c yellow | tools/zmqsend
10234 @end example
10235
10236 To change the right side:
10237 @example
10238 echo Parsed_color_1 c pink | tools/zmqsend
10239 @end example
10240
10241 @c man end MULTIMEDIA FILTERS
10242
10243 @chapter Multimedia Sources
10244 @c man begin MULTIMEDIA SOURCES
10245
10246 Below is a description of the currently available multimedia sources.
10247
10248 @section amovie
10249
10250 This is the same as @ref{movie} source, except it selects an audio
10251 stream by default.
10252
10253 @anchor{movie}
10254 @section movie
10255
10256 Read audio and/or video stream(s) from a movie container.
10257
10258 This filter accepts the following options:
10259
10260 @table @option
10261 @item filename
10262 The name of the resource to read (not necessarily a file but also a device or a
10263 stream accessed through some protocol).
10264
10265 @item format_name, f
10266 Specifies the format assumed for the movie to read, and can be either
10267 the name of a container or an input device. If not specified the
10268 format is guessed from @var{movie_name} or by probing.
10269
10270 @item seek_point, sp
10271 Specifies the seek point in seconds, the frames will be output
10272 starting from this seek point, the parameter is evaluated with
10273 @code{av_strtod} so the numerical value may be suffixed by an IS
10274 postfix. Default value is "0".
10275
10276 @item streams, s
10277 Specifies the streams to read. Several streams can be specified,
10278 separated by "+". The source will then have as many outputs, in the
10279 same order. The syntax is explained in the ``Stream specifiers''
10280 section in the ffmpeg manual. Two special names, "dv" and "da" specify
10281 respectively the default (best suited) video and audio stream. Default
10282 is "dv", or "da" if the filter is called as "amovie".
10283
10284 @item stream_index, si
10285 Specifies the index of the video stream to read. If the value is -1,
10286 the best suited video stream will be automatically selected. Default
10287 value is "-1". Deprecated. If the filter is called "amovie", it will select
10288 audio instead of video.
10289
10290 @item loop
10291 Specifies how many times to read the stream in sequence.
10292 If the value is less than 1, the stream will be read again and again.
10293 Default value is "1".
10294
10295 Note that when the movie is looped the source timestamps are not
10296 changed, so it will generate non monotonically increasing timestamps.
10297 @end table
10298
10299 This filter allows to overlay a second video on top of main input of
10300 a filtergraph as shown in this graph:
10301 @example
10302 input -----------> deltapts0 --> overlay --> output
10303                                     ^
10304                                     |
10305 movie --> scale--> deltapts1 -------+
10306 @end example
10307
10308 @subsection Examples
10309
10310 @itemize
10311 @item
10312 Skip 3.2 seconds from the start of the avi file in.avi, and overlay it
10313 on top of the input labelled as "in":
10314 @example
10315 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
10316 [in] setpts=PTS-STARTPTS [main];
10317 [main][over] overlay=16:16 [out]
10318 @end example
10319
10320 @item
10321 Read from a video4linux2 device, and overlay it on top of the input
10322 labelled as "in":
10323 @example
10324 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
10325 [in] setpts=PTS-STARTPTS [main];
10326 [main][over] overlay=16:16 [out]
10327 @end example
10328
10329 @item
10330 Read the first video stream and the audio stream with id 0x81 from
10331 dvd.vob; the video is connected to the pad named "video" and the audio is
10332 connected to the pad named "audio":
10333 @example
10334 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
10335 @end example
10336 @end itemize
10337
10338 @c man end MULTIMEDIA SOURCES