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