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