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