]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
doc: try to add a link from the vf_scale sws_flags to the scaler docs
[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 See the @ref{sws_flags,,,ffmpeg-scaler.texi} for the values.
6601
6602 @item size, s
6603 Set the video size, the value must be a valid abbreviation or in the
6604 form @var{width}x@var{height}.
6605
6606 @item in_color_matrix
6607 @item out_color_matrix
6608 Set in/output YCbCr color space type.
6609
6610 This allows the autodetected value to be overridden as well as allows forcing
6611 a specific value used for the output and encoder.
6612
6613 If not specified, the color space type depends on the pixel format.
6614
6615 Possible values:
6616
6617 @table @samp
6618 @item auto
6619 Choose automatically.
6620
6621 @item bt709
6622 Format conforming to International Telecommunication Union (ITU)
6623 Recommendation BT.709.
6624
6625 @item fcc
6626 Set color space conforming to the United States Federal Communications
6627 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
6628
6629 @item bt601
6630 Set color space conforming to:
6631
6632 @itemize
6633 @item
6634 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
6635
6636 @item
6637 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
6638
6639 @item
6640 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
6641
6642 @end itemize
6643
6644 @item smpte240m
6645 Set color space conforming to SMPTE ST 240:1999.
6646 @end table
6647
6648 @item in_range
6649 @item out_range
6650 Set in/output YCbCr sample range.
6651
6652 This allows the autodetected value to be overridden as well as allows forcing
6653 a specific value used for the output and encoder. If not specified, the
6654 range depends on the pixel format. Possible values:
6655
6656 @table @samp
6657 @item auto
6658 Choose automatically.
6659
6660 @item jpeg/full/pc
6661 Set full range (0-255 in case of 8-bit luma).
6662
6663 @item mpeg/tv
6664 Set "MPEG" range (16-235 in case of 8-bit luma).
6665 @end table
6666
6667 @item sws_dither
6668 Set the dithering algorithm
6669
6670 @table @samp
6671 @item auto
6672 Choose automatically.
6673
6674 @item none
6675 No dithering
6676
6677 @item bayer
6678 bayer dither
6679
6680 @item ed
6681 error diffusion dither
6682 @end table
6683
6684 @item force_original_aspect_ratio
6685 Enable decreasing or increasing output video width or height if necessary to
6686 keep the original aspect ratio. Possible values:
6687
6688 @table @samp
6689 @item disable
6690 Scale the video as specified and disable this feature.
6691
6692 @item decrease
6693 The output video dimensions will automatically be decreased if needed.
6694
6695 @item increase
6696 The output video dimensions will automatically be increased if needed.
6697
6698 @end table
6699
6700 One useful instance of this option is that when you know a specific device's
6701 maximum allowed resolution, you can use this to limit the output video to
6702 that, while retaining the aspect ratio. For example, device A allows
6703 1280x720 playback, and your video is 1920x800. Using this option (set it to
6704 decrease) and specifying 1280x720 to the command line makes the output
6705 1280x533.
6706
6707 Please note that this is a different thing than specifying -1 for @option{w}
6708 or @option{h}, you still need to specify the output resolution for this option
6709 to work.
6710
6711 @end table
6712
6713 The values of the @option{w} and @option{h} options are expressions
6714 containing the following constants:
6715
6716 @table @var
6717 @item in_w
6718 @item in_h
6719 the input width and height
6720
6721 @item iw
6722 @item ih
6723 same as @var{in_w} and @var{in_h}
6724
6725 @item out_w
6726 @item out_h
6727 the output (scaled) width and height
6728
6729 @item ow
6730 @item oh
6731 same as @var{out_w} and @var{out_h}
6732
6733 @item a
6734 same as @var{iw} / @var{ih}
6735
6736 @item sar
6737 input sample aspect ratio
6738
6739 @item dar
6740 input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
6741
6742 @item hsub
6743 @item vsub
6744 horizontal and vertical chroma subsample values. For example for the
6745 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6746 @end table
6747
6748 @subsection Examples
6749
6750 @itemize
6751 @item
6752 Scale the input video to a size of 200x100:
6753 @example
6754 scale=w=200:h=100
6755 @end example
6756
6757 This is equivalent to:
6758 @example
6759 scale=200:100
6760 @end example
6761
6762 or:
6763 @example
6764 scale=200x100
6765 @end example
6766
6767 @item
6768 Specify a size abbreviation for the output size:
6769 @example
6770 scale=qcif
6771 @end example
6772
6773 which can also be written as:
6774 @example
6775 scale=size=qcif
6776 @end example
6777
6778 @item
6779 Scale the input to 2x:
6780 @example
6781 scale=w=2*iw:h=2*ih
6782 @end example
6783
6784 @item
6785 The above is the same as:
6786 @example
6787 scale=2*in_w:2*in_h
6788 @end example
6789
6790 @item
6791 Scale the input to 2x with forced interlaced scaling:
6792 @example
6793 scale=2*iw:2*ih:interl=1
6794 @end example
6795
6796 @item
6797 Scale the input to half size:
6798 @example
6799 scale=w=iw/2:h=ih/2
6800 @end example
6801
6802 @item
6803 Increase the width, and set the height to the same size:
6804 @example
6805 scale=3/2*iw:ow
6806 @end example
6807
6808 @item
6809 Seek for Greek harmony:
6810 @example
6811 scale=iw:1/PHI*iw
6812 scale=ih*PHI:ih
6813 @end example
6814
6815 @item
6816 Increase the height, and set the width to 3/2 of the height:
6817 @example
6818 scale=w=3/2*oh:h=3/5*ih
6819 @end example
6820
6821 @item
6822 Increase the size, but make the size a multiple of the chroma
6823 subsample values:
6824 @example
6825 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
6826 @end example
6827
6828 @item
6829 Increase the width to a maximum of 500 pixels, keep the same input
6830 aspect ratio:
6831 @example
6832 scale=w='min(500\, iw*3/2):h=-1'
6833 @end example
6834 @end itemize
6835
6836 @section separatefields
6837
6838 The @code{separatefields} takes a frame-based video input and splits
6839 each frame into its components fields, producing a new half height clip
6840 with twice the frame rate and twice the frame count.
6841
6842 This filter use field-dominance information in frame to decide which
6843 of each pair of fields to place first in the output.
6844 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
6845
6846 @section setdar, setsar
6847
6848 The @code{setdar} filter sets the Display Aspect Ratio for the filter
6849 output video.
6850
6851 This is done by changing the specified Sample (aka Pixel) Aspect
6852 Ratio, according to the following equation:
6853 @example
6854 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
6855 @end example
6856
6857 Keep in mind that the @code{setdar} filter does not modify the pixel
6858 dimensions of the video frame. Also the display aspect ratio set by
6859 this filter may be changed by later filters in the filterchain,
6860 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
6861 applied.
6862
6863 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
6864 the filter output video.
6865
6866 Note that as a consequence of the application of this filter, the
6867 output display aspect ratio will change according to the equation
6868 above.
6869
6870 Keep in mind that the sample aspect ratio set by the @code{setsar}
6871 filter may be changed by later filters in the filterchain, e.g. if
6872 another "setsar" or a "setdar" filter is applied.
6873
6874 The filters accept the following options:
6875
6876 @table @option
6877 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
6878 Set the aspect ratio used by the filter.
6879
6880 The parameter can be a floating point number string, an expression, or
6881 a string of the form @var{num}:@var{den}, where @var{num} and
6882 @var{den} are the numerator and denominator of the aspect ratio. If
6883 the parameter is not specified, it is assumed the value "0".
6884 In case the form "@var{num}:@var{den}" is used, the @code{:} character
6885 should be escaped.
6886
6887 @item max
6888 Set the maximum integer value to use for expressing numerator and
6889 denominator when reducing the expressed aspect ratio to a rational.
6890 Default value is @code{100}.
6891
6892 @end table
6893
6894 @subsection Examples
6895
6896 @itemize
6897
6898 @item
6899 To change the display aspect ratio to 16:9, specify one of the following:
6900 @example
6901 setdar=dar=1.77777
6902 setdar=dar=16/9
6903 setdar=dar=1.77777
6904 @end example
6905
6906 @item
6907 To change the sample aspect ratio to 10:11, specify:
6908 @example
6909 setsar=sar=10/11
6910 @end example
6911
6912 @item
6913 To set a display aspect ratio of 16:9, and specify a maximum integer value of
6914 1000 in the aspect ratio reduction, use the command:
6915 @example
6916 setdar=ratio=16/9:max=1000
6917 @end example
6918
6919 @end itemize
6920
6921 @anchor{setfield}
6922 @section setfield
6923
6924 Force field for the output video frame.
6925
6926 The @code{setfield} filter marks the interlace type field for the
6927 output frames. It does not change the input frame, but only sets the
6928 corresponding property, which affects how the frame is treated by
6929 following filters (e.g. @code{fieldorder} or @code{yadif}).
6930
6931 The filter accepts the following options:
6932
6933 @table @option
6934
6935 @item mode
6936 Available values are:
6937
6938 @table @samp
6939 @item auto
6940 Keep the same field property.
6941
6942 @item bff
6943 Mark the frame as bottom-field-first.
6944
6945 @item tff
6946 Mark the frame as top-field-first.
6947
6948 @item prog
6949 Mark the frame as progressive.
6950 @end table
6951 @end table
6952
6953 @section showinfo
6954
6955 Show a line containing various information for each input video frame.
6956 The input video is not modified.
6957
6958 The shown line contains a sequence of key/value pairs of the form
6959 @var{key}:@var{value}.
6960
6961 A description of each shown parameter follows:
6962
6963 @table @option
6964 @item n
6965 sequential number of the input frame, starting from 0
6966
6967 @item pts
6968 Presentation TimeStamp of the input frame, expressed as a number of
6969 time base units. The time base unit depends on the filter input pad.
6970
6971 @item pts_time
6972 Presentation TimeStamp of the input frame, expressed as a number of
6973 seconds
6974
6975 @item pos
6976 position of the frame in the input stream, -1 if this information in
6977 unavailable and/or meaningless (for example in case of synthetic video)
6978
6979 @item fmt
6980 pixel format name
6981
6982 @item sar
6983 sample aspect ratio of the input frame, expressed in the form
6984 @var{num}/@var{den}
6985
6986 @item s
6987 size of the input frame, expressed in the form
6988 @var{width}x@var{height}
6989
6990 @item i
6991 interlaced mode ("P" for "progressive", "T" for top field first, "B"
6992 for bottom field first)
6993
6994 @item iskey
6995 1 if the frame is a key frame, 0 otherwise
6996
6997 @item type
6998 picture type of the input frame ("I" for an I-frame, "P" for a
6999 P-frame, "B" for a B-frame, "?" for unknown type).
7000 Check also the documentation of the @code{AVPictureType} enum and of
7001 the @code{av_get_picture_type_char} function defined in
7002 @file{libavutil/avutil.h}.
7003
7004 @item checksum
7005 Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame
7006
7007 @item plane_checksum
7008 Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
7009 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]"
7010 @end table
7011
7012 @anchor{smartblur}
7013 @section smartblur
7014
7015 Blur the input video without impacting the outlines.
7016
7017 The filter accepts the following options:
7018
7019 @table @option
7020 @item luma_radius, lr
7021 Set the luma radius. The option value must be a float number in
7022 the range [0.1,5.0] that specifies the variance of the gaussian filter
7023 used to blur the image (slower if larger). Default value is 1.0.
7024
7025 @item luma_strength, ls
7026 Set the luma strength. The option value must be a float number
7027 in the range [-1.0,1.0] that configures the blurring. A value included
7028 in [0.0,1.0] will blur the image whereas a value included in
7029 [-1.0,0.0] will sharpen the image. Default value is 1.0.
7030
7031 @item luma_threshold, lt
7032 Set the luma threshold used as a coefficient to determine
7033 whether a pixel should be blurred or not. The option value must be an
7034 integer in the range [-30,30]. A value of 0 will filter all the image,
7035 a value included in [0,30] will filter flat areas and a value included
7036 in [-30,0] will filter edges. Default value is 0.
7037
7038 @item chroma_radius, cr
7039 Set the chroma radius. The option value must be a float number in
7040 the range [0.1,5.0] that specifies the variance of the gaussian filter
7041 used to blur the image (slower if larger). Default value is 1.0.
7042
7043 @item chroma_strength, cs
7044 Set the chroma strength. The option value must be a float number
7045 in the range [-1.0,1.0] that configures the blurring. A value included
7046 in [0.0,1.0] will blur the image whereas a value included in
7047 [-1.0,0.0] will sharpen the image. Default value is 1.0.
7048
7049 @item chroma_threshold, ct
7050 Set the chroma threshold used as a coefficient to determine
7051 whether a pixel should be blurred or not. The option value must be an
7052 integer in the range [-30,30]. A value of 0 will filter all the image,
7053 a value included in [0,30] will filter flat areas and a value included
7054 in [-30,0] will filter edges. Default value is 0.
7055 @end table
7056
7057 If a chroma option is not explicitly set, the corresponding luma value
7058 is set.
7059
7060 @section stereo3d
7061
7062 Convert between different stereoscopic image formats.
7063
7064 The filters accept the following options:
7065
7066 @table @option
7067 @item in
7068 Set stereoscopic image format of input.
7069
7070 Available values for input image formats are:
7071 @table @samp
7072 @item sbsl
7073 side by side parallel (left eye left, right eye right)
7074
7075 @item sbsr
7076 side by side crosseye (right eye left, left eye right)
7077
7078 @item sbs2l
7079 side by side parallel with half width resolution
7080 (left eye left, right eye right)
7081
7082 @item sbs2r
7083 side by side crosseye with half width resolution
7084 (right eye left, left eye right)
7085
7086 @item abl
7087 above-below (left eye above, right eye below)
7088
7089 @item abr
7090 above-below (right eye above, left eye below)
7091
7092 @item ab2l
7093 above-below with half height resolution
7094 (left eye above, right eye below)
7095
7096 @item ab2r
7097 above-below with half height resolution
7098 (right eye above, left eye below)
7099
7100 @item al
7101 alternating frames (left eye first, right eye second)
7102
7103 @item ar
7104 alternating frames (right eye first, left eye second)
7105
7106 Default value is @samp{sbsl}.
7107 @end table
7108
7109 @item out
7110 Set stereoscopic image format of output.
7111
7112 Available values for output image formats are all the input formats as well as:
7113 @table @samp
7114 @item arbg
7115 anaglyph red/blue gray
7116 (red filter on left eye, blue filter on right eye)
7117
7118 @item argg
7119 anaglyph red/green gray
7120 (red filter on left eye, green filter on right eye)
7121
7122 @item arcg
7123 anaglyph red/cyan gray
7124 (red filter on left eye, cyan filter on right eye)
7125
7126 @item arch
7127 anaglyph red/cyan half colored
7128 (red filter on left eye, cyan filter on right eye)
7129
7130 @item arcc
7131 anaglyph red/cyan color
7132 (red filter on left eye, cyan filter on right eye)
7133
7134 @item arcd
7135 anaglyph red/cyan color optimized with the least squares projection of dubois
7136 (red filter on left eye, cyan filter on right eye)
7137
7138 @item agmg
7139 anaglyph green/magenta gray
7140 (green filter on left eye, magenta filter on right eye)
7141
7142 @item agmh
7143 anaglyph green/magenta half colored
7144 (green filter on left eye, magenta filter on right eye)
7145
7146 @item agmc
7147 anaglyph green/magenta colored
7148 (green filter on left eye, magenta filter on right eye)
7149
7150 @item agmd
7151 anaglyph green/magenta color optimized with the least squares projection of dubois
7152 (green filter on left eye, magenta filter on right eye)
7153
7154 @item aybg
7155 anaglyph yellow/blue gray
7156 (yellow filter on left eye, blue filter on right eye)
7157
7158 @item aybh
7159 anaglyph yellow/blue half colored
7160 (yellow filter on left eye, blue filter on right eye)
7161
7162 @item aybc
7163 anaglyph yellow/blue colored
7164 (yellow filter on left eye, blue filter on right eye)
7165
7166 @item aybd
7167 anaglyph yellow/blue color optimized with the least squares projection of dubois
7168 (yellow filter on left eye, blue filter on right eye)
7169
7170 @item irl
7171 interleaved rows (left eye has top row, right eye starts on next row)
7172
7173 @item irr
7174 interleaved rows (right eye has top row, left eye starts on next row)
7175
7176 @item ml
7177 mono output (left eye only)
7178
7179 @item mr
7180 mono output (right eye only)
7181 @end table
7182
7183 Default value is @samp{arcd}.
7184 @end table
7185
7186 @subsection Examples
7187
7188 @itemize
7189 @item
7190 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
7191 @example
7192 stereo3d=sbsl:aybd
7193 @end example
7194
7195 @item
7196 Convert input video from above bellow (left eye above, right eye below) to side by side crosseye.
7197 @example
7198 stereo3d=abl:sbsr
7199 @end example
7200 @end itemize
7201
7202 @section spp
7203
7204 Apply a simple postprocessing filter that compresses and decompresses the image
7205 at several (or - in the case of @option{quality} level @code{6} - all) shifts
7206 and average the results.
7207
7208 The filter accepts the following options:
7209
7210 @table @option
7211 @item quality
7212 Set quality. This option defines the number of levels for averaging. It accepts
7213 an integer in the range 0-6. If set to @code{0}, the filter will have no
7214 effect. A value of @code{6} means the higher quality. For each increment of
7215 that value the speed drops by a factor of approximately 2.  Default value is
7216 @code{3}.
7217
7218 @item qp
7219 Force a constant quantization parameter. If not set, the filter will use the QP
7220 from the video stream (if available).
7221
7222 @item mode
7223 Set thresholding mode. Available modes are:
7224
7225 @table @samp
7226 @item hard
7227 Set hard thresholding (default).
7228 @item soft
7229 Set soft thresholding (better de-ringing effect, but likely blurrier).
7230 @end table
7231
7232 @item use_bframe_qp
7233 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
7234 option may cause flicker since the B-Frames have often larger QP. Default is
7235 @code{0} (not enabled).
7236 @end table
7237
7238 @anchor{subtitles}
7239 @section subtitles
7240
7241 Draw subtitles on top of input video using the libass library.
7242
7243 To enable compilation of this filter you need to configure FFmpeg with
7244 @code{--enable-libass}. This filter also requires a build with libavcodec and
7245 libavformat to convert the passed subtitles file to ASS (Advanced Substation
7246 Alpha) subtitles format.
7247
7248 The filter accepts the following options:
7249
7250 @table @option
7251 @item filename, f
7252 Set the filename of the subtitle file to read. It must be specified.
7253
7254 @item original_size
7255 Specify the size of the original video, the video for which the ASS file
7256 was composed. Due to a misdesign in ASS aspect ratio arithmetic, this is
7257 necessary to correctly scale the fonts if the aspect ratio has been changed.
7258
7259 @item charenc
7260 Set subtitles input character encoding. @code{subtitles} filter only. Only
7261 useful if not UTF-8.
7262 @end table
7263
7264 If the first key is not specified, it is assumed that the first value
7265 specifies the @option{filename}.
7266
7267 For example, to render the file @file{sub.srt} on top of the input
7268 video, use the command:
7269 @example
7270 subtitles=sub.srt
7271 @end example
7272
7273 which is equivalent to:
7274 @example
7275 subtitles=filename=sub.srt
7276 @end example
7277
7278 @section super2xsai
7279
7280 Scale the input by 2x and smooth using the Super2xSaI (Scale and
7281 Interpolate) pixel art scaling algorithm.
7282
7283 Useful for enlarging pixel art images without reducing sharpness.
7284
7285 @section swapuv
7286 Swap U & V plane.
7287
7288 @section telecine
7289
7290 Apply telecine process to the video.
7291
7292 This filter accepts the following options:
7293
7294 @table @option
7295 @item first_field
7296 @table @samp
7297 @item top, t
7298 top field first
7299 @item bottom, b
7300 bottom field first
7301 The default value is @code{top}.
7302 @end table
7303
7304 @item pattern
7305 A string of numbers representing the pulldown pattern you wish to apply.
7306 The default value is @code{23}.
7307 @end table
7308
7309 @example
7310 Some typical patterns:
7311
7312 NTSC output (30i):
7313 27.5p: 32222
7314 24p: 23 (classic)
7315 24p: 2332 (preferred)
7316 20p: 33
7317 18p: 334
7318 16p: 3444
7319
7320 PAL output (25i):
7321 27.5p: 12222
7322 24p: 222222222223 ("Euro pulldown")
7323 16.67p: 33
7324 16p: 33333334
7325 @end example
7326
7327 @section thumbnail
7328 Select the most representative frame in a given sequence of consecutive frames.
7329
7330 The filter accepts the following options:
7331
7332 @table @option
7333 @item n
7334 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
7335 will pick one of them, and then handle the next batch of @var{n} frames until
7336 the end. Default is @code{100}.
7337 @end table
7338
7339 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
7340 value will result in a higher memory usage, so a high value is not recommended.
7341
7342 @subsection Examples
7343
7344 @itemize
7345 @item
7346 Extract one picture each 50 frames:
7347 @example
7348 thumbnail=50
7349 @end example
7350
7351 @item
7352 Complete example of a thumbnail creation with @command{ffmpeg}:
7353 @example
7354 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
7355 @end example
7356 @end itemize
7357
7358 @section tile
7359
7360 Tile several successive frames together.
7361
7362 The filter accepts the following options:
7363
7364 @table @option
7365
7366 @item layout
7367 Set the grid size (i.e. the number of lines and columns) in the form
7368 "@var{w}x@var{h}".
7369
7370 @item nb_frames
7371 Set the maximum number of frames to render in the given area. It must be less
7372 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
7373 the area will be used.
7374
7375 @item margin
7376 Set the outer border margin in pixels.
7377
7378 @item padding
7379 Set the inner border thickness (i.e. the number of pixels between frames). For
7380 more advanced padding options (such as having different values for the edges),
7381 refer to the pad video filter.
7382
7383 @item color
7384 Specify the color of the unused area, it can be the name of a color
7385 (case insensitive match) or a 0xRRGGBB[AA] sequence.
7386 The default value of @var{color} is "black".
7387 @end table
7388
7389 @subsection Examples
7390
7391 @itemize
7392 @item
7393 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
7394 @example
7395 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
7396 @end example
7397 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
7398 duplicating each output frame to accomodate the originally detected frame
7399 rate.
7400
7401 @item
7402 Display @code{5} pictures in an area of @code{3x2} frames,
7403 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
7404 mixed flat and named options:
7405 @example
7406 tile=3x2:nb_frames=5:padding=7:margin=2
7407 @end example
7408 @end itemize
7409
7410 @section tinterlace
7411
7412 Perform various types of temporal field interlacing.
7413
7414 Frames are counted starting from 1, so the first input frame is
7415 considered odd.
7416
7417 The filter accepts the following options:
7418
7419 @table @option
7420
7421 @item mode
7422 Specify the mode of the interlacing. This option can also be specified
7423 as a value alone. See below for a list of values for this option.
7424
7425 Available values are:
7426
7427 @table @samp
7428 @item merge, 0
7429 Move odd frames into the upper field, even into the lower field,
7430 generating a double height frame at half frame rate.
7431
7432 @item drop_odd, 1
7433 Only output even frames, odd frames are dropped, generating a frame with
7434 unchanged height at half frame rate.
7435
7436 @item drop_even, 2
7437 Only output odd frames, even frames are dropped, generating a frame with
7438 unchanged height at half frame rate.
7439
7440 @item pad, 3
7441 Expand each frame to full height, but pad alternate lines with black,
7442 generating a frame with double height at the same input frame rate.
7443
7444 @item interleave_top, 4
7445 Interleave the upper field from odd frames with the lower field from
7446 even frames, generating a frame with unchanged height at half frame rate.
7447
7448 @item interleave_bottom, 5
7449 Interleave the lower field from odd frames with the upper field from
7450 even frames, generating a frame with unchanged height at half frame rate.
7451
7452 @item interlacex2, 6
7453 Double frame rate with unchanged height. Frames are inserted each
7454 containing the second temporal field from the previous input frame and
7455 the first temporal field from the next input frame. This mode relies on
7456 the top_field_first flag. Useful for interlaced video displays with no
7457 field synchronisation.
7458 @end table
7459
7460 Numeric values are deprecated but are accepted for backward
7461 compatibility reasons.
7462
7463 Default mode is @code{merge}.
7464
7465 @item flags
7466 Specify flags influencing the filter process.
7467
7468 Available value for @var{flags} is:
7469
7470 @table @option
7471 @item low_pass_filter, vlfp
7472 Enable vertical low-pass filtering in the filter.
7473 Vertical low-pass filtering is required when creating an interlaced
7474 destination from a progressive source which contains high-frequency
7475 vertical detail. Filtering will reduce interlace 'twitter' and Moire
7476 patterning.
7477
7478 Vertical low-pass filtering can only be enabled for @option{mode}
7479 @var{interleave_top} and @var{interleave_bottom}.
7480
7481 @end table
7482 @end table
7483
7484 @section transpose
7485
7486 Transpose rows with columns in the input video and optionally flip it.
7487
7488 This filter accepts the following options:
7489
7490 @table @option
7491
7492 @item dir
7493 Specify the transposition direction.
7494
7495 Can assume the following values:
7496 @table @samp
7497 @item 0, 4, cclock_flip
7498 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
7499 @example
7500 L.R     L.l
7501 . . ->  . .
7502 l.r     R.r
7503 @end example
7504
7505 @item 1, 5, clock
7506 Rotate by 90 degrees clockwise, that is:
7507 @example
7508 L.R     l.L
7509 . . ->  . .
7510 l.r     r.R
7511 @end example
7512
7513 @item 2, 6, cclock
7514 Rotate by 90 degrees counterclockwise, that is:
7515 @example
7516 L.R     R.r
7517 . . ->  . .
7518 l.r     L.l
7519 @end example
7520
7521 @item 3, 7, clock_flip
7522 Rotate by 90 degrees clockwise and vertically flip, that is:
7523 @example
7524 L.R     r.R
7525 . . ->  . .
7526 l.r     l.L
7527 @end example
7528 @end table
7529
7530 For values between 4-7, the transposition is only done if the input
7531 video geometry is portrait and not landscape. These values are
7532 deprecated, the @code{passthrough} option should be used instead.
7533
7534 Numerical values are deprecated, and should be dropped in favor of
7535 symbolic constants.
7536
7537 @item passthrough
7538 Do not apply the transposition if the input geometry matches the one
7539 specified by the specified value. It accepts the following values:
7540 @table @samp
7541 @item none
7542 Always apply transposition.
7543 @item portrait
7544 Preserve portrait geometry (when @var{height} >= @var{width}).
7545 @item landscape
7546 Preserve landscape geometry (when @var{width} >= @var{height}).
7547 @end table
7548
7549 Default value is @code{none}.
7550 @end table
7551
7552 For example to rotate by 90 degrees clockwise and preserve portrait
7553 layout:
7554 @example
7555 transpose=dir=1:passthrough=portrait
7556 @end example
7557
7558 The command above can also be specified as:
7559 @example
7560 transpose=1:portrait
7561 @end example
7562
7563 @section trim
7564 Trim the input so that the output contains one continuous subpart of the input.
7565
7566 This filter accepts the following options:
7567 @table @option
7568 @item start
7569 Specify time of the start of the kept section, i.e. the frame with the
7570 timestamp @var{start} will be the first frame in the output.
7571
7572 @item end
7573 Specify time of the first frame that will be dropped, i.e. the frame
7574 immediately preceding the one with the timestamp @var{end} will be the last
7575 frame in the output.
7576
7577 @item start_pts
7578 Same as @var{start}, except this option sets the start timestamp in timebase
7579 units instead of seconds.
7580
7581 @item end_pts
7582 Same as @var{end}, except this option sets the end timestamp in timebase units
7583 instead of seconds.
7584
7585 @item duration
7586 Specify maximum duration of the output.
7587
7588 @item start_frame
7589 Number of the first frame that should be passed to output.
7590
7591 @item end_frame
7592 Number of the first frame that should be dropped.
7593 @end table
7594
7595 @option{start}, @option{end}, @option{duration} are expressed as time
7596 duration specifications, check the "Time duration" section in the
7597 ffmpeg-utils manual.
7598
7599 Note that the first two sets of the start/end options and the @option{duration}
7600 option look at the frame timestamp, while the _frame variants simply count the
7601 frames that pass through the filter. Also note that this filter does not modify
7602 the timestamps. If you wish that the output timestamps start at zero, insert a
7603 setpts filter after the trim filter.
7604
7605 If multiple start or end options are set, this filter tries to be greedy and
7606 keep all the frames that match at least one of the specified constraints. To keep
7607 only the part that matches all the constraints at once, chain multiple trim
7608 filters.
7609
7610 The defaults are such that all the input is kept. So it is possible to set e.g.
7611 just the end values to keep everything before the specified time.
7612
7613 Examples:
7614 @itemize
7615 @item
7616 drop everything except the second minute of input
7617 @example
7618 ffmpeg -i INPUT -vf trim=60:120
7619 @end example
7620
7621 @item
7622 keep only the first second
7623 @example
7624 ffmpeg -i INPUT -vf trim=duration=1
7625 @end example
7626
7627 @end itemize
7628
7629
7630 @section unsharp
7631
7632 Sharpen or blur the input video.
7633
7634 It accepts the following parameters:
7635
7636 @table @option
7637 @item luma_msize_x, lx
7638 Set the luma matrix horizontal size. It must be an odd integer between
7639 3 and 63, default value is 5.
7640
7641 @item luma_msize_y, ly
7642 Set the luma matrix vertical size. It must be an odd integer between 3
7643 and 63, default value is 5.
7644
7645 @item luma_amount, la
7646 Set the luma effect strength. It can be a float number, reasonable
7647 values lay between -1.5 and 1.5.
7648
7649 Negative values will blur the input video, while positive values will
7650 sharpen it, a value of zero will disable the effect.
7651
7652 Default value is 1.0.
7653
7654 @item chroma_msize_x, cx
7655 Set the chroma matrix horizontal size. It must be an odd integer
7656 between 3 and 63, default value is 5.
7657
7658 @item chroma_msize_y, cy
7659 Set the chroma matrix vertical size. It must be an odd integer
7660 between 3 and 63, default value is 5.
7661
7662 @item chroma_amount, ca
7663 Set the chroma effect strength. It can be a float number, reasonable
7664 values lay between -1.5 and 1.5.
7665
7666 Negative values will blur the input video, while positive values will
7667 sharpen it, a value of zero will disable the effect.
7668
7669 Default value is 0.0.
7670
7671 @item opencl
7672 If set to 1, specify using OpenCL capabilities, only available if
7673 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
7674
7675 @end table
7676
7677 All parameters are optional and default to the equivalent of the
7678 string '5:5:1.0:5:5:0.0'.
7679
7680 @subsection Examples
7681
7682 @itemize
7683 @item
7684 Apply strong luma sharpen effect:
7685 @example
7686 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
7687 @end example
7688
7689 @item
7690 Apply strong blur of both luma and chroma parameters:
7691 @example
7692 unsharp=7:7:-2:7:7:-2
7693 @end example
7694 @end itemize
7695
7696 @anchor{vidstabdetect}
7697 @section vidstabdetect
7698
7699 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
7700 @ref{vidstabtransform} for pass 2.
7701
7702 This filter generates a file with relative translation and rotation
7703 transform information about subsequent frames, which is then used by
7704 the @ref{vidstabtransform} filter.
7705
7706 To enable compilation of this filter you need to configure FFmpeg with
7707 @code{--enable-libvidstab}.
7708
7709 This filter accepts the following options:
7710
7711 @table @option
7712 @item result
7713 Set the path to the file used to write the transforms information.
7714 Default value is @file{transforms.trf}.
7715
7716 @item shakiness
7717 Set how shaky the video is and how quick the camera is. It accepts an
7718 integer in the range 1-10, a value of 1 means little shakiness, a
7719 value of 10 means strong shakiness. Default value is 5.
7720
7721 @item accuracy
7722 Set the accuracy of the detection process. It must be a value in the
7723 range 1-15. A value of 1 means low accuracy, a value of 15 means high
7724 accuracy. Default value is 9.
7725
7726 @item stepsize
7727 Set stepsize of the search process. The region around minimum is
7728 scanned with 1 pixel resolution. Default value is 6.
7729
7730 @item mincontrast
7731 Set minimum contrast. Below this value a local measurement field is
7732 discarded. Must be a floating point value in the range 0-1. Default
7733 value is 0.3.
7734
7735 @item tripod
7736 Set reference frame number for tripod mode.
7737
7738 If enabled, the motion of the frames is compared to a reference frame
7739 in the filtered stream, identified by the specified number. The idea
7740 is to compensate all movements in a more-or-less static scene and keep
7741 the camera view absolutely still.
7742
7743 If set to 0, it is disabled. The frames are counted starting from 1.
7744
7745 @item show
7746 Show fields and transforms in the resulting frames. It accepts an
7747 integer in the range 0-2. Default value is 0, which disables any
7748 visualization.
7749 @end table
7750
7751 @subsection Examples
7752
7753 @itemize
7754 @item
7755 Use default values:
7756 @example
7757 vidstabdetect
7758 @end example
7759
7760 @item
7761 Analyze strongly shaky movie and put the results in file
7762 @file{mytransforms.trf}:
7763 @example
7764 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
7765 @end example
7766
7767 @item
7768 Visualize the result of internal transformations in the resulting
7769 video:
7770 @example
7771 vidstabdetect=show=1
7772 @end example
7773
7774 @item
7775 Analyze a video with medium shakiness using @command{ffmpeg}:
7776 @example
7777 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
7778 @end example
7779 @end itemize
7780
7781 @anchor{vidstabtransform}
7782 @section vidstabtransform
7783
7784 Video stabilization/deshaking: pass 2 of 2,
7785 see @ref{vidstabdetect} for pass 1.
7786
7787 Read a file with transform information for each frame and
7788 apply/compensate them. Together with the @ref{vidstabdetect}
7789 filter this can be used to deshake videos. See also
7790 @url{http://public.hronopik.de/vid.stab}. It is important to also use
7791 the unsharp filter, see below.
7792
7793 To enable compilation of this filter you need to configure FFmpeg with
7794 @code{--enable-libvidstab}.
7795
7796 This filter accepts the following options:
7797
7798 @table @option
7799
7800 @item input
7801 path to the file used to read the transforms (default: @file{transforms.trf})
7802
7803 @item smoothing
7804 number of frames (value*2 + 1) used for lowpass filtering the camera movements
7805 (default: 10). For example a number of 10 means that 21 frames are used
7806 (10 in the past and 10 in the future) to smoothen the motion in the
7807 video. A larger values leads to a smoother video, but limits the
7808 acceleration of the camera (pan/tilt movements).
7809
7810 @item maxshift
7811 maximal number of pixels to translate frames (default: -1 no limit)
7812
7813 @item maxangle
7814 maximal angle in radians (degree*PI/180) to rotate frames (default: -1
7815 no limit)
7816
7817 @item crop
7818 How to deal with borders that may be visible due to movement
7819 compensation. Available values are:
7820
7821 @table @samp
7822 @item keep
7823 keep image information from previous frame (default)
7824 @item black
7825 fill the border black
7826 @end table
7827
7828 @item invert
7829 @table @samp
7830 @item 0
7831  keep transforms normal (default)
7832 @item 1
7833  invert transforms
7834 @end table
7835
7836
7837 @item relative
7838 consider transforms as
7839 @table @samp
7840 @item 0
7841  absolute
7842 @item 1
7843  relative to previous frame (default)
7844 @end table
7845
7846
7847 @item zoom
7848 percentage to zoom (default: 0)
7849 @table @samp
7850 @item >0
7851   zoom in
7852 @item <0
7853   zoom out
7854 @end table
7855
7856 @item optzoom
7857 set optimal zooming to avoid borders
7858 @table @samp
7859 @item 0
7860 disabled
7861 @item 1
7862 optimal static zoom value is determined (only very strong movements will lead to visible borders) (default)
7863 @item 2
7864 optimal adaptive zoom value is determined (no borders will be visible)
7865 @end table
7866 Note that the value given at zoom is added to the one calculated
7867 here.
7868
7869 @item interpol
7870 type of interpolation
7871
7872 Available values are:
7873 @table @samp
7874 @item no
7875 no interpolation
7876 @item linear
7877 linear only horizontal
7878 @item bilinear
7879 linear in both directions (default)
7880 @item bicubic
7881 cubic in both directions (slow)
7882 @end table
7883
7884 @item tripod
7885 virtual tripod mode means that the video is stabilized such that the
7886 camera stays stationary. Use also @code{tripod} option of
7887 @ref{vidstabdetect}.
7888 @table @samp
7889 @item 0
7890 off (default)
7891 @item 1
7892 virtual tripod mode: equivalent to @code{relative=0:smoothing=0}
7893 @end table
7894
7895 @end table
7896
7897 @subsection Examples
7898
7899 @itemize
7900 @item
7901 typical call with default default values:
7902  (note the unsharp filter which is always recommended)
7903 @example
7904 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
7905 @end example
7906
7907 @item
7908 zoom in a bit more and load transform data from a given file
7909 @example
7910 vidstabtransform=zoom=5:input="mytransforms.trf"
7911 @end example
7912
7913 @item
7914 smoothen the video even more
7915 @example
7916 vidstabtransform=smoothing=30
7917 @end example
7918
7919 @end itemize
7920
7921 @section vflip
7922
7923 Flip the input video vertically.
7924
7925 For example, to vertically flip a video with @command{ffmpeg}:
7926 @example
7927 ffmpeg -i in.avi -vf "vflip" out.avi
7928 @end example
7929
7930 @section vignette
7931
7932 Make or reverse a natural vignetting effect.
7933
7934 The filter accepts the following options:
7935
7936 @table @option
7937 @item angle, a
7938 Set lens angle expression as a number of radians.
7939
7940 The value is clipped in the @code{[0,PI/2]} range.
7941
7942 Default value: @code{"PI/5"}
7943
7944 @item x0
7945 @item y0
7946 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
7947 by default.
7948
7949 @item mode
7950 Set forward/backward mode.
7951
7952 Available modes are:
7953 @table @samp
7954 @item forward
7955 The larger the distance from the central point, the darker the image becomes.
7956
7957 @item backward
7958 The larger the distance from the central point, the brighter the image becomes.
7959 This can be used to reverse a vignette effect, though there is no automatic
7960 detection to extract the lens @option{angle} and other settings (yet). It can
7961 also be used to create a burning effect.
7962 @end table
7963
7964 Default value is @samp{forward}.
7965
7966 @item eval
7967 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
7968
7969 It accepts the following values:
7970 @table @samp
7971 @item init
7972 Evaluate expressions only once during the filter initialization.
7973
7974 @item frame
7975 Evaluate expressions for each incoming frame. This is way slower than the
7976 @samp{init} mode since it requires all the scalers to be re-computed, but it
7977 allows advanced dynamic expressions.
7978 @end table
7979
7980 Default value is @samp{init}.
7981
7982 @item dither
7983 Set dithering to reduce the circular banding effects. Default is @code{1}
7984 (enabled).
7985
7986 @item aspect
7987 Set vignette aspect. This setting allows to adjust the shape of the vignette.
7988 Setting this value to the SAR of the input will make a rectangular vignetting
7989 following the dimensions of the video.
7990
7991 Default is @code{1/1}.
7992 @end table
7993
7994 @subsection Expressions
7995
7996 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
7997 following parameters.
7998
7999 @table @option
8000 @item w
8001 @item h
8002 input width and height
8003
8004 @item n
8005 the number of input frame, starting from 0
8006
8007 @item pts
8008 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
8009 @var{TB} units, NAN if undefined
8010
8011 @item r
8012 frame rate of the input video, NAN if the input frame rate is unknown
8013
8014 @item t
8015 the PTS (Presentation TimeStamp) of the filtered video frame,
8016 expressed in seconds, NAN if undefined
8017
8018 @item tb
8019 time base of the input video
8020 @end table
8021
8022
8023 @subsection Examples
8024
8025 @itemize
8026 @item
8027 Apply simple strong vignetting effect:
8028 @example
8029 vignette=PI/4
8030 @end example
8031
8032 @item
8033 Make a flickering vignetting:
8034 @example
8035 vignette='PI/4+random(1)*PI/50':eval=frame
8036 @end example
8037
8038 @end itemize
8039
8040 @section w3fdif
8041
8042 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
8043 Deinterlacing Filter").
8044
8045 Based on the process described by Martin Weston for BBC R&D, and
8046 implemented based on the de-interlace algorithm written by Jim
8047 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
8048 uses filter coefficients calculated by BBC R&D.
8049
8050 There are two sets of filter coefficients, so called "simple":
8051 and "complex". Which set of filter coefficients is used can
8052 be set by passing an optional parameter:
8053
8054 @table @option
8055 @item filter
8056 Set the interlacing filter coefficients. Accepts one of the following values:
8057
8058 @table @samp
8059 @item simple
8060 Simple filter coefficient set.
8061 @item complex
8062 More-complex filter coefficient set.
8063 @end table
8064 Default value is @samp{complex}.
8065
8066 @item deint
8067 Specify which frames to deinterlace. Accept one of the following values:
8068
8069 @table @samp
8070 @item all
8071 Deinterlace all frames,
8072 @item interlaced
8073 Only deinterlace frames marked as interlaced.
8074 @end table
8075
8076 Default value is @samp{all}.
8077 @end table
8078
8079 @anchor{yadif}
8080 @section yadif
8081
8082 Deinterlace the input video ("yadif" means "yet another deinterlacing
8083 filter").
8084
8085 This filter accepts the following options:
8086
8087
8088 @table @option
8089
8090 @item mode
8091 The interlacing mode to adopt, accepts one of the following values:
8092
8093 @table @option
8094 @item 0, send_frame
8095 output 1 frame for each frame
8096 @item 1, send_field
8097 output 1 frame for each field
8098 @item 2, send_frame_nospatial
8099 like @code{send_frame} but skip spatial interlacing check
8100 @item 3, send_field_nospatial
8101 like @code{send_field} but skip spatial interlacing check
8102 @end table
8103
8104 Default value is @code{send_frame}.
8105
8106 @item parity
8107 The picture field parity assumed for the input interlaced video, accepts one of
8108 the following values:
8109
8110 @table @option
8111 @item 0, tff
8112 assume top field first
8113 @item 1, bff
8114 assume bottom field first
8115 @item -1, auto
8116 enable automatic detection
8117 @end table
8118
8119 Default value is @code{auto}.
8120 If interlacing is unknown or decoder does not export this information,
8121 top field first will be assumed.
8122
8123 @item deint
8124 Specify which frames to deinterlace. Accept one of the following
8125 values:
8126
8127 @table @option
8128 @item 0, all
8129 deinterlace all frames
8130 @item 1, interlaced
8131 only deinterlace frames marked as interlaced
8132 @end table
8133
8134 Default value is @code{all}.
8135 @end table
8136
8137 @c man end VIDEO FILTERS
8138
8139 @chapter Video Sources
8140 @c man begin VIDEO SOURCES
8141
8142 Below is a description of the currently available video sources.
8143
8144 @section buffer
8145
8146 Buffer video frames, and make them available to the filter chain.
8147
8148 This source is mainly intended for a programmatic use, in particular
8149 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
8150
8151 This source accepts the following options:
8152
8153 @table @option
8154
8155 @item video_size
8156 Specify the size (width and height) of the buffered video frames.
8157
8158 @item width
8159 Input video width.
8160
8161 @item height
8162 Input video height.
8163
8164 @item pix_fmt
8165 A string representing the pixel format of the buffered video frames.
8166 It may be a number corresponding to a pixel format, or a pixel format
8167 name.
8168
8169 @item time_base
8170 Specify the timebase assumed by the timestamps of the buffered frames.
8171
8172 @item frame_rate
8173 Specify the frame rate expected for the video stream.
8174
8175 @item pixel_aspect, sar
8176 Specify the sample aspect ratio assumed by the video frames.
8177
8178 @item sws_param
8179 Specify the optional parameters to be used for the scale filter which
8180 is automatically inserted when an input change is detected in the
8181 input size or format.
8182 @end table
8183
8184 For example:
8185 @example
8186 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
8187 @end example
8188
8189 will instruct the source to accept video frames with size 320x240 and
8190 with format "yuv410p", assuming 1/24 as the timestamps timebase and
8191 square pixels (1:1 sample aspect ratio).
8192 Since the pixel format with name "yuv410p" corresponds to the number 6
8193 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
8194 this example corresponds to:
8195 @example
8196 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
8197 @end example
8198
8199 Alternatively, the options can be specified as a flat string, but this
8200 syntax is deprecated:
8201
8202 @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}]
8203
8204 @section cellauto
8205
8206 Create a pattern generated by an elementary cellular automaton.
8207
8208 The initial state of the cellular automaton can be defined through the
8209 @option{filename}, and @option{pattern} options. If such options are
8210 not specified an initial state is created randomly.
8211
8212 At each new frame a new row in the video is filled with the result of
8213 the cellular automaton next generation. The behavior when the whole
8214 frame is filled is defined by the @option{scroll} option.
8215
8216 This source accepts the following options:
8217
8218 @table @option
8219 @item filename, f
8220 Read the initial cellular automaton state, i.e. the starting row, from
8221 the specified file.
8222 In the file, each non-whitespace character is considered an alive
8223 cell, a newline will terminate the row, and further characters in the
8224 file will be ignored.
8225
8226 @item pattern, p
8227 Read the initial cellular automaton state, i.e. the starting row, from
8228 the specified string.
8229
8230 Each non-whitespace character in the string is considered an alive
8231 cell, a newline will terminate the row, and further characters in the
8232 string will be ignored.
8233
8234 @item rate, r
8235 Set the video rate, that is the number of frames generated per second.
8236 Default is 25.
8237
8238 @item random_fill_ratio, ratio
8239 Set the random fill ratio for the initial cellular automaton row. It
8240 is a floating point number value ranging from 0 to 1, defaults to
8241 1/PHI.
8242
8243 This option is ignored when a file or a pattern is specified.
8244
8245 @item random_seed, seed
8246 Set the seed for filling randomly the initial row, must be an integer
8247 included between 0 and UINT32_MAX. If not specified, or if explicitly
8248 set to -1, the filter will try to use a good random seed on a best
8249 effort basis.
8250
8251 @item rule
8252 Set the cellular automaton rule, it is a number ranging from 0 to 255.
8253 Default value is 110.
8254
8255 @item size, s
8256 Set the size of the output video.
8257
8258 If @option{filename} or @option{pattern} is specified, the size is set
8259 by default to the width of the specified initial state row, and the
8260 height is set to @var{width} * PHI.
8261
8262 If @option{size} is set, it must contain the width of the specified
8263 pattern string, and the specified pattern will be centered in the
8264 larger row.
8265
8266 If a filename or a pattern string is not specified, the size value
8267 defaults to "320x518" (used for a randomly generated initial state).
8268
8269 @item scroll
8270 If set to 1, scroll the output upward when all the rows in the output
8271 have been already filled. If set to 0, the new generated row will be
8272 written over the top row just after the bottom row is filled.
8273 Defaults to 1.
8274
8275 @item start_full, full
8276 If set to 1, completely fill the output with generated rows before
8277 outputting the first frame.
8278 This is the default behavior, for disabling set the value to 0.
8279
8280 @item stitch
8281 If set to 1, stitch the left and right row edges together.
8282 This is the default behavior, for disabling set the value to 0.
8283 @end table
8284
8285 @subsection Examples
8286
8287 @itemize
8288 @item
8289 Read the initial state from @file{pattern}, and specify an output of
8290 size 200x400.
8291 @example
8292 cellauto=f=pattern:s=200x400
8293 @end example
8294
8295 @item
8296 Generate a random initial row with a width of 200 cells, with a fill
8297 ratio of 2/3:
8298 @example
8299 cellauto=ratio=2/3:s=200x200
8300 @end example
8301
8302 @item
8303 Create a pattern generated by rule 18 starting by a single alive cell
8304 centered on an initial row with width 100:
8305 @example
8306 cellauto=p=@@:s=100x400:full=0:rule=18
8307 @end example
8308
8309 @item
8310 Specify a more elaborated initial pattern:
8311 @example
8312 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
8313 @end example
8314
8315 @end itemize
8316
8317 @section mandelbrot
8318
8319 Generate a Mandelbrot set fractal, and progressively zoom towards the
8320 point specified with @var{start_x} and @var{start_y}.
8321
8322 This source accepts the following options:
8323
8324 @table @option
8325
8326 @item end_pts
8327 Set the terminal pts value. Default value is 400.
8328
8329 @item end_scale
8330 Set the terminal scale value.
8331 Must be a floating point value. Default value is 0.3.
8332
8333 @item inner
8334 Set the inner coloring mode, that is the algorithm used to draw the
8335 Mandelbrot fractal internal region.
8336
8337 It shall assume one of the following values:
8338 @table @option
8339 @item black
8340 Set black mode.
8341 @item convergence
8342 Show time until convergence.
8343 @item mincol
8344 Set color based on point closest to the origin of the iterations.
8345 @item period
8346 Set period mode.
8347 @end table
8348
8349 Default value is @var{mincol}.
8350
8351 @item bailout
8352 Set the bailout value. Default value is 10.0.
8353
8354 @item maxiter
8355 Set the maximum of iterations performed by the rendering
8356 algorithm. Default value is 7189.
8357
8358 @item outer
8359 Set outer coloring mode.
8360 It shall assume one of following values:
8361 @table @option
8362 @item iteration_count
8363 Set iteration cound mode.
8364 @item normalized_iteration_count
8365 set normalized iteration count mode.
8366 @end table
8367 Default value is @var{normalized_iteration_count}.
8368
8369 @item rate, r
8370 Set frame rate, expressed as number of frames per second. Default
8371 value is "25".
8372
8373 @item size, s
8374 Set frame size. Default value is "640x480".
8375
8376 @item start_scale
8377 Set the initial scale value. Default value is 3.0.
8378
8379 @item start_x
8380 Set the initial x position. Must be a floating point value between
8381 -100 and 100. Default value is -0.743643887037158704752191506114774.
8382
8383 @item start_y
8384 Set the initial y position. Must be a floating point value between
8385 -100 and 100. Default value is -0.131825904205311970493132056385139.
8386 @end table
8387
8388 @section mptestsrc
8389
8390 Generate various test patterns, as generated by the MPlayer test filter.
8391
8392 The size of the generated video is fixed, and is 256x256.
8393 This source is useful in particular for testing encoding features.
8394
8395 This source accepts the following options:
8396
8397 @table @option
8398
8399 @item rate, r
8400 Specify the frame rate of the sourced video, as the number of frames
8401 generated per second. It has to be a string in the format
8402 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a float
8403 number or a valid video frame rate abbreviation. The default value is
8404 "25".
8405
8406 @item duration, d
8407 Set the video duration of the sourced video. The accepted syntax is:
8408 @example
8409 [-]HH:MM:SS[.m...]
8410 [-]S+[.m...]
8411 @end example
8412 See also the function @code{av_parse_time()}.
8413
8414 If not specified, or the expressed duration is negative, the video is
8415 supposed to be generated forever.
8416
8417 @item test, t
8418
8419 Set the number or the name of the test to perform. Supported tests are:
8420 @table @option
8421 @item dc_luma
8422 @item dc_chroma
8423 @item freq_luma
8424 @item freq_chroma
8425 @item amp_luma
8426 @item amp_chroma
8427 @item cbp
8428 @item mv
8429 @item ring1
8430 @item ring2
8431 @item all
8432 @end table
8433
8434 Default value is "all", which will cycle through the list of all tests.
8435 @end table
8436
8437 For example the following:
8438 @example
8439 testsrc=t=dc_luma
8440 @end example
8441
8442 will generate a "dc_luma" test pattern.
8443
8444 @section frei0r_src
8445
8446 Provide a frei0r source.
8447
8448 To enable compilation of this filter you need to install the frei0r
8449 header and configure FFmpeg with @code{--enable-frei0r}.
8450
8451 This source accepts the following options:
8452
8453 @table @option
8454
8455 @item size
8456 The size of the video to generate, may be a string of the form
8457 @var{width}x@var{height} or a frame size abbreviation.
8458
8459 @item framerate
8460 Framerate of the generated video, may be a string of the form
8461 @var{num}/@var{den} or a frame rate abbreviation.
8462
8463 @item filter_name
8464 The name to the frei0r source to load. For more information regarding frei0r and
8465 how to set the parameters read the section @ref{frei0r} in the description of
8466 the video filters.
8467
8468 @item filter_params
8469 A '|'-separated list of parameters to pass to the frei0r source.
8470
8471 @end table
8472
8473 For example, to generate a frei0r partik0l source with size 200x200
8474 and frame rate 10 which is overlayed on the overlay filter main input:
8475 @example
8476 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
8477 @end example
8478
8479 @section life
8480
8481 Generate a life pattern.
8482
8483 This source is based on a generalization of John Conway's life game.
8484
8485 The sourced input represents a life grid, each pixel represents a cell
8486 which can be in one of two possible states, alive or dead. Every cell
8487 interacts with its eight neighbours, which are the cells that are
8488 horizontally, vertically, or diagonally adjacent.
8489
8490 At each interaction the grid evolves according to the adopted rule,
8491 which specifies the number of neighbor alive cells which will make a
8492 cell stay alive or born. The @option{rule} option allows to specify
8493 the rule to adopt.
8494
8495 This source accepts the following options:
8496
8497 @table @option
8498 @item filename, f
8499 Set the file from which to read the initial grid state. In the file,
8500 each non-whitespace character is considered an alive cell, and newline
8501 is used to delimit the end of each row.
8502
8503 If this option is not specified, the initial grid is generated
8504 randomly.
8505
8506 @item rate, r
8507 Set the video rate, that is the number of frames generated per second.
8508 Default is 25.
8509
8510 @item random_fill_ratio, ratio
8511 Set the random fill ratio for the initial random grid. It is a
8512 floating point number value ranging from 0 to 1, defaults to 1/PHI.
8513 It is ignored when a file is specified.
8514
8515 @item random_seed, seed
8516 Set the seed for filling the initial random grid, must be an integer
8517 included between 0 and UINT32_MAX. If not specified, or if explicitly
8518 set to -1, the filter will try to use a good random seed on a best
8519 effort basis.
8520
8521 @item rule
8522 Set the life rule.
8523
8524 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
8525 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
8526 @var{NS} specifies the number of alive neighbor cells which make a
8527 live cell stay alive, and @var{NB} the number of alive neighbor cells
8528 which make a dead cell to become alive (i.e. to "born").
8529 "s" and "b" can be used in place of "S" and "B", respectively.
8530
8531 Alternatively a rule can be specified by an 18-bits integer. The 9
8532 high order bits are used to encode the next cell state if it is alive
8533 for each number of neighbor alive cells, the low order bits specify
8534 the rule for "borning" new cells. Higher order bits encode for an
8535 higher number of neighbor cells.
8536 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
8537 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
8538
8539 Default value is "S23/B3", which is the original Conway's game of life
8540 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
8541 cells, and will born a new cell if there are three alive cells around
8542 a dead cell.
8543
8544 @item size, s
8545 Set the size of the output video.
8546
8547 If @option{filename} is specified, the size is set by default to the
8548 same size of the input file. If @option{size} is set, it must contain
8549 the size specified in the input file, and the initial grid defined in
8550 that file is centered in the larger resulting area.
8551
8552 If a filename is not specified, the size value defaults to "320x240"
8553 (used for a randomly generated initial grid).
8554
8555 @item stitch
8556 If set to 1, stitch the left and right grid edges together, and the
8557 top and bottom edges also. Defaults to 1.
8558
8559 @item mold
8560 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
8561 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
8562 value from 0 to 255.
8563
8564 @item life_color
8565 Set the color of living (or new born) cells.
8566
8567 @item death_color
8568 Set the color of dead cells. If @option{mold} is set, this is the first color
8569 used to represent a dead cell.
8570
8571 @item mold_color
8572 Set mold color, for definitely dead and moldy cells.
8573 @end table
8574
8575 @subsection Examples
8576
8577 @itemize
8578 @item
8579 Read a grid from @file{pattern}, and center it on a grid of size
8580 300x300 pixels:
8581 @example
8582 life=f=pattern:s=300x300
8583 @end example
8584
8585 @item
8586 Generate a random grid of size 200x200, with a fill ratio of 2/3:
8587 @example
8588 life=ratio=2/3:s=200x200
8589 @end example
8590
8591 @item
8592 Specify a custom rule for evolving a randomly generated grid:
8593 @example
8594 life=rule=S14/B34
8595 @end example
8596
8597 @item
8598 Full example with slow death effect (mold) using @command{ffplay}:
8599 @example
8600 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
8601 @end example
8602 @end itemize
8603
8604 @anchor{color}
8605 @anchor{haldclutsrc}
8606 @anchor{nullsrc}
8607 @anchor{rgbtestsrc}
8608 @anchor{smptebars}
8609 @anchor{smptehdbars}
8610 @anchor{testsrc}
8611 @section color, haldclutsrc, nullsrc, rgbtestsrc, smptebars, smptehdbars, testsrc
8612
8613 The @code{color} source provides an uniformly colored input.
8614
8615 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
8616 @ref{haldclut} filter.
8617
8618 The @code{nullsrc} source returns unprocessed video frames. It is
8619 mainly useful to be employed in analysis / debugging tools, or as the
8620 source for filters which ignore the input data.
8621
8622 The @code{rgbtestsrc} source generates an RGB test pattern useful for
8623 detecting RGB vs BGR issues. You should see a red, green and blue
8624 stripe from top to bottom.
8625
8626 The @code{smptebars} source generates a color bars pattern, based on
8627 the SMPTE Engineering Guideline EG 1-1990.
8628
8629 The @code{smptehdbars} source generates a color bars pattern, based on
8630 the SMPTE RP 219-2002.
8631
8632 The @code{testsrc} source generates a test video pattern, showing a
8633 color pattern, a scrolling gradient and a timestamp. This is mainly
8634 intended for testing purposes.
8635
8636 The sources accept the following options:
8637
8638 @table @option
8639
8640 @item color, c
8641 Specify the color of the source, only available in the @code{color}
8642 source. It can be the name of a color (case insensitive match) or a
8643 0xRRGGBB[AA] sequence, possibly followed by an alpha specifier. The
8644 default value is "black".
8645
8646 @item level
8647 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
8648 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
8649 pixels to be used as identity matrix for 3D lookup tables. Each component is
8650 coded on a @code{1/(N*N)} scale.
8651
8652 @item size, s
8653 Specify the size of the sourced video, it may be a string of the form
8654 @var{width}x@var{height}, or the name of a size abbreviation. The
8655 default value is "320x240".
8656
8657 This option is not available with the @code{haldclutsrc} filter.
8658
8659 @item rate, r
8660 Specify the frame rate of the sourced video, as the number of frames
8661 generated per second. It has to be a string in the format
8662 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a float
8663 number or a valid video frame rate abbreviation. The default value is
8664 "25".
8665
8666 @item sar
8667 Set the sample aspect ratio of the sourced video.
8668
8669 @item duration, d
8670 Set the video duration of the sourced video. The accepted syntax is:
8671 @example
8672 [-]HH[:MM[:SS[.m...]]]
8673 [-]S+[.m...]
8674 @end example
8675 See also the function @code{av_parse_time()}.
8676
8677 If not specified, or the expressed duration is negative, the video is
8678 supposed to be generated forever.
8679
8680 @item decimals, n
8681 Set the number of decimals to show in the timestamp, only available in the
8682 @code{testsrc} source.
8683
8684 The displayed timestamp value will correspond to the original
8685 timestamp value multiplied by the power of 10 of the specified
8686 value. Default value is 0.
8687 @end table
8688
8689 For example the following:
8690 @example
8691 testsrc=duration=5.3:size=qcif:rate=10
8692 @end example
8693
8694 will generate a video with a duration of 5.3 seconds, with size
8695 176x144 and a frame rate of 10 frames per second.
8696
8697 The following graph description will generate a red source
8698 with an opacity of 0.2, with size "qcif" and a frame rate of 10
8699 frames per second.
8700 @example
8701 color=c=red@@0.2:s=qcif:r=10
8702 @end example
8703
8704 If the input content is to be ignored, @code{nullsrc} can be used. The
8705 following command generates noise in the luminance plane by employing
8706 the @code{geq} filter:
8707 @example
8708 nullsrc=s=256x256, geq=random(1)*255:128:128
8709 @end example
8710
8711 @subsection Commands
8712
8713 The @code{color} source supports the following commands:
8714
8715 @table @option
8716 @item c, color
8717 Set the color of the created image. Accepts the same syntax of the
8718 corresponding @option{color} option.
8719 @end table
8720
8721 @c man end VIDEO SOURCES
8722
8723 @chapter Video Sinks
8724 @c man begin VIDEO SINKS
8725
8726 Below is a description of the currently available video sinks.
8727
8728 @section buffersink
8729
8730 Buffer video frames, and make them available to the end of the filter
8731 graph.
8732
8733 This sink is mainly intended for a programmatic use, in particular
8734 through the interface defined in @file{libavfilter/buffersink.h}
8735 or the options system.
8736
8737 It accepts a pointer to an AVBufferSinkContext structure, which
8738 defines the incoming buffers' formats, to be passed as the opaque
8739 parameter to @code{avfilter_init_filter} for initialization.
8740
8741 @section nullsink
8742
8743 Null video sink, do absolutely nothing with the input video. It is
8744 mainly useful as a template and to be employed in analysis / debugging
8745 tools.
8746
8747 @c man end VIDEO SINKS
8748
8749 @chapter Multimedia Filters
8750 @c man begin MULTIMEDIA FILTERS
8751
8752 Below is a description of the currently available multimedia filters.
8753
8754 @section avectorscope
8755
8756 Convert input audio to a video output, representing the audio vector
8757 scope.
8758
8759 The filter is used to measure the difference between channels of stereo
8760 audio stream. A monoaural signal, consisting of identical left and right
8761 signal, results in straight vertical line. Any stereo separation is visible
8762 as a deviation from this line, creating a Lissajous figure.
8763 If the straight (or deviation from it) but horizontal line appears this
8764 indicates that the left and right channels are out of phase.
8765
8766 The filter accepts the following options:
8767
8768 @table @option
8769 @item mode, m
8770 Set the vectorscope mode.
8771
8772 Available values are:
8773 @table @samp
8774 @item lissajous
8775 Lissajous rotated by 45 degrees.
8776
8777 @item lissajous_xy
8778 Same as above but not rotated.
8779 @end table
8780
8781 Default value is @samp{lissajous}.
8782
8783 @item size, s
8784 Set the video size for the output. Default value is @code{400x400}.
8785
8786 @item rate, r
8787 Set the output frame rate. Default value is @code{25}.
8788
8789 @item rc
8790 @item gc
8791 @item bc
8792 Specify the red, green and blue contrast. Default values are @code{40}, @code{160} and @code{80}.
8793 Allowed range is @code{[0, 255]}.
8794
8795 @item rf
8796 @item gf
8797 @item bf
8798 Specify the red, green and blue fade. Default values are @code{15}, @code{10} and @code{5}.
8799 Allowed range is @code{[0, 255]}.
8800
8801 @item zoom
8802 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[1, 10]}.
8803 @end table
8804
8805 @subsection Examples
8806
8807 @itemize
8808 @item
8809 Complete example using @command{ffplay}:
8810 @example
8811 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
8812              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
8813 @end example
8814 @end itemize
8815
8816 @section concat
8817
8818 Concatenate audio and video streams, joining them together one after the
8819 other.
8820
8821 The filter works on segments of synchronized video and audio streams. All
8822 segments must have the same number of streams of each type, and that will
8823 also be the number of streams at output.
8824
8825 The filter accepts the following options:
8826
8827 @table @option
8828
8829 @item n
8830 Set the number of segments. Default is 2.
8831
8832 @item v
8833 Set the number of output video streams, that is also the number of video
8834 streams in each segment. Default is 1.
8835
8836 @item a
8837 Set the number of output audio streams, that is also the number of video
8838 streams in each segment. Default is 0.
8839
8840 @item unsafe
8841 Activate unsafe mode: do not fail if segments have a different format.
8842
8843 @end table
8844
8845 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
8846 @var{a} audio outputs.
8847
8848 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
8849 segment, in the same order as the outputs, then the inputs for the second
8850 segment, etc.
8851
8852 Related streams do not always have exactly the same duration, for various
8853 reasons including codec frame size or sloppy authoring. For that reason,
8854 related synchronized streams (e.g. a video and its audio track) should be
8855 concatenated at once. The concat filter will use the duration of the longest
8856 stream in each segment (except the last one), and if necessary pad shorter
8857 audio streams with silence.
8858
8859 For this filter to work correctly, all segments must start at timestamp 0.
8860
8861 All corresponding streams must have the same parameters in all segments; the
8862 filtering system will automatically select a common pixel format for video
8863 streams, and a common sample format, sample rate and channel layout for
8864 audio streams, but other settings, such as resolution, must be converted
8865 explicitly by the user.
8866
8867 Different frame rates are acceptable but will result in variable frame rate
8868 at output; be sure to configure the output file to handle it.
8869
8870 @subsection Examples
8871
8872 @itemize
8873 @item
8874 Concatenate an opening, an episode and an ending, all in bilingual version
8875 (video in stream 0, audio in streams 1 and 2):
8876 @example
8877 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
8878   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
8879    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
8880   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
8881 @end example
8882
8883 @item
8884 Concatenate two parts, handling audio and video separately, using the
8885 (a)movie sources, and adjusting the resolution:
8886 @example
8887 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
8888 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
8889 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
8890 @end example
8891 Note that a desync will happen at the stitch if the audio and video streams
8892 do not have exactly the same duration in the first file.
8893
8894 @end itemize
8895
8896 @section ebur128
8897
8898 EBU R128 scanner filter. This filter takes an audio stream as input and outputs
8899 it unchanged. By default, it logs a message at a frequency of 10Hz with the
8900 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
8901 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
8902
8903 The filter also has a video output (see the @var{video} option) with a real
8904 time graph to observe the loudness evolution. The graphic contains the logged
8905 message mentioned above, so it is not printed anymore when this option is set,
8906 unless the verbose logging is set. The main graphing area contains the
8907 short-term loudness (3 seconds of analysis), and the gauge on the right is for
8908 the momentary loudness (400 milliseconds).
8909
8910 More information about the Loudness Recommendation EBU R128 on
8911 @url{http://tech.ebu.ch/loudness}.
8912
8913 The filter accepts the following options:
8914
8915 @table @option
8916
8917 @item video
8918 Activate the video output. The audio stream is passed unchanged whether this
8919 option is set or no. The video stream will be the first output stream if
8920 activated. Default is @code{0}.
8921
8922 @item size
8923 Set the video size. This option is for video only. Default and minimum
8924 resolution is @code{640x480}.
8925
8926 @item meter
8927 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
8928 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
8929 other integer value between this range is allowed.
8930
8931 @item metadata
8932 Set metadata injection. If set to @code{1}, the audio input will be segmented
8933 into 100ms output frames, each of them containing various loudness information
8934 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
8935
8936 Default is @code{0}.
8937
8938 @item framelog
8939 Force the frame logging level.
8940
8941 Available values are:
8942 @table @samp
8943 @item info
8944 information logging level
8945 @item verbose
8946 verbose logging level
8947 @end table
8948
8949 By default, the logging level is set to @var{info}. If the @option{video} or
8950 the @option{metadata} options are set, it switches to @var{verbose}.
8951 @end table
8952
8953 @subsection Examples
8954
8955 @itemize
8956 @item
8957 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
8958 @example
8959 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
8960 @end example
8961
8962 @item
8963 Run an analysis with @command{ffmpeg}:
8964 @example
8965 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
8966 @end example
8967 @end itemize
8968
8969 @section interleave, ainterleave
8970
8971 Temporally interleave frames from several inputs.
8972
8973 @code{interleave} works with video inputs, @code{ainterleave} with audio.
8974
8975 These filters read frames from several inputs and send the oldest
8976 queued frame to the output.
8977
8978 Input streams must have a well defined, monotonically increasing frame
8979 timestamp values.
8980
8981 In order to submit one frame to output, these filters need to enqueue
8982 at least one frame for each input, so they cannot work in case one
8983 input is not yet terminated and will not receive incoming frames.
8984
8985 For example consider the case when one input is a @code{select} filter
8986 which always drop input frames. The @code{interleave} filter will keep
8987 reading from that input, but it will never be able to send new frames
8988 to output until the input will send an end-of-stream signal.
8989
8990 Also, depending on inputs synchronization, the filters will drop
8991 frames in case one input receives more frames than the other ones, and
8992 the queue is already filled.
8993
8994 These filters accept the following options:
8995
8996 @table @option
8997 @item nb_inputs, n
8998 Set the number of different inputs, it is 2 by default.
8999 @end table
9000
9001 @subsection Examples
9002
9003 @itemize
9004 @item
9005 Interleave frames belonging to different streams using @command{ffmpeg}:
9006 @example
9007 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
9008 @end example
9009
9010 @item
9011 Add flickering blur effect:
9012 @example
9013 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
9014 @end example
9015 @end itemize
9016
9017 @section perms, aperms
9018
9019 Set read/write permissions for the output frames.
9020
9021 These filters are mainly aimed at developers to test direct path in the
9022 following filter in the filtergraph.
9023
9024 The filters accept the following options:
9025
9026 @table @option
9027 @item mode
9028 Select the permissions mode.
9029
9030 It accepts the following values:
9031 @table @samp
9032 @item none
9033 Do nothing. This is the default.
9034 @item ro
9035 Set all the output frames read-only.
9036 @item rw
9037 Set all the output frames directly writable.
9038 @item toggle
9039 Make the frame read-only if writable, and writable if read-only.
9040 @item random
9041 Set each output frame read-only or writable randomly.
9042 @end table
9043
9044 @item seed
9045 Set the seed for the @var{random} mode, must be an integer included between
9046 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
9047 @code{-1}, the filter will try to use a good random seed on a best effort
9048 basis.
9049 @end table
9050
9051 Note: in case of auto-inserted filter between the permission filter and the
9052 following one, the permission might not be received as expected in that
9053 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
9054 perms/aperms filter can avoid this problem.
9055
9056 @section select, aselect
9057
9058 Select frames to pass in output.
9059
9060 This filter accepts the following options:
9061
9062 @table @option
9063
9064 @item expr, e
9065 Set expression, which is evaluated for each input frame.
9066
9067 If the expression is evaluated to zero, the frame is discarded.
9068
9069 If the evaluation result is negative or NaN, the frame is sent to the
9070 first output; otherwise it is sent to the output with index
9071 @code{ceil(val)-1}, assuming that the input index starts from 0.
9072
9073 For example a value of @code{1.2} corresponds to the output with index
9074 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
9075
9076 @item outputs, n
9077 Set the number of outputs. The output to which to send the selected
9078 frame is based on the result of the evaluation. Default value is 1.
9079 @end table
9080
9081 The expression can contain the following constants:
9082
9083 @table @option
9084 @item n
9085 the sequential number of the filtered frame, starting from 0
9086
9087 @item selected_n
9088 the sequential number of the selected frame, starting from 0
9089
9090 @item prev_selected_n
9091 the sequential number of the last selected frame, NAN if undefined
9092
9093 @item TB
9094 timebase of the input timestamps
9095
9096 @item pts
9097 the PTS (Presentation TimeStamp) of the filtered video frame,
9098 expressed in @var{TB} units, NAN if undefined
9099
9100 @item t
9101 the PTS (Presentation TimeStamp) of the filtered video frame,
9102 expressed in seconds, NAN if undefined
9103
9104 @item prev_pts
9105 the PTS of the previously filtered video frame, NAN if undefined
9106
9107 @item prev_selected_pts
9108 the PTS of the last previously filtered video frame, NAN if undefined
9109
9110 @item prev_selected_t
9111 the PTS of the last previously selected video frame, NAN if undefined
9112
9113 @item start_pts
9114 the PTS of the first video frame in the video, NAN if undefined
9115
9116 @item start_t
9117 the time of the first video frame in the video, NAN if undefined
9118
9119 @item pict_type @emph{(video only)}
9120 the type of the filtered frame, can assume one of the following
9121 values:
9122 @table @option
9123 @item I
9124 @item P
9125 @item B
9126 @item S
9127 @item SI
9128 @item SP
9129 @item BI
9130 @end table
9131
9132 @item interlace_type @emph{(video only)}
9133 the frame interlace type, can assume one of the following values:
9134 @table @option
9135 @item PROGRESSIVE
9136 the frame is progressive (not interlaced)
9137 @item TOPFIRST
9138 the frame is top-field-first
9139 @item BOTTOMFIRST
9140 the frame is bottom-field-first
9141 @end table
9142
9143 @item consumed_sample_n @emph{(audio only)}
9144 the number of selected samples before the current frame
9145
9146 @item samples_n @emph{(audio only)}
9147 the number of samples in the current frame
9148
9149 @item sample_rate @emph{(audio only)}
9150 the input sample rate
9151
9152 @item key
9153 1 if the filtered frame is a key-frame, 0 otherwise
9154
9155 @item pos
9156 the position in the file of the filtered frame, -1 if the information
9157 is not available (e.g. for synthetic video)
9158
9159 @item scene @emph{(video only)}
9160 value between 0 and 1 to indicate a new scene; a low value reflects a low
9161 probability for the current frame to introduce a new scene, while a higher
9162 value means the current frame is more likely to be one (see the example below)
9163
9164 @end table
9165
9166 The default value of the select expression is "1".
9167
9168 @subsection Examples
9169
9170 @itemize
9171 @item
9172 Select all frames in input:
9173 @example
9174 select
9175 @end example
9176
9177 The example above is the same as:
9178 @example
9179 select=1
9180 @end example
9181
9182 @item
9183 Skip all frames:
9184 @example
9185 select=0
9186 @end example
9187
9188 @item
9189 Select only I-frames:
9190 @example
9191 select='eq(pict_type\,I)'
9192 @end example
9193
9194 @item
9195 Select one frame every 100:
9196 @example
9197 select='not(mod(n\,100))'
9198 @end example
9199
9200 @item
9201 Select only frames contained in the 10-20 time interval:
9202 @example
9203 select=between(t\,10\,20)
9204 @end example
9205
9206 @item
9207 Select only I frames contained in the 10-20 time interval:
9208 @example
9209 select=between(t\,10\,20)*eq(pict_type\,I)
9210 @end example
9211
9212 @item
9213 Select frames with a minimum distance of 10 seconds:
9214 @example
9215 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
9216 @end example
9217
9218 @item
9219 Use aselect to select only audio frames with samples number > 100:
9220 @example
9221 aselect='gt(samples_n\,100)'
9222 @end example
9223
9224 @item
9225 Create a mosaic of the first scenes:
9226 @example
9227 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
9228 @end example
9229
9230 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
9231 choice.
9232
9233 @item
9234 Send even and odd frames to separate outputs, and compose them:
9235 @example
9236 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
9237 @end example
9238 @end itemize
9239
9240 @section sendcmd, asendcmd
9241
9242 Send commands to filters in the filtergraph.
9243
9244 These filters read commands to be sent to other filters in the
9245 filtergraph.
9246
9247 @code{sendcmd} must be inserted between two video filters,
9248 @code{asendcmd} must be inserted between two audio filters, but apart
9249 from that they act the same way.
9250
9251 The specification of commands can be provided in the filter arguments
9252 with the @var{commands} option, or in a file specified by the
9253 @var{filename} option.
9254
9255 These filters accept the following options:
9256 @table @option
9257 @item commands, c
9258 Set the commands to be read and sent to the other filters.
9259 @item filename, f
9260 Set the filename of the commands to be read and sent to the other
9261 filters.
9262 @end table
9263
9264 @subsection Commands syntax
9265
9266 A commands description consists of a sequence of interval
9267 specifications, comprising a list of commands to be executed when a
9268 particular event related to that interval occurs. The occurring event
9269 is typically the current frame time entering or leaving a given time
9270 interval.
9271
9272 An interval is specified by the following syntax:
9273 @example
9274 @var{START}[-@var{END}] @var{COMMANDS};
9275 @end example
9276
9277 The time interval is specified by the @var{START} and @var{END} times.
9278 @var{END} is optional and defaults to the maximum time.
9279
9280 The current frame time is considered within the specified interval if
9281 it is included in the interval [@var{START}, @var{END}), that is when
9282 the time is greater or equal to @var{START} and is lesser than
9283 @var{END}.
9284
9285 @var{COMMANDS} consists of a sequence of one or more command
9286 specifications, separated by ",", relating to that interval.  The
9287 syntax of a command specification is given by:
9288 @example
9289 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
9290 @end example
9291
9292 @var{FLAGS} is optional and specifies the type of events relating to
9293 the time interval which enable sending the specified command, and must
9294 be a non-null sequence of identifier flags separated by "+" or "|" and
9295 enclosed between "[" and "]".
9296
9297 The following flags are recognized:
9298 @table @option
9299 @item enter
9300 The command is sent when the current frame timestamp enters the
9301 specified interval. In other words, the command is sent when the
9302 previous frame timestamp was not in the given interval, and the
9303 current is.
9304
9305 @item leave
9306 The command is sent when the current frame timestamp leaves the
9307 specified interval. In other words, the command is sent when the
9308 previous frame timestamp was in the given interval, and the
9309 current is not.
9310 @end table
9311
9312 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
9313 assumed.
9314
9315 @var{TARGET} specifies the target of the command, usually the name of
9316 the filter class or a specific filter instance name.
9317
9318 @var{COMMAND} specifies the name of the command for the target filter.
9319
9320 @var{ARG} is optional and specifies the optional list of argument for
9321 the given @var{COMMAND}.
9322
9323 Between one interval specification and another, whitespaces, or
9324 sequences of characters starting with @code{#} until the end of line,
9325 are ignored and can be used to annotate comments.
9326
9327 A simplified BNF description of the commands specification syntax
9328 follows:
9329 @example
9330 @var{COMMAND_FLAG}  ::= "enter" | "leave"
9331 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
9332 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
9333 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
9334 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
9335 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
9336 @end example
9337
9338 @subsection Examples
9339
9340 @itemize
9341 @item
9342 Specify audio tempo change at second 4:
9343 @example
9344 asendcmd=c='4.0 atempo tempo 1.5',atempo
9345 @end example
9346
9347 @item
9348 Specify a list of drawtext and hue commands in a file.
9349 @example
9350 # show text in the interval 5-10
9351 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
9352          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
9353
9354 # desaturate the image in the interval 15-20
9355 15.0-20.0 [enter] hue s 0,
9356           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
9357           [leave] hue s 1,
9358           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
9359
9360 # apply an exponential saturation fade-out effect, starting from time 25
9361 25 [enter] hue s exp(25-t)
9362 @end example
9363
9364 A filtergraph allowing to read and process the above command list
9365 stored in a file @file{test.cmd}, can be specified with:
9366 @example
9367 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
9368 @end example
9369 @end itemize
9370
9371 @anchor{setpts}
9372 @section setpts, asetpts
9373
9374 Change the PTS (presentation timestamp) of the input frames.
9375
9376 @code{setpts} works on video frames, @code{asetpts} on audio frames.
9377
9378 This filter accepts the following options:
9379
9380 @table @option
9381
9382 @item expr
9383 The expression which is evaluated for each frame to construct its timestamp.
9384
9385 @end table
9386
9387 The expression is evaluated through the eval API and can contain the following
9388 constants:
9389
9390 @table @option
9391 @item FRAME_RATE
9392 frame rate, only defined for constant frame-rate video
9393
9394 @item PTS
9395 the presentation timestamp in input
9396
9397 @item N
9398 the count of the input frame for video or the number of consumed samples,
9399 not including the current frame for audio, starting from 0.
9400
9401 @item NB_CONSUMED_SAMPLES
9402 the number of consumed samples, not including the current frame (only
9403 audio)
9404
9405 @item NB_SAMPLES, S
9406 the number of samples in the current frame (only audio)
9407
9408 @item SAMPLE_RATE, SR
9409 audio sample rate
9410
9411 @item STARTPTS
9412 the PTS of the first frame
9413
9414 @item STARTT
9415 the time in seconds of the first frame
9416
9417 @item INTERLACED
9418 tell if the current frame is interlaced
9419
9420 @item T
9421 the time in seconds of the current frame
9422
9423 @item POS
9424 original position in the file of the frame, or undefined if undefined
9425 for the current frame
9426
9427 @item PREV_INPTS
9428 previous input PTS
9429
9430 @item PREV_INT
9431 previous input time in seconds
9432
9433 @item PREV_OUTPTS
9434 previous output PTS
9435
9436 @item PREV_OUTT
9437 previous output time in seconds
9438
9439 @item RTCTIME
9440 wallclock (RTC) time in microseconds. This is deprecated, use time(0)
9441 instead.
9442
9443 @item RTCSTART
9444 wallclock (RTC) time at the start of the movie in microseconds
9445
9446 @item TB
9447 timebase of the input timestamps
9448
9449 @end table
9450
9451 @subsection Examples
9452
9453 @itemize
9454 @item
9455 Start counting PTS from zero
9456 @example
9457 setpts=PTS-STARTPTS
9458 @end example
9459
9460 @item
9461 Apply fast motion effect:
9462 @example
9463 setpts=0.5*PTS
9464 @end example
9465
9466 @item
9467 Apply slow motion effect:
9468 @example
9469 setpts=2.0*PTS
9470 @end example
9471
9472 @item
9473 Set fixed rate of 25 frames per second:
9474 @example
9475 setpts=N/(25*TB)
9476 @end example
9477
9478 @item
9479 Set fixed rate 25 fps with some jitter:
9480 @example
9481 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
9482 @end example
9483
9484 @item
9485 Apply an offset of 10 seconds to the input PTS:
9486 @example
9487 setpts=PTS+10/TB
9488 @end example
9489
9490 @item
9491 Generate timestamps from a "live source" and rebase onto the current timebase:
9492 @example
9493 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
9494 @end example
9495
9496 @item
9497 Generate timestamps by counting samples:
9498 @example
9499 asetpts=N/SR/TB
9500 @end example
9501
9502 @end itemize
9503
9504 @section settb, asettb
9505
9506 Set the timebase to use for the output frames timestamps.
9507 It is mainly useful for testing timebase configuration.
9508
9509 This filter accepts the following options:
9510
9511 @table @option
9512
9513 @item expr, tb
9514 The expression which is evaluated into the output timebase.
9515
9516 @end table
9517
9518 The value for @option{tb} is an arithmetic expression representing a
9519 rational. The expression can contain the constants "AVTB" (the default
9520 timebase), "intb" (the input timebase) and "sr" (the sample rate,
9521 audio only). Default value is "intb".
9522
9523 @subsection Examples
9524
9525 @itemize
9526 @item
9527 Set the timebase to 1/25:
9528 @example
9529 settb=expr=1/25
9530 @end example
9531
9532 @item
9533 Set the timebase to 1/10:
9534 @example
9535 settb=expr=0.1
9536 @end example
9537
9538 @item
9539 Set the timebase to 1001/1000:
9540 @example
9541 settb=1+0.001
9542 @end example
9543
9544 @item
9545 Set the timebase to 2*intb:
9546 @example
9547 settb=2*intb
9548 @end example
9549
9550 @item
9551 Set the default timebase value:
9552 @example
9553 settb=AVTB
9554 @end example
9555 @end itemize
9556
9557 @section showspectrum
9558
9559 Convert input audio to a video output, representing the audio frequency
9560 spectrum.
9561
9562 The filter accepts the following options:
9563
9564 @table @option
9565 @item size, s
9566 Specify the video size for the output. Default value is @code{640x512}.
9567
9568 @item slide
9569 Specify if the spectrum should slide along the window. Default value is
9570 @code{0}.
9571
9572 @item mode
9573 Specify display mode.
9574
9575 It accepts the following values:
9576 @table @samp
9577 @item combined
9578 all channels are displayed in the same row
9579 @item separate
9580 all channels are displayed in separate rows
9581 @end table
9582
9583 Default value is @samp{combined}.
9584
9585 @item color
9586 Specify display color mode.
9587
9588 It accepts the following values:
9589 @table @samp
9590 @item channel
9591 each channel is displayed in a separate color
9592 @item intensity
9593 each channel is is displayed using the same color scheme
9594 @end table
9595
9596 Default value is @samp{channel}.
9597
9598 @item scale
9599 Specify scale used for calculating intensity color values.
9600
9601 It accepts the following values:
9602 @table @samp
9603 @item lin
9604 linear
9605 @item sqrt
9606 square root, default
9607 @item cbrt
9608 cubic root
9609 @item log
9610 logarithmic
9611 @end table
9612
9613 Default value is @samp{sqrt}.
9614
9615 @item saturation
9616 Set saturation modifier for displayed colors. Negative values provide
9617 alternative color scheme. @code{0} is no saturation at all.
9618 Saturation must be in [-10.0, 10.0] range.
9619 Default value is @code{1}.
9620 @end table
9621
9622 The usage is very similar to the showwaves filter; see the examples in that
9623 section.
9624
9625 @subsection Examples
9626
9627 @itemize
9628 @item
9629 Large window with logarithmic color scaling:
9630 @example
9631 showspectrum=s=1280x480:scale=log
9632 @end example
9633
9634 @item
9635 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
9636 @example
9637 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
9638              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
9639 @end example
9640 @end itemize
9641
9642 @section showwaves
9643
9644 Convert input audio to a video output, representing the samples waves.
9645
9646 The filter accepts the following options:
9647
9648 @table @option
9649 @item size, s
9650 Specify the video size for the output. Default value is "600x240".
9651
9652 @item mode
9653 Set display mode.
9654
9655 Available values are:
9656 @table @samp
9657 @item point
9658 Draw a point for each sample.
9659
9660 @item line
9661 Draw a vertical line for each sample.
9662 @end table
9663
9664 Default value is @code{point}.
9665
9666 @item n
9667 Set the number of samples which are printed on the same column. A
9668 larger value will decrease the frame rate. Must be a positive
9669 integer. This option can be set only if the value for @var{rate}
9670 is not explicitly specified.
9671
9672 @item rate, r
9673 Set the (approximate) output frame rate. This is done by setting the
9674 option @var{n}. Default value is "25".
9675
9676 @end table
9677
9678 @subsection Examples
9679
9680 @itemize
9681 @item
9682 Output the input file audio and the corresponding video representation
9683 at the same time:
9684 @example
9685 amovie=a.mp3,asplit[out0],showwaves[out1]
9686 @end example
9687
9688 @item
9689 Create a synthetic signal and show it with showwaves, forcing a
9690 frame rate of 30 frames per second:
9691 @example
9692 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
9693 @end example
9694 @end itemize
9695
9696 @section split, asplit
9697
9698 Split input into several identical outputs.
9699
9700 @code{asplit} works with audio input, @code{split} with video.
9701
9702 The filter accepts a single parameter which specifies the number of outputs. If
9703 unspecified, it defaults to 2.
9704
9705 @subsection Examples
9706
9707 @itemize
9708 @item
9709 Create two separate outputs from the same input:
9710 @example
9711 [in] split [out0][out1]
9712 @end example
9713
9714 @item
9715 To create 3 or more outputs, you need to specify the number of
9716 outputs, like in:
9717 @example
9718 [in] asplit=3 [out0][out1][out2]
9719 @end example
9720
9721 @item
9722 Create two separate outputs from the same input, one cropped and
9723 one padded:
9724 @example
9725 [in] split [splitout1][splitout2];
9726 [splitout1] crop=100:100:0:0    [cropout];
9727 [splitout2] pad=200:200:100:100 [padout];
9728 @end example
9729
9730 @item
9731 Create 5 copies of the input audio with @command{ffmpeg}:
9732 @example
9733 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
9734 @end example
9735 @end itemize
9736
9737 @section zmq, azmq
9738
9739 Receive commands sent through a libzmq client, and forward them to
9740 filters in the filtergraph.
9741
9742 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
9743 must be inserted between two video filters, @code{azmq} between two
9744 audio filters.
9745
9746 To enable these filters you need to install the libzmq library and
9747 headers and configure FFmpeg with @code{--enable-libzmq}.
9748
9749 For more information about libzmq see:
9750 @url{http://www.zeromq.org/}
9751
9752 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
9753 receives messages sent through a network interface defined by the
9754 @option{bind_address} option.
9755
9756 The received message must be in the form:
9757 @example
9758 @var{TARGET} @var{COMMAND} [@var{ARG}]
9759 @end example
9760
9761 @var{TARGET} specifies the target of the command, usually the name of
9762 the filter class or a specific filter instance name.
9763
9764 @var{COMMAND} specifies the name of the command for the target filter.
9765
9766 @var{ARG} is optional and specifies the optional argument list for the
9767 given @var{COMMAND}.
9768
9769 Upon reception, the message is processed and the corresponding command
9770 is injected into the filtergraph. Depending on the result, the filter
9771 will send a reply to the client, adopting the format:
9772 @example
9773 @var{ERROR_CODE} @var{ERROR_REASON}
9774 @var{MESSAGE}
9775 @end example
9776
9777 @var{MESSAGE} is optional.
9778
9779 @subsection Examples
9780
9781 Look at @file{tools/zmqsend} for an example of a zmq client which can
9782 be used to send commands processed by these filters.
9783
9784 Consider the following filtergraph generated by @command{ffplay}
9785 @example
9786 ffplay -dumpgraph 1 -f lavfi "
9787 color=s=100x100:c=red  [l];
9788 color=s=100x100:c=blue [r];
9789 nullsrc=s=200x100, zmq [bg];
9790 [bg][l]   overlay      [bg+l];
9791 [bg+l][r] overlay=x=100 "
9792 @end example
9793
9794 To change the color of the left side of the video, the following
9795 command can be used:
9796 @example
9797 echo Parsed_color_0 c yellow | tools/zmqsend
9798 @end example
9799
9800 To change the right side:
9801 @example
9802 echo Parsed_color_1 c pink | tools/zmqsend
9803 @end example
9804
9805 @c man end MULTIMEDIA FILTERS
9806
9807 @chapter Multimedia Sources
9808 @c man begin MULTIMEDIA SOURCES
9809
9810 Below is a description of the currently available multimedia sources.
9811
9812 @section amovie
9813
9814 This is the same as @ref{movie} source, except it selects an audio
9815 stream by default.
9816
9817 @anchor{movie}
9818 @section movie
9819
9820 Read audio and/or video stream(s) from a movie container.
9821
9822 This filter accepts the following options:
9823
9824 @table @option
9825 @item filename
9826 The name of the resource to read (not necessarily a file but also a device or a
9827 stream accessed through some protocol).
9828
9829 @item format_name, f
9830 Specifies the format assumed for the movie to read, and can be either
9831 the name of a container or an input device. If not specified the
9832 format is guessed from @var{movie_name} or by probing.
9833
9834 @item seek_point, sp
9835 Specifies the seek point in seconds, the frames will be output
9836 starting from this seek point, the parameter is evaluated with
9837 @code{av_strtod} so the numerical value may be suffixed by an IS
9838 postfix. Default value is "0".
9839
9840 @item streams, s
9841 Specifies the streams to read. Several streams can be specified,
9842 separated by "+". The source will then have as many outputs, in the
9843 same order. The syntax is explained in the ``Stream specifiers''
9844 section in the ffmpeg manual. Two special names, "dv" and "da" specify
9845 respectively the default (best suited) video and audio stream. Default
9846 is "dv", or "da" if the filter is called as "amovie".
9847
9848 @item stream_index, si
9849 Specifies the index of the video stream to read. If the value is -1,
9850 the best suited video stream will be automatically selected. Default
9851 value is "-1". Deprecated. If the filter is called "amovie", it will select
9852 audio instead of video.
9853
9854 @item loop
9855 Specifies how many times to read the stream in sequence.
9856 If the value is less than 1, the stream will be read again and again.
9857 Default value is "1".
9858
9859 Note that when the movie is looped the source timestamps are not
9860 changed, so it will generate non monotonically increasing timestamps.
9861 @end table
9862
9863 This filter allows to overlay a second video on top of main input of
9864 a filtergraph as shown in this graph:
9865 @example
9866 input -----------> deltapts0 --> overlay --> output
9867                                     ^
9868                                     |
9869 movie --> scale--> deltapts1 -------+
9870 @end example
9871
9872 @subsection Examples
9873
9874 @itemize
9875 @item
9876 Skip 3.2 seconds from the start of the avi file in.avi, and overlay it
9877 on top of the input labelled as "in":
9878 @example
9879 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
9880 [in] setpts=PTS-STARTPTS [main];
9881 [main][over] overlay=16:16 [out]
9882 @end example
9883
9884 @item
9885 Read from a video4linux2 device, and overlay it on top of the input
9886 labelled as "in":
9887 @example
9888 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
9889 [in] setpts=PTS-STARTPTS [main];
9890 [main][over] overlay=16:16 [out]
9891 @end example
9892
9893 @item
9894 Read the first video stream and the audio stream with id 0x81 from
9895 dvd.vob; the video is connected to the pad named "video" and the audio is
9896 connected to the pad named "audio":
9897 @example
9898 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
9899 @end example
9900 @end itemize
9901
9902 @c man end MULTIMEDIA SOURCES