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