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