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