]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
5b00eca19f78cc3cd6d49edb4f7678534811658a
[ffmpeg] / doc / filters.texi
1 @chapter Filtering Introduction
2 @c man begin FILTERING INTRODUCTION
3
4 Filtering in FFmpeg is enabled through the libavfilter library.
5
6 In libavfilter, a filter can have multiple inputs and multiple
7 outputs.
8 To illustrate the sorts of things that are possible, we consider the
9 following filtergraph.
10
11 @verbatim
12                 [main]
13 input --> split ---------------------> overlay --> output
14             |                             ^
15             |[tmp]                  [flip]|
16             +-----> crop --> vflip -------+
17 @end verbatim
18
19 This filtergraph splits the input stream in two streams, then sends one
20 stream through the crop filter and the vflip filter, before merging it
21 back with the other stream by overlaying it on top. You can use the
22 following command to achieve this:
23
24 @example
25 ffmpeg -i INPUT -vf "split [main][tmp]; [tmp] crop=iw:ih/2:0:0, vflip [flip]; [main][flip] overlay=0:H/2" OUTPUT
26 @end example
27
28 The result will be that the top half of the video is mirrored
29 onto the bottom half of the output video.
30
31 Filters in the same linear chain are separated by commas, and distinct
32 linear chains of filters are separated by semicolons. In our example,
33 @var{crop,vflip} are in one linear chain, @var{split} and
34 @var{overlay} are separately in another. The points where the linear
35 chains join are labelled by names enclosed in square brackets. In the
36 example, the split filter generates two outputs that are associated to
37 the labels @var{[main]} and @var{[tmp]}.
38
39 The stream sent to the second output of @var{split}, labelled as
40 @var{[tmp]}, is processed through the @var{crop} filter, which crops
41 away the lower half part of the video, and then vertically flipped. The
42 @var{overlay} filter takes in input the first unchanged output of the
43 split filter (which was labelled as @var{[main]}), and overlay on its
44 lower half the output generated by the @var{crop,vflip} filterchain.
45
46 Some filters take in input a list of parameters: they are specified
47 after the filter name and an equal sign, and are separated from each other
48 by a colon.
49
50 There exist so-called @var{source filters} that do not have an
51 audio/video input, and @var{sink filters} that will not have audio/video
52 output.
53
54 @c man end FILTERING INTRODUCTION
55
56 @chapter graph2dot
57 @c man begin GRAPH2DOT
58
59 The @file{graph2dot} program included in the FFmpeg @file{tools}
60 directory can be used to parse a filtergraph description and issue a
61 corresponding textual representation in the dot language.
62
63 Invoke the command:
64 @example
65 graph2dot -h
66 @end example
67
68 to see how to use @file{graph2dot}.
69
70 You can then pass the dot description to the @file{dot} program (from
71 the graphviz suite of programs) and obtain a graphical representation
72 of the filtergraph.
73
74 For example the sequence of commands:
75 @example
76 echo @var{GRAPH_DESCRIPTION} | \
77 tools/graph2dot -o graph.tmp && \
78 dot -Tpng graph.tmp -o graph.png && \
79 display graph.png
80 @end example
81
82 can be used to create and display an image representing the graph
83 described by the @var{GRAPH_DESCRIPTION} string. Note that this string must be
84 a complete self-contained graph, with its inputs and outputs explicitly defined.
85 For example if your command line is of the form:
86 @example
87 ffmpeg -i infile -vf scale=640:360 outfile
88 @end example
89 your @var{GRAPH_DESCRIPTION} string will need to be of the form:
90 @example
91 nullsrc,scale=640:360,nullsink
92 @end example
93 you may also need to set the @var{nullsrc} parameters and add a @var{format}
94 filter in order to simulate a specific input file.
95
96 @c man end GRAPH2DOT
97
98 @chapter Filtergraph description
99 @c man begin FILTERGRAPH DESCRIPTION
100
101 A filtergraph is a directed graph of connected filters. It can contain
102 cycles, and there can be multiple links between a pair of
103 filters. Each link has one input pad on one side connecting it to one
104 filter from which it takes its input, and one output pad on the other
105 side connecting it to one filter accepting its output.
106
107 Each filter in a filtergraph is an instance of a filter class
108 registered in the application, which defines the features and the
109 number of input and output pads of the filter.
110
111 A filter with no input pads is called a "source", and a filter with no
112 output pads is called a "sink".
113
114 @anchor{Filtergraph syntax}
115 @section Filtergraph syntax
116
117 A filtergraph has a textual representation, which is recognized by the
118 @option{-filter}/@option{-vf}/@option{-af} and
119 @option{-filter_complex} options in @command{ffmpeg} and
120 @option{-vf}/@option{-af} in @command{ffplay}, and by the
121 @code{avfilter_graph_parse_ptr()} function defined in
122 @file{libavfilter/avfilter.h}.
123
124 A filterchain consists of a sequence of connected filters, each one
125 connected to the previous one in the sequence. A filterchain is
126 represented by a list of ","-separated filter descriptions.
127
128 A filtergraph consists of a sequence of filterchains. A sequence of
129 filterchains is represented by a list of ";"-separated filterchain
130 descriptions.
131
132 A filter is represented by a string of the form:
133 [@var{in_link_1}]...[@var{in_link_N}]@var{filter_name}=@var{arguments}[@var{out_link_1}]...[@var{out_link_M}]
134
135 @var{filter_name} is the name of the filter class of which the
136 described filter is an instance of, and has to be the name of one of
137 the filter classes registered in the program.
138 The name of the filter class is optionally followed by a string
139 "=@var{arguments}".
140
141 @var{arguments} is a string which contains the parameters used to
142 initialize the filter instance. It may have one of two forms:
143 @itemize
144
145 @item
146 A ':'-separated list of @var{key=value} pairs.
147
148 @item
149 A ':'-separated list of @var{value}. In this case, the keys are assumed to be
150 the option names in the order they are declared. E.g. the @code{fade} filter
151 declares three options in this order -- @option{type}, @option{start_frame} and
152 @option{nb_frames}. Then the parameter list @var{in:0:30} means that the value
153 @var{in} is assigned to the option @option{type}, @var{0} to
154 @option{start_frame} and @var{30} to @option{nb_frames}.
155
156 @item
157 A ':'-separated list of mixed direct @var{value} and long @var{key=value}
158 pairs. The direct @var{value} must precede the @var{key=value} pairs, and
159 follow the same constraints order of the previous point. The following
160 @var{key=value} pairs can be set in any preferred order.
161
162 @end itemize
163
164 If the option value itself is a list of items (e.g. the @code{format} filter
165 takes a list of pixel formats), the items in the list are usually separated by
166 @samp{|}.
167
168 The list of arguments can be quoted using the character @samp{'} as initial
169 and ending mark, and the character @samp{\} for escaping the characters
170 within the quoted text; otherwise the argument string is considered
171 terminated when the next special character (belonging to the set
172 @samp{[]=;,}) is encountered.
173
174 The name and arguments of the filter are optionally preceded and
175 followed by a list of link labels.
176 A link label allows one to name a link and associate it to a filter output
177 or input pad. The preceding labels @var{in_link_1}
178 ... @var{in_link_N}, are associated to the filter input pads,
179 the following labels @var{out_link_1} ... @var{out_link_M}, are
180 associated to the output pads.
181
182 When two link labels with the same name are found in the
183 filtergraph, a link between the corresponding input and output pad is
184 created.
185
186 If an output pad is not labelled, it is linked by default to the first
187 unlabelled input pad of the next filter in the filterchain.
188 For example in the filterchain
189 @example
190 nullsrc, split[L1], [L2]overlay, nullsink
191 @end example
192 the split filter instance has two output pads, and the overlay filter
193 instance two input pads. The first output pad of split is labelled
194 "L1", the first input pad of overlay is labelled "L2", and the second
195 output pad of split is linked to the second input pad of overlay,
196 which are both unlabelled.
197
198 In a filter description, if the input label of the first filter is not
199 specified, "in" is assumed; if the output label of the last filter is not
200 specified, "out" is assumed.
201
202 In a complete filterchain all the unlabelled filter input and output
203 pads must be connected. A filtergraph is considered valid if all the
204 filter input and output pads of all the filterchains are connected.
205
206 Libavfilter will automatically insert @ref{scale} filters where format
207 conversion is required. It is possible to specify swscale flags
208 for those automatically inserted scalers by prepending
209 @code{sws_flags=@var{flags};}
210 to the filtergraph description.
211
212 Here is a BNF description of the filtergraph syntax:
213 @example
214 @var{NAME}             ::= sequence of alphanumeric characters and '_'
215 @var{LINKLABEL}        ::= "[" @var{NAME} "]"
216 @var{LINKLABELS}       ::= @var{LINKLABEL} [@var{LINKLABELS}]
217 @var{FILTER_ARGUMENTS} ::= sequence of chars (possibly quoted)
218 @var{FILTER}           ::= [@var{LINKLABELS}] @var{NAME} ["=" @var{FILTER_ARGUMENTS}] [@var{LINKLABELS}]
219 @var{FILTERCHAIN}      ::= @var{FILTER} [,@var{FILTERCHAIN}]
220 @var{FILTERGRAPH}      ::= [sws_flags=@var{flags};] @var{FILTERCHAIN} [;@var{FILTERGRAPH}]
221 @end example
222
223 @section Notes on filtergraph escaping
224
225 Filtergraph description composition entails several levels of
226 escaping. See @ref{quoting_and_escaping,,the "Quoting and escaping"
227 section in the ffmpeg-utils(1) manual,ffmpeg-utils} for more
228 information about the employed escaping procedure.
229
230 A first level escaping affects the content of each filter option
231 value, which may contain the special character @code{:} used to
232 separate values, or one of the escaping characters @code{\'}.
233
234 A second level escaping affects the whole filter description, which
235 may contain the escaping characters @code{\'} or the special
236 characters @code{[],;} used by the filtergraph description.
237
238 Finally, when you specify a filtergraph on a shell commandline, you
239 need to perform a third level escaping for the shell special
240 characters contained within it.
241
242 For example, consider the following string to be embedded in
243 the @ref{drawtext} filter description @option{text} value:
244 @example
245 this is a 'string': may contain one, or more, special characters
246 @end example
247
248 This string contains the @code{'} special escaping character, and the
249 @code{:} special character, so it needs to be escaped in this way:
250 @example
251 text=this is a \'string\'\: may contain one, or more, special characters
252 @end example
253
254 A second level of escaping is required when embedding the filter
255 description in a filtergraph description, in order to escape all the
256 filtergraph special characters. Thus the example above becomes:
257 @example
258 drawtext=text=this is a \\\'string\\\'\\: may contain one\, or more\, special characters
259 @end example
260 (note that in addition to the @code{\'} escaping special characters,
261 also @code{,} needs to be escaped).
262
263 Finally an additional level of escaping is needed when writing the
264 filtergraph description in a shell command, which depends on the
265 escaping rules of the adopted shell. For example, assuming that
266 @code{\} is special and needs to be escaped with another @code{\}, the
267 previous string will finally result in:
268 @example
269 -vf "drawtext=text=this is a \\\\\\'string\\\\\\'\\\\: may contain one\\, or more\\, special characters"
270 @end example
271
272 @chapter Timeline editing
273
274 Some filters support a generic @option{enable} option. For the filters
275 supporting timeline editing, this option can be set to an expression which is
276 evaluated before sending a frame to the filter. If the evaluation is non-zero,
277 the filter will be enabled, otherwise the frame will be sent unchanged to the
278 next filter in the filtergraph.
279
280 The expression accepts the following values:
281 @table @samp
282 @item t
283 timestamp expressed in seconds, NAN if the input timestamp is unknown
284
285 @item n
286 sequential number of the input frame, starting from 0
287
288 @item pos
289 the position in the file of the input frame, NAN if unknown
290
291 @item w
292 @item h
293 width and height of the input frame if video
294 @end table
295
296 Additionally, these filters support an @option{enable} command that can be used
297 to re-define the expression.
298
299 Like any other filtering option, the @option{enable} option follows the same
300 rules.
301
302 For example, to enable a blur filter (@ref{smartblur}) from 10 seconds to 3
303 minutes, and a @ref{curves} filter starting at 3 seconds:
304 @example
305 smartblur = enable='between(t,10,3*60)',
306 curves    = enable='gte(t,3)' : preset=cross_process
307 @end example
308
309 @c man end FILTERGRAPH DESCRIPTION
310
311 @chapter Audio Filters
312 @c man begin AUDIO FILTERS
313
314 When you configure your FFmpeg build, you can disable any of the
315 existing filters using @code{--disable-filters}.
316 The configure output will show the audio filters included in your
317 build.
318
319 Below is a description of the currently available audio filters.
320
321 @section acrossfade
322
323 Apply cross fade from one input audio stream to another input audio stream.
324 The cross fade is applied for specified duration near the end of first stream.
325
326 The filter accepts the following options:
327
328 @table @option
329 @item nb_samples, ns
330 Specify the number of samples for which the cross fade effect has to last.
331 At the end of the cross fade effect the first input audio will be completely
332 silent. Default is 44100.
333
334 @item duration, d
335 Specify the duration of the cross fade effect. See
336 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
337 for the accepted syntax.
338 By default the duration is determined by @var{nb_samples}.
339 If set this option is used instead of @var{nb_samples}.
340
341 @item overlap, o
342 Should first stream end overlap with second stream start. Default is enabled.
343
344 @item curve1
345 Set curve for cross fade transition for first stream.
346
347 @item curve2
348 Set curve for cross fade transition for second stream.
349
350 For description of available curve types see @ref{afade} filter description.
351 @end table
352
353 @subsection Examples
354
355 @itemize
356 @item
357 Cross fade from one input to another:
358 @example
359 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:c1=exp:c2=exp output.flac
360 @end example
361
362 @item
363 Cross fade from one input to another but without overlapping:
364 @example
365 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:o=0:c1=exp:c2=exp output.flac
366 @end example
367 @end itemize
368
369 @section adelay
370
371 Delay one or more audio channels.
372
373 Samples in delayed channel are filled with silence.
374
375 The filter accepts the following option:
376
377 @table @option
378 @item delays
379 Set list of delays in milliseconds for each channel separated by '|'.
380 At least one delay greater than 0 should be provided.
381 Unused delays will be silently ignored. If number of given delays is
382 smaller than number of channels all remaining channels will not be delayed.
383 @end table
384
385 @subsection Examples
386
387 @itemize
388 @item
389 Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
390 the second channel (and any other channels that may be present) unchanged.
391 @example
392 adelay=1500|0|500
393 @end example
394 @end itemize
395
396 @section aecho
397
398 Apply echoing to the input audio.
399
400 Echoes are reflected sound and can occur naturally amongst mountains
401 (and sometimes large buildings) when talking or shouting; digital echo
402 effects emulate this behaviour and are often used to help fill out the
403 sound of a single instrument or vocal. The time difference between the
404 original signal and the reflection is the @code{delay}, and the
405 loudness of the reflected signal is the @code{decay}.
406 Multiple echoes can have different delays and decays.
407
408 A description of the accepted parameters follows.
409
410 @table @option
411 @item in_gain
412 Set input gain of reflected signal. Default is @code{0.6}.
413
414 @item out_gain
415 Set output gain of reflected signal. Default is @code{0.3}.
416
417 @item delays
418 Set list of time intervals in milliseconds between original signal and reflections
419 separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
420 Default is @code{1000}.
421
422 @item decays
423 Set list of loudnesses of reflected signals separated by '|'.
424 Allowed range for each @code{decay} is @code{(0 - 1.0]}.
425 Default is @code{0.5}.
426 @end table
427
428 @subsection Examples
429
430 @itemize
431 @item
432 Make it sound as if there are twice as many instruments as are actually playing:
433 @example
434 aecho=0.8:0.88:60:0.4
435 @end example
436
437 @item
438 If delay is very short, then it sound like a (metallic) robot playing music:
439 @example
440 aecho=0.8:0.88:6:0.4
441 @end example
442
443 @item
444 A longer delay will sound like an open air concert in the mountains:
445 @example
446 aecho=0.8:0.9:1000:0.3
447 @end example
448
449 @item
450 Same as above but with one more mountain:
451 @example
452 aecho=0.8:0.9:1000|1800:0.3|0.25
453 @end example
454 @end itemize
455
456 @section aeval
457
458 Modify an audio signal according to the specified expressions.
459
460 This filter accepts one or more expressions (one for each channel),
461 which are evaluated and used to modify a corresponding audio signal.
462
463 It accepts the following parameters:
464
465 @table @option
466 @item exprs
467 Set the '|'-separated expressions list for each separate channel. If
468 the number of input channels is greater than the number of
469 expressions, the last specified expression is used for the remaining
470 output channels.
471
472 @item channel_layout, c
473 Set output channel layout. If not specified, the channel layout is
474 specified by the number of expressions. If set to @samp{same}, it will
475 use by default the same input channel layout.
476 @end table
477
478 Each expression in @var{exprs} can contain the following constants and functions:
479
480 @table @option
481 @item ch
482 channel number of the current expression
483
484 @item n
485 number of the evaluated sample, starting from 0
486
487 @item s
488 sample rate
489
490 @item t
491 time of the evaluated sample expressed in seconds
492
493 @item nb_in_channels
494 @item nb_out_channels
495 input and output number of channels
496
497 @item val(CH)
498 the value of input channel with number @var{CH}
499 @end table
500
501 Note: this filter is slow. For faster processing you should use a
502 dedicated filter.
503
504 @subsection Examples
505
506 @itemize
507 @item
508 Half volume:
509 @example
510 aeval=val(ch)/2:c=same
511 @end example
512
513 @item
514 Invert phase of the second channel:
515 @example
516 aeval=val(0)|-val(1)
517 @end example
518 @end itemize
519
520 @anchor{afade}
521 @section afade
522
523 Apply fade-in/out effect to input audio.
524
525 A description of the accepted parameters follows.
526
527 @table @option
528 @item type, t
529 Specify the effect type, can be either @code{in} for fade-in, or
530 @code{out} for a fade-out effect. Default is @code{in}.
531
532 @item start_sample, ss
533 Specify the number of the start sample for starting to apply the fade
534 effect. Default is 0.
535
536 @item nb_samples, ns
537 Specify the number of samples for which the fade effect has to last. At
538 the end of the fade-in effect the output audio will have the same
539 volume as the input audio, at the end of the fade-out transition
540 the output audio will be silence. Default is 44100.
541
542 @item start_time, st
543 Specify the start time of the fade effect. Default is 0.
544 The value must be specified as a time duration; see
545 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
546 for the accepted syntax.
547 If set this option is used instead of @var{start_sample}.
548
549 @item duration, d
550 Specify the duration of the fade effect. See
551 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
552 for the accepted syntax.
553 At the end of the fade-in effect the output audio will have the same
554 volume as the input audio, at the end of the fade-out transition
555 the output audio will be silence.
556 By default the duration is determined by @var{nb_samples}.
557 If set this option is used instead of @var{nb_samples}.
558
559 @item curve
560 Set curve for fade transition.
561
562 It accepts the following values:
563 @table @option
564 @item tri
565 select triangular, linear slope (default)
566 @item qsin
567 select quarter of sine wave
568 @item hsin
569 select half of sine wave
570 @item esin
571 select exponential sine wave
572 @item log
573 select logarithmic
574 @item ipar
575 select inverted parabola
576 @item qua
577 select quadratic
578 @item cub
579 select cubic
580 @item squ
581 select square root
582 @item cbr
583 select cubic root
584 @item par
585 select parabola
586 @item exp
587 select exponential
588 @item iqsin
589 select inverted quarter of sine wave
590 @item ihsin
591 select inverted half of sine wave
592 @item dese
593 select double-exponential seat
594 @item desi
595 select double-exponential sigmoid
596 @end table
597 @end table
598
599 @subsection Examples
600
601 @itemize
602 @item
603 Fade in first 15 seconds of audio:
604 @example
605 afade=t=in:ss=0:d=15
606 @end example
607
608 @item
609 Fade out last 25 seconds of a 900 seconds audio:
610 @example
611 afade=t=out:st=875:d=25
612 @end example
613 @end itemize
614
615 @anchor{aformat}
616 @section aformat
617
618 Set output format constraints for the input audio. The framework will
619 negotiate the most appropriate format to minimize conversions.
620
621 It accepts the following parameters:
622 @table @option
623
624 @item sample_fmts
625 A '|'-separated list of requested sample formats.
626
627 @item sample_rates
628 A '|'-separated list of requested sample rates.
629
630 @item channel_layouts
631 A '|'-separated list of requested channel layouts.
632
633 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
634 for the required syntax.
635 @end table
636
637 If a parameter is omitted, all values are allowed.
638
639 Force the output to either unsigned 8-bit or signed 16-bit stereo
640 @example
641 aformat=sample_fmts=u8|s16:channel_layouts=stereo
642 @end example
643
644 @section agate
645
646 A gate is mainly used to reduce lower parts of a signal. This kind of signal
647 processing reduces disturbing noise between useful signals.
648
649 Gating is done by detecting the volume below a chosen level @var{threshold}
650 and divide it by the factor set with @var{ratio}. The bottom of the noise
651 floor is set via @var{range}. Because an exact manipulation of the signal
652 would cause distortion of the waveform the reduction can be levelled over
653 time. This is done by setting @var{attack} and @var{release}.
654
655 @var{attack} determines how long the signal has to fall below the threshold
656 before any reduction will occur and @var{release} sets the time the signal
657 has to raise above the threshold to reduce the reduction again.
658 Shorter signals than the chosen attack time will be left untouched.
659
660 @table @option
661 @item level_in
662 Set input level before filtering.
663
664 @item range
665 Set the level of gain reduction when the signal is below the threshold.
666
667 @item threshold
668 If a signal rises above this level the gain reduction is released.
669
670 @item ratio
671 Set a ratio about which the signal is reduced.
672
673 @item attack
674 Amount of milliseconds the signal has to rise above the threshold before gain
675 reduction stops.
676
677 @item release
678 Amount of milliseconds the signal has to fall below the threshold before the
679 reduction is increased again.
680
681 @item makeup
682 Set amount of amplification of signal after processing.
683
684 @item knee
685 Curve the sharp knee around the threshold to enter gain reduction more softly.
686
687 @item detection
688 Choose if exact signal should be taken for detection or an RMS like one.
689
690 @item link
691 Choose if the average level between all channels or the louder channel affects
692 the reduction.
693 @end table
694
695 @section alimiter
696
697 The limiter prevents input signal from raising over a desired threshold.
698 This limiter uses lookahead technology to prevent your signal from distorting.
699 It means that there is a small delay after signal is processed. Keep in mind
700 that the delay it produces is the attack time you set.
701
702 The filter accepts the following options:
703
704 @table @option
705 @item limit
706 Don't let signals above this level pass the limiter. The removed amplitude is
707 added automatically. Default is 1.
708
709 @item attack
710 The limiter will reach its attenuation level in this amount of time in
711 milliseconds. Default is 5 milliseconds.
712
713 @item release
714 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
715 Default is 50 milliseconds.
716
717 @item asc
718 When gain reduction is always needed ASC takes care of releasing to an
719 average reduction level rather than reaching a reduction of 0 in the release
720 time.
721
722 @item asc_level
723 Select how much the release time is affected by ASC, 0 means nearly no changes
724 in release time while 1 produces higher release times.
725 @end table
726
727 Depending on picked setting it is recommended to upsample input 2x or 4x times
728 with @ref{aresample} before applying this filter.
729
730 @section allpass
731
732 Apply a two-pole all-pass filter with central frequency (in Hz)
733 @var{frequency}, and filter-width @var{width}.
734 An all-pass filter changes the audio's frequency to phase relationship
735 without changing its frequency to amplitude relationship.
736
737 The filter accepts the following options:
738
739 @table @option
740 @item frequency, f
741 Set frequency in Hz.
742
743 @item width_type
744 Set method to specify band-width of filter.
745 @table @option
746 @item h
747 Hz
748 @item q
749 Q-Factor
750 @item o
751 octave
752 @item s
753 slope
754 @end table
755
756 @item width, w
757 Specify the band-width of a filter in width_type units.
758 @end table
759
760 @anchor{amerge}
761 @section amerge
762
763 Merge two or more audio streams into a single multi-channel stream.
764
765 The filter accepts the following options:
766
767 @table @option
768
769 @item inputs
770 Set the number of inputs. Default is 2.
771
772 @end table
773
774 If the channel layouts of the inputs are disjoint, and therefore compatible,
775 the channel layout of the output will be set accordingly and the channels
776 will be reordered as necessary. If the channel layouts of the inputs are not
777 disjoint, the output will have all the channels of the first input then all
778 the channels of the second input, in that order, and the channel layout of
779 the output will be the default value corresponding to the total number of
780 channels.
781
782 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
783 is FC+BL+BR, then the output will be in 5.1, with the channels in the
784 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
785 first input, b1 is the first channel of the second input).
786
787 On the other hand, if both input are in stereo, the output channels will be
788 in the default order: a1, a2, b1, b2, and the channel layout will be
789 arbitrarily set to 4.0, which may or may not be the expected value.
790
791 All inputs must have the same sample rate, and format.
792
793 If inputs do not have the same duration, the output will stop with the
794 shortest.
795
796 @subsection Examples
797
798 @itemize
799 @item
800 Merge two mono files into a stereo stream:
801 @example
802 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
803 @end example
804
805 @item
806 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
807 @example
808 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
809 @end example
810 @end itemize
811
812 @section amix
813
814 Mixes multiple audio inputs into a single output.
815
816 Note that this filter only supports float samples (the @var{amerge}
817 and @var{pan} audio filters support many formats). If the @var{amix}
818 input has integer samples then @ref{aresample} will be automatically
819 inserted to perform the conversion to float samples.
820
821 For example
822 @example
823 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
824 @end example
825 will mix 3 input audio streams to a single output with the same duration as the
826 first input and a dropout transition time of 3 seconds.
827
828 It accepts the following parameters:
829 @table @option
830
831 @item inputs
832 The number of inputs. If unspecified, it defaults to 2.
833
834 @item duration
835 How to determine the end-of-stream.
836 @table @option
837
838 @item longest
839 The duration of the longest input. (default)
840
841 @item shortest
842 The duration of the shortest input.
843
844 @item first
845 The duration of the first input.
846
847 @end table
848
849 @item dropout_transition
850 The transition time, in seconds, for volume renormalization when an input
851 stream ends. The default value is 2 seconds.
852
853 @end table
854
855 @section anull
856
857 Pass the audio source unchanged to the output.
858
859 @section apad
860
861 Pad the end of an audio stream with silence.
862
863 This can be used together with @command{ffmpeg} @option{-shortest} to
864 extend audio streams to the same length as the video stream.
865
866 A description of the accepted options follows.
867
868 @table @option
869 @item packet_size
870 Set silence packet size. Default value is 4096.
871
872 @item pad_len
873 Set the number of samples of silence to add to the end. After the
874 value is reached, the stream is terminated. This option is mutually
875 exclusive with @option{whole_len}.
876
877 @item whole_len
878 Set the minimum total number of samples in the output audio stream. If
879 the value is longer than the input audio length, silence is added to
880 the end, until the value is reached. This option is mutually exclusive
881 with @option{pad_len}.
882 @end table
883
884 If neither the @option{pad_len} nor the @option{whole_len} option is
885 set, the filter will add silence to the end of the input stream
886 indefinitely.
887
888 @subsection Examples
889
890 @itemize
891 @item
892 Add 1024 samples of silence to the end of the input:
893 @example
894 apad=pad_len=1024
895 @end example
896
897 @item
898 Make sure the audio output will contain at least 10000 samples, pad
899 the input with silence if required:
900 @example
901 apad=whole_len=10000
902 @end example
903
904 @item
905 Use @command{ffmpeg} to pad the audio input with silence, so that the
906 video stream will always result the shortest and will be converted
907 until the end in the output file when using the @option{shortest}
908 option:
909 @example
910 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
911 @end example
912 @end itemize
913
914 @section aphaser
915 Add a phasing effect to the input audio.
916
917 A phaser filter creates series of peaks and troughs in the frequency spectrum.
918 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
919
920 A description of the accepted parameters follows.
921
922 @table @option
923 @item in_gain
924 Set input gain. Default is 0.4.
925
926 @item out_gain
927 Set output gain. Default is 0.74
928
929 @item delay
930 Set delay in milliseconds. Default is 3.0.
931
932 @item decay
933 Set decay. Default is 0.4.
934
935 @item speed
936 Set modulation speed in Hz. Default is 0.5.
937
938 @item type
939 Set modulation type. Default is triangular.
940
941 It accepts the following values:
942 @table @samp
943 @item triangular, t
944 @item sinusoidal, s
945 @end table
946 @end table
947
948 @anchor{aresample}
949 @section aresample
950
951 Resample the input audio to the specified parameters, using the
952 libswresample library. If none are specified then the filter will
953 automatically convert between its input and output.
954
955 This filter is also able to stretch/squeeze the audio data to make it match
956 the timestamps or to inject silence / cut out audio to make it match the
957 timestamps, do a combination of both or do neither.
958
959 The filter accepts the syntax
960 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
961 expresses a sample rate and @var{resampler_options} is a list of
962 @var{key}=@var{value} pairs, separated by ":". See the
963 ffmpeg-resampler manual for the complete list of supported options.
964
965 @subsection Examples
966
967 @itemize
968 @item
969 Resample the input audio to 44100Hz:
970 @example
971 aresample=44100
972 @end example
973
974 @item
975 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
976 samples per second compensation:
977 @example
978 aresample=async=1000
979 @end example
980 @end itemize
981
982 @section asetnsamples
983
984 Set the number of samples per each output audio frame.
985
986 The last output packet may contain a different number of samples, as
987 the filter will flush all the remaining samples when the input audio
988 signal its end.
989
990 The filter accepts the following options:
991
992 @table @option
993
994 @item nb_out_samples, n
995 Set the number of frames per each output audio frame. The number is
996 intended as the number of samples @emph{per each channel}.
997 Default value is 1024.
998
999 @item pad, p
1000 If set to 1, the filter will pad the last audio frame with zeroes, so
1001 that the last frame will contain the same number of samples as the
1002 previous ones. Default value is 1.
1003 @end table
1004
1005 For example, to set the number of per-frame samples to 1234 and
1006 disable padding for the last frame, use:
1007 @example
1008 asetnsamples=n=1234:p=0
1009 @end example
1010
1011 @section asetrate
1012
1013 Set the sample rate without altering the PCM data.
1014 This will result in a change of speed and pitch.
1015
1016 The filter accepts the following options:
1017
1018 @table @option
1019 @item sample_rate, r
1020 Set the output sample rate. Default is 44100 Hz.
1021 @end table
1022
1023 @section ashowinfo
1024
1025 Show a line containing various information for each input audio frame.
1026 The input audio is not modified.
1027
1028 The shown line contains a sequence of key/value pairs of the form
1029 @var{key}:@var{value}.
1030
1031 The following values are shown in the output:
1032
1033 @table @option
1034 @item n
1035 The (sequential) number of the input frame, starting from 0.
1036
1037 @item pts
1038 The presentation timestamp of the input frame, in time base units; the time base
1039 depends on the filter input pad, and is usually 1/@var{sample_rate}.
1040
1041 @item pts_time
1042 The presentation timestamp of the input frame in seconds.
1043
1044 @item pos
1045 position of the frame in the input stream, -1 if this information in
1046 unavailable and/or meaningless (for example in case of synthetic audio)
1047
1048 @item fmt
1049 The sample format.
1050
1051 @item chlayout
1052 The channel layout.
1053
1054 @item rate
1055 The sample rate for the audio frame.
1056
1057 @item nb_samples
1058 The number of samples (per channel) in the frame.
1059
1060 @item checksum
1061 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
1062 audio, the data is treated as if all the planes were concatenated.
1063
1064 @item plane_checksums
1065 A list of Adler-32 checksums for each data plane.
1066 @end table
1067
1068 @anchor{astats}
1069 @section astats
1070
1071 Display time domain statistical information about the audio channels.
1072 Statistics are calculated and displayed for each audio channel and,
1073 where applicable, an overall figure is also given.
1074
1075 It accepts the following option:
1076 @table @option
1077 @item length
1078 Short window length in seconds, used for peak and trough RMS measurement.
1079 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.1 - 10]}.
1080
1081 @item metadata
1082
1083 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
1084 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
1085 disabled.
1086
1087 Available keys for each channel are:
1088 DC_offset
1089 Min_level
1090 Max_level
1091 Min_difference
1092 Max_difference
1093 Mean_difference
1094 Peak_level
1095 RMS_peak
1096 RMS_trough
1097 Crest_factor
1098 Flat_factor
1099 Peak_count
1100 Bit_depth
1101
1102 and for Overall:
1103 DC_offset
1104 Min_level
1105 Max_level
1106 Min_difference
1107 Max_difference
1108 Mean_difference
1109 Peak_level
1110 RMS_level
1111 RMS_peak
1112 RMS_trough
1113 Flat_factor
1114 Peak_count
1115 Bit_depth
1116 Number_of_samples
1117
1118 For example full key look like this @code{lavfi.astats.1.DC_offset} or
1119 this @code{lavfi.astats.Overall.Peak_count}.
1120
1121 For description what each key means read bellow.
1122
1123 @item reset
1124 Set number of frame after which stats are going to be recalculated.
1125 Default is disabled.
1126 @end table
1127
1128 A description of each shown parameter follows:
1129
1130 @table @option
1131 @item DC offset
1132 Mean amplitude displacement from zero.
1133
1134 @item Min level
1135 Minimal sample level.
1136
1137 @item Max level
1138 Maximal sample level.
1139
1140 @item Min difference
1141 Minimal difference between two consecutive samples.
1142
1143 @item Max difference
1144 Maximal difference between two consecutive samples.
1145
1146 @item Mean difference
1147 Mean difference between two consecutive samples.
1148 The average of each difference between two consecutive samples.
1149
1150 @item Peak level dB
1151 @item RMS level dB
1152 Standard peak and RMS level measured in dBFS.
1153
1154 @item RMS peak dB
1155 @item RMS trough dB
1156 Peak and trough values for RMS level measured over a short window.
1157
1158 @item Crest factor
1159 Standard ratio of peak to RMS level (note: not in dB).
1160
1161 @item Flat factor
1162 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
1163 (i.e. either @var{Min level} or @var{Max level}).
1164
1165 @item Peak count
1166 Number of occasions (not the number of samples) that the signal attained either
1167 @var{Min level} or @var{Max level}.
1168
1169 @item Bit depth
1170 Overall bit depth of audio. Number of bits used for each sample.
1171 @end table
1172
1173 @section astreamsync
1174
1175 Forward two audio streams and control the order the buffers are forwarded.
1176
1177 The filter accepts the following options:
1178
1179 @table @option
1180 @item expr, e
1181 Set the expression deciding which stream should be
1182 forwarded next: if the result is negative, the first stream is forwarded; if
1183 the result is positive or zero, the second stream is forwarded. It can use
1184 the following variables:
1185
1186 @table @var
1187 @item b1 b2
1188 number of buffers forwarded so far on each stream
1189 @item s1 s2
1190 number of samples forwarded so far on each stream
1191 @item t1 t2
1192 current timestamp of each stream
1193 @end table
1194
1195 The default value is @code{t1-t2}, which means to always forward the stream
1196 that has a smaller timestamp.
1197 @end table
1198
1199 @subsection Examples
1200
1201 Stress-test @code{amerge} by randomly sending buffers on the wrong
1202 input, while avoiding too much of a desynchronization:
1203 @example
1204 amovie=file.ogg [a] ; amovie=file.mp3 [b] ;
1205 [a] [b] astreamsync=(2*random(1))-1+tanh(5*(t1-t2)) [a2] [b2] ;
1206 [a2] [b2] amerge
1207 @end example
1208
1209 @section asyncts
1210
1211 Synchronize audio data with timestamps by squeezing/stretching it and/or
1212 dropping samples/adding silence when needed.
1213
1214 This filter is not built by default, please use @ref{aresample} to do squeezing/stretching.
1215
1216 It accepts the following parameters:
1217 @table @option
1218
1219 @item compensate
1220 Enable stretching/squeezing the data to make it match the timestamps. Disabled
1221 by default. When disabled, time gaps are covered with silence.
1222
1223 @item min_delta
1224 The minimum difference between timestamps and audio data (in seconds) to trigger
1225 adding/dropping samples. The default value is 0.1. If you get an imperfect
1226 sync with this filter, try setting this parameter to 0.
1227
1228 @item max_comp
1229 The maximum compensation in samples per second. Only relevant with compensate=1.
1230 The default value is 500.
1231
1232 @item first_pts
1233 Assume that the first PTS should be this value. The time base is 1 / sample
1234 rate. This allows for padding/trimming at the start of the stream. By default,
1235 no assumption is made about the first frame's expected PTS, so no padding or
1236 trimming is done. For example, this could be set to 0 to pad the beginning with
1237 silence if an audio stream starts after the video stream or to trim any samples
1238 with a negative PTS due to encoder delay.
1239
1240 @end table
1241
1242 @section atempo
1243
1244 Adjust audio tempo.
1245
1246 The filter accepts exactly one parameter, the audio tempo. If not
1247 specified then the filter will assume nominal 1.0 tempo. Tempo must
1248 be in the [0.5, 2.0] range.
1249
1250 @subsection Examples
1251
1252 @itemize
1253 @item
1254 Slow down audio to 80% tempo:
1255 @example
1256 atempo=0.8
1257 @end example
1258
1259 @item
1260 To speed up audio to 125% tempo:
1261 @example
1262 atempo=1.25
1263 @end example
1264 @end itemize
1265
1266 @section atrim
1267
1268 Trim the input so that the output contains one continuous subpart of the input.
1269
1270 It accepts the following parameters:
1271 @table @option
1272 @item start
1273 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
1274 sample with the timestamp @var{start} will be the first sample in the output.
1275
1276 @item end
1277 Specify time of the first audio sample that will be dropped, i.e. the
1278 audio sample immediately preceding the one with the timestamp @var{end} will be
1279 the last sample in the output.
1280
1281 @item start_pts
1282 Same as @var{start}, except this option sets the start timestamp in samples
1283 instead of seconds.
1284
1285 @item end_pts
1286 Same as @var{end}, except this option sets the end timestamp in samples instead
1287 of seconds.
1288
1289 @item duration
1290 The maximum duration of the output in seconds.
1291
1292 @item start_sample
1293 The number of the first sample that should be output.
1294
1295 @item end_sample
1296 The number of the first sample that should be dropped.
1297 @end table
1298
1299 @option{start}, @option{end}, and @option{duration} are expressed as time
1300 duration specifications; see
1301 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
1302
1303 Note that the first two sets of the start/end options and the @option{duration}
1304 option look at the frame timestamp, while the _sample options simply count the
1305 samples that pass through the filter. So start/end_pts and start/end_sample will
1306 give different results when the timestamps are wrong, inexact or do not start at
1307 zero. Also note that this filter does not modify the timestamps. If you wish
1308 to have the output timestamps start at zero, insert the asetpts filter after the
1309 atrim filter.
1310
1311 If multiple start or end options are set, this filter tries to be greedy and
1312 keep all samples that match at least one of the specified constraints. To keep
1313 only the part that matches all the constraints at once, chain multiple atrim
1314 filters.
1315
1316 The defaults are such that all the input is kept. So it is possible to set e.g.
1317 just the end values to keep everything before the specified time.
1318
1319 Examples:
1320 @itemize
1321 @item
1322 Drop everything except the second minute of input:
1323 @example
1324 ffmpeg -i INPUT -af atrim=60:120
1325 @end example
1326
1327 @item
1328 Keep only the first 1000 samples:
1329 @example
1330 ffmpeg -i INPUT -af atrim=end_sample=1000
1331 @end example
1332
1333 @end itemize
1334
1335 @section bandpass
1336
1337 Apply a two-pole Butterworth band-pass filter with central
1338 frequency @var{frequency}, and (3dB-point) band-width width.
1339 The @var{csg} option selects a constant skirt gain (peak gain = Q)
1340 instead of the default: constant 0dB peak gain.
1341 The filter roll off at 6dB per octave (20dB per decade).
1342
1343 The filter accepts the following options:
1344
1345 @table @option
1346 @item frequency, f
1347 Set the filter's central frequency. Default is @code{3000}.
1348
1349 @item csg
1350 Constant skirt gain if set to 1. Defaults to 0.
1351
1352 @item width_type
1353 Set method to specify band-width of filter.
1354 @table @option
1355 @item h
1356 Hz
1357 @item q
1358 Q-Factor
1359 @item o
1360 octave
1361 @item s
1362 slope
1363 @end table
1364
1365 @item width, w
1366 Specify the band-width of a filter in width_type units.
1367 @end table
1368
1369 @section bandreject
1370
1371 Apply a two-pole Butterworth band-reject filter with central
1372 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
1373 The filter roll off at 6dB per octave (20dB per decade).
1374
1375 The filter accepts the following options:
1376
1377 @table @option
1378 @item frequency, f
1379 Set the filter's central frequency. Default is @code{3000}.
1380
1381 @item width_type
1382 Set method to specify band-width of filter.
1383 @table @option
1384 @item h
1385 Hz
1386 @item q
1387 Q-Factor
1388 @item o
1389 octave
1390 @item s
1391 slope
1392 @end table
1393
1394 @item width, w
1395 Specify the band-width of a filter in width_type units.
1396 @end table
1397
1398 @section bass
1399
1400 Boost or cut the bass (lower) frequencies of the audio using a two-pole
1401 shelving filter with a response similar to that of a standard
1402 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
1403
1404 The filter accepts the following options:
1405
1406 @table @option
1407 @item gain, g
1408 Give the gain at 0 Hz. Its useful range is about -20
1409 (for a large cut) to +20 (for a large boost).
1410 Beware of clipping when using a positive gain.
1411
1412 @item frequency, f
1413 Set the filter's central frequency and so can be used
1414 to extend or reduce the frequency range to be boosted or cut.
1415 The default value is @code{100} Hz.
1416
1417 @item width_type
1418 Set method to specify band-width of filter.
1419 @table @option
1420 @item h
1421 Hz
1422 @item q
1423 Q-Factor
1424 @item o
1425 octave
1426 @item s
1427 slope
1428 @end table
1429
1430 @item width, w
1431 Determine how steep is the filter's shelf transition.
1432 @end table
1433
1434 @section biquad
1435
1436 Apply a biquad IIR filter with the given coefficients.
1437 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
1438 are the numerator and denominator coefficients respectively.
1439
1440 @section bs2b
1441 Bauer stereo to binaural transformation, which improves headphone listening of
1442 stereo audio records.
1443
1444 It accepts the following parameters:
1445 @table @option
1446
1447 @item profile
1448 Pre-defined crossfeed level.
1449 @table @option
1450
1451 @item default
1452 Default level (fcut=700, feed=50).
1453
1454 @item cmoy
1455 Chu Moy circuit (fcut=700, feed=60).
1456
1457 @item jmeier
1458 Jan Meier circuit (fcut=650, feed=95).
1459
1460 @end table
1461
1462 @item fcut
1463 Cut frequency (in Hz).
1464
1465 @item feed
1466 Feed level (in Hz).
1467
1468 @end table
1469
1470 @section channelmap
1471
1472 Remap input channels to new locations.
1473
1474 It accepts the following parameters:
1475 @table @option
1476 @item channel_layout
1477 The channel layout of the output stream.
1478
1479 @item map
1480 Map channels from input to output. The argument is a '|'-separated list of
1481 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
1482 @var{in_channel} form. @var{in_channel} can be either the name of the input
1483 channel (e.g. FL for front left) or its index in the input channel layout.
1484 @var{out_channel} is the name of the output channel or its index in the output
1485 channel layout. If @var{out_channel} is not given then it is implicitly an
1486 index, starting with zero and increasing by one for each mapping.
1487 @end table
1488
1489 If no mapping is present, the filter will implicitly map input channels to
1490 output channels, preserving indices.
1491
1492 For example, assuming a 5.1+downmix input MOV file,
1493 @example
1494 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
1495 @end example
1496 will create an output WAV file tagged as stereo from the downmix channels of
1497 the input.
1498
1499 To fix a 5.1 WAV improperly encoded in AAC's native channel order
1500 @example
1501 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
1502 @end example
1503
1504 @section channelsplit
1505
1506 Split each channel from an input audio stream into a separate output stream.
1507
1508 It accepts the following parameters:
1509 @table @option
1510 @item channel_layout
1511 The channel layout of the input stream. The default is "stereo".
1512 @end table
1513
1514 For example, assuming a stereo input MP3 file,
1515 @example
1516 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
1517 @end example
1518 will create an output Matroska file with two audio streams, one containing only
1519 the left channel and the other the right channel.
1520
1521 Split a 5.1 WAV file into per-channel files:
1522 @example
1523 ffmpeg -i in.wav -filter_complex
1524 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
1525 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
1526 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
1527 side_right.wav
1528 @end example
1529
1530 @section chorus
1531 Add a chorus effect to the audio.
1532
1533 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
1534
1535 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
1536 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
1537 The modulation depth defines the range the modulated delay is played before or after
1538 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
1539 sound tuned around the original one, like in a chorus where some vocals are slightly
1540 off key.
1541
1542 It accepts the following parameters:
1543 @table @option
1544 @item in_gain
1545 Set input gain. Default is 0.4.
1546
1547 @item out_gain
1548 Set output gain. Default is 0.4.
1549
1550 @item delays
1551 Set delays. A typical delay is around 40ms to 60ms.
1552
1553 @item decays
1554 Set decays.
1555
1556 @item speeds
1557 Set speeds.
1558
1559 @item depths
1560 Set depths.
1561 @end table
1562
1563 @subsection Examples
1564
1565 @itemize
1566 @item
1567 A single delay:
1568 @example
1569 chorus=0.7:0.9:55:0.4:0.25:2
1570 @end example
1571
1572 @item
1573 Two delays:
1574 @example
1575 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
1576 @end example
1577
1578 @item
1579 Fuller sounding chorus with three delays:
1580 @example
1581 chorus=0.5:0.9:50|60|40:0.4|0.32|0.3:0.25|0.4|0.3:2|2.3|1.3
1582 @end example
1583 @end itemize
1584
1585 @section compand
1586 Compress or expand the audio's dynamic range.
1587
1588 It accepts the following parameters:
1589
1590 @table @option
1591
1592 @item attacks
1593 @item decays
1594 A list of times in seconds for each channel over which the instantaneous level
1595 of the input signal is averaged to determine its volume. @var{attacks} refers to
1596 increase of volume and @var{decays} refers to decrease of volume. For most
1597 situations, the attack time (response to the audio getting louder) should be
1598 shorter than the decay time, because the human ear is more sensitive to sudden
1599 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
1600 a typical value for decay is 0.8 seconds.
1601 If specified number of attacks & decays is lower than number of channels, the last
1602 set attack/decay will be used for all remaining channels.
1603
1604 @item points
1605 A list of points for the transfer function, specified in dB relative to the
1606 maximum possible signal amplitude. Each key points list must be defined using
1607 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
1608 @code{x0/y0 x1/y1 x2/y2 ....}
1609
1610 The input values must be in strictly increasing order but the transfer function
1611 does not have to be monotonically rising. The point @code{0/0} is assumed but
1612 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
1613 function are @code{-70/-70|-60/-20}.
1614
1615 @item soft-knee
1616 Set the curve radius in dB for all joints. It defaults to 0.01.
1617
1618 @item gain
1619 Set the additional gain in dB to be applied at all points on the transfer
1620 function. This allows for easy adjustment of the overall gain.
1621 It defaults to 0.
1622
1623 @item volume
1624 Set an initial volume, in dB, to be assumed for each channel when filtering
1625 starts. This permits the user to supply a nominal level initially, so that, for
1626 example, a very large gain is not applied to initial signal levels before the
1627 companding has begun to operate. A typical value for audio which is initially
1628 quiet is -90 dB. It defaults to 0.
1629
1630 @item delay
1631 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
1632 delayed before being fed to the volume adjuster. Specifying a delay
1633 approximately equal to the attack/decay times allows the filter to effectively
1634 operate in predictive rather than reactive mode. It defaults to 0.
1635
1636 @end table
1637
1638 @subsection Examples
1639
1640 @itemize
1641 @item
1642 Make music with both quiet and loud passages suitable for listening to in a
1643 noisy environment:
1644 @example
1645 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
1646 @end example
1647
1648 Another example for audio with whisper and explosion parts:
1649 @example
1650 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
1651 @end example
1652
1653 @item
1654 A noise gate for when the noise is at a lower level than the signal:
1655 @example
1656 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
1657 @end example
1658
1659 @item
1660 Here is another noise gate, this time for when the noise is at a higher level
1661 than the signal (making it, in some ways, similar to squelch):
1662 @example
1663 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
1664 @end example
1665 @end itemize
1666
1667 @section dcshift
1668 Apply a DC shift to the audio.
1669
1670 This can be useful to remove a DC offset (caused perhaps by a hardware problem
1671 in the recording chain) from the audio. The effect of a DC offset is reduced
1672 headroom and hence volume. The @ref{astats} filter can be used to determine if
1673 a signal has a DC offset.
1674
1675 @table @option
1676 @item shift
1677 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
1678 the audio.
1679
1680 @item limitergain
1681 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
1682 used to prevent clipping.
1683 @end table
1684
1685 @section dynaudnorm
1686 Dynamic Audio Normalizer.
1687
1688 This filter applies a certain amount of gain to the input audio in order
1689 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
1690 contrast to more "simple" normalization algorithms, the Dynamic Audio
1691 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
1692 This allows for applying extra gain to the "quiet" sections of the audio
1693 while avoiding distortions or clipping the "loud" sections. In other words:
1694 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
1695 sections, in the sense that the volume of each section is brought to the
1696 same target level. Note, however, that the Dynamic Audio Normalizer achieves
1697 this goal *without* applying "dynamic range compressing". It will retain 100%
1698 of the dynamic range *within* each section of the audio file.
1699
1700 @table @option
1701 @item f
1702 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
1703 Default is 500 milliseconds.
1704 The Dynamic Audio Normalizer processes the input audio in small chunks,
1705 referred to as frames. This is required, because a peak magnitude has no
1706 meaning for just a single sample value. Instead, we need to determine the
1707 peak magnitude for a contiguous sequence of sample values. While a "standard"
1708 normalizer would simply use the peak magnitude of the complete file, the
1709 Dynamic Audio Normalizer determines the peak magnitude individually for each
1710 frame. The length of a frame is specified in milliseconds. By default, the
1711 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
1712 been found to give good results with most files.
1713 Note that the exact frame length, in number of samples, will be determined
1714 automatically, based on the sampling rate of the individual input audio file.
1715
1716 @item g
1717 Set the Gaussian filter window size. In range from 3 to 301, must be odd
1718 number. Default is 31.
1719 Probably the most important parameter of the Dynamic Audio Normalizer is the
1720 @code{window size} of the Gaussian smoothing filter. The filter's window size
1721 is specified in frames, centered around the current frame. For the sake of
1722 simplicity, this must be an odd number. Consequently, the default value of 31
1723 takes into account the current frame, as well as the 15 preceding frames and
1724 the 15 subsequent frames. Using a larger window results in a stronger
1725 smoothing effect and thus in less gain variation, i.e. slower gain
1726 adaptation. Conversely, using a smaller window results in a weaker smoothing
1727 effect and thus in more gain variation, i.e. faster gain adaptation.
1728 In other words, the more you increase this value, the more the Dynamic Audio
1729 Normalizer will behave like a "traditional" normalization filter. On the
1730 contrary, the more you decrease this value, the more the Dynamic Audio
1731 Normalizer will behave like a dynamic range compressor.
1732
1733 @item p
1734 Set the target peak value. This specifies the highest permissible magnitude
1735 level for the normalized audio input. This filter will try to approach the
1736 target peak magnitude as closely as possible, but at the same time it also
1737 makes sure that the normalized signal will never exceed the peak magnitude.
1738 A frame's maximum local gain factor is imposed directly by the target peak
1739 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
1740 It is not recommended to go above this value.
1741
1742 @item m
1743 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
1744 The Dynamic Audio Normalizer determines the maximum possible (local) gain
1745 factor for each input frame, i.e. the maximum gain factor that does not
1746 result in clipping or distortion. The maximum gain factor is determined by
1747 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
1748 additionally bounds the frame's maximum gain factor by a predetermined
1749 (global) maximum gain factor. This is done in order to avoid excessive gain
1750 factors in "silent" or almost silent frames. By default, the maximum gain
1751 factor is 10.0, For most inputs the default value should be sufficient and
1752 it usually is not recommended to increase this value. Though, for input
1753 with an extremely low overall volume level, it may be necessary to allow even
1754 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
1755 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
1756 Instead, a "sigmoid" threshold function will be applied. This way, the
1757 gain factors will smoothly approach the threshold value, but never exceed that
1758 value.
1759
1760 @item r
1761 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
1762 By default, the Dynamic Audio Normalizer performs "peak" normalization.
1763 This means that the maximum local gain factor for each frame is defined
1764 (only) by the frame's highest magnitude sample. This way, the samples can
1765 be amplified as much as possible without exceeding the maximum signal
1766 level, i.e. without clipping. Optionally, however, the Dynamic Audio
1767 Normalizer can also take into account the frame's root mean square,
1768 abbreviated RMS. In electrical engineering, the RMS is commonly used to
1769 determine the power of a time-varying signal. It is therefore considered
1770 that the RMS is a better approximation of the "perceived loudness" than
1771 just looking at the signal's peak magnitude. Consequently, by adjusting all
1772 frames to a constant RMS value, a uniform "perceived loudness" can be
1773 established. If a target RMS value has been specified, a frame's local gain
1774 factor is defined as the factor that would result in exactly that RMS value.
1775 Note, however, that the maximum local gain factor is still restricted by the
1776 frame's highest magnitude sample, in order to prevent clipping.
1777
1778 @item n
1779 Enable channels coupling. By default is enabled.
1780 By default, the Dynamic Audio Normalizer will amplify all channels by the same
1781 amount. This means the same gain factor will be applied to all channels, i.e.
1782 the maximum possible gain factor is determined by the "loudest" channel.
1783 However, in some recordings, it may happen that the volume of the different
1784 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
1785 In this case, this option can be used to disable the channel coupling. This way,
1786 the gain factor will be determined independently for each channel, depending
1787 only on the individual channel's highest magnitude sample. This allows for
1788 harmonizing the volume of the different channels.
1789
1790 @item c
1791 Enable DC bias correction. By default is disabled.
1792 An audio signal (in the time domain) is a sequence of sample values.
1793 In the Dynamic Audio Normalizer these sample values are represented in the
1794 -1.0 to 1.0 range, regardless of the original input format. Normally, the
1795 audio signal, or "waveform", should be centered around the zero point.
1796 That means if we calculate the mean value of all samples in a file, or in a
1797 single frame, then the result should be 0.0 or at least very close to that
1798 value. If, however, there is a significant deviation of the mean value from
1799 0.0, in either positive or negative direction, this is referred to as a
1800 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
1801 Audio Normalizer provides optional DC bias correction.
1802 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
1803 the mean value, or "DC correction" offset, of each input frame and subtract
1804 that value from all of the frame's sample values which ensures those samples
1805 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
1806 boundaries, the DC correction offset values will be interpolated smoothly
1807 between neighbouring frames.
1808
1809 @item b
1810 Enable alternative boundary mode. By default is disabled.
1811 The Dynamic Audio Normalizer takes into account a certain neighbourhood
1812 around each frame. This includes the preceding frames as well as the
1813 subsequent frames. However, for the "boundary" frames, located at the very
1814 beginning and at the very end of the audio file, not all neighbouring
1815 frames are available. In particular, for the first few frames in the audio
1816 file, the preceding frames are not known. And, similarly, for the last few
1817 frames in the audio file, the subsequent frames are not known. Thus, the
1818 question arises which gain factors should be assumed for the missing frames
1819 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
1820 to deal with this situation. The default boundary mode assumes a gain factor
1821 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
1822 "fade out" at the beginning and at the end of the input, respectively.
1823
1824 @item s
1825 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
1826 By default, the Dynamic Audio Normalizer does not apply "traditional"
1827 compression. This means that signal peaks will not be pruned and thus the
1828 full dynamic range will be retained within each local neighbourhood. However,
1829 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
1830 normalization algorithm with a more "traditional" compression.
1831 For this purpose, the Dynamic Audio Normalizer provides an optional compression
1832 (thresholding) function. If (and only if) the compression feature is enabled,
1833 all input frames will be processed by a soft knee thresholding function prior
1834 to the actual normalization process. Put simply, the thresholding function is
1835 going to prune all samples whose magnitude exceeds a certain threshold value.
1836 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
1837 value. Instead, the threshold value will be adjusted for each individual
1838 frame.
1839 In general, smaller parameters result in stronger compression, and vice versa.
1840 Values below 3.0 are not recommended, because audible distortion may appear.
1841 @end table
1842
1843 @section earwax
1844
1845 Make audio easier to listen to on headphones.
1846
1847 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
1848 so that when listened to on headphones the stereo image is moved from
1849 inside your head (standard for headphones) to outside and in front of
1850 the listener (standard for speakers).
1851
1852 Ported from SoX.
1853
1854 @section equalizer
1855
1856 Apply a two-pole peaking equalisation (EQ) filter. With this
1857 filter, the signal-level at and around a selected frequency can
1858 be increased or decreased, whilst (unlike bandpass and bandreject
1859 filters) that at all other frequencies is unchanged.
1860
1861 In order to produce complex equalisation curves, this filter can
1862 be given several times, each with a different central frequency.
1863
1864 The filter accepts the following options:
1865
1866 @table @option
1867 @item frequency, f
1868 Set the filter's central frequency in Hz.
1869
1870 @item width_type
1871 Set method to specify band-width of filter.
1872 @table @option
1873 @item h
1874 Hz
1875 @item q
1876 Q-Factor
1877 @item o
1878 octave
1879 @item s
1880 slope
1881 @end table
1882
1883 @item width, w
1884 Specify the band-width of a filter in width_type units.
1885
1886 @item gain, g
1887 Set the required gain or attenuation in dB.
1888 Beware of clipping when using a positive gain.
1889 @end table
1890
1891 @subsection Examples
1892 @itemize
1893 @item
1894 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
1895 @example
1896 equalizer=f=1000:width_type=h:width=200:g=-10
1897 @end example
1898
1899 @item
1900 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
1901 @example
1902 equalizer=f=1000:width_type=q:width=1:g=2,equalizer=f=100:width_type=q:width=2:g=-5
1903 @end example
1904 @end itemize
1905
1906 @section extrastereo
1907
1908 Linearly increases the difference between left and right channels which
1909 adds some sort of "live" effect to playback.
1910
1911 The filter accepts the following option:
1912
1913 @table @option
1914 @item m
1915 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
1916 (average of both channels), with 1.0 sound will be unchanged, with
1917 -1.0 left and right channels will be swapped.
1918
1919 @item c
1920 Enable clipping. By default is enabled.
1921 @end table
1922
1923 @section flanger
1924 Apply a flanging effect to the audio.
1925
1926 The filter accepts the following options:
1927
1928 @table @option
1929 @item delay
1930 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
1931
1932 @item depth
1933 Set added swep delay in milliseconds. Range from 0 to 10. Default value is 2.
1934
1935 @item regen
1936 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
1937 Default value is 0.
1938
1939 @item width
1940 Set percentage of delayed signal mixed with original. Range from 0 to 100.
1941 Default value is 71.
1942
1943 @item speed
1944 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
1945
1946 @item shape
1947 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
1948 Default value is @var{sinusoidal}.
1949
1950 @item phase
1951 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
1952 Default value is 25.
1953
1954 @item interp
1955 Set delay-line interpolation, @var{linear} or @var{quadratic}.
1956 Default is @var{linear}.
1957 @end table
1958
1959 @section highpass
1960
1961 Apply a high-pass filter with 3dB point frequency.
1962 The filter can be either single-pole, or double-pole (the default).
1963 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
1964
1965 The filter accepts the following options:
1966
1967 @table @option
1968 @item frequency, f
1969 Set frequency in Hz. Default is 3000.
1970
1971 @item poles, p
1972 Set number of poles. Default is 2.
1973
1974 @item width_type
1975 Set method to specify band-width of filter.
1976 @table @option
1977 @item h
1978 Hz
1979 @item q
1980 Q-Factor
1981 @item o
1982 octave
1983 @item s
1984 slope
1985 @end table
1986
1987 @item width, w
1988 Specify the band-width of a filter in width_type units.
1989 Applies only to double-pole filter.
1990 The default is 0.707q and gives a Butterworth response.
1991 @end table
1992
1993 @section join
1994
1995 Join multiple input streams into one multi-channel stream.
1996
1997 It accepts the following parameters:
1998 @table @option
1999
2000 @item inputs
2001 The number of input streams. It defaults to 2.
2002
2003 @item channel_layout
2004 The desired output channel layout. It defaults to stereo.
2005
2006 @item map
2007 Map channels from inputs to output. The argument is a '|'-separated list of
2008 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
2009 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
2010 can be either the name of the input channel (e.g. FL for front left) or its
2011 index in the specified input stream. @var{out_channel} is the name of the output
2012 channel.
2013 @end table
2014
2015 The filter will attempt to guess the mappings when they are not specified
2016 explicitly. It does so by first trying to find an unused matching input channel
2017 and if that fails it picks the first unused input channel.
2018
2019 Join 3 inputs (with properly set channel layouts):
2020 @example
2021 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
2022 @end example
2023
2024 Build a 5.1 output from 6 single-channel streams:
2025 @example
2026 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
2027 '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'
2028 out
2029 @end example
2030
2031 @section ladspa
2032
2033 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
2034
2035 To enable compilation of this filter you need to configure FFmpeg with
2036 @code{--enable-ladspa}.
2037
2038 @table @option
2039 @item file, f
2040 Specifies the name of LADSPA plugin library to load. If the environment
2041 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
2042 each one of the directories specified by the colon separated list in
2043 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
2044 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
2045 @file{/usr/lib/ladspa/}.
2046
2047 @item plugin, p
2048 Specifies the plugin within the library. Some libraries contain only
2049 one plugin, but others contain many of them. If this is not set filter
2050 will list all available plugins within the specified library.
2051
2052 @item controls, c
2053 Set the '|' separated list of controls which are zero or more floating point
2054 values that determine the behavior of the loaded plugin (for example delay,
2055 threshold or gain).
2056 Controls need to be defined using the following syntax:
2057 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
2058 @var{valuei} is the value set on the @var{i}-th control.
2059 Alternatively they can be also defined using the following syntax:
2060 @var{value0}|@var{value1}|@var{value2}|..., where
2061 @var{valuei} is the value set on the @var{i}-th control.
2062 If @option{controls} is set to @code{help}, all available controls and
2063 their valid ranges are printed.
2064
2065 @item sample_rate, s
2066 Specify the sample rate, default to 44100. Only used if plugin have
2067 zero inputs.
2068
2069 @item nb_samples, n
2070 Set the number of samples per channel per each output frame, default
2071 is 1024. Only used if plugin have zero inputs.
2072
2073 @item duration, d
2074 Set the minimum duration of the sourced audio. See
2075 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2076 for the accepted syntax.
2077 Note that the resulting duration may be greater than the specified duration,
2078 as the generated audio is always cut at the end of a complete frame.
2079 If not specified, or the expressed duration is negative, the audio is
2080 supposed to be generated forever.
2081 Only used if plugin have zero inputs.
2082
2083 @end table
2084
2085 @subsection Examples
2086
2087 @itemize
2088 @item
2089 List all available plugins within amp (LADSPA example plugin) library:
2090 @example
2091 ladspa=file=amp
2092 @end example
2093
2094 @item
2095 List all available controls and their valid ranges for @code{vcf_notch}
2096 plugin from @code{VCF} library:
2097 @example
2098 ladspa=f=vcf:p=vcf_notch:c=help
2099 @end example
2100
2101 @item
2102 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
2103 plugin library:
2104 @example
2105 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
2106 @end example
2107
2108 @item
2109 Add reverberation to the audio using TAP-plugins
2110 (Tom's Audio Processing plugins):
2111 @example
2112 ladspa=file=tap_reverb:tap_reverb
2113 @end example
2114
2115 @item
2116 Generate white noise, with 0.2 amplitude:
2117 @example
2118 ladspa=file=cmt:noise_source_white:c=c0=.2
2119 @end example
2120
2121 @item
2122 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
2123 @code{C* Audio Plugin Suite} (CAPS) library:
2124 @example
2125 ladspa=file=caps:Click:c=c1=20'
2126 @end example
2127
2128 @item
2129 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
2130 @example
2131 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
2132 @end example
2133
2134 @item
2135 Increase volume by 20dB using fast lookahead limiter from Steve Harris
2136 @code{SWH Plugins} collection:
2137 @example
2138 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
2139 @end example
2140
2141 @item
2142 Attenuate low frequencies using Multiband EQ from Steve Harris
2143 @code{SWH Plugins} collection:
2144 @example
2145 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
2146 @end example
2147 @end itemize
2148
2149 @subsection Commands
2150
2151 This filter supports the following commands:
2152 @table @option
2153 @item cN
2154 Modify the @var{N}-th control value.
2155
2156 If the specified value is not valid, it is ignored and prior one is kept.
2157 @end table
2158
2159 @section lowpass
2160
2161 Apply a low-pass filter with 3dB point frequency.
2162 The filter can be either single-pole or double-pole (the default).
2163 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
2164
2165 The filter accepts the following options:
2166
2167 @table @option
2168 @item frequency, f
2169 Set frequency in Hz. Default is 500.
2170
2171 @item poles, p
2172 Set number of poles. Default is 2.
2173
2174 @item width_type
2175 Set method to specify band-width of filter.
2176 @table @option
2177 @item h
2178 Hz
2179 @item q
2180 Q-Factor
2181 @item o
2182 octave
2183 @item s
2184 slope
2185 @end table
2186
2187 @item width, w
2188 Specify the band-width of a filter in width_type units.
2189 Applies only to double-pole filter.
2190 The default is 0.707q and gives a Butterworth response.
2191 @end table
2192
2193 @anchor{pan}
2194 @section pan
2195
2196 Mix channels with specific gain levels. The filter accepts the output
2197 channel layout followed by a set of channels definitions.
2198
2199 This filter is also designed to efficiently remap the channels of an audio
2200 stream.
2201
2202 The filter accepts parameters of the form:
2203 "@var{l}|@var{outdef}|@var{outdef}|..."
2204
2205 @table @option
2206 @item l
2207 output channel layout or number of channels
2208
2209 @item outdef
2210 output channel specification, of the form:
2211 "@var{out_name}=[@var{gain}*]@var{in_name}[+[@var{gain}*]@var{in_name}...]"
2212
2213 @item out_name
2214 output channel to define, either a channel name (FL, FR, etc.) or a channel
2215 number (c0, c1, etc.)
2216
2217 @item gain
2218 multiplicative coefficient for the channel, 1 leaving the volume unchanged
2219
2220 @item in_name
2221 input channel to use, see out_name for details; it is not possible to mix
2222 named and numbered input channels
2223 @end table
2224
2225 If the `=' in a channel specification is replaced by `<', then the gains for
2226 that specification will be renormalized so that the total is 1, thus
2227 avoiding clipping noise.
2228
2229 @subsection Mixing examples
2230
2231 For example, if you want to down-mix from stereo to mono, but with a bigger
2232 factor for the left channel:
2233 @example
2234 pan=1c|c0=0.9*c0+0.1*c1
2235 @end example
2236
2237 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
2238 7-channels surround:
2239 @example
2240 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
2241 @end example
2242
2243 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
2244 that should be preferred (see "-ac" option) unless you have very specific
2245 needs.
2246
2247 @subsection Remapping examples
2248
2249 The channel remapping will be effective if, and only if:
2250
2251 @itemize
2252 @item gain coefficients are zeroes or ones,
2253 @item only one input per channel output,
2254 @end itemize
2255
2256 If all these conditions are satisfied, the filter will notify the user ("Pure
2257 channel mapping detected"), and use an optimized and lossless method to do the
2258 remapping.
2259
2260 For example, if you have a 5.1 source and want a stereo audio stream by
2261 dropping the extra channels:
2262 @example
2263 pan="stereo| c0=FL | c1=FR"
2264 @end example
2265
2266 Given the same source, you can also switch front left and front right channels
2267 and keep the input channel layout:
2268 @example
2269 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
2270 @end example
2271
2272 If the input is a stereo audio stream, you can mute the front left channel (and
2273 still keep the stereo channel layout) with:
2274 @example
2275 pan="stereo|c1=c1"
2276 @end example
2277
2278 Still with a stereo audio stream input, you can copy the right channel in both
2279 front left and right:
2280 @example
2281 pan="stereo| c0=FR | c1=FR"
2282 @end example
2283
2284 @section replaygain
2285
2286 ReplayGain scanner filter. This filter takes an audio stream as an input and
2287 outputs it unchanged.
2288 At end of filtering it displays @code{track_gain} and @code{track_peak}.
2289
2290 @section resample
2291
2292 Convert the audio sample format, sample rate and channel layout. It is
2293 not meant to be used directly.
2294
2295 @section sidechaincompress
2296
2297 This filter acts like normal compressor but has the ability to compress
2298 detected signal using second input signal.
2299 It needs two input streams and returns one output stream.
2300 First input stream will be processed depending on second stream signal.
2301 The filtered signal then can be filtered with other filters in later stages of
2302 processing. See @ref{pan} and @ref{amerge} filter.
2303
2304 The filter accepts the following options:
2305
2306 @table @option
2307 @item threshold
2308 If a signal of second stream raises above this level it will affect the gain
2309 reduction of first stream.
2310 By default is 0.125. Range is between 0.00097563 and 1.
2311
2312 @item ratio
2313 Set a ratio about which the signal is reduced. 1:2 means that if the level
2314 raised 4dB above the threshold, it will be only 2dB above after the reduction.
2315 Default is 2. Range is between 1 and 20.
2316
2317 @item attack
2318 Amount of milliseconds the signal has to rise above the threshold before gain
2319 reduction starts. Default is 20. Range is between 0.01 and 2000.
2320
2321 @item release
2322 Amount of milliseconds the signal has to fall bellow the threshold before
2323 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
2324
2325 @item makeup
2326 Set the amount by how much signal will be amplified after processing.
2327 Default is 2. Range is from 1 and 64.
2328
2329 @item knee
2330 Curve the sharp knee around the threshold to enter gain reduction more softly.
2331 Default is 2.82843. Range is between 1 and 8.
2332
2333 @item link
2334 Choose if the @code{average} level between all channels of side-chain stream
2335 or the louder(@code{maximum}) channel of side-chain stream affects the
2336 reduction. Default is @code{average}.
2337
2338 @item detection
2339 Should the exact signal be taken in case of @code{peak} or an RMS one in case
2340 of @code{rms}. Default is @code{rms} which is mainly smoother.
2341 @end table
2342
2343 @subsection Examples
2344
2345 @itemize
2346 @item
2347 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
2348 depending on the signal of 2nd input and later compressed signal to be
2349 merged with 2nd input:
2350 @example
2351 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
2352 @end example
2353 @end itemize
2354
2355 @section silencedetect
2356
2357 Detect silence in an audio stream.
2358
2359 This filter logs a message when it detects that the input audio volume is less
2360 or equal to a noise tolerance value for a duration greater or equal to the
2361 minimum detected noise duration.
2362
2363 The printed times and duration are expressed in seconds.
2364
2365 The filter accepts the following options:
2366
2367 @table @option
2368 @item duration, d
2369 Set silence duration until notification (default is 2 seconds).
2370
2371 @item noise, n
2372 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
2373 specified value) or amplitude ratio. Default is -60dB, or 0.001.
2374 @end table
2375
2376 @subsection Examples
2377
2378 @itemize
2379 @item
2380 Detect 5 seconds of silence with -50dB noise tolerance:
2381 @example
2382 silencedetect=n=-50dB:d=5
2383 @end example
2384
2385 @item
2386 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
2387 tolerance in @file{silence.mp3}:
2388 @example
2389 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
2390 @end example
2391 @end itemize
2392
2393 @section silenceremove
2394
2395 Remove silence from the beginning, middle or end of the audio.
2396
2397 The filter accepts the following options:
2398
2399 @table @option
2400 @item start_periods
2401 This value is used to indicate if audio should be trimmed at beginning of
2402 the audio. A value of zero indicates no silence should be trimmed from the
2403 beginning. When specifying a non-zero value, it trims audio up until it
2404 finds non-silence. Normally, when trimming silence from beginning of audio
2405 the @var{start_periods} will be @code{1} but it can be increased to higher
2406 values to trim all audio up to specific count of non-silence periods.
2407 Default value is @code{0}.
2408
2409 @item start_duration
2410 Specify the amount of time that non-silence must be detected before it stops
2411 trimming audio. By increasing the duration, bursts of noises can be treated
2412 as silence and trimmed off. Default value is @code{0}.
2413
2414 @item start_threshold
2415 This indicates what sample value should be treated as silence. For digital
2416 audio, a value of @code{0} may be fine but for audio recorded from analog,
2417 you may wish to increase the value to account for background noise.
2418 Can be specified in dB (in case "dB" is appended to the specified value)
2419 or amplitude ratio. Default value is @code{0}.
2420
2421 @item stop_periods
2422 Set the count for trimming silence from the end of audio.
2423 To remove silence from the middle of a file, specify a @var{stop_periods}
2424 that is negative. This value is then treated as a positive value and is
2425 used to indicate the effect should restart processing as specified by
2426 @var{start_periods}, making it suitable for removing periods of silence
2427 in the middle of the audio.
2428 Default value is @code{0}.
2429
2430 @item stop_duration
2431 Specify a duration of silence that must exist before audio is not copied any
2432 more. By specifying a higher duration, silence that is wanted can be left in
2433 the audio.
2434 Default value is @code{0}.
2435
2436 @item stop_threshold
2437 This is the same as @option{start_threshold} but for trimming silence from
2438 the end of audio.
2439 Can be specified in dB (in case "dB" is appended to the specified value)
2440 or amplitude ratio. Default value is @code{0}.
2441
2442 @item leave_silence
2443 This indicate that @var{stop_duration} length of audio should be left intact
2444 at the beginning of each period of silence.
2445 For example, if you want to remove long pauses between words but do not want
2446 to remove the pauses completely. Default value is @code{0}.
2447
2448 @end table
2449
2450 @subsection Examples
2451
2452 @itemize
2453 @item
2454 The following example shows how this filter can be used to start a recording
2455 that does not contain the delay at the start which usually occurs between
2456 pressing the record button and the start of the performance:
2457 @example
2458 silenceremove=1:5:0.02
2459 @end example
2460 @end itemize
2461
2462 @section stereotools
2463
2464 This filter has some handy utilities to manage stereo signals, for converting
2465 M/S stereo recordings to L/R signal while having control over the parameters
2466 or spreading the stereo image of master track.
2467
2468 The filter accepts the following options:
2469
2470 @table @option
2471 @item level_in
2472 Set input level before filtering for both channels. Defaults is 1.
2473 Allowed range is from 0.015625 to 64.
2474
2475 @item level_out
2476 Set output level after filtering for both channels. Defaults is 1.
2477 Allowed range is from 0.015625 to 64.
2478
2479 @item balance_in
2480 Set input balance between both channels. Default is 0.
2481 Allowed range is from -1 to 1.
2482
2483 @item balance_out
2484 Set output balance between both channels. Default is 0.
2485 Allowed range is from -1 to 1.
2486
2487 @item softclip
2488 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
2489 clipping. Disabled by default.
2490
2491 @item mutel
2492 Mute the left channel. Disabled by default.
2493
2494 @item muter
2495 Mute the right channel. Disabled by default.
2496
2497 @item phasel
2498 Change the phase of the left channel. Disabled by default.
2499
2500 @item phaser
2501 Change the phase of the right channel. Disabled by default.
2502
2503 @item mode
2504 Set stereo mode. Available values are:
2505
2506 @table @samp
2507 @item lr>lr
2508 Left/Right to Left/Right, this is default.
2509
2510 @item lr>ms
2511 Left/Right to Mid/Side.
2512
2513 @item ms>lr
2514 Mid/Side to Left/Right.
2515
2516 @item lr>ll
2517 Left/Right to Left/Left.
2518
2519 @item lr>rr
2520 Left/Right to Right/Right.
2521
2522 @item lr>l+r
2523 Left/Right to Left + Right.
2524
2525 @item lr>rl
2526 Left/Right to Right/Left.
2527 @end table
2528
2529 @item slev
2530 Set level of side signal. Default is 1.
2531 Allowed range is from 0.015625 to 64.
2532
2533 @item sbal
2534 Set balance of side signal. Default is 0.
2535 Allowed range is from -1 to 1.
2536
2537 @item mlev
2538 Set level of the middle signal. Default is 1.
2539 Allowed range is from 0.015625 to 64.
2540
2541 @item mpan
2542 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
2543
2544 @item base
2545 Set stereo base between mono and inversed channels. Default is 0.
2546 Allowed range is from -1 to 1.
2547
2548 @item delay
2549 Set delay in milliseconds how much to delay left from right channel and
2550 vice versa. Default is 0. Allowed range is from -20 to 20.
2551
2552 @item sclevel
2553 Set S/C level. Default is 1. Allowed range is from 1 to 100.
2554
2555 @item phase
2556 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
2557 @end table
2558
2559 @section stereowiden
2560
2561 This filter enhance the stereo effect by suppressing signal common to both
2562 channels and by delaying the signal of left into right and vice versa,
2563 thereby widening the stereo effect.
2564
2565 The filter accepts the following options:
2566
2567 @table @option
2568 @item delay
2569 Time in milliseconds of the delay of left signal into right and vice versa.
2570 Default is 20 milliseconds.
2571
2572 @item feedback
2573 Amount of gain in delayed signal into right and vice versa. Gives a delay
2574 effect of left signal in right output and vice versa which gives widening
2575 effect. Default is 0.3.
2576
2577 @item crossfeed
2578 Cross feed of left into right with inverted phase. This helps in suppressing
2579 the mono. If the value is 1 it will cancel all the signal common to both
2580 channels. Default is 0.3.
2581
2582 @item drymix
2583 Set level of input signal of original channel. Default is 0.8.
2584 @end table
2585
2586 @section treble
2587
2588 Boost or cut treble (upper) frequencies of the audio using a two-pole
2589 shelving filter with a response similar to that of a standard
2590 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
2591
2592 The filter accepts the following options:
2593
2594 @table @option
2595 @item gain, g
2596 Give the gain at whichever is the lower of ~22 kHz and the
2597 Nyquist frequency. Its useful range is about -20 (for a large cut)
2598 to +20 (for a large boost). Beware of clipping when using a positive gain.
2599
2600 @item frequency, f
2601 Set the filter's central frequency and so can be used
2602 to extend or reduce the frequency range to be boosted or cut.
2603 The default value is @code{3000} Hz.
2604
2605 @item width_type
2606 Set method to specify band-width of filter.
2607 @table @option
2608 @item h
2609 Hz
2610 @item q
2611 Q-Factor
2612 @item o
2613 octave
2614 @item s
2615 slope
2616 @end table
2617
2618 @item width, w
2619 Determine how steep is the filter's shelf transition.
2620 @end table
2621
2622 @section tremolo
2623
2624 Sinusoidal amplitude modulation.
2625
2626 The filter accepts the following options:
2627
2628 @table @option
2629 @item f
2630 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
2631 (20 Hz or lower) will result in a tremolo effect.
2632 This filter may also be used as a ring modulator by specifying
2633 a modulation frequency higher than 20 Hz.
2634 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
2635
2636 @item d
2637 Depth of modulation as a percentage. Range is 0.0 - 1.0.
2638 Default value is 0.5.
2639 @end table
2640
2641 @section volume
2642
2643 Adjust the input audio volume.
2644
2645 It accepts the following parameters:
2646 @table @option
2647
2648 @item volume
2649 Set audio volume expression.
2650
2651 Output values are clipped to the maximum value.
2652
2653 The output audio volume is given by the relation:
2654 @example
2655 @var{output_volume} = @var{volume} * @var{input_volume}
2656 @end example
2657
2658 The default value for @var{volume} is "1.0".
2659
2660 @item precision
2661 This parameter represents the mathematical precision.
2662
2663 It determines which input sample formats will be allowed, which affects the
2664 precision of the volume scaling.
2665
2666 @table @option
2667 @item fixed
2668 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
2669 @item float
2670 32-bit floating-point; this limits input sample format to FLT. (default)
2671 @item double
2672 64-bit floating-point; this limits input sample format to DBL.
2673 @end table
2674
2675 @item replaygain
2676 Choose the behaviour on encountering ReplayGain side data in input frames.
2677
2678 @table @option
2679 @item drop
2680 Remove ReplayGain side data, ignoring its contents (the default).
2681
2682 @item ignore
2683 Ignore ReplayGain side data, but leave it in the frame.
2684
2685 @item track
2686 Prefer the track gain, if present.
2687
2688 @item album
2689 Prefer the album gain, if present.
2690 @end table
2691
2692 @item replaygain_preamp
2693 Pre-amplification gain in dB to apply to the selected replaygain gain.
2694
2695 Default value for @var{replaygain_preamp} is 0.0.
2696
2697 @item eval
2698 Set when the volume expression is evaluated.
2699
2700 It accepts the following values:
2701 @table @samp
2702 @item once
2703 only evaluate expression once during the filter initialization, or
2704 when the @samp{volume} command is sent
2705
2706 @item frame
2707 evaluate expression for each incoming frame
2708 @end table
2709
2710 Default value is @samp{once}.
2711 @end table
2712
2713 The volume expression can contain the following parameters.
2714
2715 @table @option
2716 @item n
2717 frame number (starting at zero)
2718 @item nb_channels
2719 number of channels
2720 @item nb_consumed_samples
2721 number of samples consumed by the filter
2722 @item nb_samples
2723 number of samples in the current frame
2724 @item pos
2725 original frame position in the file
2726 @item pts
2727 frame PTS
2728 @item sample_rate
2729 sample rate
2730 @item startpts
2731 PTS at start of stream
2732 @item startt
2733 time at start of stream
2734 @item t
2735 frame time
2736 @item tb
2737 timestamp timebase
2738 @item volume
2739 last set volume value
2740 @end table
2741
2742 Note that when @option{eval} is set to @samp{once} only the
2743 @var{sample_rate} and @var{tb} variables are available, all other
2744 variables will evaluate to NAN.
2745
2746 @subsection Commands
2747
2748 This filter supports the following commands:
2749 @table @option
2750 @item volume
2751 Modify the volume expression.
2752 The command accepts the same syntax of the corresponding option.
2753
2754 If the specified expression is not valid, it is kept at its current
2755 value.
2756 @item replaygain_noclip
2757 Prevent clipping by limiting the gain applied.
2758
2759 Default value for @var{replaygain_noclip} is 1.
2760
2761 @end table
2762
2763 @subsection Examples
2764
2765 @itemize
2766 @item
2767 Halve the input audio volume:
2768 @example
2769 volume=volume=0.5
2770 volume=volume=1/2
2771 volume=volume=-6.0206dB
2772 @end example
2773
2774 In all the above example the named key for @option{volume} can be
2775 omitted, for example like in:
2776 @example
2777 volume=0.5
2778 @end example
2779
2780 @item
2781 Increase input audio power by 6 decibels using fixed-point precision:
2782 @example
2783 volume=volume=6dB:precision=fixed
2784 @end example
2785
2786 @item
2787 Fade volume after time 10 with an annihilation period of 5 seconds:
2788 @example
2789 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
2790 @end example
2791 @end itemize
2792
2793 @section volumedetect
2794
2795 Detect the volume of the input video.
2796
2797 The filter has no parameters. The input is not modified. Statistics about
2798 the volume will be printed in the log when the input stream end is reached.
2799
2800 In particular it will show the mean volume (root mean square), maximum
2801 volume (on a per-sample basis), and the beginning of a histogram of the
2802 registered volume values (from the maximum value to a cumulated 1/1000 of
2803 the samples).
2804
2805 All volumes are in decibels relative to the maximum PCM value.
2806
2807 @subsection Examples
2808
2809 Here is an excerpt of the output:
2810 @example
2811 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
2812 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
2813 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
2814 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
2815 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
2816 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
2817 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
2818 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
2819 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
2820 @end example
2821
2822 It means that:
2823 @itemize
2824 @item
2825 The mean square energy is approximately -27 dB, or 10^-2.7.
2826 @item
2827 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
2828 @item
2829 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
2830 @end itemize
2831
2832 In other words, raising the volume by +4 dB does not cause any clipping,
2833 raising it by +5 dB causes clipping for 6 samples, etc.
2834
2835 @c man end AUDIO FILTERS
2836
2837 @chapter Audio Sources
2838 @c man begin AUDIO SOURCES
2839
2840 Below is a description of the currently available audio sources.
2841
2842 @section abuffer
2843
2844 Buffer audio frames, and make them available to the filter chain.
2845
2846 This source is mainly intended for a programmatic use, in particular
2847 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
2848
2849 It accepts the following parameters:
2850 @table @option
2851
2852 @item time_base
2853 The timebase which will be used for timestamps of submitted frames. It must be
2854 either a floating-point number or in @var{numerator}/@var{denominator} form.
2855
2856 @item sample_rate
2857 The sample rate of the incoming audio buffers.
2858
2859 @item sample_fmt
2860 The sample format of the incoming audio buffers.
2861 Either a sample format name or its corresponding integer representation from
2862 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
2863
2864 @item channel_layout
2865 The channel layout of the incoming audio buffers.
2866 Either a channel layout name from channel_layout_map in
2867 @file{libavutil/channel_layout.c} or its corresponding integer representation
2868 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
2869
2870 @item channels
2871 The number of channels of the incoming audio buffers.
2872 If both @var{channels} and @var{channel_layout} are specified, then they
2873 must be consistent.
2874
2875 @end table
2876
2877 @subsection Examples
2878
2879 @example
2880 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
2881 @end example
2882
2883 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
2884 Since the sample format with name "s16p" corresponds to the number
2885 6 and the "stereo" channel layout corresponds to the value 0x3, this is
2886 equivalent to:
2887 @example
2888 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
2889 @end example
2890
2891 @section aevalsrc
2892
2893 Generate an audio signal specified by an expression.
2894
2895 This source accepts in input one or more expressions (one for each
2896 channel), which are evaluated and used to generate a corresponding
2897 audio signal.
2898
2899 This source accepts the following options:
2900
2901 @table @option
2902 @item exprs
2903 Set the '|'-separated expressions list for each separate channel. In case the
2904 @option{channel_layout} option is not specified, the selected channel layout
2905 depends on the number of provided expressions. Otherwise the last
2906 specified expression is applied to the remaining output channels.
2907
2908 @item channel_layout, c
2909 Set the channel layout. The number of channels in the specified layout
2910 must be equal to the number of specified expressions.
2911
2912 @item duration, d
2913 Set the minimum duration of the sourced audio. See
2914 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2915 for the accepted syntax.
2916 Note that the resulting duration may be greater than the specified
2917 duration, as the generated audio is always cut at the end of a
2918 complete frame.
2919
2920 If not specified, or the expressed duration is negative, the audio is
2921 supposed to be generated forever.
2922
2923 @item nb_samples, n
2924 Set the number of samples per channel per each output frame,
2925 default to 1024.
2926
2927 @item sample_rate, s
2928 Specify the sample rate, default to 44100.
2929 @end table
2930
2931 Each expression in @var{exprs} can contain the following constants:
2932
2933 @table @option
2934 @item n
2935 number of the evaluated sample, starting from 0
2936
2937 @item t
2938 time of the evaluated sample expressed in seconds, starting from 0
2939
2940 @item s
2941 sample rate
2942
2943 @end table
2944
2945 @subsection Examples
2946
2947 @itemize
2948 @item
2949 Generate silence:
2950 @example
2951 aevalsrc=0
2952 @end example
2953
2954 @item
2955 Generate a sin signal with frequency of 440 Hz, set sample rate to
2956 8000 Hz:
2957 @example
2958 aevalsrc="sin(440*2*PI*t):s=8000"
2959 @end example
2960
2961 @item
2962 Generate a two channels signal, specify the channel layout (Front
2963 Center + Back Center) explicitly:
2964 @example
2965 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
2966 @end example
2967
2968 @item
2969 Generate white noise:
2970 @example
2971 aevalsrc="-2+random(0)"
2972 @end example
2973
2974 @item
2975 Generate an amplitude modulated signal:
2976 @example
2977 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
2978 @end example
2979
2980 @item
2981 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
2982 @example
2983 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
2984 @end example
2985
2986 @end itemize
2987
2988 @section anullsrc
2989
2990 The null audio source, return unprocessed audio frames. It is mainly useful
2991 as a template and to be employed in analysis / debugging tools, or as
2992 the source for filters which ignore the input data (for example the sox
2993 synth filter).
2994
2995 This source accepts the following options:
2996
2997 @table @option
2998
2999 @item channel_layout, cl
3000
3001 Specifies the channel layout, and can be either an integer or a string
3002 representing a channel layout. The default value of @var{channel_layout}
3003 is "stereo".
3004
3005 Check the channel_layout_map definition in
3006 @file{libavutil/channel_layout.c} for the mapping between strings and
3007 channel layout values.
3008
3009 @item sample_rate, r
3010 Specifies the sample rate, and defaults to 44100.
3011
3012 @item nb_samples, n
3013 Set the number of samples per requested frames.
3014
3015 @end table
3016
3017 @subsection Examples
3018
3019 @itemize
3020 @item
3021 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
3022 @example
3023 anullsrc=r=48000:cl=4
3024 @end example
3025
3026 @item
3027 Do the same operation with a more obvious syntax:
3028 @example
3029 anullsrc=r=48000:cl=mono
3030 @end example
3031 @end itemize
3032
3033 All the parameters need to be explicitly defined.
3034
3035 @section flite
3036
3037 Synthesize a voice utterance using the libflite library.
3038
3039 To enable compilation of this filter you need to configure FFmpeg with
3040 @code{--enable-libflite}.
3041
3042 Note that the flite library is not thread-safe.
3043
3044 The filter accepts the following options:
3045
3046 @table @option
3047
3048 @item list_voices
3049 If set to 1, list the names of the available voices and exit
3050 immediately. Default value is 0.
3051
3052 @item nb_samples, n
3053 Set the maximum number of samples per frame. Default value is 512.
3054
3055 @item textfile
3056 Set the filename containing the text to speak.
3057
3058 @item text
3059 Set the text to speak.
3060
3061 @item voice, v
3062 Set the voice to use for the speech synthesis. Default value is
3063 @code{kal}. See also the @var{list_voices} option.
3064 @end table
3065
3066 @subsection Examples
3067
3068 @itemize
3069 @item
3070 Read from file @file{speech.txt}, and synthesize the text using the
3071 standard flite voice:
3072 @example
3073 flite=textfile=speech.txt
3074 @end example
3075
3076 @item
3077 Read the specified text selecting the @code{slt} voice:
3078 @example
3079 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
3080 @end example
3081
3082 @item
3083 Input text to ffmpeg:
3084 @example
3085 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
3086 @end example
3087
3088 @item
3089 Make @file{ffplay} speak the specified text, using @code{flite} and
3090 the @code{lavfi} device:
3091 @example
3092 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
3093 @end example
3094 @end itemize
3095
3096 For more information about libflite, check:
3097 @url{http://www.speech.cs.cmu.edu/flite/}
3098
3099 @section sine
3100
3101 Generate an audio signal made of a sine wave with amplitude 1/8.
3102
3103 The audio signal is bit-exact.
3104
3105 The filter accepts the following options:
3106
3107 @table @option
3108
3109 @item frequency, f
3110 Set the carrier frequency. Default is 440 Hz.
3111
3112 @item beep_factor, b
3113 Enable a periodic beep every second with frequency @var{beep_factor} times
3114 the carrier frequency. Default is 0, meaning the beep is disabled.
3115
3116 @item sample_rate, r
3117 Specify the sample rate, default is 44100.
3118
3119 @item duration, d
3120 Specify the duration of the generated audio stream.
3121
3122 @item samples_per_frame
3123 Set the number of samples per output frame.
3124
3125 The expression can contain the following constants:
3126
3127 @table @option
3128 @item n
3129 The (sequential) number of the output audio frame, starting from 0.
3130
3131 @item pts
3132 The PTS (Presentation TimeStamp) of the output audio frame,
3133 expressed in @var{TB} units.
3134
3135 @item t
3136 The PTS of the output audio frame, expressed in seconds.
3137
3138 @item TB
3139 The timebase of the output audio frames.
3140 @end table
3141
3142 Default is @code{1024}.
3143 @end table
3144
3145 @subsection Examples
3146
3147 @itemize
3148
3149 @item
3150 Generate a simple 440 Hz sine wave:
3151 @example
3152 sine
3153 @end example
3154
3155 @item
3156 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
3157 @example
3158 sine=220:4:d=5
3159 sine=f=220:b=4:d=5
3160 sine=frequency=220:beep_factor=4:duration=5
3161 @end example
3162
3163 @item
3164 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
3165 pattern:
3166 @example
3167 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
3168 @end example
3169 @end itemize
3170
3171 @c man end AUDIO SOURCES
3172
3173 @chapter Audio Sinks
3174 @c man begin AUDIO SINKS
3175
3176 Below is a description of the currently available audio sinks.
3177
3178 @section abuffersink
3179
3180 Buffer audio frames, and make them available to the end of filter chain.
3181
3182 This sink is mainly intended for programmatic use, in particular
3183 through the interface defined in @file{libavfilter/buffersink.h}
3184 or the options system.
3185
3186 It accepts a pointer to an AVABufferSinkContext structure, which
3187 defines the incoming buffers' formats, to be passed as the opaque
3188 parameter to @code{avfilter_init_filter} for initialization.
3189 @section anullsink
3190
3191 Null audio sink; do absolutely nothing with the input audio. It is
3192 mainly useful as a template and for use in analysis / debugging
3193 tools.
3194
3195 @c man end AUDIO SINKS
3196
3197 @chapter Video Filters
3198 @c man begin VIDEO FILTERS
3199
3200 When you configure your FFmpeg build, you can disable any of the
3201 existing filters using @code{--disable-filters}.
3202 The configure output will show the video filters included in your
3203 build.
3204
3205 Below is a description of the currently available video filters.
3206
3207 @section alphaextract
3208
3209 Extract the alpha component from the input as a grayscale video. This
3210 is especially useful with the @var{alphamerge} filter.
3211
3212 @section alphamerge
3213
3214 Add or replace the alpha component of the primary input with the
3215 grayscale value of a second input. This is intended for use with
3216 @var{alphaextract} to allow the transmission or storage of frame
3217 sequences that have alpha in a format that doesn't support an alpha
3218 channel.
3219
3220 For example, to reconstruct full frames from a normal YUV-encoded video
3221 and a separate video created with @var{alphaextract}, you might use:
3222 @example
3223 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
3224 @end example
3225
3226 Since this filter is designed for reconstruction, it operates on frame
3227 sequences without considering timestamps, and terminates when either
3228 input reaches end of stream. This will cause problems if your encoding
3229 pipeline drops frames. If you're trying to apply an image as an
3230 overlay to a video stream, consider the @var{overlay} filter instead.
3231
3232 @section ass
3233
3234 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
3235 and libavformat to work. On the other hand, it is limited to ASS (Advanced
3236 Substation Alpha) subtitles files.
3237
3238 This filter accepts the following option in addition to the common options from
3239 the @ref{subtitles} filter:
3240
3241 @table @option
3242 @item shaping
3243 Set the shaping engine
3244
3245 Available values are:
3246 @table @samp
3247 @item auto
3248 The default libass shaping engine, which is the best available.
3249 @item simple
3250 Fast, font-agnostic shaper that can do only substitutions
3251 @item complex
3252 Slower shaper using OpenType for substitutions and positioning
3253 @end table
3254
3255 The default is @code{auto}.
3256 @end table
3257
3258 @section atadenoise
3259 Apply an Adaptive Temporal Averaging Denoiser to the video input.
3260
3261 The filter accepts the following options:
3262
3263 @table @option
3264 @item 0a
3265 Set threshold A for 1st plane. Default is 0.02.
3266 Valid range is 0 to 0.3.
3267
3268 @item 0b
3269 Set threshold B for 1st plane. Default is 0.04.
3270 Valid range is 0 to 5.
3271
3272 @item 1a
3273 Set threshold A for 2nd plane. Default is 0.02.
3274 Valid range is 0 to 0.3.
3275
3276 @item 1b
3277 Set threshold B for 2nd plane. Default is 0.04.
3278 Valid range is 0 to 5.
3279
3280 @item 2a
3281 Set threshold A for 3rd plane. Default is 0.02.
3282 Valid range is 0 to 0.3.
3283
3284 @item 2b
3285 Set threshold B for 3rd plane. Default is 0.04.
3286 Valid range is 0 to 5.
3287
3288 Threshold A is designed to react on abrupt changes in the input signal and
3289 threshold B is designed to react on continuous changes in the input signal.
3290
3291 @item s
3292 Set number of frames filter will use for averaging. Default is 33. Must be odd
3293 number in range [5, 129].
3294 @end table
3295
3296 @section bbox
3297
3298 Compute the bounding box for the non-black pixels in the input frame
3299 luminance plane.
3300
3301 This filter computes the bounding box containing all the pixels with a
3302 luminance value greater than the minimum allowed value.
3303 The parameters describing the bounding box are printed on the filter
3304 log.
3305
3306 The filter accepts the following option:
3307
3308 @table @option
3309 @item min_val
3310 Set the minimal luminance value. Default is @code{16}.
3311 @end table
3312
3313 @section blackdetect
3314
3315 Detect video intervals that are (almost) completely black. Can be
3316 useful to detect chapter transitions, commercials, or invalid
3317 recordings. Output lines contains the time for the start, end and
3318 duration of the detected black interval expressed in seconds.
3319
3320 In order to display the output lines, you need to set the loglevel at
3321 least to the AV_LOG_INFO value.
3322
3323 The filter accepts the following options:
3324
3325 @table @option
3326 @item black_min_duration, d
3327 Set the minimum detected black duration expressed in seconds. It must
3328 be a non-negative floating point number.
3329
3330 Default value is 2.0.
3331
3332 @item picture_black_ratio_th, pic_th
3333 Set the threshold for considering a picture "black".
3334 Express the minimum value for the ratio:
3335 @example
3336 @var{nb_black_pixels} / @var{nb_pixels}
3337 @end example
3338
3339 for which a picture is considered black.
3340 Default value is 0.98.
3341
3342 @item pixel_black_th, pix_th
3343 Set the threshold for considering a pixel "black".
3344
3345 The threshold expresses the maximum pixel luminance value for which a
3346 pixel is considered "black". The provided value is scaled according to
3347 the following equation:
3348 @example
3349 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
3350 @end example
3351
3352 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
3353 the input video format, the range is [0-255] for YUV full-range
3354 formats and [16-235] for YUV non full-range formats.
3355
3356 Default value is 0.10.
3357 @end table
3358
3359 The following example sets the maximum pixel threshold to the minimum
3360 value, and detects only black intervals of 2 or more seconds:
3361 @example
3362 blackdetect=d=2:pix_th=0.00
3363 @end example
3364
3365 @section blackframe
3366
3367 Detect frames that are (almost) completely black. Can be useful to
3368 detect chapter transitions or commercials. Output lines consist of
3369 the frame number of the detected frame, the percentage of blackness,
3370 the position in the file if known or -1 and the timestamp in seconds.
3371
3372 In order to display the output lines, you need to set the loglevel at
3373 least to the AV_LOG_INFO value.
3374
3375 It accepts the following parameters:
3376
3377 @table @option
3378
3379 @item amount
3380 The percentage of the pixels that have to be below the threshold; it defaults to
3381 @code{98}.
3382
3383 @item threshold, thresh
3384 The threshold below which a pixel value is considered black; it defaults to
3385 @code{32}.
3386
3387 @end table
3388
3389 @section blend, tblend
3390
3391 Blend two video frames into each other.
3392
3393 The @code{blend} filter takes two input streams and outputs one
3394 stream, the first input is the "top" layer and second input is
3395 "bottom" layer.  Output terminates when shortest input terminates.
3396
3397 The @code{tblend} (time blend) filter takes two consecutive frames
3398 from one single stream, and outputs the result obtained by blending
3399 the new frame on top of the old frame.
3400
3401 A description of the accepted options follows.
3402
3403 @table @option
3404 @item c0_mode
3405 @item c1_mode
3406 @item c2_mode
3407 @item c3_mode
3408 @item all_mode
3409 Set blend mode for specific pixel component or all pixel components in case
3410 of @var{all_mode}. Default value is @code{normal}.
3411
3412 Available values for component modes are:
3413 @table @samp
3414 @item addition
3415 @item and
3416 @item average
3417 @item burn
3418 @item darken
3419 @item difference
3420 @item difference128
3421 @item divide
3422 @item dodge
3423 @item exclusion
3424 @item glow
3425 @item hardlight
3426 @item hardmix
3427 @item lighten
3428 @item linearlight
3429 @item multiply
3430 @item negation
3431 @item normal
3432 @item or
3433 @item overlay
3434 @item phoenix
3435 @item pinlight
3436 @item reflect
3437 @item screen
3438 @item softlight
3439 @item subtract
3440 @item vividlight
3441 @item xor
3442 @end table
3443
3444 @item c0_opacity
3445 @item c1_opacity
3446 @item c2_opacity
3447 @item c3_opacity
3448 @item all_opacity
3449 Set blend opacity for specific pixel component or all pixel components in case
3450 of @var{all_opacity}. Only used in combination with pixel component blend modes.
3451
3452 @item c0_expr
3453 @item c1_expr
3454 @item c2_expr
3455 @item c3_expr
3456 @item all_expr
3457 Set blend expression for specific pixel component or all pixel components in case
3458 of @var{all_expr}. Note that related mode options will be ignored if those are set.
3459
3460 The expressions can use the following variables:
3461
3462 @table @option
3463 @item N
3464 The sequential number of the filtered frame, starting from @code{0}.
3465
3466 @item X
3467 @item Y
3468 the coordinates of the current sample
3469
3470 @item W
3471 @item H
3472 the width and height of currently filtered plane
3473
3474 @item SW
3475 @item SH
3476 Width and height scale depending on the currently filtered plane. It is the
3477 ratio between the corresponding luma plane number of pixels and the current
3478 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
3479 @code{0.5,0.5} for chroma planes.
3480
3481 @item T
3482 Time of the current frame, expressed in seconds.
3483
3484 @item TOP, A
3485 Value of pixel component at current location for first video frame (top layer).
3486
3487 @item BOTTOM, B
3488 Value of pixel component at current location for second video frame (bottom layer).
3489 @end table
3490
3491 @item shortest
3492 Force termination when the shortest input terminates. Default is
3493 @code{0}. This option is only defined for the @code{blend} filter.
3494
3495 @item repeatlast
3496 Continue applying the last bottom frame after the end of the stream. A value of
3497 @code{0} disable the filter after the last frame of the bottom layer is reached.
3498 Default is @code{1}. This option is only defined for the @code{blend} filter.
3499 @end table
3500
3501 @subsection Examples
3502
3503 @itemize
3504 @item
3505 Apply transition from bottom layer to top layer in first 10 seconds:
3506 @example
3507 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
3508 @end example
3509
3510 @item
3511 Apply 1x1 checkerboard effect:
3512 @example
3513 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
3514 @end example
3515
3516 @item
3517 Apply uncover left effect:
3518 @example
3519 blend=all_expr='if(gte(N*SW+X,W),A,B)'
3520 @end example
3521
3522 @item
3523 Apply uncover down effect:
3524 @example
3525 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
3526 @end example
3527
3528 @item
3529 Apply uncover up-left effect:
3530 @example
3531 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
3532 @end example
3533
3534 @item
3535 Display differences between the current and the previous frame:
3536 @example
3537 tblend=all_mode=difference128
3538 @end example
3539 @end itemize
3540
3541 @section boxblur
3542
3543 Apply a boxblur algorithm to the input video.
3544
3545 It accepts the following parameters:
3546
3547 @table @option
3548
3549 @item luma_radius, lr
3550 @item luma_power, lp
3551 @item chroma_radius, cr
3552 @item chroma_power, cp
3553 @item alpha_radius, ar
3554 @item alpha_power, ap
3555
3556 @end table
3557
3558 A description of the accepted options follows.
3559
3560 @table @option
3561 @item luma_radius, lr
3562 @item chroma_radius, cr
3563 @item alpha_radius, ar
3564 Set an expression for the box radius in pixels used for blurring the
3565 corresponding input plane.
3566
3567 The radius value must be a non-negative number, and must not be
3568 greater than the value of the expression @code{min(w,h)/2} for the
3569 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
3570 planes.
3571
3572 Default value for @option{luma_radius} is "2". If not specified,
3573 @option{chroma_radius} and @option{alpha_radius} default to the
3574 corresponding value set for @option{luma_radius}.
3575
3576 The expressions can contain the following constants:
3577 @table @option
3578 @item w
3579 @item h
3580 The input width and height in pixels.
3581
3582 @item cw
3583 @item ch
3584 The input chroma image width and height in pixels.
3585
3586 @item hsub
3587 @item vsub
3588 The horizontal and vertical chroma subsample values. For example, for the
3589 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
3590 @end table
3591
3592 @item luma_power, lp
3593 @item chroma_power, cp
3594 @item alpha_power, ap
3595 Specify how many times the boxblur filter is applied to the
3596 corresponding plane.
3597
3598 Default value for @option{luma_power} is 2. If not specified,
3599 @option{chroma_power} and @option{alpha_power} default to the
3600 corresponding value set for @option{luma_power}.
3601
3602 A value of 0 will disable the effect.
3603 @end table
3604
3605 @subsection Examples
3606
3607 @itemize
3608 @item
3609 Apply a boxblur filter with the luma, chroma, and alpha radii
3610 set to 2:
3611 @example
3612 boxblur=luma_radius=2:luma_power=1
3613 boxblur=2:1
3614 @end example
3615
3616 @item
3617 Set the luma radius to 2, and alpha and chroma radius to 0:
3618 @example
3619 boxblur=2:1:cr=0:ar=0
3620 @end example
3621
3622 @item
3623 Set the luma and chroma radii to a fraction of the video dimension:
3624 @example
3625 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
3626 @end example
3627 @end itemize
3628
3629 @section codecview
3630
3631 Visualize information exported by some codecs.
3632
3633 Some codecs can export information through frames using side-data or other
3634 means. For example, some MPEG based codecs export motion vectors through the
3635 @var{export_mvs} flag in the codec @option{flags2} option.
3636
3637 The filter accepts the following option:
3638
3639 @table @option
3640 @item mv
3641 Set motion vectors to visualize.
3642
3643 Available flags for @var{mv} are:
3644
3645 @table @samp
3646 @item pf
3647 forward predicted MVs of P-frames
3648 @item bf
3649 forward predicted MVs of B-frames
3650 @item bb
3651 backward predicted MVs of B-frames
3652 @end table
3653 @end table
3654
3655 @subsection Examples
3656
3657 @itemize
3658 @item
3659 Visualizes multi-directionals MVs from P and B-Frames using @command{ffplay}:
3660 @example
3661 ffplay -flags2 +export_mvs input.mpg -vf codecview=mv=pf+bf+bb
3662 @end example
3663 @end itemize
3664
3665 @section colorbalance
3666 Modify intensity of primary colors (red, green and blue) of input frames.
3667
3668 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
3669 regions for the red-cyan, green-magenta or blue-yellow balance.
3670
3671 A positive adjustment value shifts the balance towards the primary color, a negative
3672 value towards the complementary color.
3673
3674 The filter accepts the following options:
3675
3676 @table @option
3677 @item rs
3678 @item gs
3679 @item bs
3680 Adjust red, green and blue shadows (darkest pixels).
3681
3682 @item rm
3683 @item gm
3684 @item bm
3685 Adjust red, green and blue midtones (medium pixels).
3686
3687 @item rh
3688 @item gh
3689 @item bh
3690 Adjust red, green and blue highlights (brightest pixels).
3691
3692 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
3693 @end table
3694
3695 @subsection Examples
3696
3697 @itemize
3698 @item
3699 Add red color cast to shadows:
3700 @example
3701 colorbalance=rs=.3
3702 @end example
3703 @end itemize
3704
3705 @section colorkey
3706 RGB colorspace color keying.
3707
3708 The filter accepts the following options:
3709
3710 @table @option
3711 @item color
3712 The color which will be replaced with transparency.
3713
3714 @item similarity
3715 Similarity percentage with the key color.
3716
3717 0.01 matches only the exact key color, while 1.0 matches everything.
3718
3719 @item blend
3720 Blend percentage.
3721
3722 0.0 makes pixels either fully transparent, or not transparent at all.
3723
3724 Higher values result in semi-transparent pixels, with a higher transparency
3725 the more similar the pixels color is to the key color.
3726 @end table
3727
3728 @subsection Examples
3729
3730 @itemize
3731 @item
3732 Make every green pixel in the input image transparent:
3733 @example
3734 ffmpeg -i input.png -vf colorkey=green out.png
3735 @end example
3736
3737 @item
3738 Overlay a greenscreen-video on top of a static background image.
3739 @example
3740 ffmpeg -i background.png -i video.mp4 -filter_complex "[1:v]colorkey=0x3BBD1E:0.3:0.2[ckout];[0:v][ckout]overlay[out]" -map "[out]" output.flv
3741 @end example
3742 @end itemize
3743
3744 @section colorlevels
3745
3746 Adjust video input frames using levels.
3747
3748 The filter accepts the following options:
3749
3750 @table @option
3751 @item rimin
3752 @item gimin
3753 @item bimin
3754 @item aimin
3755 Adjust red, green, blue and alpha input black point.
3756 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
3757
3758 @item rimax
3759 @item gimax
3760 @item bimax
3761 @item aimax
3762 Adjust red, green, blue and alpha input white point.
3763 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
3764
3765 Input levels are used to lighten highlights (bright tones), darken shadows
3766 (dark tones), change the balance of bright and dark tones.
3767
3768 @item romin
3769 @item gomin
3770 @item bomin
3771 @item aomin
3772 Adjust red, green, blue and alpha output black point.
3773 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
3774
3775 @item romax
3776 @item gomax
3777 @item bomax
3778 @item aomax
3779 Adjust red, green, blue and alpha output white point.
3780 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
3781
3782 Output levels allows manual selection of a constrained output level range.
3783 @end table
3784
3785 @subsection Examples
3786
3787 @itemize
3788 @item
3789 Make video output darker:
3790 @example
3791 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
3792 @end example
3793
3794 @item
3795 Increase contrast:
3796 @example
3797 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
3798 @end example
3799
3800 @item
3801 Make video output lighter:
3802 @example
3803 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
3804 @end example
3805
3806 @item
3807 Increase brightness:
3808 @example
3809 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
3810 @end example
3811 @end itemize
3812
3813 @section colorchannelmixer
3814
3815 Adjust video input frames by re-mixing color channels.
3816
3817 This filter modifies a color channel by adding the values associated to
3818 the other channels of the same pixels. For example if the value to
3819 modify is red, the output value will be:
3820 @example
3821 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
3822 @end example
3823
3824 The filter accepts the following options:
3825
3826 @table @option
3827 @item rr
3828 @item rg
3829 @item rb
3830 @item ra
3831 Adjust contribution of input red, green, blue and alpha channels for output red channel.
3832 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
3833
3834 @item gr
3835 @item gg
3836 @item gb
3837 @item ga
3838 Adjust contribution of input red, green, blue and alpha channels for output green channel.
3839 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
3840
3841 @item br
3842 @item bg
3843 @item bb
3844 @item ba
3845 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
3846 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
3847
3848 @item ar
3849 @item ag
3850 @item ab
3851 @item aa
3852 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
3853 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
3854
3855 Allowed ranges for options are @code{[-2.0, 2.0]}.
3856 @end table
3857
3858 @subsection Examples
3859
3860 @itemize
3861 @item
3862 Convert source to grayscale:
3863 @example
3864 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
3865 @end example
3866 @item
3867 Simulate sepia tones:
3868 @example
3869 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
3870 @end example
3871 @end itemize
3872
3873 @section colormatrix
3874
3875 Convert color matrix.
3876
3877 The filter accepts the following options:
3878
3879 @table @option
3880 @item src
3881 @item dst
3882 Specify the source and destination color matrix. Both values must be
3883 specified.
3884
3885 The accepted values are:
3886 @table @samp
3887 @item bt709
3888 BT.709
3889
3890 @item bt601
3891 BT.601
3892
3893 @item smpte240m
3894 SMPTE-240M
3895
3896 @item fcc
3897 FCC
3898 @end table
3899 @end table
3900
3901 For example to convert from BT.601 to SMPTE-240M, use the command:
3902 @example
3903 colormatrix=bt601:smpte240m
3904 @end example
3905
3906 @section copy
3907
3908 Copy the input source unchanged to the output. This is mainly useful for
3909 testing purposes.
3910
3911 @section crop
3912
3913 Crop the input video to given dimensions.
3914
3915 It accepts the following parameters:
3916
3917 @table @option
3918 @item w, out_w
3919 The width of the output video. It defaults to @code{iw}.
3920 This expression is evaluated only once during the filter
3921 configuration, or when the @samp{w} or @samp{out_w} command is sent.
3922
3923 @item h, out_h
3924 The height of the output video. It defaults to @code{ih}.
3925 This expression is evaluated only once during the filter
3926 configuration, or when the @samp{h} or @samp{out_h} command is sent.
3927
3928 @item x
3929 The horizontal position, in the input video, of the left edge of the output
3930 video. It defaults to @code{(in_w-out_w)/2}.
3931 This expression is evaluated per-frame.
3932
3933 @item y
3934 The vertical position, in the input video, of the top edge of the output video.
3935 It defaults to @code{(in_h-out_h)/2}.
3936 This expression is evaluated per-frame.
3937
3938 @item keep_aspect
3939 If set to 1 will force the output display aspect ratio
3940 to be the same of the input, by changing the output sample aspect
3941 ratio. It defaults to 0.
3942 @end table
3943
3944 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
3945 expressions containing the following constants:
3946
3947 @table @option
3948 @item x
3949 @item y
3950 The computed values for @var{x} and @var{y}. They are evaluated for
3951 each new frame.
3952
3953 @item in_w
3954 @item in_h
3955 The input width and height.
3956
3957 @item iw
3958 @item ih
3959 These are the same as @var{in_w} and @var{in_h}.
3960
3961 @item out_w
3962 @item out_h
3963 The output (cropped) width and height.
3964
3965 @item ow
3966 @item oh
3967 These are the same as @var{out_w} and @var{out_h}.
3968
3969 @item a
3970 same as @var{iw} / @var{ih}
3971
3972 @item sar
3973 input sample aspect ratio
3974
3975 @item dar
3976 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
3977
3978 @item hsub
3979 @item vsub
3980 horizontal and vertical chroma subsample values. For example for the
3981 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
3982
3983 @item n
3984 The number of the input frame, starting from 0.
3985
3986 @item pos
3987 the position in the file of the input frame, NAN if unknown
3988
3989 @item t
3990 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
3991
3992 @end table
3993
3994 The expression for @var{out_w} may depend on the value of @var{out_h},
3995 and the expression for @var{out_h} may depend on @var{out_w}, but they
3996 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
3997 evaluated after @var{out_w} and @var{out_h}.
3998
3999 The @var{x} and @var{y} parameters specify the expressions for the
4000 position of the top-left corner of the output (non-cropped) area. They
4001 are evaluated for each frame. If the evaluated value is not valid, it
4002 is approximated to the nearest valid value.
4003
4004 The expression for @var{x} may depend on @var{y}, and the expression
4005 for @var{y} may depend on @var{x}.
4006
4007 @subsection Examples
4008
4009 @itemize
4010 @item
4011 Crop area with size 100x100 at position (12,34).
4012 @example
4013 crop=100:100:12:34
4014 @end example
4015
4016 Using named options, the example above becomes:
4017 @example
4018 crop=w=100:h=100:x=12:y=34
4019 @end example
4020
4021 @item
4022 Crop the central input area with size 100x100:
4023 @example
4024 crop=100:100
4025 @end example
4026
4027 @item
4028 Crop the central input area with size 2/3 of the input video:
4029 @example
4030 crop=2/3*in_w:2/3*in_h
4031 @end example
4032
4033 @item
4034 Crop the input video central square:
4035 @example
4036 crop=out_w=in_h
4037 crop=in_h
4038 @end example
4039
4040 @item
4041 Delimit the rectangle with the top-left corner placed at position
4042 100:100 and the right-bottom corner corresponding to the right-bottom
4043 corner of the input image.
4044 @example
4045 crop=in_w-100:in_h-100:100:100
4046 @end example
4047
4048 @item
4049 Crop 10 pixels from the left and right borders, and 20 pixels from
4050 the top and bottom borders
4051 @example
4052 crop=in_w-2*10:in_h-2*20
4053 @end example
4054
4055 @item
4056 Keep only the bottom right quarter of the input image:
4057 @example
4058 crop=in_w/2:in_h/2:in_w/2:in_h/2
4059 @end example
4060
4061 @item
4062 Crop height for getting Greek harmony:
4063 @example
4064 crop=in_w:1/PHI*in_w
4065 @end example
4066
4067 @item
4068 Apply trembling effect:
4069 @example
4070 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)
4071 @end example
4072
4073 @item
4074 Apply erratic camera effect depending on timestamp:
4075 @example
4076 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)"
4077 @end example
4078
4079 @item
4080 Set x depending on the value of y:
4081 @example
4082 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
4083 @end example
4084 @end itemize
4085
4086 @subsection Commands
4087
4088 This filter supports the following commands:
4089 @table @option
4090 @item w, out_w
4091 @item h, out_h
4092 @item x
4093 @item y
4094 Set width/height of the output video and the horizontal/vertical position
4095 in the input video.
4096 The command accepts the same syntax of the corresponding option.
4097
4098 If the specified expression is not valid, it is kept at its current
4099 value.
4100 @end table
4101
4102 @section cropdetect
4103
4104 Auto-detect the crop size.
4105
4106 It calculates the necessary cropping parameters and prints the
4107 recommended parameters via the logging system. The detected dimensions
4108 correspond to the non-black area of the input video.
4109
4110 It accepts the following parameters:
4111
4112 @table @option
4113
4114 @item limit
4115 Set higher black value threshold, which can be optionally specified
4116 from nothing (0) to everything (255 for 8bit based formats). An intensity
4117 value greater to the set value is considered non-black. It defaults to 24.
4118 You can also specify a value between 0.0 and 1.0 which will be scaled depending
4119 on the bitdepth of the pixel format.
4120
4121 @item round
4122 The value which the width/height should be divisible by. It defaults to
4123 16. The offset is automatically adjusted to center the video. Use 2 to
4124 get only even dimensions (needed for 4:2:2 video). 16 is best when
4125 encoding to most video codecs.
4126
4127 @item reset_count, reset
4128 Set the counter that determines after how many frames cropdetect will
4129 reset the previously detected largest video area and start over to
4130 detect the current optimal crop area. Default value is 0.
4131
4132 This can be useful when channel logos distort the video area. 0
4133 indicates 'never reset', and returns the largest area encountered during
4134 playback.
4135 @end table
4136
4137 @anchor{curves}
4138 @section curves
4139
4140 Apply color adjustments using curves.
4141
4142 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
4143 component (red, green and blue) has its values defined by @var{N} key points
4144 tied from each other using a smooth curve. The x-axis represents the pixel
4145 values from the input frame, and the y-axis the new pixel values to be set for
4146 the output frame.
4147
4148 By default, a component curve is defined by the two points @var{(0;0)} and
4149 @var{(1;1)}. This creates a straight line where each original pixel value is
4150 "adjusted" to its own value, which means no change to the image.
4151
4152 The filter allows you to redefine these two points and add some more. A new
4153 curve (using a natural cubic spline interpolation) will be define to pass
4154 smoothly through all these new coordinates. The new defined points needs to be
4155 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
4156 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
4157 the vector spaces, the values will be clipped accordingly.
4158
4159 If there is no key point defined in @code{x=0}, the filter will automatically
4160 insert a @var{(0;0)} point. In the same way, if there is no key point defined
4161 in @code{x=1}, the filter will automatically insert a @var{(1;1)} point.
4162
4163 The filter accepts the following options:
4164
4165 @table @option
4166 @item preset
4167 Select one of the available color presets. This option can be used in addition
4168 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
4169 options takes priority on the preset values.
4170 Available presets are:
4171 @table @samp
4172 @item none
4173 @item color_negative
4174 @item cross_process
4175 @item darker
4176 @item increase_contrast
4177 @item lighter
4178 @item linear_contrast
4179 @item medium_contrast
4180 @item negative
4181 @item strong_contrast
4182 @item vintage
4183 @end table
4184 Default is @code{none}.
4185 @item master, m
4186 Set the master key points. These points will define a second pass mapping. It
4187 is sometimes called a "luminance" or "value" mapping. It can be used with
4188 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
4189 post-processing LUT.
4190 @item red, r
4191 Set the key points for the red component.
4192 @item green, g
4193 Set the key points for the green component.
4194 @item blue, b
4195 Set the key points for the blue component.
4196 @item all
4197 Set the key points for all components (not including master).
4198 Can be used in addition to the other key points component
4199 options. In this case, the unset component(s) will fallback on this
4200 @option{all} setting.
4201 @item psfile
4202 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
4203 @end table
4204
4205 To avoid some filtergraph syntax conflicts, each key points list need to be
4206 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
4207
4208 @subsection Examples
4209
4210 @itemize
4211 @item
4212 Increase slightly the middle level of blue:
4213 @example
4214 curves=blue='0.5/0.58'
4215 @end example
4216
4217 @item
4218 Vintage effect:
4219 @example
4220 curves=r='0/0.11 .42/.51 1/0.95':g='0.50/0.48':b='0/0.22 .49/.44 1/0.8'
4221 @end example
4222 Here we obtain the following coordinates for each components:
4223 @table @var
4224 @item red
4225 @code{(0;0.11) (0.42;0.51) (1;0.95)}
4226 @item green
4227 @code{(0;0) (0.50;0.48) (1;1)}
4228 @item blue
4229 @code{(0;0.22) (0.49;0.44) (1;0.80)}
4230 @end table
4231
4232 @item
4233 The previous example can also be achieved with the associated built-in preset:
4234 @example
4235 curves=preset=vintage
4236 @end example
4237
4238 @item
4239 Or simply:
4240 @example
4241 curves=vintage
4242 @end example
4243
4244 @item
4245 Use a Photoshop preset and redefine the points of the green component:
4246 @example
4247 curves=psfile='MyCurvesPresets/purple.acv':green='0.45/0.53'
4248 @end example
4249 @end itemize
4250
4251 @section dctdnoiz
4252
4253 Denoise frames using 2D DCT (frequency domain filtering).
4254
4255 This filter is not designed for real time.
4256
4257 The filter accepts the following options:
4258
4259 @table @option
4260 @item sigma, s
4261 Set the noise sigma constant.
4262
4263 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
4264 coefficient (absolute value) below this threshold with be dropped.
4265
4266 If you need a more advanced filtering, see @option{expr}.
4267
4268 Default is @code{0}.
4269
4270 @item overlap
4271 Set number overlapping pixels for each block. Since the filter can be slow, you
4272 may want to reduce this value, at the cost of a less effective filter and the
4273 risk of various artefacts.
4274
4275 If the overlapping value doesn't permit processing the whole input width or
4276 height, a warning will be displayed and according borders won't be denoised.
4277
4278 Default value is @var{blocksize}-1, which is the best possible setting.
4279
4280 @item expr, e
4281 Set the coefficient factor expression.
4282
4283 For each coefficient of a DCT block, this expression will be evaluated as a
4284 multiplier value for the coefficient.
4285
4286 If this is option is set, the @option{sigma} option will be ignored.
4287
4288 The absolute value of the coefficient can be accessed through the @var{c}
4289 variable.
4290
4291 @item n
4292 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
4293 @var{blocksize}, which is the width and height of the processed blocks.
4294
4295 The default value is @var{3} (8x8) and can be raised to @var{4} for a
4296 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
4297 on the speed processing. Also, a larger block size does not necessarily means a
4298 better de-noising.
4299 @end table
4300
4301 @subsection Examples
4302
4303 Apply a denoise with a @option{sigma} of @code{4.5}:
4304 @example
4305 dctdnoiz=4.5
4306 @end example
4307
4308 The same operation can be achieved using the expression system:
4309 @example
4310 dctdnoiz=e='gte(c, 4.5*3)'
4311 @end example
4312
4313 Violent denoise using a block size of @code{16x16}:
4314 @example
4315 dctdnoiz=15:n=4
4316 @end example
4317
4318 @section deband
4319
4320 Remove banding artifacts from input video.
4321 It works by replacing banded pixels with average value of referenced pixels.
4322
4323 The filter accepts the following options:
4324
4325 @table @option
4326 @item 1thr
4327 @item 2thr
4328 @item 3thr
4329 @item 4thr
4330 Set banding detection threshold for each plane. Default is 0.02.
4331 Valid range is 0.00003 to 0.5.
4332 If difference between current pixel and reference pixel is less than threshold,
4333 it will be considered as banded.
4334
4335 @item range, r
4336 Banding detection range in pixels. Default is 16. If positive, random number
4337 in range 0 to set value will be used. If negative, exact absolute value
4338 will be used.
4339 The range defines square of four pixels around current pixel.
4340
4341 @item direction, d
4342 Set direction in radians from which four pixel will be compared. If positive,
4343 random direction from 0 to set direction will be picked. If negative, exact of
4344 absolute value will be picked. For example direction 0, -PI or -2*PI radians
4345 will pick only pixels on same row and -PI/2 will pick only pixels on same
4346 column.
4347
4348 @item blur
4349 If enabled, current pixel is compared with average value of all four
4350 surrounding pixels. The default is enabled. If disabled current pixel is
4351 compared with all four surrounding pixels. The pixel is considered banded
4352 if only all four differences with surrounding pixels are less than threshold.
4353 @end table
4354
4355 @anchor{decimate}
4356 @section decimate
4357
4358 Drop duplicated frames at regular intervals.
4359
4360 The filter accepts the following options:
4361
4362 @table @option
4363 @item cycle
4364 Set the number of frames from which one will be dropped. Setting this to
4365 @var{N} means one frame in every batch of @var{N} frames will be dropped.
4366 Default is @code{5}.
4367
4368 @item dupthresh
4369 Set the threshold for duplicate detection. If the difference metric for a frame
4370 is less than or equal to this value, then it is declared as duplicate. Default
4371 is @code{1.1}
4372
4373 @item scthresh
4374 Set scene change threshold. Default is @code{15}.
4375
4376 @item blockx
4377 @item blocky
4378 Set the size of the x and y-axis blocks used during metric calculations.
4379 Larger blocks give better noise suppression, but also give worse detection of
4380 small movements. Must be a power of two. Default is @code{32}.
4381
4382 @item ppsrc
4383 Mark main input as a pre-processed input and activate clean source input
4384 stream. This allows the input to be pre-processed with various filters to help
4385 the metrics calculation while keeping the frame selection lossless. When set to
4386 @code{1}, the first stream is for the pre-processed input, and the second
4387 stream is the clean source from where the kept frames are chosen. Default is
4388 @code{0}.
4389
4390 @item chroma
4391 Set whether or not chroma is considered in the metric calculations. Default is
4392 @code{1}.
4393 @end table
4394
4395 @section deflate
4396
4397 Apply deflate effect to the video.
4398
4399 This filter replaces the pixel by the local(3x3) average by taking into account
4400 only values lower than the pixel.
4401
4402 It accepts the following options:
4403
4404 @table @option
4405 @item threshold0
4406 @item threshold1
4407 @item threshold2
4408 @item threshold3
4409 Allows to limit the maximum change for each plane, default is 65535.
4410 If 0, plane will remain unchanged.
4411 @end table
4412
4413 @section dejudder
4414
4415 Remove judder produced by partially interlaced telecined content.
4416
4417 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
4418 source was partially telecined content then the output of @code{pullup,dejudder}
4419 will have a variable frame rate. May change the recorded frame rate of the
4420 container. Aside from that change, this filter will not affect constant frame
4421 rate video.
4422
4423 The option available in this filter is:
4424 @table @option
4425
4426 @item cycle
4427 Specify the length of the window over which the judder repeats.
4428
4429 Accepts any integer greater than 1. Useful values are:
4430 @table @samp
4431
4432 @item 4
4433 If the original was telecined from 24 to 30 fps (Film to NTSC).
4434
4435 @item 5
4436 If the original was telecined from 25 to 30 fps (PAL to NTSC).
4437
4438 @item 20
4439 If a mixture of the two.
4440 @end table
4441
4442 The default is @samp{4}.
4443 @end table
4444
4445 @section delogo
4446
4447 Suppress a TV station logo by a simple interpolation of the surrounding
4448 pixels. Just set a rectangle covering the logo and watch it disappear
4449 (and sometimes something even uglier appear - your mileage may vary).
4450
4451 It accepts the following parameters:
4452 @table @option
4453
4454 @item x
4455 @item y
4456 Specify the top left corner coordinates of the logo. They must be
4457 specified.
4458
4459 @item w
4460 @item h
4461 Specify the width and height of the logo to clear. They must be
4462 specified.
4463
4464 @item band, t
4465 Specify the thickness of the fuzzy edge of the rectangle (added to
4466 @var{w} and @var{h}). The default value is 4.
4467
4468 @item show
4469 When set to 1, a green rectangle is drawn on the screen to simplify
4470 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
4471 The default value is 0.
4472
4473 The rectangle is drawn on the outermost pixels which will be (partly)
4474 replaced with interpolated values. The values of the next pixels
4475 immediately outside this rectangle in each direction will be used to
4476 compute the interpolated pixel values inside the rectangle.
4477
4478 @end table
4479
4480 @subsection Examples
4481
4482 @itemize
4483 @item
4484 Set a rectangle covering the area with top left corner coordinates 0,0
4485 and size 100x77, and a band of size 10:
4486 @example
4487 delogo=x=0:y=0:w=100:h=77:band=10
4488 @end example
4489
4490 @end itemize
4491
4492 @section deshake
4493
4494 Attempt to fix small changes in horizontal and/or vertical shift. This
4495 filter helps remove camera shake from hand-holding a camera, bumping a
4496 tripod, moving on a vehicle, etc.
4497
4498 The filter accepts the following options:
4499
4500 @table @option
4501
4502 @item x
4503 @item y
4504 @item w
4505 @item h
4506 Specify a rectangular area where to limit the search for motion
4507 vectors.
4508 If desired the search for motion vectors can be limited to a
4509 rectangular area of the frame defined by its top left corner, width
4510 and height. These parameters have the same meaning as the drawbox
4511 filter which can be used to visualise the position of the bounding
4512 box.
4513
4514 This is useful when simultaneous movement of subjects within the frame
4515 might be confused for camera motion by the motion vector search.
4516
4517 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
4518 then the full frame is used. This allows later options to be set
4519 without specifying the bounding box for the motion vector search.
4520
4521 Default - search the whole frame.
4522
4523 @item rx
4524 @item ry
4525 Specify the maximum extent of movement in x and y directions in the
4526 range 0-64 pixels. Default 16.
4527
4528 @item edge
4529 Specify how to generate pixels to fill blanks at the edge of the
4530 frame. Available values are:
4531 @table @samp
4532 @item blank, 0
4533 Fill zeroes at blank locations
4534 @item original, 1
4535 Original image at blank locations
4536 @item clamp, 2
4537 Extruded edge value at blank locations
4538 @item mirror, 3
4539 Mirrored edge at blank locations
4540 @end table
4541 Default value is @samp{mirror}.
4542
4543 @item blocksize
4544 Specify the blocksize to use for motion search. Range 4-128 pixels,
4545 default 8.
4546
4547 @item contrast
4548 Specify the contrast threshold for blocks. Only blocks with more than
4549 the specified contrast (difference between darkest and lightest
4550 pixels) will be considered. Range 1-255, default 125.
4551
4552 @item search
4553 Specify the search strategy. Available values are:
4554 @table @samp
4555 @item exhaustive, 0
4556 Set exhaustive search
4557 @item less, 1
4558 Set less exhaustive search.
4559 @end table
4560 Default value is @samp{exhaustive}.
4561
4562 @item filename
4563 If set then a detailed log of the motion search is written to the
4564 specified file.
4565
4566 @item opencl
4567 If set to 1, specify using OpenCL capabilities, only available if
4568 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
4569
4570 @end table
4571
4572 @section detelecine
4573
4574 Apply an exact inverse of the telecine operation. It requires a predefined
4575 pattern specified using the pattern option which must be the same as that passed
4576 to the telecine filter.
4577
4578 This filter accepts the following options:
4579
4580 @table @option
4581 @item first_field
4582 @table @samp
4583 @item top, t
4584 top field first
4585 @item bottom, b
4586 bottom field first
4587 The default value is @code{top}.
4588 @end table
4589
4590 @item pattern
4591 A string of numbers representing the pulldown pattern you wish to apply.
4592 The default value is @code{23}.
4593
4594 @item start_frame
4595 A number representing position of the first frame with respect to the telecine
4596 pattern. This is to be used if the stream is cut. The default value is @code{0}.
4597 @end table
4598
4599 @section dilation
4600
4601 Apply dilation effect to the video.
4602
4603 This filter replaces the pixel by the local(3x3) maximum.
4604
4605 It accepts the following options:
4606
4607 @table @option
4608 @item threshold0
4609 @item threshold1
4610 @item threshold2
4611 @item threshold3
4612 Allows to limit the maximum change for each plane, default is 65535.
4613 If 0, plane will remain unchanged.
4614
4615 @item coordinates
4616 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
4617 pixels are used.
4618
4619 Flags to local 3x3 coordinates maps like this:
4620
4621     1 2 3
4622     4   5
4623     6 7 8
4624 @end table
4625
4626 @section drawbox
4627
4628 Draw a colored box on the input image.
4629
4630 It accepts the following parameters:
4631
4632 @table @option
4633 @item x
4634 @item y
4635 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
4636
4637 @item width, w
4638 @item height, h
4639 The expressions which specify the width and height of the box; if 0 they are interpreted as
4640 the input width and height. It defaults to 0.
4641
4642 @item color, c
4643 Specify the color of the box to write. For the general syntax of this option,
4644 check the "Color" section in the ffmpeg-utils manual. If the special
4645 value @code{invert} is used, the box edge color is the same as the
4646 video with inverted luma.
4647
4648 @item thickness, t
4649 The expression which sets the thickness of the box edge. Default value is @code{3}.
4650
4651 See below for the list of accepted constants.
4652 @end table
4653
4654 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
4655 following constants:
4656
4657 @table @option
4658 @item dar
4659 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
4660
4661 @item hsub
4662 @item vsub
4663 horizontal and vertical chroma subsample values. For example for the
4664 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
4665
4666 @item in_h, ih
4667 @item in_w, iw
4668 The input width and height.
4669
4670 @item sar
4671 The input sample aspect ratio.
4672
4673 @item x
4674 @item y
4675 The x and y offset coordinates where the box is drawn.
4676
4677 @item w
4678 @item h
4679 The width and height of the drawn box.
4680
4681 @item t
4682 The thickness of the drawn box.
4683
4684 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
4685 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
4686
4687 @end table
4688
4689 @subsection Examples
4690
4691 @itemize
4692 @item
4693 Draw a black box around the edge of the input image:
4694 @example
4695 drawbox
4696 @end example
4697
4698 @item
4699 Draw a box with color red and an opacity of 50%:
4700 @example
4701 drawbox=10:20:200:60:red@@0.5
4702 @end example
4703
4704 The previous example can be specified as:
4705 @example
4706 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
4707 @end example
4708
4709 @item
4710 Fill the box with pink color:
4711 @example
4712 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=max
4713 @end example
4714
4715 @item
4716 Draw a 2-pixel red 2.40:1 mask:
4717 @example
4718 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
4719 @end example
4720 @end itemize
4721
4722 @section drawgraph, adrawgraph
4723
4724 Draw a graph using input video or audio metadata.
4725
4726 It accepts the following parameters:
4727
4728 @table @option
4729 @item m1
4730 Set 1st frame metadata key from which metadata values will be used to draw a graph.
4731
4732 @item fg1
4733 Set 1st foreground color expression.
4734
4735 @item m2
4736 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
4737
4738 @item fg2
4739 Set 2nd foreground color expression.
4740
4741 @item m3
4742 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
4743
4744 @item fg3
4745 Set 3rd foreground color expression.
4746
4747 @item m4
4748 Set 4th frame metadata key from which metadata values will be used to draw a graph.
4749
4750 @item fg4
4751 Set 4th foreground color expression.
4752
4753 @item min
4754 Set minimal value of metadata value.
4755
4756 @item max
4757 Set maximal value of metadata value.
4758
4759 @item bg
4760 Set graph background color. Default is white.
4761
4762 @item mode
4763 Set graph mode.
4764
4765 Available values for mode is:
4766 @table @samp
4767 @item bar
4768 @item dot
4769 @item line
4770 @end table
4771
4772 Default is @code{line}.
4773
4774 @item slide
4775 Set slide mode.
4776
4777 Available values for slide is:
4778 @table @samp
4779 @item frame
4780 Draw new frame when right border is reached.
4781
4782 @item replace
4783 Replace old columns with new ones.
4784
4785 @item scroll
4786 Scroll from right to left.
4787
4788 @item rscroll
4789 Scroll from left to right.
4790 @end table
4791
4792 Default is @code{frame}.
4793
4794 @item size
4795 Set size of graph video. For the syntax of this option, check the
4796 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
4797 The default value is @code{900x256}.
4798
4799 The foreground color expressions can use the following variables:
4800 @table @option
4801 @item MIN
4802 Minimal value of metadata value.
4803
4804 @item MAX
4805 Maximal value of metadata value.
4806
4807 @item VAL
4808 Current metadata key value.
4809 @end table
4810
4811 The color is defined as 0xAABBGGRR.
4812 @end table
4813
4814 Example using metadata from @ref{signalstats} filter:
4815 @example
4816 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
4817 @end example
4818
4819 Example using metadata from @ref{ebur128} filter:
4820 @example
4821 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
4822 @end example
4823
4824 @section drawgrid
4825
4826 Draw a grid on the input image.
4827
4828 It accepts the following parameters:
4829
4830 @table @option
4831 @item x
4832 @item y
4833 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
4834
4835 @item width, w
4836 @item height, h
4837 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
4838 input width and height, respectively, minus @code{thickness}, so image gets
4839 framed. Default to 0.
4840
4841 @item color, c
4842 Specify the color of the grid. For the general syntax of this option,
4843 check the "Color" section in the ffmpeg-utils manual. If the special
4844 value @code{invert} is used, the grid color is the same as the
4845 video with inverted luma.
4846
4847 @item thickness, t
4848 The expression which sets the thickness of the grid line. Default value is @code{1}.
4849
4850 See below for the list of accepted constants.
4851 @end table
4852
4853 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
4854 following constants:
4855
4856 @table @option
4857 @item dar
4858 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
4859
4860 @item hsub
4861 @item vsub
4862 horizontal and vertical chroma subsample values. For example for the
4863 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
4864
4865 @item in_h, ih
4866 @item in_w, iw
4867 The input grid cell width and height.
4868
4869 @item sar
4870 The input sample aspect ratio.
4871
4872 @item x
4873 @item y
4874 The x and y coordinates of some point of grid intersection (meant to configure offset).
4875
4876 @item w
4877 @item h
4878 The width and height of the drawn cell.
4879
4880 @item t
4881 The thickness of the drawn cell.
4882
4883 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
4884 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
4885
4886 @end table
4887
4888 @subsection Examples
4889
4890 @itemize
4891 @item
4892 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
4893 @example
4894 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
4895 @end example
4896
4897 @item
4898 Draw a white 3x3 grid with an opacity of 50%:
4899 @example
4900 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
4901 @end example
4902 @end itemize
4903
4904 @anchor{drawtext}
4905 @section drawtext
4906
4907 Draw a text string or text from a specified file on top of a video, using the
4908 libfreetype library.
4909
4910 To enable compilation of this filter, you need to configure FFmpeg with
4911 @code{--enable-libfreetype}.
4912 To enable default font fallback and the @var{font} option you need to
4913 configure FFmpeg with @code{--enable-libfontconfig}.
4914 To enable the @var{text_shaping} option, you need to configure FFmpeg with
4915 @code{--enable-libfribidi}.
4916
4917 @subsection Syntax
4918
4919 It accepts the following parameters:
4920
4921 @table @option
4922
4923 @item box
4924 Used to draw a box around text using the background color.
4925 The value must be either 1 (enable) or 0 (disable).
4926 The default value of @var{box} is 0.
4927
4928 @item boxborderw
4929 Set the width of the border to be drawn around the box using @var{boxcolor}.
4930 The default value of @var{boxborderw} is 0.
4931
4932 @item boxcolor
4933 The color to be used for drawing box around text. For the syntax of this
4934 option, check the "Color" section in the ffmpeg-utils manual.
4935
4936 The default value of @var{boxcolor} is "white".
4937
4938 @item borderw
4939 Set the width of the border to be drawn around the text using @var{bordercolor}.
4940 The default value of @var{borderw} is 0.
4941
4942 @item bordercolor
4943 Set the color to be used for drawing border around text. For the syntax of this
4944 option, check the "Color" section in the ffmpeg-utils manual.
4945
4946 The default value of @var{bordercolor} is "black".
4947
4948 @item expansion
4949 Select how the @var{text} is expanded. Can be either @code{none},
4950 @code{strftime} (deprecated) or
4951 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
4952 below for details.
4953
4954 @item fix_bounds
4955 If true, check and fix text coords to avoid clipping.
4956
4957 @item fontcolor
4958 The color to be used for drawing fonts. For the syntax of this option, check
4959 the "Color" section in the ffmpeg-utils manual.
4960
4961 The default value of @var{fontcolor} is "black".
4962
4963 @item fontcolor_expr
4964 String which is expanded the same way as @var{text} to obtain dynamic
4965 @var{fontcolor} value. By default this option has empty value and is not
4966 processed. When this option is set, it overrides @var{fontcolor} option.
4967
4968 @item font
4969 The font family to be used for drawing text. By default Sans.
4970
4971 @item fontfile
4972 The font file to be used for drawing text. The path must be included.
4973 This parameter is mandatory if the fontconfig support is disabled.
4974
4975 @item draw
4976 This option does not exist, please see the timeline system
4977
4978 @item alpha
4979 Draw the text applying alpha blending. The value can
4980 be either a number between 0.0 and 1.0
4981 The expression accepts the same variables @var{x, y} do.
4982 The default value is 1.
4983 Please see fontcolor_expr
4984
4985 @item fontsize
4986 The font size to be used for drawing text.
4987 The default value of @var{fontsize} is 16.
4988
4989 @item text_shaping
4990 If set to 1, attempt to shape the text (for example, reverse the order of
4991 right-to-left text and join Arabic characters) before drawing it.
4992 Otherwise, just draw the text exactly as given.
4993 By default 1 (if supported).
4994
4995 @item ft_load_flags
4996 The flags to be used for loading the fonts.
4997
4998 The flags map the corresponding flags supported by libfreetype, and are
4999 a combination of the following values:
5000 @table @var
5001 @item default
5002 @item no_scale
5003 @item no_hinting
5004 @item render
5005 @item no_bitmap
5006 @item vertical_layout
5007 @item force_autohint
5008 @item crop_bitmap
5009 @item pedantic
5010 @item ignore_global_advance_width
5011 @item no_recurse
5012 @item ignore_transform
5013 @item monochrome
5014 @item linear_design
5015 @item no_autohint
5016 @end table
5017
5018 Default value is "default".
5019
5020 For more information consult the documentation for the FT_LOAD_*
5021 libfreetype flags.
5022
5023 @item shadowcolor
5024 The color to be used for drawing a shadow behind the drawn text. For the
5025 syntax of this option, check the "Color" section in the ffmpeg-utils manual.
5026
5027 The default value of @var{shadowcolor} is "black".
5028
5029 @item shadowx
5030 @item shadowy
5031 The x and y offsets for the text shadow position with respect to the
5032 position of the text. They can be either positive or negative
5033 values. The default value for both is "0".
5034
5035 @item start_number
5036 The starting frame number for the n/frame_num variable. The default value
5037 is "0".
5038
5039 @item tabsize
5040 The size in number of spaces to use for rendering the tab.
5041 Default value is 4.
5042
5043 @item timecode
5044 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
5045 format. It can be used with or without text parameter. @var{timecode_rate}
5046 option must be specified.
5047
5048 @item timecode_rate, rate, r
5049 Set the timecode frame rate (timecode only).
5050
5051 @item text
5052 The text string to be drawn. The text must be a sequence of UTF-8
5053 encoded characters.
5054 This parameter is mandatory if no file is specified with the parameter
5055 @var{textfile}.
5056
5057 @item textfile
5058 A text file containing text to be drawn. The text must be a sequence
5059 of UTF-8 encoded characters.
5060
5061 This parameter is mandatory if no text string is specified with the
5062 parameter @var{text}.
5063
5064 If both @var{text} and @var{textfile} are specified, an error is thrown.
5065
5066 @item reload
5067 If set to 1, the @var{textfile} will be reloaded before each frame.
5068 Be sure to update it atomically, or it may be read partially, or even fail.
5069
5070 @item x
5071 @item y
5072 The expressions which specify the offsets where text will be drawn
5073 within the video frame. They are relative to the top/left border of the
5074 output image.
5075
5076 The default value of @var{x} and @var{y} is "0".
5077
5078 See below for the list of accepted constants and functions.
5079 @end table
5080
5081 The parameters for @var{x} and @var{y} are expressions containing the
5082 following constants and functions:
5083
5084 @table @option
5085 @item dar
5086 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
5087
5088 @item hsub
5089 @item vsub
5090 horizontal and vertical chroma subsample values. For example for the
5091 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
5092
5093 @item line_h, lh
5094 the height of each text line
5095
5096 @item main_h, h, H
5097 the input height
5098
5099 @item main_w, w, W
5100 the input width
5101
5102 @item max_glyph_a, ascent
5103 the maximum distance from the baseline to the highest/upper grid
5104 coordinate used to place a glyph outline point, for all the rendered
5105 glyphs.
5106 It is a positive value, due to the grid's orientation with the Y axis
5107 upwards.
5108
5109 @item max_glyph_d, descent
5110 the maximum distance from the baseline to the lowest grid coordinate
5111 used to place a glyph outline point, for all the rendered glyphs.
5112 This is a negative value, due to the grid's orientation, with the Y axis
5113 upwards.
5114
5115 @item max_glyph_h
5116 maximum glyph height, that is the maximum height for all the glyphs
5117 contained in the rendered text, it is equivalent to @var{ascent} -
5118 @var{descent}.
5119
5120 @item max_glyph_w
5121 maximum glyph width, that is the maximum width for all the glyphs
5122 contained in the rendered text
5123
5124 @item n
5125 the number of input frame, starting from 0
5126
5127 @item rand(min, max)
5128 return a random number included between @var{min} and @var{max}
5129
5130 @item sar
5131 The input sample aspect ratio.
5132
5133 @item t
5134 timestamp expressed in seconds, NAN if the input timestamp is unknown
5135
5136 @item text_h, th
5137 the height of the rendered text
5138
5139 @item text_w, tw
5140 the width of the rendered text
5141
5142 @item x
5143 @item y
5144 the x and y offset coordinates where the text is drawn.
5145
5146 These parameters allow the @var{x} and @var{y} expressions to refer
5147 each other, so you can for example specify @code{y=x/dar}.
5148 @end table
5149
5150 @anchor{drawtext_expansion}
5151 @subsection Text expansion
5152
5153 If @option{expansion} is set to @code{strftime},
5154 the filter recognizes strftime() sequences in the provided text and
5155 expands them accordingly. Check the documentation of strftime(). This
5156 feature is deprecated.
5157
5158 If @option{expansion} is set to @code{none}, the text is printed verbatim.
5159
5160 If @option{expansion} is set to @code{normal} (which is the default),
5161 the following expansion mechanism is used.
5162
5163 The backslash character @samp{\}, followed by any character, always expands to
5164 the second character.
5165
5166 Sequence of the form @code{%@{...@}} are expanded. The text between the
5167 braces is a function name, possibly followed by arguments separated by ':'.
5168 If the arguments contain special characters or delimiters (':' or '@}'),
5169 they should be escaped.
5170
5171 Note that they probably must also be escaped as the value for the
5172 @option{text} option in the filter argument string and as the filter
5173 argument in the filtergraph description, and possibly also for the shell,
5174 that makes up to four levels of escaping; using a text file avoids these
5175 problems.
5176
5177 The following functions are available:
5178
5179 @table @command
5180
5181 @item expr, e
5182 The expression evaluation result.
5183
5184 It must take one argument specifying the expression to be evaluated,
5185 which accepts the same constants and functions as the @var{x} and
5186 @var{y} values. Note that not all constants should be used, for
5187 example the text size is not known when evaluating the expression, so
5188 the constants @var{text_w} and @var{text_h} will have an undefined
5189 value.
5190
5191 @item expr_int_format, eif
5192 Evaluate the expression's value and output as formatted integer.
5193
5194 The first argument is the expression to be evaluated, just as for the @var{expr} function.
5195 The second argument specifies the output format. Allowed values are @samp{x},
5196 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
5197 @code{printf} function.
5198 The third parameter is optional and sets the number of positions taken by the output.
5199 It can be used to add padding with zeros from the left.
5200
5201 @item gmtime
5202 The time at which the filter is running, expressed in UTC.
5203 It can accept an argument: a strftime() format string.
5204
5205 @item localtime
5206 The time at which the filter is running, expressed in the local time zone.
5207 It can accept an argument: a strftime() format string.
5208
5209 @item metadata
5210 Frame metadata. It must take one argument specifying metadata key.
5211
5212 @item n, frame_num
5213 The frame number, starting from 0.
5214
5215 @item pict_type
5216 A 1 character description of the current picture type.
5217
5218 @item pts
5219 The timestamp of the current frame.
5220 It can take up to two arguments.
5221
5222 The first argument is the format of the timestamp; it defaults to @code{flt}
5223 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
5224 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
5225
5226 The second argument is an offset added to the timestamp.
5227
5228 @end table
5229
5230 @subsection Examples
5231
5232 @itemize
5233 @item
5234 Draw "Test Text" with font FreeSerif, using the default values for the
5235 optional parameters.
5236
5237 @example
5238 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
5239 @end example
5240
5241 @item
5242 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
5243 and y=50 (counting from the top-left corner of the screen), text is
5244 yellow with a red box around it. Both the text and the box have an
5245 opacity of 20%.
5246
5247 @example
5248 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
5249           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
5250 @end example
5251
5252 Note that the double quotes are not necessary if spaces are not used
5253 within the parameter list.
5254
5255 @item
5256 Show the text at the center of the video frame:
5257 @example
5258 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h-line_h)/2"
5259 @end example
5260
5261 @item
5262 Show a text line sliding from right to left in the last row of the video
5263 frame. The file @file{LONG_LINE} is assumed to contain a single line
5264 with no newlines.
5265 @example
5266 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
5267 @end example
5268
5269 @item
5270 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
5271 @example
5272 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
5273 @end example
5274
5275 @item
5276 Draw a single green letter "g", at the center of the input video.
5277 The glyph baseline is placed at half screen height.
5278 @example
5279 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
5280 @end example
5281
5282 @item
5283 Show text for 1 second every 3 seconds:
5284 @example
5285 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
5286 @end example
5287
5288 @item
5289 Use fontconfig to set the font. Note that the colons need to be escaped.
5290 @example
5291 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
5292 @end example
5293
5294 @item
5295 Print the date of a real-time encoding (see strftime(3)):
5296 @example
5297 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
5298 @end example
5299
5300 @item
5301 Show text fading in and out (appearing/disappearing):
5302 @example
5303 #!/bin/sh
5304 DS=1.0 # display start
5305 DE=10.0 # display end
5306 FID=1.5 # fade in duration
5307 FOD=5 # fade out duration
5308 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 @}"
5309 @end example
5310
5311 @end itemize
5312
5313 For more information about libfreetype, check:
5314 @url{http://www.freetype.org/}.
5315
5316 For more information about fontconfig, check:
5317 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
5318
5319 For more information about libfribidi, check:
5320 @url{http://fribidi.org/}.
5321
5322 @section edgedetect
5323
5324 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
5325
5326 The filter accepts the following options:
5327
5328 @table @option
5329 @item low
5330 @item high
5331 Set low and high threshold values used by the Canny thresholding
5332 algorithm.
5333
5334 The high threshold selects the "strong" edge pixels, which are then
5335 connected through 8-connectivity with the "weak" edge pixels selected
5336 by the low threshold.
5337
5338 @var{low} and @var{high} threshold values must be chosen in the range
5339 [0,1], and @var{low} should be lesser or equal to @var{high}.
5340
5341 Default value for @var{low} is @code{20/255}, and default value for @var{high}
5342 is @code{50/255}.
5343
5344 @item mode
5345 Define the drawing mode.
5346
5347 @table @samp
5348 @item wires
5349 Draw white/gray wires on black background.
5350
5351 @item colormix
5352 Mix the colors to create a paint/cartoon effect.
5353 @end table
5354
5355 Default value is @var{wires}.
5356 @end table
5357
5358 @subsection Examples
5359
5360 @itemize
5361 @item
5362 Standard edge detection with custom values for the hysteresis thresholding:
5363 @example
5364 edgedetect=low=0.1:high=0.4
5365 @end example
5366
5367 @item
5368 Painting effect without thresholding:
5369 @example
5370 edgedetect=mode=colormix:high=0
5371 @end example
5372 @end itemize
5373
5374 @section eq
5375 Set brightness, contrast, saturation and approximate gamma adjustment.
5376
5377 The filter accepts the following options:
5378
5379 @table @option
5380 @item contrast
5381 Set the contrast expression. The value must be a float value in range
5382 @code{-2.0} to @code{2.0}. The default value is "1".
5383
5384 @item brightness
5385 Set the brightness expression. The value must be a float value in
5386 range @code{-1.0} to @code{1.0}. The default value is "0".
5387
5388 @item saturation
5389 Set the saturation expression. The value must be a float in
5390 range @code{0.0} to @code{3.0}. The default value is "1".
5391
5392 @item gamma
5393 Set the gamma expression. The value must be a float in range
5394 @code{0.1} to @code{10.0}.  The default value is "1".
5395
5396 @item gamma_r
5397 Set the gamma expression for red. The value must be a float in
5398 range @code{0.1} to @code{10.0}. The default value is "1".
5399
5400 @item gamma_g
5401 Set the gamma expression for green. The value must be a float in range
5402 @code{0.1} to @code{10.0}. The default value is "1".
5403
5404 @item gamma_b
5405 Set the gamma expression for blue. The value must be a float in range
5406 @code{0.1} to @code{10.0}. The default value is "1".
5407
5408 @item gamma_weight
5409 Set the gamma weight expression. It can be used to reduce the effect
5410 of a high gamma value on bright image areas, e.g. keep them from
5411 getting overamplified and just plain white. The value must be a float
5412 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
5413 gamma correction all the way down while @code{1.0} leaves it at its
5414 full strength. Default is "1".
5415
5416 @item eval
5417 Set when the expressions for brightness, contrast, saturation and
5418 gamma expressions are evaluated.
5419
5420 It accepts the following values:
5421 @table @samp
5422 @item init
5423 only evaluate expressions once during the filter initialization or
5424 when a command is processed
5425
5426 @item frame
5427 evaluate expressions for each incoming frame
5428 @end table
5429
5430 Default value is @samp{init}.
5431 @end table
5432
5433 The expressions accept the following parameters:
5434 @table @option
5435 @item n
5436 frame count of the input frame starting from 0
5437
5438 @item pos
5439 byte position of the corresponding packet in the input file, NAN if
5440 unspecified
5441
5442 @item r
5443 frame rate of the input video, NAN if the input frame rate is unknown
5444
5445 @item t
5446 timestamp expressed in seconds, NAN if the input timestamp is unknown
5447 @end table
5448
5449 @subsection Commands
5450 The filter supports the following commands:
5451
5452 @table @option
5453 @item contrast
5454 Set the contrast expression.
5455
5456 @item brightness
5457 Set the brightness expression.
5458
5459 @item saturation
5460 Set the saturation expression.
5461
5462 @item gamma
5463 Set the gamma expression.
5464
5465 @item gamma_r
5466 Set the gamma_r expression.
5467
5468 @item gamma_g
5469 Set gamma_g expression.
5470
5471 @item gamma_b
5472 Set gamma_b expression.
5473
5474 @item gamma_weight
5475 Set gamma_weight expression.
5476
5477 The command accepts the same syntax of the corresponding option.
5478
5479 If the specified expression is not valid, it is kept at its current
5480 value.
5481
5482 @end table
5483
5484 @section erosion
5485
5486 Apply erosion effect to the video.
5487
5488 This filter replaces the pixel by the local(3x3) minimum.
5489
5490 It accepts the following options:
5491
5492 @table @option
5493 @item threshold0
5494 @item threshold1
5495 @item threshold2
5496 @item threshold3
5497 Allows to limit the maximum change for each plane, default is 65535.
5498 If 0, plane will remain unchanged.
5499
5500 @item coordinates
5501 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
5502 pixels are used.
5503
5504 Flags to local 3x3 coordinates maps like this:
5505
5506     1 2 3
5507     4   5
5508     6 7 8
5509 @end table
5510
5511 @section extractplanes
5512
5513 Extract color channel components from input video stream into
5514 separate grayscale video streams.
5515
5516 The filter accepts the following option:
5517
5518 @table @option
5519 @item planes
5520 Set plane(s) to extract.
5521
5522 Available values for planes are:
5523 @table @samp
5524 @item y
5525 @item u
5526 @item v
5527 @item a
5528 @item r
5529 @item g
5530 @item b
5531 @end table
5532
5533 Choosing planes not available in the input will result in an error.
5534 That means you cannot select @code{r}, @code{g}, @code{b} planes
5535 with @code{y}, @code{u}, @code{v} planes at same time.
5536 @end table
5537
5538 @subsection Examples
5539
5540 @itemize
5541 @item
5542 Extract luma, u and v color channel component from input video frame
5543 into 3 grayscale outputs:
5544 @example
5545 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
5546 @end example
5547 @end itemize
5548
5549 @section elbg
5550
5551 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
5552
5553 For each input image, the filter will compute the optimal mapping from
5554 the input to the output given the codebook length, that is the number
5555 of distinct output colors.
5556
5557 This filter accepts the following options.
5558
5559 @table @option
5560 @item codebook_length, l
5561 Set codebook length. The value must be a positive integer, and
5562 represents the number of distinct output colors. Default value is 256.
5563
5564 @item nb_steps, n
5565 Set the maximum number of iterations to apply for computing the optimal
5566 mapping. The higher the value the better the result and the higher the
5567 computation time. Default value is 1.
5568
5569 @item seed, s
5570 Set a random seed, must be an integer included between 0 and
5571 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
5572 will try to use a good random seed on a best effort basis.
5573
5574 @item pal8
5575 Set pal8 output pixel format. This option does not work with codebook
5576 length greater than 256.
5577 @end table
5578
5579 @section fade
5580
5581 Apply a fade-in/out effect to the input video.
5582
5583 It accepts the following parameters:
5584
5585 @table @option
5586 @item type, t
5587 The effect type can be either "in" for a fade-in, or "out" for a fade-out
5588 effect.
5589 Default is @code{in}.
5590
5591 @item start_frame, s
5592 Specify the number of the frame to start applying the fade
5593 effect at. Default is 0.
5594
5595 @item nb_frames, n
5596 The number of frames that the fade effect lasts. At the end of the
5597 fade-in effect, the output video will have the same intensity as the input video.
5598 At the end of the fade-out transition, the output video will be filled with the
5599 selected @option{color}.
5600 Default is 25.
5601
5602 @item alpha
5603 If set to 1, fade only alpha channel, if one exists on the input.
5604 Default value is 0.
5605
5606 @item start_time, st
5607 Specify the timestamp (in seconds) of the frame to start to apply the fade
5608 effect. If both start_frame and start_time are specified, the fade will start at
5609 whichever comes last.  Default is 0.
5610
5611 @item duration, d
5612 The number of seconds for which the fade effect has to last. At the end of the
5613 fade-in effect the output video will have the same intensity as the input video,
5614 at the end of the fade-out transition the output video will be filled with the
5615 selected @option{color}.
5616 If both duration and nb_frames are specified, duration is used. Default is 0
5617 (nb_frames is used by default).
5618
5619 @item color, c
5620 Specify the color of the fade. Default is "black".
5621 @end table
5622
5623 @subsection Examples
5624
5625 @itemize
5626 @item
5627 Fade in the first 30 frames of video:
5628 @example
5629 fade=in:0:30
5630 @end example
5631
5632 The command above is equivalent to:
5633 @example
5634 fade=t=in:s=0:n=30
5635 @end example
5636
5637 @item
5638 Fade out the last 45 frames of a 200-frame video:
5639 @example
5640 fade=out:155:45
5641 fade=type=out:start_frame=155:nb_frames=45
5642 @end example
5643
5644 @item
5645 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
5646 @example
5647 fade=in:0:25, fade=out:975:25
5648 @end example
5649
5650 @item
5651 Make the first 5 frames yellow, then fade in from frame 5-24:
5652 @example
5653 fade=in:5:20:color=yellow
5654 @end example
5655
5656 @item
5657 Fade in alpha over first 25 frames of video:
5658 @example
5659 fade=in:0:25:alpha=1
5660 @end example
5661
5662 @item
5663 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
5664 @example
5665 fade=t=in:st=5.5:d=0.5
5666 @end example
5667
5668 @end itemize
5669
5670 @section fftfilt
5671 Apply arbitrary expressions to samples in frequency domain
5672
5673 @table @option
5674 @item dc_Y
5675 Adjust the dc value (gain) of the luma plane of the image. The filter
5676 accepts an integer value in range @code{0} to @code{1000}. The default
5677 value is set to @code{0}.
5678
5679 @item dc_U
5680 Adjust the dc value (gain) of the 1st chroma plane of the image. The
5681 filter accepts an integer value in range @code{0} to @code{1000}. The
5682 default value is set to @code{0}.
5683
5684 @item dc_V
5685 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
5686 filter accepts an integer value in range @code{0} to @code{1000}. The
5687 default value is set to @code{0}.
5688
5689 @item weight_Y
5690 Set the frequency domain weight expression for the luma plane.
5691
5692 @item weight_U
5693 Set the frequency domain weight expression for the 1st chroma plane.
5694
5695 @item weight_V
5696 Set the frequency domain weight expression for the 2nd chroma plane.
5697
5698 The filter accepts the following variables:
5699 @item X
5700 @item Y
5701 The coordinates of the current sample.
5702
5703 @item W
5704 @item H
5705 The width and height of the image.
5706 @end table
5707
5708 @subsection Examples
5709
5710 @itemize
5711 @item
5712 High-pass:
5713 @example
5714 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
5715 @end example
5716
5717 @item
5718 Low-pass:
5719 @example
5720 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
5721 @end example
5722
5723 @item
5724 Sharpen:
5725 @example
5726 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
5727 @end example
5728
5729 @end itemize
5730
5731 @section field
5732
5733 Extract a single field from an interlaced image using stride
5734 arithmetic to avoid wasting CPU time. The output frames are marked as
5735 non-interlaced.
5736
5737 The filter accepts the following options:
5738
5739 @table @option
5740 @item type
5741 Specify whether to extract the top (if the value is @code{0} or
5742 @code{top}) or the bottom field (if the value is @code{1} or
5743 @code{bottom}).
5744 @end table
5745
5746 @section fieldmatch
5747
5748 Field matching filter for inverse telecine. It is meant to reconstruct the
5749 progressive frames from a telecined stream. The filter does not drop duplicated
5750 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
5751 followed by a decimation filter such as @ref{decimate} in the filtergraph.
5752
5753 The separation of the field matching and the decimation is notably motivated by
5754 the possibility of inserting a de-interlacing filter fallback between the two.
5755 If the source has mixed telecined and real interlaced content,
5756 @code{fieldmatch} will not be able to match fields for the interlaced parts.
5757 But these remaining combed frames will be marked as interlaced, and thus can be
5758 de-interlaced by a later filter such as @ref{yadif} before decimation.
5759
5760 In addition to the various configuration options, @code{fieldmatch} can take an
5761 optional second stream, activated through the @option{ppsrc} option. If
5762 enabled, the frames reconstruction will be based on the fields and frames from
5763 this second stream. This allows the first input to be pre-processed in order to
5764 help the various algorithms of the filter, while keeping the output lossless
5765 (assuming the fields are matched properly). Typically, a field-aware denoiser,
5766 or brightness/contrast adjustments can help.
5767
5768 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
5769 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
5770 which @code{fieldmatch} is based on. While the semantic and usage are very
5771 close, some behaviour and options names can differ.
5772
5773 The @ref{decimate} filter currently only works for constant frame rate input.
5774 If your input has mixed telecined (30fps) and progressive content with a lower
5775 framerate like 24fps use the following filterchain to produce the necessary cfr
5776 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
5777
5778 The filter accepts the following options:
5779
5780 @table @option
5781 @item order
5782 Specify the assumed field order of the input stream. Available values are:
5783
5784 @table @samp
5785 @item auto
5786 Auto detect parity (use FFmpeg's internal parity value).
5787 @item bff
5788 Assume bottom field first.
5789 @item tff
5790 Assume top field first.
5791 @end table
5792
5793 Note that it is sometimes recommended not to trust the parity announced by the
5794 stream.
5795
5796 Default value is @var{auto}.
5797
5798 @item mode
5799 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
5800 sense that it won't risk creating jerkiness due to duplicate frames when
5801 possible, but if there are bad edits or blended fields it will end up
5802 outputting combed frames when a good match might actually exist. On the other
5803 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
5804 but will almost always find a good frame if there is one. The other values are
5805 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
5806 jerkiness and creating duplicate frames versus finding good matches in sections
5807 with bad edits, orphaned fields, blended fields, etc.
5808
5809 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
5810
5811 Available values are:
5812
5813 @table @samp
5814 @item pc
5815 2-way matching (p/c)
5816 @item pc_n
5817 2-way matching, and trying 3rd match if still combed (p/c + n)
5818 @item pc_u
5819 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
5820 @item pc_n_ub
5821 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
5822 still combed (p/c + n + u/b)
5823 @item pcn
5824 3-way matching (p/c/n)
5825 @item pcn_ub
5826 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
5827 detected as combed (p/c/n + u/b)
5828 @end table
5829
5830 The parenthesis at the end indicate the matches that would be used for that
5831 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
5832 @var{top}).
5833
5834 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
5835 the slowest.
5836
5837 Default value is @var{pc_n}.
5838
5839 @item ppsrc
5840 Mark the main input stream as a pre-processed input, and enable the secondary
5841 input stream as the clean source to pick the fields from. See the filter
5842 introduction for more details. It is similar to the @option{clip2} feature from
5843 VFM/TFM.
5844
5845 Default value is @code{0} (disabled).
5846
5847 @item field
5848 Set the field to match from. It is recommended to set this to the same value as
5849 @option{order} unless you experience matching failures with that setting. In
5850 certain circumstances changing the field that is used to match from can have a
5851 large impact on matching performance. Available values are:
5852
5853 @table @samp
5854 @item auto
5855 Automatic (same value as @option{order}).
5856 @item bottom
5857 Match from the bottom field.
5858 @item top
5859 Match from the top field.
5860 @end table
5861
5862 Default value is @var{auto}.
5863
5864 @item mchroma
5865 Set whether or not chroma is included during the match comparisons. In most
5866 cases it is recommended to leave this enabled. You should set this to @code{0}
5867 only if your clip has bad chroma problems such as heavy rainbowing or other
5868 artifacts. Setting this to @code{0} could also be used to speed things up at
5869 the cost of some accuracy.
5870
5871 Default value is @code{1}.
5872
5873 @item y0
5874 @item y1
5875 These define an exclusion band which excludes the lines between @option{y0} and
5876 @option{y1} from being included in the field matching decision. An exclusion
5877 band can be used to ignore subtitles, a logo, or other things that may
5878 interfere with the matching. @option{y0} sets the starting scan line and
5879 @option{y1} sets the ending line; all lines in between @option{y0} and
5880 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
5881 @option{y0} and @option{y1} to the same value will disable the feature.
5882 @option{y0} and @option{y1} defaults to @code{0}.
5883
5884 @item scthresh
5885 Set the scene change detection threshold as a percentage of maximum change on
5886 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
5887 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
5888 @option{scthresh} is @code{[0.0, 100.0]}.
5889
5890 Default value is @code{12.0}.
5891
5892 @item combmatch
5893 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
5894 account the combed scores of matches when deciding what match to use as the
5895 final match. Available values are:
5896
5897 @table @samp
5898 @item none
5899 No final matching based on combed scores.
5900 @item sc
5901 Combed scores are only used when a scene change is detected.
5902 @item full
5903 Use combed scores all the time.
5904 @end table
5905
5906 Default is @var{sc}.
5907
5908 @item combdbg
5909 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
5910 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
5911 Available values are:
5912
5913 @table @samp
5914 @item none
5915 No forced calculation.
5916 @item pcn
5917 Force p/c/n calculations.
5918 @item pcnub
5919 Force p/c/n/u/b calculations.
5920 @end table
5921
5922 Default value is @var{none}.
5923
5924 @item cthresh
5925 This is the area combing threshold used for combed frame detection. This
5926 essentially controls how "strong" or "visible" combing must be to be detected.
5927 Larger values mean combing must be more visible and smaller values mean combing
5928 can be less visible or strong and still be detected. Valid settings are from
5929 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
5930 be detected as combed). This is basically a pixel difference value. A good
5931 range is @code{[8, 12]}.
5932
5933 Default value is @code{9}.
5934
5935 @item chroma
5936 Sets whether or not chroma is considered in the combed frame decision.  Only
5937 disable this if your source has chroma problems (rainbowing, etc.) that are
5938 causing problems for the combed frame detection with chroma enabled. Actually,
5939 using @option{chroma}=@var{0} is usually more reliable, except for the case
5940 where there is chroma only combing in the source.
5941
5942 Default value is @code{0}.
5943
5944 @item blockx
5945 @item blocky
5946 Respectively set the x-axis and y-axis size of the window used during combed
5947 frame detection. This has to do with the size of the area in which
5948 @option{combpel} pixels are required to be detected as combed for a frame to be
5949 declared combed. See the @option{combpel} parameter description for more info.
5950 Possible values are any number that is a power of 2 starting at 4 and going up
5951 to 512.
5952
5953 Default value is @code{16}.
5954
5955 @item combpel
5956 The number of combed pixels inside any of the @option{blocky} by
5957 @option{blockx} size blocks on the frame for the frame to be detected as
5958 combed. While @option{cthresh} controls how "visible" the combing must be, this
5959 setting controls "how much" combing there must be in any localized area (a
5960 window defined by the @option{blockx} and @option{blocky} settings) on the
5961 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
5962 which point no frames will ever be detected as combed). This setting is known
5963 as @option{MI} in TFM/VFM vocabulary.
5964
5965 Default value is @code{80}.
5966 @end table
5967
5968 @anchor{p/c/n/u/b meaning}
5969 @subsection p/c/n/u/b meaning
5970
5971 @subsubsection p/c/n
5972
5973 We assume the following telecined stream:
5974
5975 @example
5976 Top fields:     1 2 2 3 4
5977 Bottom fields:  1 2 3 4 4
5978 @end example
5979
5980 The numbers correspond to the progressive frame the fields relate to. Here, the
5981 first two frames are progressive, the 3rd and 4th are combed, and so on.
5982
5983 When @code{fieldmatch} is configured to run a matching from bottom
5984 (@option{field}=@var{bottom}) this is how this input stream get transformed:
5985
5986 @example
5987 Input stream:
5988                 T     1 2 2 3 4
5989                 B     1 2 3 4 4   <-- matching reference
5990
5991 Matches:              c c n n c
5992
5993 Output stream:
5994                 T     1 2 3 4 4
5995                 B     1 2 3 4 4
5996 @end example
5997
5998 As a result of the field matching, we can see that some frames get duplicated.
5999 To perform a complete inverse telecine, you need to rely on a decimation filter
6000 after this operation. See for instance the @ref{decimate} filter.
6001
6002 The same operation now matching from top fields (@option{field}=@var{top})
6003 looks like this:
6004
6005 @example
6006 Input stream:
6007                 T     1 2 2 3 4   <-- matching reference
6008                 B     1 2 3 4 4
6009
6010 Matches:              c c p p c
6011
6012 Output stream:
6013                 T     1 2 2 3 4
6014                 B     1 2 2 3 4
6015 @end example
6016
6017 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
6018 basically, they refer to the frame and field of the opposite parity:
6019
6020 @itemize
6021 @item @var{p} matches the field of the opposite parity in the previous frame
6022 @item @var{c} matches the field of the opposite parity in the current frame
6023 @item @var{n} matches the field of the opposite parity in the next frame
6024 @end itemize
6025
6026 @subsubsection u/b
6027
6028 The @var{u} and @var{b} matching are a bit special in the sense that they match
6029 from the opposite parity flag. In the following examples, we assume that we are
6030 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
6031 'x' is placed above and below each matched fields.
6032
6033 With bottom matching (@option{field}=@var{bottom}):
6034 @example
6035 Match:           c         p           n          b          u
6036
6037                  x       x               x        x          x
6038   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
6039   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
6040                  x         x           x        x              x
6041
6042 Output frames:
6043                  2          1          2          2          2
6044                  2          2          2          1          3
6045 @end example
6046
6047 With top matching (@option{field}=@var{top}):
6048 @example
6049 Match:           c         p           n          b          u
6050
6051                  x         x           x        x              x
6052   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
6053   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
6054                  x       x               x        x          x
6055
6056 Output frames:
6057                  2          2          2          1          2
6058                  2          1          3          2          2
6059 @end example
6060
6061 @subsection Examples
6062
6063 Simple IVTC of a top field first telecined stream:
6064 @example
6065 fieldmatch=order=tff:combmatch=none, decimate
6066 @end example
6067
6068 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
6069 @example
6070 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
6071 @end example
6072
6073 @section fieldorder
6074
6075 Transform the field order of the input video.
6076
6077 It accepts the following parameters:
6078
6079 @table @option
6080
6081 @item order
6082 The output field order. Valid values are @var{tff} for top field first or @var{bff}
6083 for bottom field first.
6084 @end table
6085
6086 The default value is @samp{tff}.
6087
6088 The transformation is done by shifting the picture content up or down
6089 by one line, and filling the remaining line with appropriate picture content.
6090 This method is consistent with most broadcast field order converters.
6091
6092 If the input video is not flagged as being interlaced, or it is already
6093 flagged as being of the required output field order, then this filter does
6094 not alter the incoming video.
6095
6096 It is very useful when converting to or from PAL DV material,
6097 which is bottom field first.
6098
6099 For example:
6100 @example
6101 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
6102 @end example
6103
6104 @section fifo
6105
6106 Buffer input images and send them when they are requested.
6107
6108 It is mainly useful when auto-inserted by the libavfilter
6109 framework.
6110
6111 It does not take parameters.
6112
6113 @section find_rect
6114
6115 Find a rectangular object
6116
6117 It accepts the following options:
6118
6119 @table @option
6120 @item object
6121 Filepath of the object image, needs to be in gray8.
6122
6123 @item threshold
6124 Detection threshold, default is 0.5.
6125
6126 @item mipmaps
6127 Number of mipmaps, default is 3.
6128
6129 @item xmin, ymin, xmax, ymax
6130 Specifies the rectangle in which to search.
6131 @end table
6132
6133 @subsection Examples
6134
6135 @itemize
6136 @item
6137 Generate a representative palette of a given video using @command{ffmpeg}:
6138 @example
6139 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
6140 @end example
6141 @end itemize
6142
6143 @section cover_rect
6144
6145 Cover a rectangular object
6146
6147 It accepts the following options:
6148
6149 @table @option
6150 @item cover
6151 Filepath of the optional cover image, needs to be in yuv420.
6152
6153 @item mode
6154 Set covering mode.
6155
6156 It accepts the following values:
6157 @table @samp
6158 @item cover
6159 cover it by the supplied image
6160 @item blur
6161 cover it by interpolating the surrounding pixels
6162 @end table
6163
6164 Default value is @var{blur}.
6165 @end table
6166
6167 @subsection Examples
6168
6169 @itemize
6170 @item
6171 Generate a representative palette of a given video using @command{ffmpeg}:
6172 @example
6173 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
6174 @end example
6175 @end itemize
6176
6177 @anchor{format}
6178 @section format
6179
6180 Convert the input video to one of the specified pixel formats.
6181 Libavfilter will try to pick one that is suitable as input to
6182 the next filter.
6183
6184 It accepts the following parameters:
6185 @table @option
6186
6187 @item pix_fmts
6188 A '|'-separated list of pixel format names, such as
6189 "pix_fmts=yuv420p|monow|rgb24".
6190
6191 @end table
6192
6193 @subsection Examples
6194
6195 @itemize
6196 @item
6197 Convert the input video to the @var{yuv420p} format
6198 @example
6199 format=pix_fmts=yuv420p
6200 @end example
6201
6202 Convert the input video to any of the formats in the list
6203 @example
6204 format=pix_fmts=yuv420p|yuv444p|yuv410p
6205 @end example
6206 @end itemize
6207
6208 @anchor{fps}
6209 @section fps
6210
6211 Convert the video to specified constant frame rate by duplicating or dropping
6212 frames as necessary.
6213
6214 It accepts the following parameters:
6215 @table @option
6216
6217 @item fps
6218 The desired output frame rate. The default is @code{25}.
6219
6220 @item round
6221 Rounding method.
6222
6223 Possible values are:
6224 @table @option
6225 @item zero
6226 zero round towards 0
6227 @item inf
6228 round away from 0
6229 @item down
6230 round towards -infinity
6231 @item up
6232 round towards +infinity
6233 @item near
6234 round to nearest
6235 @end table
6236 The default is @code{near}.
6237
6238 @item start_time
6239 Assume the first PTS should be the given value, in seconds. This allows for
6240 padding/trimming at the start of stream. By default, no assumption is made
6241 about the first frame's expected PTS, so no padding or trimming is done.
6242 For example, this could be set to 0 to pad the beginning with duplicates of
6243 the first frame if a video stream starts after the audio stream or to trim any
6244 frames with a negative PTS.
6245
6246 @end table
6247
6248 Alternatively, the options can be specified as a flat string:
6249 @var{fps}[:@var{round}].
6250
6251 See also the @ref{setpts} filter.
6252
6253 @subsection Examples
6254
6255 @itemize
6256 @item
6257 A typical usage in order to set the fps to 25:
6258 @example
6259 fps=fps=25
6260 @end example
6261
6262 @item
6263 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
6264 @example
6265 fps=fps=film:round=near
6266 @end example
6267 @end itemize
6268
6269 @section framepack
6270
6271 Pack two different video streams into a stereoscopic video, setting proper
6272 metadata on supported codecs. The two views should have the same size and
6273 framerate and processing will stop when the shorter video ends. Please note
6274 that you may conveniently adjust view properties with the @ref{scale} and
6275 @ref{fps} filters.
6276
6277 It accepts the following parameters:
6278 @table @option
6279
6280 @item format
6281 The desired packing format. Supported values are:
6282
6283 @table @option
6284
6285 @item sbs
6286 The views are next to each other (default).
6287
6288 @item tab
6289 The views are on top of each other.
6290
6291 @item lines
6292 The views are packed by line.
6293
6294 @item columns
6295 The views are packed by column.
6296
6297 @item frameseq
6298 The views are temporally interleaved.
6299
6300 @end table
6301
6302 @end table
6303
6304 Some examples:
6305
6306 @example
6307 # Convert left and right views into a frame-sequential video
6308 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
6309
6310 # Convert views into a side-by-side video with the same output resolution as the input
6311 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
6312 @end example
6313
6314 @section framerate
6315
6316 Change the frame rate by interpolating new video output frames from the source
6317 frames.
6318
6319 This filter is not designed to function correctly with interlaced media. If
6320 you wish to change the frame rate of interlaced media then you are required
6321 to deinterlace before this filter and re-interlace after this filter.
6322
6323 A description of the accepted options follows.
6324
6325 @table @option
6326 @item fps
6327 Specify the output frames per second. This option can also be specified
6328 as a value alone. The default is @code{50}.
6329
6330 @item interp_start
6331 Specify the start of a range where the output frame will be created as a
6332 linear interpolation of two frames. The range is [@code{0}-@code{255}],
6333 the default is @code{15}.
6334
6335 @item interp_end
6336 Specify the end of a range where the output frame will be created as a
6337 linear interpolation of two frames. The range is [@code{0}-@code{255}],
6338 the default is @code{240}.
6339
6340 @item scene
6341 Specify the level at which a scene change is detected as a value between
6342 0 and 100 to indicate a new scene; a low value reflects a low
6343 probability for the current frame to introduce a new scene, while a higher
6344 value means the current frame is more likely to be one.
6345 The default is @code{7}.
6346
6347 @item flags
6348 Specify flags influencing the filter process.
6349
6350 Available value for @var{flags} is:
6351
6352 @table @option
6353 @item scene_change_detect, scd
6354 Enable scene change detection using the value of the option @var{scene}.
6355 This flag is enabled by default.
6356 @end table
6357 @end table
6358
6359 @section framestep
6360
6361 Select one frame every N-th frame.
6362
6363 This filter accepts the following option:
6364 @table @option
6365 @item step
6366 Select frame after every @code{step} frames.
6367 Allowed values are positive integers higher than 0. Default value is @code{1}.
6368 @end table
6369
6370 @anchor{frei0r}
6371 @section frei0r
6372
6373 Apply a frei0r effect to the input video.
6374
6375 To enable the compilation of this filter, you need to install the frei0r
6376 header and configure FFmpeg with @code{--enable-frei0r}.
6377
6378 It accepts the following parameters:
6379
6380 @table @option
6381
6382 @item filter_name
6383 The name of the frei0r effect to load. If the environment variable
6384 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
6385 directories specified by the colon-separated list in @env{FREIOR_PATH}.
6386 Otherwise, the standard frei0r paths are searched, in this order:
6387 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
6388 @file{/usr/lib/frei0r-1/}.
6389
6390 @item filter_params
6391 A '|'-separated list of parameters to pass to the frei0r effect.
6392
6393 @end table
6394
6395 A frei0r effect parameter can be a boolean (its value is either
6396 "y" or "n"), a double, a color (specified as
6397 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
6398 numbers between 0.0 and 1.0, inclusive) or by a color description specified in the "Color"
6399 section in the ffmpeg-utils manual), a position (specified as @var{X}/@var{Y}, where
6400 @var{X} and @var{Y} are floating point numbers) and/or a string.
6401
6402 The number and types of parameters depend on the loaded effect. If an
6403 effect parameter is not specified, the default value is set.
6404
6405 @subsection Examples
6406
6407 @itemize
6408 @item
6409 Apply the distort0r effect, setting the first two double parameters:
6410 @example
6411 frei0r=filter_name=distort0r:filter_params=0.5|0.01
6412 @end example
6413
6414 @item
6415 Apply the colordistance effect, taking a color as the first parameter:
6416 @example
6417 frei0r=colordistance:0.2/0.3/0.4
6418 frei0r=colordistance:violet
6419 frei0r=colordistance:0x112233
6420 @end example
6421
6422 @item
6423 Apply the perspective effect, specifying the top left and top right image
6424 positions:
6425 @example
6426 frei0r=perspective:0.2/0.2|0.8/0.2
6427 @end example
6428 @end itemize
6429
6430 For more information, see
6431 @url{http://frei0r.dyne.org}
6432
6433 @section fspp
6434
6435 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
6436
6437 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
6438 processing filter, one of them is performed once per block, not per pixel.
6439 This allows for much higher speed.
6440
6441 The filter accepts the following options:
6442
6443 @table @option
6444 @item quality
6445 Set quality. This option defines the number of levels for averaging. It accepts
6446 an integer in the range 4-5. Default value is @code{4}.
6447
6448 @item qp
6449 Force a constant quantization parameter. It accepts an integer in range 0-63.
6450 If not set, the filter will use the QP from the video stream (if available).
6451
6452 @item strength
6453 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
6454 more details but also more artifacts, while higher values make the image smoother
6455 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
6456
6457 @item use_bframe_qp
6458 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
6459 option may cause flicker since the B-Frames have often larger QP. Default is
6460 @code{0} (not enabled).
6461
6462 @end table
6463
6464 @section geq
6465
6466 The filter accepts the following options:
6467
6468 @table @option
6469 @item lum_expr, lum
6470 Set the luminance expression.
6471 @item cb_expr, cb
6472 Set the chrominance blue expression.
6473 @item cr_expr, cr
6474 Set the chrominance red expression.
6475 @item alpha_expr, a
6476 Set the alpha expression.
6477 @item red_expr, r
6478 Set the red expression.
6479 @item green_expr, g
6480 Set the green expression.
6481 @item blue_expr, b
6482 Set the blue expression.
6483 @end table
6484
6485 The colorspace is selected according to the specified options. If one
6486 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
6487 options is specified, the filter will automatically select a YCbCr
6488 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
6489 @option{blue_expr} options is specified, it will select an RGB
6490 colorspace.
6491
6492 If one of the chrominance expression is not defined, it falls back on the other
6493 one. If no alpha expression is specified it will evaluate to opaque value.
6494 If none of chrominance expressions are specified, they will evaluate
6495 to the luminance expression.
6496
6497 The expressions can use the following variables and functions:
6498
6499 @table @option
6500 @item N
6501 The sequential number of the filtered frame, starting from @code{0}.
6502
6503 @item X
6504 @item Y
6505 The coordinates of the current sample.
6506
6507 @item W
6508 @item H
6509 The width and height of the image.
6510
6511 @item SW
6512 @item SH
6513 Width and height scale depending on the currently filtered plane. It is the
6514 ratio between the corresponding luma plane number of pixels and the current
6515 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
6516 @code{0.5,0.5} for chroma planes.
6517
6518 @item T
6519 Time of the current frame, expressed in seconds.
6520
6521 @item p(x, y)
6522 Return the value of the pixel at location (@var{x},@var{y}) of the current
6523 plane.
6524
6525 @item lum(x, y)
6526 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
6527 plane.
6528
6529 @item cb(x, y)
6530 Return the value of the pixel at location (@var{x},@var{y}) of the
6531 blue-difference chroma plane. Return 0 if there is no such plane.
6532
6533 @item cr(x, y)
6534 Return the value of the pixel at location (@var{x},@var{y}) of the
6535 red-difference chroma plane. Return 0 if there is no such plane.
6536
6537 @item r(x, y)
6538 @item g(x, y)
6539 @item b(x, y)
6540 Return the value of the pixel at location (@var{x},@var{y}) of the
6541 red/green/blue component. Return 0 if there is no such component.
6542
6543 @item alpha(x, y)
6544 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
6545 plane. Return 0 if there is no such plane.
6546 @end table
6547
6548 For functions, if @var{x} and @var{y} are outside the area, the value will be
6549 automatically clipped to the closer edge.
6550
6551 @subsection Examples
6552
6553 @itemize
6554 @item
6555 Flip the image horizontally:
6556 @example
6557 geq=p(W-X\,Y)
6558 @end example
6559
6560 @item
6561 Generate a bidimensional sine wave, with angle @code{PI/3} and a
6562 wavelength of 100 pixels:
6563 @example
6564 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
6565 @end example
6566
6567 @item
6568 Generate a fancy enigmatic moving light:
6569 @example
6570 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
6571 @end example
6572
6573 @item
6574 Generate a quick emboss effect:
6575 @example
6576 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
6577 @end example
6578
6579 @item
6580 Modify RGB components depending on pixel position:
6581 @example
6582 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
6583 @end example
6584
6585 @item
6586 Create a radial gradient that is the same size as the input (also see
6587 the @ref{vignette} filter):
6588 @example
6589 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
6590 @end example
6591
6592 @item
6593 Create a linear gradient to use as a mask for another filter, then
6594 compose with @ref{overlay}. In this example the video will gradually
6595 become more blurry from the top to the bottom of the y-axis as defined
6596 by the linear gradient:
6597 @example
6598 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
6599 @end example
6600 @end itemize
6601
6602 @section gradfun
6603
6604 Fix the banding artifacts that are sometimes introduced into nearly flat
6605 regions by truncation to 8bit color depth.
6606 Interpolate the gradients that should go where the bands are, and
6607 dither them.
6608
6609 It is designed for playback only.  Do not use it prior to
6610 lossy compression, because compression tends to lose the dither and
6611 bring back the bands.
6612
6613 It accepts the following parameters:
6614
6615 @table @option
6616
6617 @item strength
6618 The maximum amount by which the filter will change any one pixel. This is also
6619 the threshold for detecting nearly flat regions. Acceptable values range from
6620 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
6621 valid range.
6622
6623 @item radius
6624 The neighborhood to fit the gradient to. A larger radius makes for smoother
6625 gradients, but also prevents the filter from modifying the pixels near detailed
6626 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
6627 values will be clipped to the valid range.
6628
6629 @end table
6630
6631 Alternatively, the options can be specified as a flat string:
6632 @var{strength}[:@var{radius}]
6633
6634 @subsection Examples
6635
6636 @itemize
6637 @item
6638 Apply the filter with a @code{3.5} strength and radius of @code{8}:
6639 @example
6640 gradfun=3.5:8
6641 @end example
6642
6643 @item
6644 Specify radius, omitting the strength (which will fall-back to the default
6645 value):
6646 @example
6647 gradfun=radius=8
6648 @end example
6649
6650 @end itemize
6651
6652 @anchor{haldclut}
6653 @section haldclut
6654
6655 Apply a Hald CLUT to a video stream.
6656
6657 First input is the video stream to process, and second one is the Hald CLUT.
6658 The Hald CLUT input can be a simple picture or a complete video stream.
6659
6660 The filter accepts the following options:
6661
6662 @table @option
6663 @item shortest
6664 Force termination when the shortest input terminates. Default is @code{0}.
6665 @item repeatlast
6666 Continue applying the last CLUT after the end of the stream. A value of
6667 @code{0} disable the filter after the last frame of the CLUT is reached.
6668 Default is @code{1}.
6669 @end table
6670
6671 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
6672 filters share the same internals).
6673
6674 More information about the Hald CLUT can be found on Eskil Steenberg's website
6675 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
6676
6677 @subsection Workflow examples
6678
6679 @subsubsection Hald CLUT video stream
6680
6681 Generate an identity Hald CLUT stream altered with various effects:
6682 @example
6683 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
6684 @end example
6685
6686 Note: make sure you use a lossless codec.
6687
6688 Then use it with @code{haldclut} to apply it on some random stream:
6689 @example
6690 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
6691 @end example
6692
6693 The Hald CLUT will be applied to the 10 first seconds (duration of
6694 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
6695 to the remaining frames of the @code{mandelbrot} stream.
6696
6697 @subsubsection Hald CLUT with preview
6698
6699 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
6700 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
6701 biggest possible square starting at the top left of the picture. The remaining
6702 padding pixels (bottom or right) will be ignored. This area can be used to add
6703 a preview of the Hald CLUT.
6704
6705 Typically, the following generated Hald CLUT will be supported by the
6706 @code{haldclut} filter:
6707
6708 @example
6709 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
6710    pad=iw+320 [padded_clut];
6711    smptebars=s=320x256, split [a][b];
6712    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
6713    [main][b] overlay=W-320" -frames:v 1 clut.png
6714 @end example
6715
6716 It contains the original and a preview of the effect of the CLUT: SMPTE color
6717 bars are displayed on the right-top, and below the same color bars processed by
6718 the color changes.
6719
6720 Then, the effect of this Hald CLUT can be visualized with:
6721 @example
6722 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
6723 @end example
6724
6725 @section hflip
6726
6727 Flip the input video horizontally.
6728
6729 For example, to horizontally flip the input video with @command{ffmpeg}:
6730 @example
6731 ffmpeg -i in.avi -vf "hflip" out.avi
6732 @end example
6733
6734 @section histeq
6735 This filter applies a global color histogram equalization on a
6736 per-frame basis.
6737
6738 It can be used to correct video that has a compressed range of pixel
6739 intensities.  The filter redistributes the pixel intensities to
6740 equalize their distribution across the intensity range. It may be
6741 viewed as an "automatically adjusting contrast filter". This filter is
6742 useful only for correcting degraded or poorly captured source
6743 video.
6744
6745 The filter accepts the following options:
6746
6747 @table @option
6748 @item strength
6749 Determine the amount of equalization to be applied.  As the strength
6750 is reduced, the distribution of pixel intensities more-and-more
6751 approaches that of the input frame. The value must be a float number
6752 in the range [0,1] and defaults to 0.200.
6753
6754 @item intensity
6755 Set the maximum intensity that can generated and scale the output
6756 values appropriately.  The strength should be set as desired and then
6757 the intensity can be limited if needed to avoid washing-out. The value
6758 must be a float number in the range [0,1] and defaults to 0.210.
6759
6760 @item antibanding
6761 Set the antibanding level. If enabled the filter will randomly vary
6762 the luminance of output pixels by a small amount to avoid banding of
6763 the histogram. Possible values are @code{none}, @code{weak} or
6764 @code{strong}. It defaults to @code{none}.
6765 @end table
6766
6767 @section histogram
6768
6769 Compute and draw a color distribution histogram for the input video.
6770
6771 The computed histogram is a representation of the color component
6772 distribution in an image.
6773
6774 The filter accepts the following options:
6775
6776 @table @option
6777 @item mode
6778 Set histogram mode.
6779
6780 It accepts the following values:
6781 @table @samp
6782 @item levels
6783 Standard histogram that displays the color components distribution in an
6784 image. Displays color graph for each color component. Shows distribution of
6785 the Y, U, V, A or R, G, B components, depending on input format, in the
6786 current frame. Below each graph a color component scale meter is shown.
6787
6788 @item color
6789 Displays chroma values (U/V color placement) in a two dimensional
6790 graph (which is called a vectorscope). The brighter a pixel in the
6791 vectorscope, the more pixels of the input frame correspond to that pixel
6792 (i.e., more pixels have this chroma value). The V component is displayed on
6793 the horizontal (X) axis, with the leftmost side being V = 0 and the rightmost
6794 side being V = 255. The U component is displayed on the vertical (Y) axis,
6795 with the top representing U = 0 and the bottom representing U = 255.
6796
6797 The position of a white pixel in the graph corresponds to the chroma value of
6798 a pixel of the input clip. The graph can therefore be used to read the hue
6799 (color flavor) and the saturation (the dominance of the hue in the color). As
6800 the hue of a color changes, it moves around the square. At the center of the
6801 square the saturation is zero, which means that the corresponding pixel has no
6802 color. If the amount of a specific color is increased (while leaving the other
6803 colors unchanged) the saturation increases, and the indicator moves towards
6804 the edge of the square.
6805
6806 @item color2
6807 Chroma values in vectorscope, similar as @code{color} but actual chroma values
6808 are displayed.
6809
6810 @item waveform
6811 Per row/column color component graph. In row mode, the graph on the left side
6812 represents color component value 0 and the right side represents value = 255.
6813 In column mode, the top side represents color component value = 0 and bottom
6814 side represents value = 255.
6815 @end table
6816 Default value is @code{levels}.
6817
6818 @item level_height
6819 Set height of level in @code{levels}. Default value is @code{200}.
6820 Allowed range is [50, 2048].
6821
6822 @item scale_height
6823 Set height of color scale in @code{levels}. Default value is @code{12}.
6824 Allowed range is [0, 40].
6825
6826 @item step
6827 Set step for @code{waveform} mode. Smaller values are useful to find out how
6828 many values of the same luminance are distributed across input rows/columns.
6829 Default value is @code{10}. Allowed range is [1, 255].
6830
6831 @item waveform_mode
6832 Set mode for @code{waveform}. Can be either @code{row}, or @code{column}.
6833 Default is @code{row}.
6834
6835 @item waveform_mirror
6836 Set mirroring mode for @code{waveform}. @code{0} means unmirrored, @code{1}
6837 means mirrored. In mirrored mode, higher values will be represented on the left
6838 side for @code{row} mode and at the top for @code{column} mode. Default is
6839 @code{0} (unmirrored).
6840
6841 @item display_mode
6842 Set display mode for @code{waveform} and @code{levels}.
6843 It accepts the following values:
6844 @table @samp
6845 @item parade
6846 Display separate graph for the color components side by side in
6847 @code{row} waveform mode or one below the other in @code{column} waveform mode
6848 for @code{waveform} histogram mode. For @code{levels} histogram mode,
6849 per color component graphs are placed below each other.
6850
6851 Using this display mode in @code{waveform} histogram mode makes it easy to
6852 spot color casts in the highlights and shadows of an image, by comparing the
6853 contours of the top and the bottom graphs of each waveform. Since whites,
6854 grays, and blacks are characterized by exactly equal amounts of red, green,
6855 and blue, neutral areas of the picture should display three waveforms of
6856 roughly equal width/height. If not, the correction is easy to perform by
6857 making level adjustments the three waveforms.
6858
6859 @item overlay
6860 Presents information identical to that in the @code{parade}, except
6861 that the graphs representing color components are superimposed directly
6862 over one another.
6863
6864 This display mode in @code{waveform} histogram mode makes it easier to spot
6865 relative differences or similarities in overlapping areas of the color
6866 components that are supposed to be identical, such as neutral whites, grays,
6867 or blacks.
6868 @end table
6869 Default is @code{parade}.
6870
6871 @item levels_mode
6872 Set mode for @code{levels}. Can be either @code{linear}, or @code{logarithmic}.
6873 Default is @code{linear}.
6874
6875 @item components
6876 Set what color components to display for mode @code{levels}.
6877 Default is @code{7}.
6878 @end table
6879
6880 @subsection Examples
6881
6882 @itemize
6883
6884 @item
6885 Calculate and draw histogram:
6886 @example
6887 ffplay -i input -vf histogram
6888 @end example
6889
6890 @end itemize
6891
6892 @anchor{hqdn3d}
6893 @section hqdn3d
6894
6895 This is a high precision/quality 3d denoise filter. It aims to reduce
6896 image noise, producing smooth images and making still images really
6897 still. It should enhance compressibility.
6898
6899 It accepts the following optional parameters:
6900
6901 @table @option
6902 @item luma_spatial
6903 A non-negative floating point number which specifies spatial luma strength.
6904 It defaults to 4.0.
6905
6906 @item chroma_spatial
6907 A non-negative floating point number which specifies spatial chroma strength.
6908 It defaults to 3.0*@var{luma_spatial}/4.0.
6909
6910 @item luma_tmp
6911 A floating point number which specifies luma temporal strength. It defaults to
6912 6.0*@var{luma_spatial}/4.0.
6913
6914 @item chroma_tmp
6915 A floating point number which specifies chroma temporal strength. It defaults to
6916 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
6917 @end table
6918
6919 @section hqx
6920
6921 Apply a high-quality magnification filter designed for pixel art. This filter
6922 was originally created by Maxim Stepin.
6923
6924 It accepts the following option:
6925
6926 @table @option
6927 @item n
6928 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
6929 @code{hq3x} and @code{4} for @code{hq4x}.
6930 Default is @code{3}.
6931 @end table
6932
6933 @section hstack
6934 Stack input videos horizontally.
6935
6936 All streams must be of same pixel format and of same height.
6937
6938 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
6939 to create same output.
6940
6941 The filter accept the following option:
6942
6943 @table @option
6944 @item nb_inputs
6945 Set number of input streams. Default is 2.
6946 @end table
6947
6948 @section hue
6949
6950 Modify the hue and/or the saturation of the input.
6951
6952 It accepts the following parameters:
6953
6954 @table @option
6955 @item h
6956 Specify the hue angle as a number of degrees. It accepts an expression,
6957 and defaults to "0".
6958
6959 @item s
6960 Specify the saturation in the [-10,10] range. It accepts an expression and
6961 defaults to "1".
6962
6963 @item H
6964 Specify the hue angle as a number of radians. It accepts an
6965 expression, and defaults to "0".
6966
6967 @item b
6968 Specify the brightness in the [-10,10] range. It accepts an expression and
6969 defaults to "0".
6970 @end table
6971
6972 @option{h} and @option{H} are mutually exclusive, and can't be
6973 specified at the same time.
6974
6975 The @option{b}, @option{h}, @option{H} and @option{s} option values are
6976 expressions containing the following constants:
6977
6978 @table @option
6979 @item n
6980 frame count of the input frame starting from 0
6981
6982 @item pts
6983 presentation timestamp of the input frame expressed in time base units
6984
6985 @item r
6986 frame rate of the input video, NAN if the input frame rate is unknown
6987
6988 @item t
6989 timestamp expressed in seconds, NAN if the input timestamp is unknown
6990
6991 @item tb
6992 time base of the input video
6993 @end table
6994
6995 @subsection Examples
6996
6997 @itemize
6998 @item
6999 Set the hue to 90 degrees and the saturation to 1.0:
7000 @example
7001 hue=h=90:s=1
7002 @end example
7003
7004 @item
7005 Same command but expressing the hue in radians:
7006 @example
7007 hue=H=PI/2:s=1
7008 @end example
7009
7010 @item
7011 Rotate hue and make the saturation swing between 0
7012 and 2 over a period of 1 second:
7013 @example
7014 hue="H=2*PI*t: s=sin(2*PI*t)+1"
7015 @end example
7016
7017 @item
7018 Apply a 3 seconds saturation fade-in effect starting at 0:
7019 @example
7020 hue="s=min(t/3\,1)"
7021 @end example
7022
7023 The general fade-in expression can be written as:
7024 @example
7025 hue="s=min(0\, max((t-START)/DURATION\, 1))"
7026 @end example
7027
7028 @item
7029 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
7030 @example
7031 hue="s=max(0\, min(1\, (8-t)/3))"
7032 @end example
7033
7034 The general fade-out expression can be written as:
7035 @example
7036 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
7037 @end example
7038
7039 @end itemize
7040
7041 @subsection Commands
7042
7043 This filter supports the following commands:
7044 @table @option
7045 @item b
7046 @item s
7047 @item h
7048 @item H
7049 Modify the hue and/or the saturation and/or brightness of the input video.
7050 The command accepts the same syntax of the corresponding option.
7051
7052 If the specified expression is not valid, it is kept at its current
7053 value.
7054 @end table
7055
7056 @section idet
7057
7058 Detect video interlacing type.
7059
7060 This filter tries to detect if the input frames as interlaced, progressive,
7061 top or bottom field first. It will also try and detect fields that are
7062 repeated between adjacent frames (a sign of telecine).
7063
7064 Single frame detection considers only immediately adjacent frames when classifying each frame.
7065 Multiple frame detection incorporates the classification history of previous frames.
7066
7067 The filter will log these metadata values:
7068
7069 @table @option
7070 @item single.current_frame
7071 Detected type of current frame using single-frame detection. One of:
7072 ``tff'' (top field first), ``bff'' (bottom field first),
7073 ``progressive'', or ``undetermined''
7074
7075 @item single.tff
7076 Cumulative number of frames detected as top field first using single-frame detection.
7077
7078 @item multiple.tff
7079 Cumulative number of frames detected as top field first using multiple-frame detection.
7080
7081 @item single.bff
7082 Cumulative number of frames detected as bottom field first using single-frame detection.
7083
7084 @item multiple.current_frame
7085 Detected type of current frame using multiple-frame detection. One of:
7086 ``tff'' (top field first), ``bff'' (bottom field first),
7087 ``progressive'', or ``undetermined''
7088
7089 @item multiple.bff
7090 Cumulative number of frames detected as bottom field first using multiple-frame detection.
7091
7092 @item single.progressive
7093 Cumulative number of frames detected as progressive using single-frame detection.
7094
7095 @item multiple.progressive
7096 Cumulative number of frames detected as progressive using multiple-frame detection.
7097
7098 @item single.undetermined
7099 Cumulative number of frames that could not be classified using single-frame detection.
7100
7101 @item multiple.undetermined
7102 Cumulative number of frames that could not be classified using multiple-frame detection.
7103
7104 @item repeated.current_frame
7105 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
7106
7107 @item repeated.neither
7108 Cumulative number of frames with no repeated field.
7109
7110 @item repeated.top
7111 Cumulative number of frames with the top field repeated from the previous frame's top field.
7112
7113 @item repeated.bottom
7114 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
7115 @end table
7116
7117 The filter accepts the following options:
7118
7119 @table @option
7120 @item intl_thres
7121 Set interlacing threshold.
7122 @item prog_thres
7123 Set progressive threshold.
7124 @item repeat_thres
7125 Threshold for repeated field detection.
7126 @item half_life
7127 Number of frames after which a given frame's contribution to the
7128 statistics is halved (i.e., it contributes only 0.5 to it's
7129 classification). The default of 0 means that all frames seen are given
7130 full weight of 1.0 forever.
7131 @item analyze_interlaced_flag
7132 When this is not 0 then idet will use the specified number of frames to determine
7133 if the interlaced flag is accurate, it will not count undetermined frames.
7134 If the flag is found to be accurate it will be used without any further
7135 computations, if it is found to be inaccurate it will be cleared without any
7136 further computations. This allows inserting the idet filter as a low computational
7137 method to clean up the interlaced flag
7138 @end table
7139
7140 @section il
7141
7142 Deinterleave or interleave fields.
7143
7144 This filter allows one to process interlaced images fields without
7145 deinterlacing them. Deinterleaving splits the input frame into 2
7146 fields (so called half pictures). Odd lines are moved to the top
7147 half of the output image, even lines to the bottom half.
7148 You can process (filter) them independently and then re-interleave them.
7149
7150 The filter accepts the following options:
7151
7152 @table @option
7153 @item luma_mode, l
7154 @item chroma_mode, c
7155 @item alpha_mode, a
7156 Available values for @var{luma_mode}, @var{chroma_mode} and
7157 @var{alpha_mode} are:
7158
7159 @table @samp
7160 @item none
7161 Do nothing.
7162
7163 @item deinterleave, d
7164 Deinterleave fields, placing one above the other.
7165
7166 @item interleave, i
7167 Interleave fields. Reverse the effect of deinterleaving.
7168 @end table
7169 Default value is @code{none}.
7170
7171 @item luma_swap, ls
7172 @item chroma_swap, cs
7173 @item alpha_swap, as
7174 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
7175 @end table
7176
7177 @section inflate
7178
7179 Apply inflate effect to the video.
7180
7181 This filter replaces the pixel by the local(3x3) average by taking into account
7182 only values higher than the pixel.
7183
7184 It accepts the following options:
7185
7186 @table @option
7187 @item threshold0
7188 @item threshold1
7189 @item threshold2
7190 @item threshold3
7191 Allows to limit the maximum change for each plane, default is 65535.
7192 If 0, plane will remain unchanged.
7193 @end table
7194
7195 @section interlace
7196
7197 Simple interlacing filter from progressive contents. This interleaves upper (or
7198 lower) lines from odd frames with lower (or upper) lines from even frames,
7199 halving the frame rate and preserving image height.
7200
7201 @example
7202    Original        Original             New Frame
7203    Frame 'j'      Frame 'j+1'             (tff)
7204   ==========      ===========       ==================
7205     Line 0  -------------------->    Frame 'j' Line 0
7206     Line 1          Line 1  ---->   Frame 'j+1' Line 1
7207     Line 2 --------------------->    Frame 'j' Line 2
7208     Line 3          Line 3  ---->   Frame 'j+1' Line 3
7209      ...             ...                   ...
7210 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
7211 @end example
7212
7213 It accepts the following optional parameters:
7214
7215 @table @option
7216 @item scan
7217 This determines whether the interlaced frame is taken from the even
7218 (tff - default) or odd (bff) lines of the progressive frame.
7219
7220 @item lowpass
7221 Enable (default) or disable the vertical lowpass filter to avoid twitter
7222 interlacing and reduce moire patterns.
7223 @end table
7224
7225 @section kerndeint
7226
7227 Deinterlace input video by applying Donald Graft's adaptive kernel
7228 deinterling. Work on interlaced parts of a video to produce
7229 progressive frames.
7230
7231 The description of the accepted parameters follows.
7232
7233 @table @option
7234 @item thresh
7235 Set the threshold which affects the filter's tolerance when
7236 determining if a pixel line must be processed. It must be an integer
7237 in the range [0,255] and defaults to 10. A value of 0 will result in
7238 applying the process on every pixels.
7239
7240 @item map
7241 Paint pixels exceeding the threshold value to white if set to 1.
7242 Default is 0.
7243
7244 @item order
7245 Set the fields order. Swap fields if set to 1, leave fields alone if
7246 0. Default is 0.
7247
7248 @item sharp
7249 Enable additional sharpening if set to 1. Default is 0.
7250
7251 @item twoway
7252 Enable twoway sharpening if set to 1. Default is 0.
7253 @end table
7254
7255 @subsection Examples
7256
7257 @itemize
7258 @item
7259 Apply default values:
7260 @example
7261 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
7262 @end example
7263
7264 @item
7265 Enable additional sharpening:
7266 @example
7267 kerndeint=sharp=1
7268 @end example
7269
7270 @item
7271 Paint processed pixels in white:
7272 @example
7273 kerndeint=map=1
7274 @end example
7275 @end itemize
7276
7277 @section lenscorrection
7278
7279 Correct radial lens distortion
7280
7281 This filter can be used to correct for radial distortion as can result from the use
7282 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
7283 one can use tools available for example as part of opencv or simply trial-and-error.
7284 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
7285 and extract the k1 and k2 coefficients from the resulting matrix.
7286
7287 Note that effectively the same filter is available in the open-source tools Krita and
7288 Digikam from the KDE project.
7289
7290 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
7291 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
7292 brightness distribution, so you may want to use both filters together in certain
7293 cases, though you will have to take care of ordering, i.e. whether vignetting should
7294 be applied before or after lens correction.
7295
7296 @subsection Options
7297
7298 The filter accepts the following options:
7299
7300 @table @option
7301 @item cx
7302 Relative x-coordinate of the focal point of the image, and thereby the center of the
7303 distortion. This value has a range [0,1] and is expressed as fractions of the image
7304 width.
7305 @item cy
7306 Relative y-coordinate of the focal point of the image, and thereby the center of the
7307 distortion. This value has a range [0,1] and is expressed as fractions of the image
7308 height.
7309 @item k1
7310 Coefficient of the quadratic correction term. 0.5 means no correction.
7311 @item k2
7312 Coefficient of the double quadratic correction term. 0.5 means no correction.
7313 @end table
7314
7315 The formula that generates the correction is:
7316
7317 @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)
7318
7319 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
7320 distances from the focal point in the source and target images, respectively.
7321
7322 @anchor{lut3d}
7323 @section lut3d
7324
7325 Apply a 3D LUT to an input video.
7326
7327 The filter accepts the following options:
7328
7329 @table @option
7330 @item file
7331 Set the 3D LUT file name.
7332
7333 Currently supported formats:
7334 @table @samp
7335 @item 3dl
7336 AfterEffects
7337 @item cube
7338 Iridas
7339 @item dat
7340 DaVinci
7341 @item m3d
7342 Pandora
7343 @end table
7344 @item interp
7345 Select interpolation mode.
7346
7347 Available values are:
7348
7349 @table @samp
7350 @item nearest
7351 Use values from the nearest defined point.
7352 @item trilinear
7353 Interpolate values using the 8 points defining a cube.
7354 @item tetrahedral
7355 Interpolate values using a tetrahedron.
7356 @end table
7357 @end table
7358
7359 @section lut, lutrgb, lutyuv
7360
7361 Compute a look-up table for binding each pixel component input value
7362 to an output value, and apply it to the input video.
7363
7364 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
7365 to an RGB input video.
7366
7367 These filters accept the following parameters:
7368 @table @option
7369 @item c0
7370 set first pixel component expression
7371 @item c1
7372 set second pixel component expression
7373 @item c2
7374 set third pixel component expression
7375 @item c3
7376 set fourth pixel component expression, corresponds to the alpha component
7377
7378 @item r
7379 set red component expression
7380 @item g
7381 set green component expression
7382 @item b
7383 set blue component expression
7384 @item a
7385 alpha component expression
7386
7387 @item y
7388 set Y/luminance component expression
7389 @item u
7390 set U/Cb component expression
7391 @item v
7392 set V/Cr component expression
7393 @end table
7394
7395 Each of them specifies the expression to use for computing the lookup table for
7396 the corresponding pixel component values.
7397
7398 The exact component associated to each of the @var{c*} options depends on the
7399 format in input.
7400
7401 The @var{lut} filter requires either YUV or RGB pixel formats in input,
7402 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
7403
7404 The expressions can contain the following constants and functions:
7405
7406 @table @option
7407 @item w
7408 @item h
7409 The input width and height.
7410
7411 @item val
7412 The input value for the pixel component.
7413
7414 @item clipval
7415 The input value, clipped to the @var{minval}-@var{maxval} range.
7416
7417 @item maxval
7418 The maximum value for the pixel component.
7419
7420 @item minval
7421 The minimum value for the pixel component.
7422
7423 @item negval
7424 The negated value for the pixel component value, clipped to the
7425 @var{minval}-@var{maxval} range; it corresponds to the expression
7426 "maxval-clipval+minval".
7427
7428 @item clip(val)
7429 The computed value in @var{val}, clipped to the
7430 @var{minval}-@var{maxval} range.
7431
7432 @item gammaval(gamma)
7433 The computed gamma correction value of the pixel component value,
7434 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
7435 expression
7436 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
7437
7438 @end table
7439
7440 All expressions default to "val".
7441
7442 @subsection Examples
7443
7444 @itemize
7445 @item
7446 Negate input video:
7447 @example
7448 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
7449 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
7450 @end example
7451
7452 The above is the same as:
7453 @example
7454 lutrgb="r=negval:g=negval:b=negval"
7455 lutyuv="y=negval:u=negval:v=negval"
7456 @end example
7457
7458 @item
7459 Negate luminance:
7460 @example
7461 lutyuv=y=negval
7462 @end example
7463
7464 @item
7465 Remove chroma components, turning the video into a graytone image:
7466 @example
7467 lutyuv="u=128:v=128"
7468 @end example
7469
7470 @item
7471 Apply a luma burning effect:
7472 @example
7473 lutyuv="y=2*val"
7474 @end example
7475
7476 @item
7477 Remove green and blue components:
7478 @example
7479 lutrgb="g=0:b=0"
7480 @end example
7481
7482 @item
7483 Set a constant alpha channel value on input:
7484 @example
7485 format=rgba,lutrgb=a="maxval-minval/2"
7486 @end example
7487
7488 @item
7489 Correct luminance gamma by a factor of 0.5:
7490 @example
7491 lutyuv=y=gammaval(0.5)
7492 @end example
7493
7494 @item
7495 Discard least significant bits of luma:
7496 @example
7497 lutyuv=y='bitand(val, 128+64+32)'
7498 @end example
7499 @end itemize
7500
7501 @section mergeplanes
7502
7503 Merge color channel components from several video streams.
7504
7505 The filter accepts up to 4 input streams, and merge selected input
7506 planes to the output video.
7507
7508 This filter accepts the following options:
7509 @table @option
7510 @item mapping
7511 Set input to output plane mapping. Default is @code{0}.
7512
7513 The mappings is specified as a bitmap. It should be specified as a
7514 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
7515 mapping for the first plane of the output stream. 'A' sets the number of
7516 the input stream to use (from 0 to 3), and 'a' the plane number of the
7517 corresponding input to use (from 0 to 3). The rest of the mappings is
7518 similar, 'Bb' describes the mapping for the output stream second
7519 plane, 'Cc' describes the mapping for the output stream third plane and
7520 'Dd' describes the mapping for the output stream fourth plane.
7521
7522 @item format
7523 Set output pixel format. Default is @code{yuva444p}.
7524 @end table
7525
7526 @subsection Examples
7527
7528 @itemize
7529 @item
7530 Merge three gray video streams of same width and height into single video stream:
7531 @example
7532 [a0][a1][a2]mergeplanes=0x001020:yuv444p
7533 @end example
7534
7535 @item
7536 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
7537 @example
7538 [a0][a1]mergeplanes=0x00010210:yuva444p
7539 @end example
7540
7541 @item
7542 Swap Y and A plane in yuva444p stream:
7543 @example
7544 format=yuva444p,mergeplanes=0x03010200:yuva444p
7545 @end example
7546
7547 @item
7548 Swap U and V plane in yuv420p stream:
7549 @example
7550 format=yuv420p,mergeplanes=0x000201:yuv420p
7551 @end example
7552
7553 @item
7554 Cast a rgb24 clip to yuv444p:
7555 @example
7556 format=rgb24,mergeplanes=0x000102:yuv444p
7557 @end example
7558 @end itemize
7559
7560 @section mcdeint
7561
7562 Apply motion-compensation deinterlacing.
7563
7564 It needs one field per frame as input and must thus be used together
7565 with yadif=1/3 or equivalent.
7566
7567 This filter accepts the following options:
7568 @table @option
7569 @item mode
7570 Set the deinterlacing mode.
7571
7572 It accepts one of the following values:
7573 @table @samp
7574 @item fast
7575 @item medium
7576 @item slow
7577 use iterative motion estimation
7578 @item extra_slow
7579 like @samp{slow}, but use multiple reference frames.
7580 @end table
7581 Default value is @samp{fast}.
7582
7583 @item parity
7584 Set the picture field parity assumed for the input video. It must be
7585 one of the following values:
7586
7587 @table @samp
7588 @item 0, tff
7589 assume top field first
7590 @item 1, bff
7591 assume bottom field first
7592 @end table
7593
7594 Default value is @samp{bff}.
7595
7596 @item qp
7597 Set per-block quantization parameter (QP) used by the internal
7598 encoder.
7599
7600 Higher values should result in a smoother motion vector field but less
7601 optimal individual vectors. Default value is 1.
7602 @end table
7603
7604 @section mpdecimate
7605
7606 Drop frames that do not differ greatly from the previous frame in
7607 order to reduce frame rate.
7608
7609 The main use of this filter is for very-low-bitrate encoding
7610 (e.g. streaming over dialup modem), but it could in theory be used for
7611 fixing movies that were inverse-telecined incorrectly.
7612
7613 A description of the accepted options follows.
7614
7615 @table @option
7616 @item max
7617 Set the maximum number of consecutive frames which can be dropped (if
7618 positive), or the minimum interval between dropped frames (if
7619 negative). If the value is 0, the frame is dropped unregarding the
7620 number of previous sequentially dropped frames.
7621
7622 Default value is 0.
7623
7624 @item hi
7625 @item lo
7626 @item frac
7627 Set the dropping threshold values.
7628
7629 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
7630 represent actual pixel value differences, so a threshold of 64
7631 corresponds to 1 unit of difference for each pixel, or the same spread
7632 out differently over the block.
7633
7634 A frame is a candidate for dropping if no 8x8 blocks differ by more
7635 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
7636 meaning the whole image) differ by more than a threshold of @option{lo}.
7637
7638 Default value for @option{hi} is 64*12, default value for @option{lo} is
7639 64*5, and default value for @option{frac} is 0.33.
7640 @end table
7641
7642
7643 @section negate
7644
7645 Negate input video.
7646
7647 It accepts an integer in input; if non-zero it negates the
7648 alpha component (if available). The default value in input is 0.
7649
7650 @section noformat
7651
7652 Force libavfilter not to use any of the specified pixel formats for the
7653 input to the next filter.
7654
7655 It accepts the following parameters:
7656 @table @option
7657
7658 @item pix_fmts
7659 A '|'-separated list of pixel format names, such as
7660 apix_fmts=yuv420p|monow|rgb24".
7661
7662 @end table
7663
7664 @subsection Examples
7665
7666 @itemize
7667 @item
7668 Force libavfilter to use a format different from @var{yuv420p} for the
7669 input to the vflip filter:
7670 @example
7671 noformat=pix_fmts=yuv420p,vflip
7672 @end example
7673
7674 @item
7675 Convert the input video to any of the formats not contained in the list:
7676 @example
7677 noformat=yuv420p|yuv444p|yuv410p
7678 @end example
7679 @end itemize
7680
7681 @section noise
7682
7683 Add noise on video input frame.
7684
7685 The filter accepts the following options:
7686
7687 @table @option
7688 @item all_seed
7689 @item c0_seed
7690 @item c1_seed
7691 @item c2_seed
7692 @item c3_seed
7693 Set noise seed for specific pixel component or all pixel components in case
7694 of @var{all_seed}. Default value is @code{123457}.
7695
7696 @item all_strength, alls
7697 @item c0_strength, c0s
7698 @item c1_strength, c1s
7699 @item c2_strength, c2s
7700 @item c3_strength, c3s
7701 Set noise strength for specific pixel component or all pixel components in case
7702 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
7703
7704 @item all_flags, allf
7705 @item c0_flags, c0f
7706 @item c1_flags, c1f
7707 @item c2_flags, c2f
7708 @item c3_flags, c3f
7709 Set pixel component flags or set flags for all components if @var{all_flags}.
7710 Available values for component flags are:
7711 @table @samp
7712 @item a
7713 averaged temporal noise (smoother)
7714 @item p
7715 mix random noise with a (semi)regular pattern
7716 @item t
7717 temporal noise (noise pattern changes between frames)
7718 @item u
7719 uniform noise (gaussian otherwise)
7720 @end table
7721 @end table
7722
7723 @subsection Examples
7724
7725 Add temporal and uniform noise to input video:
7726 @example
7727 noise=alls=20:allf=t+u
7728 @end example
7729
7730 @section null
7731
7732 Pass the video source unchanged to the output.
7733
7734 @section ocr
7735 Optical Character Recognition
7736
7737 This filter uses Tesseract for optical character recognition.
7738
7739 It accepts the following options:
7740
7741 @table @option
7742 @item datapath
7743 Set datapath to tesseract data. Default is to use whatever was
7744 set at installation.
7745
7746 @item language
7747 Set language, default is "eng".
7748
7749 @item whitelist
7750 Set character whitelist.
7751
7752 @item blacklist
7753 Set character blacklist.
7754 @end table
7755
7756 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
7757
7758 @section ocv
7759
7760 Apply a video transform using libopencv.
7761
7762 To enable this filter, install the libopencv library and headers and
7763 configure FFmpeg with @code{--enable-libopencv}.
7764
7765 It accepts the following parameters:
7766
7767 @table @option
7768
7769 @item filter_name
7770 The name of the libopencv filter to apply.
7771
7772 @item filter_params
7773 The parameters to pass to the libopencv filter. If not specified, the default
7774 values are assumed.
7775
7776 @end table
7777
7778 Refer to the official libopencv documentation for more precise
7779 information:
7780 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
7781
7782 Several libopencv filters are supported; see the following subsections.
7783
7784 @anchor{dilate}
7785 @subsection dilate
7786
7787 Dilate an image by using a specific structuring element.
7788 It corresponds to the libopencv function @code{cvDilate}.
7789
7790 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
7791
7792 @var{struct_el} represents a structuring element, and has the syntax:
7793 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
7794
7795 @var{cols} and @var{rows} represent the number of columns and rows of
7796 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
7797 point, and @var{shape} the shape for the structuring element. @var{shape}
7798 must be "rect", "cross", "ellipse", or "custom".
7799
7800 If the value for @var{shape} is "custom", it must be followed by a
7801 string of the form "=@var{filename}". The file with name
7802 @var{filename} is assumed to represent a binary image, with each
7803 printable character corresponding to a bright pixel. When a custom
7804 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
7805 or columns and rows of the read file are assumed instead.
7806
7807 The default value for @var{struct_el} is "3x3+0x0/rect".
7808
7809 @var{nb_iterations} specifies the number of times the transform is
7810 applied to the image, and defaults to 1.
7811
7812 Some examples:
7813 @example
7814 # Use the default values
7815 ocv=dilate
7816
7817 # Dilate using a structuring element with a 5x5 cross, iterating two times
7818 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
7819
7820 # Read the shape from the file diamond.shape, iterating two times.
7821 # The file diamond.shape may contain a pattern of characters like this
7822 #   *
7823 #  ***
7824 # *****
7825 #  ***
7826 #   *
7827 # The specified columns and rows are ignored
7828 # but the anchor point coordinates are not
7829 ocv=dilate:0x0+2x2/custom=diamond.shape|2
7830 @end example
7831
7832 @subsection erode
7833
7834 Erode an image by using a specific structuring element.
7835 It corresponds to the libopencv function @code{cvErode}.
7836
7837 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
7838 with the same syntax and semantics as the @ref{dilate} filter.
7839
7840 @subsection smooth
7841
7842 Smooth the input video.
7843
7844 The filter takes the following parameters:
7845 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
7846
7847 @var{type} is the type of smooth filter to apply, and must be one of
7848 the following values: "blur", "blur_no_scale", "median", "gaussian",
7849 or "bilateral". The default value is "gaussian".
7850
7851 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
7852 depend on the smooth type. @var{param1} and
7853 @var{param2} accept integer positive values or 0. @var{param3} and
7854 @var{param4} accept floating point values.
7855
7856 The default value for @var{param1} is 3. The default value for the
7857 other parameters is 0.
7858
7859 These parameters correspond to the parameters assigned to the
7860 libopencv function @code{cvSmooth}.
7861
7862 @anchor{overlay}
7863 @section overlay
7864
7865 Overlay one video on top of another.
7866
7867 It takes two inputs and has one output. The first input is the "main"
7868 video on which the second input is overlaid.
7869
7870 It accepts the following parameters:
7871
7872 A description of the accepted options follows.
7873
7874 @table @option
7875 @item x
7876 @item y
7877 Set the expression for the x and y coordinates of the overlaid video
7878 on the main video. Default value is "0" for both expressions. In case
7879 the expression is invalid, it is set to a huge value (meaning that the
7880 overlay will not be displayed within the output visible area).
7881
7882 @item eof_action
7883 The action to take when EOF is encountered on the secondary input; it accepts
7884 one of the following values:
7885
7886 @table @option
7887 @item repeat
7888 Repeat the last frame (the default).
7889 @item endall
7890 End both streams.
7891 @item pass
7892 Pass the main input through.
7893 @end table
7894
7895 @item eval
7896 Set when the expressions for @option{x}, and @option{y} are evaluated.
7897
7898 It accepts the following values:
7899 @table @samp
7900 @item init
7901 only evaluate expressions once during the filter initialization or
7902 when a command is processed
7903
7904 @item frame
7905 evaluate expressions for each incoming frame
7906 @end table
7907
7908 Default value is @samp{frame}.
7909
7910 @item shortest
7911 If set to 1, force the output to terminate when the shortest input
7912 terminates. Default value is 0.
7913
7914 @item format
7915 Set the format for the output video.
7916
7917 It accepts the following values:
7918 @table @samp
7919 @item yuv420
7920 force YUV420 output
7921
7922 @item yuv422
7923 force YUV422 output
7924
7925 @item yuv444
7926 force YUV444 output
7927
7928 @item rgb
7929 force RGB output
7930 @end table
7931
7932 Default value is @samp{yuv420}.
7933
7934 @item rgb @emph{(deprecated)}
7935 If set to 1, force the filter to accept inputs in the RGB
7936 color space. Default value is 0. This option is deprecated, use
7937 @option{format} instead.
7938
7939 @item repeatlast
7940 If set to 1, force the filter to draw the last overlay frame over the
7941 main input until the end of the stream. A value of 0 disables this
7942 behavior. Default value is 1.
7943 @end table
7944
7945 The @option{x}, and @option{y} expressions can contain the following
7946 parameters.
7947
7948 @table @option
7949 @item main_w, W
7950 @item main_h, H
7951 The main input width and height.
7952
7953 @item overlay_w, w
7954 @item overlay_h, h
7955 The overlay input width and height.
7956
7957 @item x
7958 @item y
7959 The computed values for @var{x} and @var{y}. They are evaluated for
7960 each new frame.
7961
7962 @item hsub
7963 @item vsub
7964 horizontal and vertical chroma subsample values of the output
7965 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
7966 @var{vsub} is 1.
7967
7968 @item n
7969 the number of input frame, starting from 0
7970
7971 @item pos
7972 the position in the file of the input frame, NAN if unknown
7973
7974 @item t
7975 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
7976
7977 @end table
7978
7979 Note that the @var{n}, @var{pos}, @var{t} variables are available only
7980 when evaluation is done @emph{per frame}, and will evaluate to NAN
7981 when @option{eval} is set to @samp{init}.
7982
7983 Be aware that frames are taken from each input video in timestamp
7984 order, hence, if their initial timestamps differ, it is a good idea
7985 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
7986 have them begin in the same zero timestamp, as the example for
7987 the @var{movie} filter does.
7988
7989 You can chain together more overlays but you should test the
7990 efficiency of such approach.
7991
7992 @subsection Commands
7993
7994 This filter supports the following commands:
7995 @table @option
7996 @item x
7997 @item y
7998 Modify the x and y of the overlay input.
7999 The command accepts the same syntax of the corresponding option.
8000
8001 If the specified expression is not valid, it is kept at its current
8002 value.
8003 @end table
8004
8005 @subsection Examples
8006
8007 @itemize
8008 @item
8009 Draw the overlay at 10 pixels from the bottom right corner of the main
8010 video:
8011 @example
8012 overlay=main_w-overlay_w-10:main_h-overlay_h-10
8013 @end example
8014
8015 Using named options the example above becomes:
8016 @example
8017 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
8018 @end example
8019
8020 @item
8021 Insert a transparent PNG logo in the bottom left corner of the input,
8022 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
8023 @example
8024 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
8025 @end example
8026
8027 @item
8028 Insert 2 different transparent PNG logos (second logo on bottom
8029 right corner) using the @command{ffmpeg} tool:
8030 @example
8031 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
8032 @end example
8033
8034 @item
8035 Add a transparent color layer on top of the main video; @code{WxH}
8036 must specify the size of the main input to the overlay filter:
8037 @example
8038 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
8039 @end example
8040
8041 @item
8042 Play an original video and a filtered version (here with the deshake
8043 filter) side by side using the @command{ffplay} tool:
8044 @example
8045 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
8046 @end example
8047
8048 The above command is the same as:
8049 @example
8050 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
8051 @end example
8052
8053 @item
8054 Make a sliding overlay appearing from the left to the right top part of the
8055 screen starting since time 2:
8056 @example
8057 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
8058 @end example
8059
8060 @item
8061 Compose output by putting two input videos side to side:
8062 @example
8063 ffmpeg -i left.avi -i right.avi -filter_complex "
8064 nullsrc=size=200x100 [background];
8065 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
8066 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
8067 [background][left]       overlay=shortest=1       [background+left];
8068 [background+left][right] overlay=shortest=1:x=100 [left+right]
8069 "
8070 @end example
8071
8072 @item
8073 Mask 10-20 seconds of a video by applying the delogo filter to a section
8074 @example
8075 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
8076 -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]'
8077 masked.avi
8078 @end example
8079
8080 @item
8081 Chain several overlays in cascade:
8082 @example
8083 nullsrc=s=200x200 [bg];
8084 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
8085 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
8086 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
8087 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
8088 [in3] null,       [mid2] overlay=100:100 [out0]
8089 @end example
8090
8091 @end itemize
8092
8093 @section owdenoise
8094
8095 Apply Overcomplete Wavelet denoiser.
8096
8097 The filter accepts the following options:
8098
8099 @table @option
8100 @item depth
8101 Set depth.
8102
8103 Larger depth values will denoise lower frequency components more, but
8104 slow down filtering.
8105
8106 Must be an int in the range 8-16, default is @code{8}.
8107
8108 @item luma_strength, ls
8109 Set luma strength.
8110
8111 Must be a double value in the range 0-1000, default is @code{1.0}.
8112
8113 @item chroma_strength, cs
8114 Set chroma strength.
8115
8116 Must be a double value in the range 0-1000, default is @code{1.0}.
8117 @end table
8118
8119 @anchor{pad}
8120 @section pad
8121
8122 Add paddings to the input image, and place the original input at the
8123 provided @var{x}, @var{y} coordinates.
8124
8125 It accepts the following parameters:
8126
8127 @table @option
8128 @item width, w
8129 @item height, h
8130 Specify an expression for the size of the output image with the
8131 paddings added. If the value for @var{width} or @var{height} is 0, the
8132 corresponding input size is used for the output.
8133
8134 The @var{width} expression can reference the value set by the
8135 @var{height} expression, and vice versa.
8136
8137 The default value of @var{width} and @var{height} is 0.
8138
8139 @item x
8140 @item y
8141 Specify the offsets to place the input image at within the padded area,
8142 with respect to the top/left border of the output image.
8143
8144 The @var{x} expression can reference the value set by the @var{y}
8145 expression, and vice versa.
8146
8147 The default value of @var{x} and @var{y} is 0.
8148
8149 @item color
8150 Specify the color of the padded area. For the syntax of this option,
8151 check the "Color" section in the ffmpeg-utils manual.
8152
8153 The default value of @var{color} is "black".
8154 @end table
8155
8156 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
8157 options are expressions containing the following constants:
8158
8159 @table @option
8160 @item in_w
8161 @item in_h
8162 The input video width and height.
8163
8164 @item iw
8165 @item ih
8166 These are the same as @var{in_w} and @var{in_h}.
8167
8168 @item out_w
8169 @item out_h
8170 The output width and height (the size of the padded area), as
8171 specified by the @var{width} and @var{height} expressions.
8172
8173 @item ow
8174 @item oh
8175 These are the same as @var{out_w} and @var{out_h}.
8176
8177 @item x
8178 @item y
8179 The x and y offsets as specified by the @var{x} and @var{y}
8180 expressions, or NAN if not yet specified.
8181
8182 @item a
8183 same as @var{iw} / @var{ih}
8184
8185 @item sar
8186 input sample aspect ratio
8187
8188 @item dar
8189 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
8190
8191 @item hsub
8192 @item vsub
8193 The horizontal and vertical chroma subsample values. For example for the
8194 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
8195 @end table
8196
8197 @subsection Examples
8198
8199 @itemize
8200 @item
8201 Add paddings with the color "violet" to the input video. The output video
8202 size is 640x480, and the top-left corner of the input video is placed at
8203 column 0, row 40
8204 @example
8205 pad=640:480:0:40:violet
8206 @end example
8207
8208 The example above is equivalent to the following command:
8209 @example
8210 pad=width=640:height=480:x=0:y=40:color=violet
8211 @end example
8212
8213 @item
8214 Pad the input to get an output with dimensions increased by 3/2,
8215 and put the input video at the center of the padded area:
8216 @example
8217 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
8218 @end example
8219
8220 @item
8221 Pad the input to get a squared output with size equal to the maximum
8222 value between the input width and height, and put the input video at
8223 the center of the padded area:
8224 @example
8225 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
8226 @end example
8227
8228 @item
8229 Pad the input to get a final w/h ratio of 16:9:
8230 @example
8231 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
8232 @end example
8233
8234 @item
8235 In case of anamorphic video, in order to set the output display aspect
8236 correctly, it is necessary to use @var{sar} in the expression,
8237 according to the relation:
8238 @example
8239 (ih * X / ih) * sar = output_dar
8240 X = output_dar / sar
8241 @end example
8242
8243 Thus the previous example needs to be modified to:
8244 @example
8245 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
8246 @end example
8247
8248 @item
8249 Double the output size and put the input video in the bottom-right
8250 corner of the output padded area:
8251 @example
8252 pad="2*iw:2*ih:ow-iw:oh-ih"
8253 @end example
8254 @end itemize
8255
8256 @anchor{palettegen}
8257 @section palettegen
8258
8259 Generate one palette for a whole video stream.
8260
8261 It accepts the following options:
8262
8263 @table @option
8264 @item max_colors
8265 Set the maximum number of colors to quantize in the palette.
8266 Note: the palette will still contain 256 colors; the unused palette entries
8267 will be black.
8268
8269 @item reserve_transparent
8270 Create a palette of 255 colors maximum and reserve the last one for
8271 transparency. Reserving the transparency color is useful for GIF optimization.
8272 If not set, the maximum of colors in the palette will be 256. You probably want
8273 to disable this option for a standalone image.
8274 Set by default.
8275
8276 @item stats_mode
8277 Set statistics mode.
8278
8279 It accepts the following values:
8280 @table @samp
8281 @item full
8282 Compute full frame histograms.
8283 @item diff
8284 Compute histograms only for the part that differs from previous frame. This
8285 might be relevant to give more importance to the moving part of your input if
8286 the background is static.
8287 @end table
8288
8289 Default value is @var{full}.
8290 @end table
8291
8292 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
8293 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
8294 color quantization of the palette. This information is also visible at
8295 @var{info} logging level.
8296
8297 @subsection Examples
8298
8299 @itemize
8300 @item
8301 Generate a representative palette of a given video using @command{ffmpeg}:
8302 @example
8303 ffmpeg -i input.mkv -vf palettegen palette.png
8304 @end example
8305 @end itemize
8306
8307 @section paletteuse
8308
8309 Use a palette to downsample an input video stream.
8310
8311 The filter takes two inputs: one video stream and a palette. The palette must
8312 be a 256 pixels image.
8313
8314 It accepts the following options:
8315
8316 @table @option
8317 @item dither
8318 Select dithering mode. Available algorithms are:
8319 @table @samp
8320 @item bayer
8321 Ordered 8x8 bayer dithering (deterministic)
8322 @item heckbert
8323 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
8324 Note: this dithering is sometimes considered "wrong" and is included as a
8325 reference.
8326 @item floyd_steinberg
8327 Floyd and Steingberg dithering (error diffusion)
8328 @item sierra2
8329 Frankie Sierra dithering v2 (error diffusion)
8330 @item sierra2_4a
8331 Frankie Sierra dithering v2 "Lite" (error diffusion)
8332 @end table
8333
8334 Default is @var{sierra2_4a}.
8335
8336 @item bayer_scale
8337 When @var{bayer} dithering is selected, this option defines the scale of the
8338 pattern (how much the crosshatch pattern is visible). A low value means more
8339 visible pattern for less banding, and higher value means less visible pattern
8340 at the cost of more banding.
8341
8342 The option must be an integer value in the range [0,5]. Default is @var{2}.
8343
8344 @item diff_mode
8345 If set, define the zone to process
8346
8347 @table @samp
8348 @item rectangle
8349 Only the changing rectangle will be reprocessed. This is similar to GIF
8350 cropping/offsetting compression mechanism. This option can be useful for speed
8351 if only a part of the image is changing, and has use cases such as limiting the
8352 scope of the error diffusal @option{dither} to the rectangle that bounds the
8353 moving scene (it leads to more deterministic output if the scene doesn't change
8354 much, and as a result less moving noise and better GIF compression).
8355 @end table
8356
8357 Default is @var{none}.
8358 @end table
8359
8360 @subsection Examples
8361
8362 @itemize
8363 @item
8364 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
8365 using @command{ffmpeg}:
8366 @example
8367 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
8368 @end example
8369 @end itemize
8370
8371 @section perspective
8372
8373 Correct perspective of video not recorded perpendicular to the screen.
8374
8375 A description of the accepted parameters follows.
8376
8377 @table @option
8378 @item x0
8379 @item y0
8380 @item x1
8381 @item y1
8382 @item x2
8383 @item y2
8384 @item x3
8385 @item y3
8386 Set coordinates expression for top left, top right, bottom left and bottom right corners.
8387 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
8388 If the @code{sense} option is set to @code{source}, then the specified points will be sent
8389 to the corners of the destination. If the @code{sense} option is set to @code{destination},
8390 then the corners of the source will be sent to the specified coordinates.
8391
8392 The expressions can use the following variables:
8393
8394 @table @option
8395 @item W
8396 @item H
8397 the width and height of video frame.
8398 @end table
8399
8400 @item interpolation
8401 Set interpolation for perspective correction.
8402
8403 It accepts the following values:
8404 @table @samp
8405 @item linear
8406 @item cubic
8407 @end table
8408
8409 Default value is @samp{linear}.
8410
8411 @item sense
8412 Set interpretation of coordinate options.
8413
8414 It accepts the following values:
8415 @table @samp
8416 @item 0, source
8417
8418 Send point in the source specified by the given coordinates to
8419 the corners of the destination.
8420
8421 @item 1, destination
8422
8423 Send the corners of the source to the point in the destination specified
8424 by the given coordinates.
8425
8426 Default value is @samp{source}.
8427 @end table
8428 @end table
8429
8430 @section phase
8431
8432 Delay interlaced video by one field time so that the field order changes.
8433
8434 The intended use is to fix PAL movies that have been captured with the
8435 opposite field order to the film-to-video transfer.
8436
8437 A description of the accepted parameters follows.
8438
8439 @table @option
8440 @item mode
8441 Set phase mode.
8442
8443 It accepts the following values:
8444 @table @samp
8445 @item t
8446 Capture field order top-first, transfer bottom-first.
8447 Filter will delay the bottom field.
8448
8449 @item b
8450 Capture field order bottom-first, transfer top-first.
8451 Filter will delay the top field.
8452
8453 @item p
8454 Capture and transfer with the same field order. This mode only exists
8455 for the documentation of the other options to refer to, but if you
8456 actually select it, the filter will faithfully do nothing.
8457
8458 @item a
8459 Capture field order determined automatically by field flags, transfer
8460 opposite.
8461 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
8462 basis using field flags. If no field information is available,
8463 then this works just like @samp{u}.
8464
8465 @item u
8466 Capture unknown or varying, transfer opposite.
8467 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
8468 analyzing the images and selecting the alternative that produces best
8469 match between the fields.
8470
8471 @item T
8472 Capture top-first, transfer unknown or varying.
8473 Filter selects among @samp{t} and @samp{p} using image analysis.
8474
8475 @item B
8476 Capture bottom-first, transfer unknown or varying.
8477 Filter selects among @samp{b} and @samp{p} using image analysis.
8478
8479 @item A
8480 Capture determined by field flags, transfer unknown or varying.
8481 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
8482 image analysis. If no field information is available, then this works just
8483 like @samp{U}. This is the default mode.
8484
8485 @item U
8486 Both capture and transfer unknown or varying.
8487 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
8488 @end table
8489 @end table
8490
8491 @section pixdesctest
8492
8493 Pixel format descriptor test filter, mainly useful for internal
8494 testing. The output video should be equal to the input video.
8495
8496 For example:
8497 @example
8498 format=monow, pixdesctest
8499 @end example
8500
8501 can be used to test the monowhite pixel format descriptor definition.
8502
8503 @section pp
8504
8505 Enable the specified chain of postprocessing subfilters using libpostproc. This
8506 library should be automatically selected with a GPL build (@code{--enable-gpl}).
8507 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
8508 Each subfilter and some options have a short and a long name that can be used
8509 interchangeably, i.e. dr/dering are the same.
8510
8511 The filters accept the following options:
8512
8513 @table @option
8514 @item subfilters
8515 Set postprocessing subfilters string.
8516 @end table
8517
8518 All subfilters share common options to determine their scope:
8519
8520 @table @option
8521 @item a/autoq
8522 Honor the quality commands for this subfilter.
8523
8524 @item c/chrom
8525 Do chrominance filtering, too (default).
8526
8527 @item y/nochrom
8528 Do luminance filtering only (no chrominance).
8529
8530 @item n/noluma
8531 Do chrominance filtering only (no luminance).
8532 @end table
8533
8534 These options can be appended after the subfilter name, separated by a '|'.
8535
8536 Available subfilters are:
8537
8538 @table @option
8539 @item hb/hdeblock[|difference[|flatness]]
8540 Horizontal deblocking filter
8541 @table @option
8542 @item difference
8543 Difference factor where higher values mean more deblocking (default: @code{32}).
8544 @item flatness
8545 Flatness threshold where lower values mean more deblocking (default: @code{39}).
8546 @end table
8547
8548 @item vb/vdeblock[|difference[|flatness]]
8549 Vertical deblocking filter
8550 @table @option
8551 @item difference
8552 Difference factor where higher values mean more deblocking (default: @code{32}).
8553 @item flatness
8554 Flatness threshold where lower values mean more deblocking (default: @code{39}).
8555 @end table
8556
8557 @item ha/hadeblock[|difference[|flatness]]
8558 Accurate horizontal deblocking filter
8559 @table @option
8560 @item difference
8561 Difference factor where higher values mean more deblocking (default: @code{32}).
8562 @item flatness
8563 Flatness threshold where lower values mean more deblocking (default: @code{39}).
8564 @end table
8565
8566 @item va/vadeblock[|difference[|flatness]]
8567 Accurate vertical deblocking filter
8568 @table @option
8569 @item difference
8570 Difference factor where higher values mean more deblocking (default: @code{32}).
8571 @item flatness
8572 Flatness threshold where lower values mean more deblocking (default: @code{39}).
8573 @end table
8574 @end table
8575
8576 The horizontal and vertical deblocking filters share the difference and
8577 flatness values so you cannot set different horizontal and vertical
8578 thresholds.
8579
8580 @table @option
8581 @item h1/x1hdeblock
8582 Experimental horizontal deblocking filter
8583
8584 @item v1/x1vdeblock
8585 Experimental vertical deblocking filter
8586
8587 @item dr/dering
8588 Deringing filter
8589
8590 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
8591 @table @option
8592 @item threshold1
8593 larger -> stronger filtering
8594 @item threshold2
8595 larger -> stronger filtering
8596 @item threshold3
8597 larger -> stronger filtering
8598 @end table
8599
8600 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
8601 @table @option
8602 @item f/fullyrange
8603 Stretch luminance to @code{0-255}.
8604 @end table
8605
8606 @item lb/linblenddeint
8607 Linear blend deinterlacing filter that deinterlaces the given block by
8608 filtering all lines with a @code{(1 2 1)} filter.
8609
8610 @item li/linipoldeint
8611 Linear interpolating deinterlacing filter that deinterlaces the given block by
8612 linearly interpolating every second line.
8613
8614 @item ci/cubicipoldeint
8615 Cubic interpolating deinterlacing filter deinterlaces the given block by
8616 cubically interpolating every second line.
8617
8618 @item md/mediandeint
8619 Median deinterlacing filter that deinterlaces the given block by applying a
8620 median filter to every second line.
8621
8622 @item fd/ffmpegdeint
8623 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
8624 second line with a @code{(-1 4 2 4 -1)} filter.
8625
8626 @item l5/lowpass5
8627 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
8628 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
8629
8630 @item fq/forceQuant[|quantizer]
8631 Overrides the quantizer table from the input with the constant quantizer you
8632 specify.
8633 @table @option
8634 @item quantizer
8635 Quantizer to use
8636 @end table
8637
8638 @item de/default
8639 Default pp filter combination (@code{hb|a,vb|a,dr|a})
8640
8641 @item fa/fast
8642 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
8643
8644 @item ac
8645 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
8646 @end table
8647
8648 @subsection Examples
8649
8650 @itemize
8651 @item
8652 Apply horizontal and vertical deblocking, deringing and automatic
8653 brightness/contrast:
8654 @example
8655 pp=hb/vb/dr/al
8656 @end example
8657
8658 @item
8659 Apply default filters without brightness/contrast correction:
8660 @example
8661 pp=de/-al
8662 @end example
8663
8664 @item
8665 Apply default filters and temporal denoiser:
8666 @example
8667 pp=default/tmpnoise|1|2|3
8668 @end example
8669
8670 @item
8671 Apply deblocking on luminance only, and switch vertical deblocking on or off
8672 automatically depending on available CPU time:
8673 @example
8674 pp=hb|y/vb|a
8675 @end example
8676 @end itemize
8677
8678 @section pp7
8679 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
8680 similar to spp = 6 with 7 point DCT, where only the center sample is
8681 used after IDCT.
8682
8683 The filter accepts the following options:
8684
8685 @table @option
8686 @item qp
8687 Force a constant quantization parameter. It accepts an integer in range
8688 0 to 63. If not set, the filter will use the QP from the video stream
8689 (if available).
8690
8691 @item mode
8692 Set thresholding mode. Available modes are:
8693
8694 @table @samp
8695 @item hard
8696 Set hard thresholding.
8697 @item soft
8698 Set soft thresholding (better de-ringing effect, but likely blurrier).
8699 @item medium
8700 Set medium thresholding (good results, default).
8701 @end table
8702 @end table
8703
8704 @section psnr
8705
8706 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
8707 Ratio) between two input videos.
8708
8709 This filter takes in input two input videos, the first input is
8710 considered the "main" source and is passed unchanged to the
8711 output. The second input is used as a "reference" video for computing
8712 the PSNR.
8713
8714 Both video inputs must have the same resolution and pixel format for
8715 this filter to work correctly. Also it assumes that both inputs
8716 have the same number of frames, which are compared one by one.
8717
8718 The obtained average PSNR is printed through the logging system.
8719
8720 The filter stores the accumulated MSE (mean squared error) of each
8721 frame, and at the end of the processing it is averaged across all frames
8722 equally, and the following formula is applied to obtain the PSNR:
8723
8724 @example
8725 PSNR = 10*log10(MAX^2/MSE)
8726 @end example
8727
8728 Where MAX is the average of the maximum values of each component of the
8729 image.
8730
8731 The description of the accepted parameters follows.
8732
8733 @table @option
8734 @item stats_file, f
8735 If specified the filter will use the named file to save the PSNR of
8736 each individual frame.
8737 @end table
8738
8739 The file printed if @var{stats_file} is selected, contains a sequence of
8740 key/value pairs of the form @var{key}:@var{value} for each compared
8741 couple of frames.
8742
8743 A description of each shown parameter follows:
8744
8745 @table @option
8746 @item n
8747 sequential number of the input frame, starting from 1
8748
8749 @item mse_avg
8750 Mean Square Error pixel-by-pixel average difference of the compared
8751 frames, averaged over all the image components.
8752
8753 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_g, mse_a
8754 Mean Square Error pixel-by-pixel average difference of the compared
8755 frames for the component specified by the suffix.
8756
8757 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
8758 Peak Signal to Noise ratio of the compared frames for the component
8759 specified by the suffix.
8760 @end table
8761
8762 For example:
8763 @example
8764 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
8765 [main][ref] psnr="stats_file=stats.log" [out]
8766 @end example
8767
8768 On this example the input file being processed is compared with the
8769 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
8770 is stored in @file{stats.log}.
8771
8772 @anchor{pullup}
8773 @section pullup
8774
8775 Pulldown reversal (inverse telecine) filter, capable of handling mixed
8776 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
8777 content.
8778
8779 The pullup filter is designed to take advantage of future context in making
8780 its decisions. This filter is stateless in the sense that it does not lock
8781 onto a pattern to follow, but it instead looks forward to the following
8782 fields in order to identify matches and rebuild progressive frames.
8783
8784 To produce content with an even framerate, insert the fps filter after
8785 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
8786 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
8787
8788 The filter accepts the following options:
8789
8790 @table @option
8791 @item jl
8792 @item jr
8793 @item jt
8794 @item jb
8795 These options set the amount of "junk" to ignore at the left, right, top, and
8796 bottom of the image, respectively. Left and right are in units of 8 pixels,
8797 while top and bottom are in units of 2 lines.
8798 The default is 8 pixels on each side.
8799
8800 @item sb
8801 Set the strict breaks. Setting this option to 1 will reduce the chances of
8802 filter generating an occasional mismatched frame, but it may also cause an
8803 excessive number of frames to be dropped during high motion sequences.
8804 Conversely, setting it to -1 will make filter match fields more easily.
8805 This may help processing of video where there is slight blurring between
8806 the fields, but may also cause there to be interlaced frames in the output.
8807 Default value is @code{0}.
8808
8809 @item mp
8810 Set the metric plane to use. It accepts the following values:
8811 @table @samp
8812 @item l
8813 Use luma plane.
8814
8815 @item u
8816 Use chroma blue plane.
8817
8818 @item v
8819 Use chroma red plane.
8820 @end table
8821
8822 This option may be set to use chroma plane instead of the default luma plane
8823 for doing filter's computations. This may improve accuracy on very clean
8824 source material, but more likely will decrease accuracy, especially if there
8825 is chroma noise (rainbow effect) or any grayscale video.
8826 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
8827 load and make pullup usable in realtime on slow machines.
8828 @end table
8829
8830 For best results (without duplicated frames in the output file) it is
8831 necessary to change the output frame rate. For example, to inverse
8832 telecine NTSC input:
8833 @example
8834 ffmpeg -i input -vf pullup -r 24000/1001 ...
8835 @end example
8836
8837 @section qp
8838
8839 Change video quantization parameters (QP).
8840
8841 The filter accepts the following option:
8842
8843 @table @option
8844 @item qp
8845 Set expression for quantization parameter.
8846 @end table
8847
8848 The expression is evaluated through the eval API and can contain, among others,
8849 the following constants:
8850
8851 @table @var
8852 @item known
8853 1 if index is not 129, 0 otherwise.
8854
8855 @item qp
8856 Sequentional index starting from -129 to 128.
8857 @end table
8858
8859 @subsection Examples
8860
8861 @itemize
8862 @item
8863 Some equation like:
8864 @example
8865 qp=2+2*sin(PI*qp)
8866 @end example
8867 @end itemize
8868
8869 @section random
8870
8871 Flush video frames from internal cache of frames into a random order.
8872 No frame is discarded.
8873 Inspired by @ref{frei0r} nervous filter.
8874
8875 @table @option
8876 @item frames
8877 Set size in number of frames of internal cache, in range from @code{2} to
8878 @code{512}. Default is @code{30}.
8879
8880 @item seed
8881 Set seed for random number generator, must be an integer included between
8882 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
8883 less than @code{0}, the filter will try to use a good random seed on a
8884 best effort basis.
8885 @end table
8886
8887 @section removegrain
8888
8889 The removegrain filter is a spatial denoiser for progressive video.
8890
8891 @table @option
8892 @item m0
8893 Set mode for the first plane.
8894
8895 @item m1
8896 Set mode for the second plane.
8897
8898 @item m2
8899 Set mode for the third plane.
8900
8901 @item m3
8902 Set mode for the fourth plane.
8903 @end table
8904
8905 Range of mode is from 0 to 24. Description of each mode follows:
8906
8907 @table @var
8908 @item 0
8909 Leave input plane unchanged. Default.
8910
8911 @item 1
8912 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
8913
8914 @item 2
8915 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
8916
8917 @item 3
8918 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
8919
8920 @item 4
8921 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
8922 This is equivalent to a median filter.
8923
8924 @item 5
8925 Line-sensitive clipping giving the minimal change.
8926
8927 @item 6
8928 Line-sensitive clipping, intermediate.
8929
8930 @item 7
8931 Line-sensitive clipping, intermediate.
8932
8933 @item 8
8934 Line-sensitive clipping, intermediate.
8935
8936 @item 9
8937 Line-sensitive clipping on a line where the neighbours pixels are the closest.
8938
8939 @item 10
8940 Replaces the target pixel with the closest neighbour.
8941
8942 @item 11
8943 [1 2 1] horizontal and vertical kernel blur.
8944
8945 @item 12
8946 Same as mode 11.
8947
8948 @item 13
8949 Bob mode, interpolates top field from the line where the neighbours
8950 pixels are the closest.
8951
8952 @item 14
8953 Bob mode, interpolates bottom field from the line where the neighbours
8954 pixels are the closest.
8955
8956 @item 15
8957 Bob mode, interpolates top field. Same as 13 but with a more complicated
8958 interpolation formula.
8959
8960 @item 16
8961 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
8962 interpolation formula.
8963
8964 @item 17
8965 Clips the pixel with the minimum and maximum of respectively the maximum and
8966 minimum of each pair of opposite neighbour pixels.
8967
8968 @item 18
8969 Line-sensitive clipping using opposite neighbours whose greatest distance from
8970 the current pixel is minimal.
8971
8972 @item 19
8973 Replaces the pixel with the average of its 8 neighbours.
8974
8975 @item 20
8976 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
8977
8978 @item 21
8979 Clips pixels using the averages of opposite neighbour.
8980
8981 @item 22
8982 Same as mode 21 but simpler and faster.
8983
8984 @item 23
8985 Small edge and halo removal, but reputed useless.
8986
8987 @item 24
8988 Similar as 23.
8989 @end table
8990
8991 @section removelogo
8992
8993 Suppress a TV station logo, using an image file to determine which
8994 pixels comprise the logo. It works by filling in the pixels that
8995 comprise the logo with neighboring pixels.
8996
8997 The filter accepts the following options:
8998
8999 @table @option
9000 @item filename, f
9001 Set the filter bitmap file, which can be any image format supported by
9002 libavformat. The width and height of the image file must match those of the
9003 video stream being processed.
9004 @end table
9005
9006 Pixels in the provided bitmap image with a value of zero are not
9007 considered part of the logo, non-zero pixels are considered part of
9008 the logo. If you use white (255) for the logo and black (0) for the
9009 rest, you will be safe. For making the filter bitmap, it is
9010 recommended to take a screen capture of a black frame with the logo
9011 visible, and then using a threshold filter followed by the erode
9012 filter once or twice.
9013
9014 If needed, little splotches can be fixed manually. Remember that if
9015 logo pixels are not covered, the filter quality will be much
9016 reduced. Marking too many pixels as part of the logo does not hurt as
9017 much, but it will increase the amount of blurring needed to cover over
9018 the image and will destroy more information than necessary, and extra
9019 pixels will slow things down on a large logo.
9020
9021 @section repeatfields
9022
9023 This filter uses the repeat_field flag from the Video ES headers and hard repeats
9024 fields based on its value.
9025
9026 @section reverse, areverse
9027
9028 Reverse a clip.
9029
9030 Warning: This filter requires memory to buffer the entire clip, so trimming
9031 is suggested.
9032
9033 @subsection Examples
9034
9035 @itemize
9036 @item
9037 Take the first 5 seconds of a clip, and reverse it.
9038 @example
9039 trim=end=5,reverse
9040 @end example
9041 @end itemize
9042
9043 @section rotate
9044
9045 Rotate video by an arbitrary angle expressed in radians.
9046
9047 The filter accepts the following options:
9048
9049 A description of the optional parameters follows.
9050 @table @option
9051 @item angle, a
9052 Set an expression for the angle by which to rotate the input video
9053 clockwise, expressed as a number of radians. A negative value will
9054 result in a counter-clockwise rotation. By default it is set to "0".
9055
9056 This expression is evaluated for each frame.
9057
9058 @item out_w, ow
9059 Set the output width expression, default value is "iw".
9060 This expression is evaluated just once during configuration.
9061
9062 @item out_h, oh
9063 Set the output height expression, default value is "ih".
9064 This expression is evaluated just once during configuration.
9065
9066 @item bilinear
9067 Enable bilinear interpolation if set to 1, a value of 0 disables
9068 it. Default value is 1.
9069
9070 @item fillcolor, c
9071 Set the color used to fill the output area not covered by the rotated
9072 image. For the general syntax of this option, check the "Color" section in the
9073 ffmpeg-utils manual. If the special value "none" is selected then no
9074 background is printed (useful for example if the background is never shown).
9075
9076 Default value is "black".
9077 @end table
9078
9079 The expressions for the angle and the output size can contain the
9080 following constants and functions:
9081
9082 @table @option
9083 @item n
9084 sequential number of the input frame, starting from 0. It is always NAN
9085 before the first frame is filtered.
9086
9087 @item t
9088 time in seconds of the input frame, it is set to 0 when the filter is
9089 configured. It is always NAN before the first frame is filtered.
9090
9091 @item hsub
9092 @item vsub
9093 horizontal and vertical chroma subsample values. For example for the
9094 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9095
9096 @item in_w, iw
9097 @item in_h, ih
9098 the input video width and height
9099
9100 @item out_w, ow
9101 @item out_h, oh
9102 the output width and height, that is the size of the padded area as
9103 specified by the @var{width} and @var{height} expressions
9104
9105 @item rotw(a)
9106 @item roth(a)
9107 the minimal width/height required for completely containing the input
9108 video rotated by @var{a} radians.
9109
9110 These are only available when computing the @option{out_w} and
9111 @option{out_h} expressions.
9112 @end table
9113
9114 @subsection Examples
9115
9116 @itemize
9117 @item
9118 Rotate the input by PI/6 radians clockwise:
9119 @example
9120 rotate=PI/6
9121 @end example
9122
9123 @item
9124 Rotate the input by PI/6 radians counter-clockwise:
9125 @example
9126 rotate=-PI/6
9127 @end example
9128
9129 @item
9130 Rotate the input by 45 degrees clockwise:
9131 @example
9132 rotate=45*PI/180
9133 @end example
9134
9135 @item
9136 Apply a constant rotation with period T, starting from an angle of PI/3:
9137 @example
9138 rotate=PI/3+2*PI*t/T
9139 @end example
9140
9141 @item
9142 Make the input video rotation oscillating with a period of T
9143 seconds and an amplitude of A radians:
9144 @example
9145 rotate=A*sin(2*PI/T*t)
9146 @end example
9147
9148 @item
9149 Rotate the video, output size is chosen so that the whole rotating
9150 input video is always completely contained in the output:
9151 @example
9152 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
9153 @end example
9154
9155 @item
9156 Rotate the video, reduce the output size so that no background is ever
9157 shown:
9158 @example
9159 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
9160 @end example
9161 @end itemize
9162
9163 @subsection Commands
9164
9165 The filter supports the following commands:
9166
9167 @table @option
9168 @item a, angle
9169 Set the angle expression.
9170 The command accepts the same syntax of the corresponding option.
9171
9172 If the specified expression is not valid, it is kept at its current
9173 value.
9174 @end table
9175
9176 @section sab
9177
9178 Apply Shape Adaptive Blur.
9179
9180 The filter accepts the following options:
9181
9182 @table @option
9183 @item luma_radius, lr
9184 Set luma blur filter strength, must be a value in range 0.1-4.0, default
9185 value is 1.0. A greater value will result in a more blurred image, and
9186 in slower processing.
9187
9188 @item luma_pre_filter_radius, lpfr
9189 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
9190 value is 1.0.
9191
9192 @item luma_strength, ls
9193 Set luma maximum difference between pixels to still be considered, must
9194 be a value in the 0.1-100.0 range, default value is 1.0.
9195
9196 @item chroma_radius, cr
9197 Set chroma blur filter strength, must be a value in range 0.1-4.0. A
9198 greater value will result in a more blurred image, and in slower
9199 processing.
9200
9201 @item chroma_pre_filter_radius, cpfr
9202 Set chroma pre-filter radius, must be a value in the 0.1-2.0 range.
9203
9204 @item chroma_strength, cs
9205 Set chroma maximum difference between pixels to still be considered,
9206 must be a value in the 0.1-100.0 range.
9207 @end table
9208
9209 Each chroma option value, if not explicitly specified, is set to the
9210 corresponding luma option value.
9211
9212 @anchor{scale}
9213 @section scale
9214
9215 Scale (resize) the input video, using the libswscale library.
9216
9217 The scale filter forces the output display aspect ratio to be the same
9218 of the input, by changing the output sample aspect ratio.
9219
9220 If the input image format is different from the format requested by
9221 the next filter, the scale filter will convert the input to the
9222 requested format.
9223
9224 @subsection Options
9225 The filter accepts the following options, or any of the options
9226 supported by the libswscale scaler.
9227
9228 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
9229 the complete list of scaler options.
9230
9231 @table @option
9232 @item width, w
9233 @item height, h
9234 Set the output video dimension expression. Default value is the input
9235 dimension.
9236
9237 If the value is 0, the input width is used for the output.
9238
9239 If one of the values is -1, the scale filter will use a value that
9240 maintains the aspect ratio of the input image, calculated from the
9241 other specified dimension. If both of them are -1, the input size is
9242 used
9243
9244 If one of the values is -n with n > 1, the scale filter will also use a value
9245 that maintains the aspect ratio of the input image, calculated from the other
9246 specified dimension. After that it will, however, make sure that the calculated
9247 dimension is divisible by n and adjust the value if necessary.
9248
9249 See below for the list of accepted constants for use in the dimension
9250 expression.
9251
9252 @item interl
9253 Set the interlacing mode. It accepts the following values:
9254
9255 @table @samp
9256 @item 1
9257 Force interlaced aware scaling.
9258
9259 @item 0
9260 Do not apply interlaced scaling.
9261
9262 @item -1
9263 Select interlaced aware scaling depending on whether the source frames
9264 are flagged as interlaced or not.
9265 @end table
9266
9267 Default value is @samp{0}.
9268
9269 @item flags
9270 Set libswscale scaling flags. See
9271 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
9272 complete list of values. If not explicitly specified the filter applies
9273 the default flags.
9274
9275 @item size, s
9276 Set the video size. For the syntax of this option, check the
9277 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
9278
9279 @item in_color_matrix
9280 @item out_color_matrix
9281 Set in/output YCbCr color space type.
9282
9283 This allows the autodetected value to be overridden as well as allows forcing
9284 a specific value used for the output and encoder.
9285
9286 If not specified, the color space type depends on the pixel format.
9287
9288 Possible values:
9289
9290 @table @samp
9291 @item auto
9292 Choose automatically.
9293
9294 @item bt709
9295 Format conforming to International Telecommunication Union (ITU)
9296 Recommendation BT.709.
9297
9298 @item fcc
9299 Set color space conforming to the United States Federal Communications
9300 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
9301
9302 @item bt601
9303 Set color space conforming to:
9304
9305 @itemize
9306 @item
9307 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
9308
9309 @item
9310 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
9311
9312 @item
9313 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
9314
9315 @end itemize
9316
9317 @item smpte240m
9318 Set color space conforming to SMPTE ST 240:1999.
9319 @end table
9320
9321 @item in_range
9322 @item out_range
9323 Set in/output YCbCr sample range.
9324
9325 This allows the autodetected value to be overridden as well as allows forcing
9326 a specific value used for the output and encoder. If not specified, the
9327 range depends on the pixel format. Possible values:
9328
9329 @table @samp
9330 @item auto
9331 Choose automatically.
9332
9333 @item jpeg/full/pc
9334 Set full range (0-255 in case of 8-bit luma).
9335
9336 @item mpeg/tv
9337 Set "MPEG" range (16-235 in case of 8-bit luma).
9338 @end table
9339
9340 @item force_original_aspect_ratio
9341 Enable decreasing or increasing output video width or height if necessary to
9342 keep the original aspect ratio. Possible values:
9343
9344 @table @samp
9345 @item disable
9346 Scale the video as specified and disable this feature.
9347
9348 @item decrease
9349 The output video dimensions will automatically be decreased if needed.
9350
9351 @item increase
9352 The output video dimensions will automatically be increased if needed.
9353
9354 @end table
9355
9356 One useful instance of this option is that when you know a specific device's
9357 maximum allowed resolution, you can use this to limit the output video to
9358 that, while retaining the aspect ratio. For example, device A allows
9359 1280x720 playback, and your video is 1920x800. Using this option (set it to
9360 decrease) and specifying 1280x720 to the command line makes the output
9361 1280x533.
9362
9363 Please note that this is a different thing than specifying -1 for @option{w}
9364 or @option{h}, you still need to specify the output resolution for this option
9365 to work.
9366
9367 @end table
9368
9369 The values of the @option{w} and @option{h} options are expressions
9370 containing the following constants:
9371
9372 @table @var
9373 @item in_w
9374 @item in_h
9375 The input width and height
9376
9377 @item iw
9378 @item ih
9379 These are the same as @var{in_w} and @var{in_h}.
9380
9381 @item out_w
9382 @item out_h
9383 The output (scaled) width and height
9384
9385 @item ow
9386 @item oh
9387 These are the same as @var{out_w} and @var{out_h}
9388
9389 @item a
9390 The same as @var{iw} / @var{ih}
9391
9392 @item sar
9393 input sample aspect ratio
9394
9395 @item dar
9396 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
9397
9398 @item hsub
9399 @item vsub
9400 horizontal and vertical input chroma subsample values. For example for the
9401 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9402
9403 @item ohsub
9404 @item ovsub
9405 horizontal and vertical output chroma subsample values. For example for the
9406 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9407 @end table
9408
9409 @subsection Examples
9410
9411 @itemize
9412 @item
9413 Scale the input video to a size of 200x100
9414 @example
9415 scale=w=200:h=100
9416 @end example
9417
9418 This is equivalent to:
9419 @example
9420 scale=200:100
9421 @end example
9422
9423 or:
9424 @example
9425 scale=200x100
9426 @end example
9427
9428 @item
9429 Specify a size abbreviation for the output size:
9430 @example
9431 scale=qcif
9432 @end example
9433
9434 which can also be written as:
9435 @example
9436 scale=size=qcif
9437 @end example
9438
9439 @item
9440 Scale the input to 2x:
9441 @example
9442 scale=w=2*iw:h=2*ih
9443 @end example
9444
9445 @item
9446 The above is the same as:
9447 @example
9448 scale=2*in_w:2*in_h
9449 @end example
9450
9451 @item
9452 Scale the input to 2x with forced interlaced scaling:
9453 @example
9454 scale=2*iw:2*ih:interl=1
9455 @end example
9456
9457 @item
9458 Scale the input to half size:
9459 @example
9460 scale=w=iw/2:h=ih/2
9461 @end example
9462
9463 @item
9464 Increase the width, and set the height to the same size:
9465 @example
9466 scale=3/2*iw:ow
9467 @end example
9468
9469 @item
9470 Seek Greek harmony:
9471 @example
9472 scale=iw:1/PHI*iw
9473 scale=ih*PHI:ih
9474 @end example
9475
9476 @item
9477 Increase the height, and set the width to 3/2 of the height:
9478 @example
9479 scale=w=3/2*oh:h=3/5*ih
9480 @end example
9481
9482 @item
9483 Increase the size, making the size a multiple of the chroma
9484 subsample values:
9485 @example
9486 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
9487 @end example
9488
9489 @item
9490 Increase the width to a maximum of 500 pixels,
9491 keeping the same aspect ratio as the input:
9492 @example
9493 scale=w='min(500\, iw*3/2):h=-1'
9494 @end example
9495 @end itemize
9496
9497 @subsection Commands
9498
9499 This filter supports the following commands:
9500 @table @option
9501 @item width, w
9502 @item height, h
9503 Set the output video dimension expression.
9504 The command accepts the same syntax of the corresponding option.
9505
9506 If the specified expression is not valid, it is kept at its current
9507 value.
9508 @end table
9509
9510 @section scale2ref
9511
9512 Scale (resize) the input video, based on a reference video.
9513
9514 See the scale filter for available options, scale2ref supports the same but
9515 uses the reference video instead of the main input as basis.
9516
9517 @subsection Examples
9518
9519 @itemize
9520 @item
9521 Scale a subtitle stream to match the main video in size before overlaying
9522 @example
9523 'scale2ref[b][a];[a][b]overlay'
9524 @end example
9525 @end itemize
9526
9527 @section separatefields
9528
9529 The @code{separatefields} takes a frame-based video input and splits
9530 each frame into its components fields, producing a new half height clip
9531 with twice the frame rate and twice the frame count.
9532
9533 This filter use field-dominance information in frame to decide which
9534 of each pair of fields to place first in the output.
9535 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
9536
9537 @section setdar, setsar
9538
9539 The @code{setdar} filter sets the Display Aspect Ratio for the filter
9540 output video.
9541
9542 This is done by changing the specified Sample (aka Pixel) Aspect
9543 Ratio, according to the following equation:
9544 @example
9545 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
9546 @end example
9547
9548 Keep in mind that the @code{setdar} filter does not modify the pixel
9549 dimensions of the video frame. Also, the display aspect ratio set by
9550 this filter may be changed by later filters in the filterchain,
9551 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
9552 applied.
9553
9554 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
9555 the filter output video.
9556
9557 Note that as a consequence of the application of this filter, the
9558 output display aspect ratio will change according to the equation
9559 above.
9560
9561 Keep in mind that the sample aspect ratio set by the @code{setsar}
9562 filter may be changed by later filters in the filterchain, e.g. if
9563 another "setsar" or a "setdar" filter is applied.
9564
9565 It accepts the following parameters:
9566
9567 @table @option
9568 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
9569 Set the aspect ratio used by the filter.
9570
9571 The parameter can be a floating point number string, an expression, or
9572 a string of the form @var{num}:@var{den}, where @var{num} and
9573 @var{den} are the numerator and denominator of the aspect ratio. If
9574 the parameter is not specified, it is assumed the value "0".
9575 In case the form "@var{num}:@var{den}" is used, the @code{:} character
9576 should be escaped.
9577
9578 @item max
9579 Set the maximum integer value to use for expressing numerator and
9580 denominator when reducing the expressed aspect ratio to a rational.
9581 Default value is @code{100}.
9582
9583 @end table
9584
9585 The parameter @var{sar} is an expression containing
9586 the following constants:
9587
9588 @table @option
9589 @item E, PI, PHI
9590 These are approximated values for the mathematical constants e
9591 (Euler's number), pi (Greek pi), and phi (the golden ratio).
9592
9593 @item w, h
9594 The input width and height.
9595
9596 @item a
9597 These are the same as @var{w} / @var{h}.
9598
9599 @item sar
9600 The input sample aspect ratio.
9601
9602 @item dar
9603 The input display aspect ratio. It is the same as
9604 (@var{w} / @var{h}) * @var{sar}.
9605
9606 @item hsub, vsub
9607 Horizontal and vertical chroma subsample values. For example, for the
9608 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
9609 @end table
9610
9611 @subsection Examples
9612
9613 @itemize
9614
9615 @item
9616 To change the display aspect ratio to 16:9, specify one of the following:
9617 @example
9618 setdar=dar=1.77777
9619 setdar=dar=16/9
9620 setdar=dar=1.77777
9621 @end example
9622
9623 @item
9624 To change the sample aspect ratio to 10:11, specify:
9625 @example
9626 setsar=sar=10/11
9627 @end example
9628
9629 @item
9630 To set a display aspect ratio of 16:9, and specify a maximum integer value of
9631 1000 in the aspect ratio reduction, use the command:
9632 @example
9633 setdar=ratio=16/9:max=1000
9634 @end example
9635
9636 @end itemize
9637
9638 @anchor{setfield}
9639 @section setfield
9640
9641 Force field for the output video frame.
9642
9643 The @code{setfield} filter marks the interlace type field for the
9644 output frames. It does not change the input frame, but only sets the
9645 corresponding property, which affects how the frame is treated by
9646 following filters (e.g. @code{fieldorder} or @code{yadif}).
9647
9648 The filter accepts the following options:
9649
9650 @table @option
9651
9652 @item mode
9653 Available values are:
9654
9655 @table @samp
9656 @item auto
9657 Keep the same field property.
9658
9659 @item bff
9660 Mark the frame as bottom-field-first.
9661
9662 @item tff
9663 Mark the frame as top-field-first.
9664
9665 @item prog
9666 Mark the frame as progressive.
9667 @end table
9668 @end table
9669
9670 @section showinfo
9671
9672 Show a line containing various information for each input video frame.
9673 The input video is not modified.
9674
9675 The shown line contains a sequence of key/value pairs of the form
9676 @var{key}:@var{value}.
9677
9678 The following values are shown in the output:
9679
9680 @table @option
9681 @item n
9682 The (sequential) number of the input frame, starting from 0.
9683
9684 @item pts
9685 The Presentation TimeStamp of the input frame, expressed as a number of
9686 time base units. The time base unit depends on the filter input pad.
9687
9688 @item pts_time
9689 The Presentation TimeStamp of the input frame, expressed as a number of
9690 seconds.
9691
9692 @item pos
9693 The position of the frame in the input stream, or -1 if this information is
9694 unavailable and/or meaningless (for example in case of synthetic video).
9695
9696 @item fmt
9697 The pixel format name.
9698
9699 @item sar
9700 The sample aspect ratio of the input frame, expressed in the form
9701 @var{num}/@var{den}.
9702
9703 @item s
9704 The size of the input frame. For the syntax of this option, check the
9705 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
9706
9707 @item i
9708 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
9709 for bottom field first).
9710
9711 @item iskey
9712 This is 1 if the frame is a key frame, 0 otherwise.
9713
9714 @item type
9715 The picture type of the input frame ("I" for an I-frame, "P" for a
9716 P-frame, "B" for a B-frame, or "?" for an unknown type).
9717 Also refer to the documentation of the @code{AVPictureType} enum and of
9718 the @code{av_get_picture_type_char} function defined in
9719 @file{libavutil/avutil.h}.
9720
9721 @item checksum
9722 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
9723
9724 @item plane_checksum
9725 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
9726 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
9727 @end table
9728
9729 @section showpalette
9730
9731 Displays the 256 colors palette of each frame. This filter is only relevant for
9732 @var{pal8} pixel format frames.
9733
9734 It accepts the following option:
9735
9736 @table @option
9737 @item s
9738 Set the size of the box used to represent one palette color entry. Default is
9739 @code{30} (for a @code{30x30} pixel box).
9740 @end table
9741
9742 @section shuffleplanes
9743
9744 Reorder and/or duplicate video planes.
9745
9746 It accepts the following parameters:
9747
9748 @table @option
9749
9750 @item map0
9751 The index of the input plane to be used as the first output plane.
9752
9753 @item map1
9754 The index of the input plane to be used as the second output plane.
9755
9756 @item map2
9757 The index of the input plane to be used as the third output plane.
9758
9759 @item map3
9760 The index of the input plane to be used as the fourth output plane.
9761
9762 @end table
9763
9764 The first plane has the index 0. The default is to keep the input unchanged.
9765
9766 Swap the second and third planes of the input:
9767 @example
9768 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
9769 @end example
9770
9771 @anchor{signalstats}
9772 @section signalstats
9773 Evaluate various visual metrics that assist in determining issues associated
9774 with the digitization of analog video media.
9775
9776 By default the filter will log these metadata values:
9777
9778 @table @option
9779 @item YMIN
9780 Display the minimal Y value contained within the input frame. Expressed in
9781 range of [0-255].
9782
9783 @item YLOW
9784 Display the Y value at the 10% percentile within the input frame. Expressed in
9785 range of [0-255].
9786
9787 @item YAVG
9788 Display the average Y value within the input frame. Expressed in range of
9789 [0-255].
9790
9791 @item YHIGH
9792 Display the Y value at the 90% percentile within the input frame. Expressed in
9793 range of [0-255].
9794
9795 @item YMAX
9796 Display the maximum Y value contained within the input frame. Expressed in
9797 range of [0-255].
9798
9799 @item UMIN
9800 Display the minimal U value contained within the input frame. Expressed in
9801 range of [0-255].
9802
9803 @item ULOW
9804 Display the U value at the 10% percentile within the input frame. Expressed in
9805 range of [0-255].
9806
9807 @item UAVG
9808 Display the average U value within the input frame. Expressed in range of
9809 [0-255].
9810
9811 @item UHIGH
9812 Display the U value at the 90% percentile within the input frame. Expressed in
9813 range of [0-255].
9814
9815 @item UMAX
9816 Display the maximum U value contained within the input frame. Expressed in
9817 range of [0-255].
9818
9819 @item VMIN
9820 Display the minimal V value contained within the input frame. Expressed in
9821 range of [0-255].
9822
9823 @item VLOW
9824 Display the V value at the 10% percentile within the input frame. Expressed in
9825 range of [0-255].
9826
9827 @item VAVG
9828 Display the average V value within the input frame. Expressed in range of
9829 [0-255].
9830
9831 @item VHIGH
9832 Display the V value at the 90% percentile within the input frame. Expressed in
9833 range of [0-255].
9834
9835 @item VMAX
9836 Display the maximum V value contained within the input frame. Expressed in
9837 range of [0-255].
9838
9839 @item SATMIN
9840 Display the minimal saturation value contained within the input frame.
9841 Expressed in range of [0-~181.02].
9842
9843 @item SATLOW
9844 Display the saturation value at the 10% percentile within the input frame.
9845 Expressed in range of [0-~181.02].
9846
9847 @item SATAVG
9848 Display the average saturation value within the input frame. Expressed in range
9849 of [0-~181.02].
9850
9851 @item SATHIGH
9852 Display the saturation value at the 90% percentile within the input frame.
9853 Expressed in range of [0-~181.02].
9854
9855 @item SATMAX
9856 Display the maximum saturation value contained within the input frame.
9857 Expressed in range of [0-~181.02].
9858
9859 @item HUEMED
9860 Display the median value for hue within the input frame. Expressed in range of
9861 [0-360].
9862
9863 @item HUEAVG
9864 Display the average value for hue within the input frame. Expressed in range of
9865 [0-360].
9866
9867 @item YDIF
9868 Display the average of sample value difference between all values of the Y
9869 plane in the current frame and corresponding values of the previous input frame.
9870 Expressed in range of [0-255].
9871
9872 @item UDIF
9873 Display the average of sample value difference between all values of the U
9874 plane in the current frame and corresponding values of the previous input frame.
9875 Expressed in range of [0-255].
9876
9877 @item VDIF
9878 Display the average of sample value difference between all values of the V
9879 plane in the current frame and corresponding values of the previous input frame.
9880 Expressed in range of [0-255].
9881 @end table
9882
9883 The filter accepts the following options:
9884
9885 @table @option
9886 @item stat
9887 @item out
9888
9889 @option{stat} specify an additional form of image analysis.
9890 @option{out} output video with the specified type of pixel highlighted.
9891
9892 Both options accept the following values:
9893
9894 @table @samp
9895 @item tout
9896 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
9897 unlike the neighboring pixels of the same field. Examples of temporal outliers
9898 include the results of video dropouts, head clogs, or tape tracking issues.
9899
9900 @item vrep
9901 Identify @var{vertical line repetition}. Vertical line repetition includes
9902 similar rows of pixels within a frame. In born-digital video vertical line
9903 repetition is common, but this pattern is uncommon in video digitized from an
9904 analog source. When it occurs in video that results from the digitization of an
9905 analog source it can indicate concealment from a dropout compensator.
9906
9907 @item brng
9908 Identify pixels that fall outside of legal broadcast range.
9909 @end table
9910
9911 @item color, c
9912 Set the highlight color for the @option{out} option. The default color is
9913 yellow.
9914 @end table
9915
9916 @subsection Examples
9917
9918 @itemize
9919 @item
9920 Output data of various video metrics:
9921 @example
9922 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
9923 @end example
9924
9925 @item
9926 Output specific data about the minimum and maximum values of the Y plane per frame:
9927 @example
9928 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
9929 @end example
9930
9931 @item
9932 Playback video while highlighting pixels that are outside of broadcast range in red.
9933 @example
9934 ffplay example.mov -vf signalstats="out=brng:color=red"
9935 @end example
9936
9937 @item
9938 Playback video with signalstats metadata drawn over the frame.
9939 @example
9940 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
9941 @end example
9942
9943 The contents of signalstat_drawtext.txt used in the command are:
9944 @example
9945 time %@{pts:hms@}
9946 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
9947 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
9948 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
9949 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
9950
9951 @end example
9952 @end itemize
9953
9954 @anchor{smartblur}
9955 @section smartblur
9956
9957 Blur the input video without impacting the outlines.
9958
9959 It accepts the following options:
9960
9961 @table @option
9962 @item luma_radius, lr
9963 Set the luma radius. The option value must be a float number in
9964 the range [0.1,5.0] that specifies the variance of the gaussian filter
9965 used to blur the image (slower if larger). Default value is 1.0.
9966
9967 @item luma_strength, ls
9968 Set the luma strength. The option value must be a float number
9969 in the range [-1.0,1.0] that configures the blurring. A value included
9970 in [0.0,1.0] will blur the image whereas a value included in
9971 [-1.0,0.0] will sharpen the image. Default value is 1.0.
9972
9973 @item luma_threshold, lt
9974 Set the luma threshold used as a coefficient to determine
9975 whether a pixel should be blurred or not. The option value must be an
9976 integer in the range [-30,30]. A value of 0 will filter all the image,
9977 a value included in [0,30] will filter flat areas and a value included
9978 in [-30,0] will filter edges. Default value is 0.
9979
9980 @item chroma_radius, cr
9981 Set the chroma radius. The option value must be a float number in
9982 the range [0.1,5.0] that specifies the variance of the gaussian filter
9983 used to blur the image (slower if larger). Default value is 1.0.
9984
9985 @item chroma_strength, cs
9986 Set the chroma strength. The option value must be a float number
9987 in the range [-1.0,1.0] that configures the blurring. A value included
9988 in [0.0,1.0] will blur the image whereas a value included in
9989 [-1.0,0.0] will sharpen the image. Default value is 1.0.
9990
9991 @item chroma_threshold, ct
9992 Set the chroma threshold used as a coefficient to determine
9993 whether a pixel should be blurred or not. The option value must be an
9994 integer in the range [-30,30]. A value of 0 will filter all the image,
9995 a value included in [0,30] will filter flat areas and a value included
9996 in [-30,0] will filter edges. Default value is 0.
9997 @end table
9998
9999 If a chroma option is not explicitly set, the corresponding luma value
10000 is set.
10001
10002 @section ssim
10003
10004 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
10005
10006 This filter takes in input two input videos, the first input is
10007 considered the "main" source and is passed unchanged to the
10008 output. The second input is used as a "reference" video for computing
10009 the SSIM.
10010
10011 Both video inputs must have the same resolution and pixel format for
10012 this filter to work correctly. Also it assumes that both inputs
10013 have the same number of frames, which are compared one by one.
10014
10015 The filter stores the calculated SSIM of each frame.
10016
10017 The description of the accepted parameters follows.
10018
10019 @table @option
10020 @item stats_file, f
10021 If specified the filter will use the named file to save the SSIM of
10022 each individual frame.
10023 @end table
10024
10025 The file printed if @var{stats_file} is selected, contains a sequence of
10026 key/value pairs of the form @var{key}:@var{value} for each compared
10027 couple of frames.
10028
10029 A description of each shown parameter follows:
10030
10031 @table @option
10032 @item n
10033 sequential number of the input frame, starting from 1
10034
10035 @item Y, U, V, R, G, B
10036 SSIM of the compared frames for the component specified by the suffix.
10037
10038 @item All
10039 SSIM of the compared frames for the whole frame.
10040
10041 @item dB
10042 Same as above but in dB representation.
10043 @end table
10044
10045 For example:
10046 @example
10047 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
10048 [main][ref] ssim="stats_file=stats.log" [out]
10049 @end example
10050
10051 On this example the input file being processed is compared with the
10052 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
10053 is stored in @file{stats.log}.
10054
10055 Another example with both psnr and ssim at same time:
10056 @example
10057 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
10058 @end example
10059
10060 @section stereo3d
10061
10062 Convert between different stereoscopic image formats.
10063
10064 The filters accept the following options:
10065
10066 @table @option
10067 @item in
10068 Set stereoscopic image format of input.
10069
10070 Available values for input image formats are:
10071 @table @samp
10072 @item sbsl
10073 side by side parallel (left eye left, right eye right)
10074
10075 @item sbsr
10076 side by side crosseye (right eye left, left eye right)
10077
10078 @item sbs2l
10079 side by side parallel with half width resolution
10080 (left eye left, right eye right)
10081
10082 @item sbs2r
10083 side by side crosseye with half width resolution
10084 (right eye left, left eye right)
10085
10086 @item abl
10087 above-below (left eye above, right eye below)
10088
10089 @item abr
10090 above-below (right eye above, left eye below)
10091
10092 @item ab2l
10093 above-below with half height resolution
10094 (left eye above, right eye below)
10095
10096 @item ab2r
10097 above-below with half height resolution
10098 (right eye above, left eye below)
10099
10100 @item al
10101 alternating frames (left eye first, right eye second)
10102
10103 @item ar
10104 alternating frames (right eye first, left eye second)
10105
10106 @item irl
10107 interleaved rows (left eye has top row, right eye starts on next row)
10108
10109 @item irr
10110 interleaved rows (right eye has top row, left eye starts on next row)
10111
10112 Default value is @samp{sbsl}.
10113 @end table
10114
10115 @item out
10116 Set stereoscopic image format of output.
10117
10118 Available values for output image formats are all the input formats as well as:
10119 @table @samp
10120 @item arbg
10121 anaglyph red/blue gray
10122 (red filter on left eye, blue filter on right eye)
10123
10124 @item argg
10125 anaglyph red/green gray
10126 (red filter on left eye, green filter on right eye)
10127
10128 @item arcg
10129 anaglyph red/cyan gray
10130 (red filter on left eye, cyan filter on right eye)
10131
10132 @item arch
10133 anaglyph red/cyan half colored
10134 (red filter on left eye, cyan filter on right eye)
10135
10136 @item arcc
10137 anaglyph red/cyan color
10138 (red filter on left eye, cyan filter on right eye)
10139
10140 @item arcd
10141 anaglyph red/cyan color optimized with the least squares projection of dubois
10142 (red filter on left eye, cyan filter on right eye)
10143
10144 @item agmg
10145 anaglyph green/magenta gray
10146 (green filter on left eye, magenta filter on right eye)
10147
10148 @item agmh
10149 anaglyph green/magenta half colored
10150 (green filter on left eye, magenta filter on right eye)
10151
10152 @item agmc
10153 anaglyph green/magenta colored
10154 (green filter on left eye, magenta filter on right eye)
10155
10156 @item agmd
10157 anaglyph green/magenta color optimized with the least squares projection of dubois
10158 (green filter on left eye, magenta filter on right eye)
10159
10160 @item aybg
10161 anaglyph yellow/blue gray
10162 (yellow filter on left eye, blue filter on right eye)
10163
10164 @item aybh
10165 anaglyph yellow/blue half colored
10166 (yellow filter on left eye, blue filter on right eye)
10167
10168 @item aybc
10169 anaglyph yellow/blue colored
10170 (yellow filter on left eye, blue filter on right eye)
10171
10172 @item aybd
10173 anaglyph yellow/blue color optimized with the least squares projection of dubois
10174 (yellow filter on left eye, blue filter on right eye)
10175
10176 @item ml
10177 mono output (left eye only)
10178
10179 @item mr
10180 mono output (right eye only)
10181
10182 @item chl
10183 checkerboard, left eye first
10184
10185 @item chr
10186 checkerboard, right eye first
10187
10188 @item icl
10189 interleaved columns, left eye first
10190
10191 @item icr
10192 interleaved columns, right eye first
10193 @end table
10194
10195 Default value is @samp{arcd}.
10196 @end table
10197
10198 @subsection Examples
10199
10200 @itemize
10201 @item
10202 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
10203 @example
10204 stereo3d=sbsl:aybd
10205 @end example
10206
10207 @item
10208 Convert input video from above bellow (left eye above, right eye below) to side by side crosseye.
10209 @example
10210 stereo3d=abl:sbsr
10211 @end example
10212 @end itemize
10213
10214 @anchor{spp}
10215 @section spp
10216
10217 Apply a simple postprocessing filter that compresses and decompresses the image
10218 at several (or - in the case of @option{quality} level @code{6} - all) shifts
10219 and average the results.
10220
10221 The filter accepts the following options:
10222
10223 @table @option
10224 @item quality
10225 Set quality. This option defines the number of levels for averaging. It accepts
10226 an integer in the range 0-6. If set to @code{0}, the filter will have no
10227 effect. A value of @code{6} means the higher quality. For each increment of
10228 that value the speed drops by a factor of approximately 2.  Default value is
10229 @code{3}.
10230
10231 @item qp
10232 Force a constant quantization parameter. If not set, the filter will use the QP
10233 from the video stream (if available).
10234
10235 @item mode
10236 Set thresholding mode. Available modes are:
10237
10238 @table @samp
10239 @item hard
10240 Set hard thresholding (default).
10241 @item soft
10242 Set soft thresholding (better de-ringing effect, but likely blurrier).
10243 @end table
10244
10245 @item use_bframe_qp
10246 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
10247 option may cause flicker since the B-Frames have often larger QP. Default is
10248 @code{0} (not enabled).
10249 @end table
10250
10251 @anchor{subtitles}
10252 @section subtitles
10253
10254 Draw subtitles on top of input video using the libass library.
10255
10256 To enable compilation of this filter you need to configure FFmpeg with
10257 @code{--enable-libass}. This filter also requires a build with libavcodec and
10258 libavformat to convert the passed subtitles file to ASS (Advanced Substation
10259 Alpha) subtitles format.
10260
10261 The filter accepts the following options:
10262
10263 @table @option
10264 @item filename, f
10265 Set the filename of the subtitle file to read. It must be specified.
10266
10267 @item original_size
10268 Specify the size of the original video, the video for which the ASS file
10269 was composed. For the syntax of this option, check the
10270 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
10271 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
10272 correctly scale the fonts if the aspect ratio has been changed.
10273
10274 @item fontsdir
10275 Set a directory path containing fonts that can be used by the filter.
10276 These fonts will be used in addition to whatever the font provider uses.
10277
10278 @item charenc
10279 Set subtitles input character encoding. @code{subtitles} filter only. Only
10280 useful if not UTF-8.
10281
10282 @item stream_index, si
10283 Set subtitles stream index. @code{subtitles} filter only.
10284
10285 @item force_style
10286 Override default style or script info parameters of the subtitles. It accepts a
10287 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
10288 @end table
10289
10290 If the first key is not specified, it is assumed that the first value
10291 specifies the @option{filename}.
10292
10293 For example, to render the file @file{sub.srt} on top of the input
10294 video, use the command:
10295 @example
10296 subtitles=sub.srt
10297 @end example
10298
10299 which is equivalent to:
10300 @example
10301 subtitles=filename=sub.srt
10302 @end example
10303
10304 To render the default subtitles stream from file @file{video.mkv}, use:
10305 @example
10306 subtitles=video.mkv
10307 @end example
10308
10309 To render the second subtitles stream from that file, use:
10310 @example
10311 subtitles=video.mkv:si=1
10312 @end example
10313
10314 To make the subtitles stream from @file{sub.srt} appear in transparent green
10315 @code{DejaVu Serif}, use:
10316 @example
10317 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HAA00FF00'
10318 @end example
10319
10320 @section super2xsai
10321
10322 Scale the input by 2x and smooth using the Super2xSaI (Scale and
10323 Interpolate) pixel art scaling algorithm.
10324
10325 Useful for enlarging pixel art images without reducing sharpness.
10326
10327 @section swapuv
10328 Swap U & V plane.
10329
10330 @section telecine
10331
10332 Apply telecine process to the video.
10333
10334 This filter accepts the following options:
10335
10336 @table @option
10337 @item first_field
10338 @table @samp
10339 @item top, t
10340 top field first
10341 @item bottom, b
10342 bottom field first
10343 The default value is @code{top}.
10344 @end table
10345
10346 @item pattern
10347 A string of numbers representing the pulldown pattern you wish to apply.
10348 The default value is @code{23}.
10349 @end table
10350
10351 @example
10352 Some typical patterns:
10353
10354 NTSC output (30i):
10355 27.5p: 32222
10356 24p: 23 (classic)
10357 24p: 2332 (preferred)
10358 20p: 33
10359 18p: 334
10360 16p: 3444
10361
10362 PAL output (25i):
10363 27.5p: 12222
10364 24p: 222222222223 ("Euro pulldown")
10365 16.67p: 33
10366 16p: 33333334
10367 @end example
10368
10369 @section thumbnail
10370 Select the most representative frame in a given sequence of consecutive frames.
10371
10372 The filter accepts the following options:
10373
10374 @table @option
10375 @item n
10376 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
10377 will pick one of them, and then handle the next batch of @var{n} frames until
10378 the end. Default is @code{100}.
10379 @end table
10380
10381 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
10382 value will result in a higher memory usage, so a high value is not recommended.
10383
10384 @subsection Examples
10385
10386 @itemize
10387 @item
10388 Extract one picture each 50 frames:
10389 @example
10390 thumbnail=50
10391 @end example
10392
10393 @item
10394 Complete example of a thumbnail creation with @command{ffmpeg}:
10395 @example
10396 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
10397 @end example
10398 @end itemize
10399
10400 @section tile
10401
10402 Tile several successive frames together.
10403
10404 The filter accepts the following options:
10405
10406 @table @option
10407
10408 @item layout
10409 Set the grid size (i.e. the number of lines and columns). For the syntax of
10410 this option, check the
10411 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
10412
10413 @item nb_frames
10414 Set the maximum number of frames to render in the given area. It must be less
10415 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
10416 the area will be used.
10417
10418 @item margin
10419 Set the outer border margin in pixels.
10420
10421 @item padding
10422 Set the inner border thickness (i.e. the number of pixels between frames). For
10423 more advanced padding options (such as having different values for the edges),
10424 refer to the pad video filter.
10425
10426 @item color
10427 Specify the color of the unused area. For the syntax of this option, check the
10428 "Color" section in the ffmpeg-utils manual. The default value of @var{color}
10429 is "black".
10430 @end table
10431
10432 @subsection Examples
10433
10434 @itemize
10435 @item
10436 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
10437 @example
10438 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
10439 @end example
10440 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
10441 duplicating each output frame to accommodate the originally detected frame
10442 rate.
10443
10444 @item
10445 Display @code{5} pictures in an area of @code{3x2} frames,
10446 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
10447 mixed flat and named options:
10448 @example
10449 tile=3x2:nb_frames=5:padding=7:margin=2
10450 @end example
10451 @end itemize
10452
10453 @section tinterlace
10454
10455 Perform various types of temporal field interlacing.
10456
10457 Frames are counted starting from 1, so the first input frame is
10458 considered odd.
10459
10460 The filter accepts the following options:
10461
10462 @table @option
10463
10464 @item mode
10465 Specify the mode of the interlacing. This option can also be specified
10466 as a value alone. See below for a list of values for this option.
10467
10468 Available values are:
10469
10470 @table @samp
10471 @item merge, 0
10472 Move odd frames into the upper field, even into the lower field,
10473 generating a double height frame at half frame rate.
10474 @example
10475  ------> time
10476 Input:
10477 Frame 1         Frame 2         Frame 3         Frame 4
10478
10479 11111           22222           33333           44444
10480 11111           22222           33333           44444
10481 11111           22222           33333           44444
10482 11111           22222           33333           44444
10483
10484 Output:
10485 11111                           33333
10486 22222                           44444
10487 11111                           33333
10488 22222                           44444
10489 11111                           33333
10490 22222                           44444
10491 11111                           33333
10492 22222                           44444
10493 @end example
10494
10495 @item drop_odd, 1
10496 Only output even frames, odd frames are dropped, generating a frame with
10497 unchanged height at half frame rate.
10498
10499 @example
10500  ------> time
10501 Input:
10502 Frame 1         Frame 2         Frame 3         Frame 4
10503
10504 11111           22222           33333           44444
10505 11111           22222           33333           44444
10506 11111           22222           33333           44444
10507 11111           22222           33333           44444
10508
10509 Output:
10510                 22222                           44444
10511                 22222                           44444
10512                 22222                           44444
10513                 22222                           44444
10514 @end example
10515
10516 @item drop_even, 2
10517 Only output odd frames, even frames are dropped, generating a frame with
10518 unchanged height at half frame rate.
10519
10520 @example
10521  ------> time
10522 Input:
10523 Frame 1         Frame 2         Frame 3         Frame 4
10524
10525 11111           22222           33333           44444
10526 11111           22222           33333           44444
10527 11111           22222           33333           44444
10528 11111           22222           33333           44444
10529
10530 Output:
10531 11111                           33333
10532 11111                           33333
10533 11111                           33333
10534 11111                           33333
10535 @end example
10536
10537 @item pad, 3
10538 Expand each frame to full height, but pad alternate lines with black,
10539 generating a frame with double height at the same input frame rate.
10540
10541 @example
10542  ------> time
10543 Input:
10544 Frame 1         Frame 2         Frame 3         Frame 4
10545
10546 11111           22222           33333           44444
10547 11111           22222           33333           44444
10548 11111           22222           33333           44444
10549 11111           22222           33333           44444
10550
10551 Output:
10552 11111           .....           33333           .....
10553 .....           22222           .....           44444
10554 11111           .....           33333           .....
10555 .....           22222           .....           44444
10556 11111           .....           33333           .....
10557 .....           22222           .....           44444
10558 11111           .....           33333           .....
10559 .....           22222           .....           44444
10560 @end example
10561
10562
10563 @item interleave_top, 4
10564 Interleave the upper field from odd frames with the lower field from
10565 even frames, generating a frame with unchanged height at half frame rate.
10566
10567 @example
10568  ------> time
10569 Input:
10570 Frame 1         Frame 2         Frame 3         Frame 4
10571
10572 11111<-         22222           33333<-         44444
10573 11111           22222<-         33333           44444<-
10574 11111<-         22222           33333<-         44444
10575 11111           22222<-         33333           44444<-
10576
10577 Output:
10578 11111                           33333
10579 22222                           44444
10580 11111                           33333
10581 22222                           44444
10582 @end example
10583
10584
10585 @item interleave_bottom, 5
10586 Interleave the lower field from odd frames with the upper field from
10587 even frames, generating a frame with unchanged height at half frame rate.
10588
10589 @example
10590  ------> time
10591 Input:
10592 Frame 1         Frame 2         Frame 3         Frame 4
10593
10594 11111           22222<-         33333           44444<-
10595 11111<-         22222           33333<-         44444
10596 11111           22222<-         33333           44444<-
10597 11111<-         22222           33333<-         44444
10598
10599 Output:
10600 22222                           44444
10601 11111                           33333
10602 22222                           44444
10603 11111                           33333
10604 @end example
10605
10606
10607 @item interlacex2, 6
10608 Double frame rate with unchanged height. Frames are inserted each
10609 containing the second temporal field from the previous input frame and
10610 the first temporal field from the next input frame. This mode relies on
10611 the top_field_first flag. Useful for interlaced video displays with no
10612 field synchronisation.
10613
10614 @example
10615  ------> time
10616 Input:
10617 Frame 1         Frame 2         Frame 3         Frame 4
10618
10619 11111           22222           33333           44444
10620  11111           22222           33333           44444
10621 11111           22222           33333           44444
10622  11111           22222           33333           44444
10623
10624 Output:
10625 11111   22222   22222   33333   33333   44444   44444
10626  11111   11111   22222   22222   33333   33333   44444
10627 11111   22222   22222   33333   33333   44444   44444
10628  11111   11111   22222   22222   33333   33333   44444
10629 @end example
10630
10631
10632 @end table
10633
10634 Numeric values are deprecated but are accepted for backward
10635 compatibility reasons.
10636
10637 Default mode is @code{merge}.
10638
10639 @item flags
10640 Specify flags influencing the filter process.
10641
10642 Available value for @var{flags} is:
10643
10644 @table @option
10645 @item low_pass_filter, vlfp
10646 Enable vertical low-pass filtering in the filter.
10647 Vertical low-pass filtering is required when creating an interlaced
10648 destination from a progressive source which contains high-frequency
10649 vertical detail. Filtering will reduce interlace 'twitter' and Moire
10650 patterning.
10651
10652 Vertical low-pass filtering can only be enabled for @option{mode}
10653 @var{interleave_top} and @var{interleave_bottom}.
10654
10655 @end table
10656 @end table
10657
10658 @section transpose
10659
10660 Transpose rows with columns in the input video and optionally flip it.
10661
10662 It accepts the following parameters:
10663
10664 @table @option
10665
10666 @item dir
10667 Specify the transposition direction.
10668
10669 Can assume the following values:
10670 @table @samp
10671 @item 0, 4, cclock_flip
10672 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
10673 @example
10674 L.R     L.l
10675 . . ->  . .
10676 l.r     R.r
10677 @end example
10678
10679 @item 1, 5, clock
10680 Rotate by 90 degrees clockwise, that is:
10681 @example
10682 L.R     l.L
10683 . . ->  . .
10684 l.r     r.R
10685 @end example
10686
10687 @item 2, 6, cclock
10688 Rotate by 90 degrees counterclockwise, that is:
10689 @example
10690 L.R     R.r
10691 . . ->  . .
10692 l.r     L.l
10693 @end example
10694
10695 @item 3, 7, clock_flip
10696 Rotate by 90 degrees clockwise and vertically flip, that is:
10697 @example
10698 L.R     r.R
10699 . . ->  . .
10700 l.r     l.L
10701 @end example
10702 @end table
10703
10704 For values between 4-7, the transposition is only done if the input
10705 video geometry is portrait and not landscape. These values are
10706 deprecated, the @code{passthrough} option should be used instead.
10707
10708 Numerical values are deprecated, and should be dropped in favor of
10709 symbolic constants.
10710
10711 @item passthrough
10712 Do not apply the transposition if the input geometry matches the one
10713 specified by the specified value. It accepts the following values:
10714 @table @samp
10715 @item none
10716 Always apply transposition.
10717 @item portrait
10718 Preserve portrait geometry (when @var{height} >= @var{width}).
10719 @item landscape
10720 Preserve landscape geometry (when @var{width} >= @var{height}).
10721 @end table
10722
10723 Default value is @code{none}.
10724 @end table
10725
10726 For example to rotate by 90 degrees clockwise and preserve portrait
10727 layout:
10728 @example
10729 transpose=dir=1:passthrough=portrait
10730 @end example
10731
10732 The command above can also be specified as:
10733 @example
10734 transpose=1:portrait
10735 @end example
10736
10737 @section trim
10738 Trim the input so that the output contains one continuous subpart of the input.
10739
10740 It accepts the following parameters:
10741 @table @option
10742 @item start
10743 Specify the time of the start of the kept section, i.e. the frame with the
10744 timestamp @var{start} will be the first frame in the output.
10745
10746 @item end
10747 Specify the time of the first frame that will be dropped, i.e. the frame
10748 immediately preceding the one with the timestamp @var{end} will be the last
10749 frame in the output.
10750
10751 @item start_pts
10752 This is the same as @var{start}, except this option sets the start timestamp
10753 in timebase units instead of seconds.
10754
10755 @item end_pts
10756 This is the same as @var{end}, except this option sets the end timestamp
10757 in timebase units instead of seconds.
10758
10759 @item duration
10760 The maximum duration of the output in seconds.
10761
10762 @item start_frame
10763 The number of the first frame that should be passed to the output.
10764
10765 @item end_frame
10766 The number of the first frame that should be dropped.
10767 @end table
10768
10769 @option{start}, @option{end}, and @option{duration} are expressed as time
10770 duration specifications; see
10771 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
10772 for the accepted syntax.
10773
10774 Note that the first two sets of the start/end options and the @option{duration}
10775 option look at the frame timestamp, while the _frame variants simply count the
10776 frames that pass through the filter. Also note that this filter does not modify
10777 the timestamps. If you wish for the output timestamps to start at zero, insert a
10778 setpts filter after the trim filter.
10779
10780 If multiple start or end options are set, this filter tries to be greedy and
10781 keep all the frames that match at least one of the specified constraints. To keep
10782 only the part that matches all the constraints at once, chain multiple trim
10783 filters.
10784
10785 The defaults are such that all the input is kept. So it is possible to set e.g.
10786 just the end values to keep everything before the specified time.
10787
10788 Examples:
10789 @itemize
10790 @item
10791 Drop everything except the second minute of input:
10792 @example
10793 ffmpeg -i INPUT -vf trim=60:120
10794 @end example
10795
10796 @item
10797 Keep only the first second:
10798 @example
10799 ffmpeg -i INPUT -vf trim=duration=1
10800 @end example
10801
10802 @end itemize
10803
10804
10805 @anchor{unsharp}
10806 @section unsharp
10807
10808 Sharpen or blur the input video.
10809
10810 It accepts the following parameters:
10811
10812 @table @option
10813 @item luma_msize_x, lx
10814 Set the luma matrix horizontal size. It must be an odd integer between
10815 3 and 63. The default value is 5.
10816
10817 @item luma_msize_y, ly
10818 Set the luma matrix vertical size. It must be an odd integer between 3
10819 and 63. The default value is 5.
10820
10821 @item luma_amount, la
10822 Set the luma effect strength. It must be a floating point number, reasonable
10823 values lay between -1.5 and 1.5.
10824
10825 Negative values will blur the input video, while positive values will
10826 sharpen it, a value of zero will disable the effect.
10827
10828 Default value is 1.0.
10829
10830 @item chroma_msize_x, cx
10831 Set the chroma matrix horizontal size. It must be an odd integer
10832 between 3 and 63. The default value is 5.
10833
10834 @item chroma_msize_y, cy
10835 Set the chroma matrix vertical size. It must be an odd integer
10836 between 3 and 63. The default value is 5.
10837
10838 @item chroma_amount, ca
10839 Set the chroma effect strength. It must be a floating point number, reasonable
10840 values lay between -1.5 and 1.5.
10841
10842 Negative values will blur the input video, while positive values will
10843 sharpen it, a value of zero will disable the effect.
10844
10845 Default value is 0.0.
10846
10847 @item opencl
10848 If set to 1, specify using OpenCL capabilities, only available if
10849 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
10850
10851 @end table
10852
10853 All parameters are optional and default to the equivalent of the
10854 string '5:5:1.0:5:5:0.0'.
10855
10856 @subsection Examples
10857
10858 @itemize
10859 @item
10860 Apply strong luma sharpen effect:
10861 @example
10862 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
10863 @end example
10864
10865 @item
10866 Apply a strong blur of both luma and chroma parameters:
10867 @example
10868 unsharp=7:7:-2:7:7:-2
10869 @end example
10870 @end itemize
10871
10872 @section uspp
10873
10874 Apply ultra slow/simple postprocessing filter that compresses and decompresses
10875 the image at several (or - in the case of @option{quality} level @code{8} - all)
10876 shifts and average the results.
10877
10878 The way this differs from the behavior of spp is that uspp actually encodes &
10879 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
10880 DCT similar to MJPEG.
10881
10882 The filter accepts the following options:
10883
10884 @table @option
10885 @item quality
10886 Set quality. This option defines the number of levels for averaging. It accepts
10887 an integer in the range 0-8. If set to @code{0}, the filter will have no
10888 effect. A value of @code{8} means the higher quality. For each increment of
10889 that value the speed drops by a factor of approximately 2.  Default value is
10890 @code{3}.
10891
10892 @item qp
10893 Force a constant quantization parameter. If not set, the filter will use the QP
10894 from the video stream (if available).
10895 @end table
10896
10897 @section vectorscope
10898
10899 Display 2 color component values in the two dimensional graph (which is called
10900 a vectorscope).
10901
10902 This filter accepts the following options:
10903
10904 @table @option
10905 @item mode, m
10906 Set vectorscope mode.
10907
10908 It accepts the following values:
10909 @table @samp
10910 @item gray
10911 Gray values are displayed on graph, higher brightness means more pixels have
10912 same component color value on location in graph. This is the default mode.
10913
10914 @item color
10915 Gray values are displayed on graph. Surrounding pixels values which are not
10916 present in video frame are drawn in gradient of 2 color components which are
10917 set by option @code{x} and @code{y}.
10918
10919 @item color2
10920 Actual color components values present in video frame are displayed on graph.
10921
10922 @item color3
10923 Similar as color2 but higher frequency of same values @code{x} and @code{y}
10924 on graph increases value of another color component, which is luminance by
10925 default values of @code{x} and @code{y}.
10926
10927 @item color4
10928 Actual colors present in video frame are displayed on graph. If two different
10929 colors map to same position on graph then color with higher value of component
10930 not present in graph is picked.
10931 @end table
10932
10933 @item x
10934 Set which color component will be represented on X-axis. Default is @code{1}.
10935
10936 @item y
10937 Set which color component will be represented on Y-axis. Default is @code{2}.
10938
10939 @item intensity, i
10940 Set intensity, used by modes: gray, color and color3 for increasing brightness
10941 of color component which represents frequency of (X, Y) location in graph.
10942
10943 @item envelope, e
10944 @table @samp
10945 @item none
10946 No envelope, this is default.
10947
10948 @item instant
10949 Instant envelope, even darkest single pixel will be clearly highlighted.
10950
10951 @item peak
10952 Hold maximum and minimum values presented in graph over time. This way you
10953 can still spot out of range values without constantly looking at vectorscope.
10954
10955 @item peak+instant
10956 Peak and instant envelope combined together.
10957 @end table
10958 @end table
10959
10960 @anchor{vidstabdetect}
10961 @section vidstabdetect
10962
10963 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
10964 @ref{vidstabtransform} for pass 2.
10965
10966 This filter generates a file with relative translation and rotation
10967 transform information about subsequent frames, which is then used by
10968 the @ref{vidstabtransform} filter.
10969
10970 To enable compilation of this filter you need to configure FFmpeg with
10971 @code{--enable-libvidstab}.
10972
10973 This filter accepts the following options:
10974
10975 @table @option
10976 @item result
10977 Set the path to the file used to write the transforms information.
10978 Default value is @file{transforms.trf}.
10979
10980 @item shakiness
10981 Set how shaky the video is and how quick the camera is. It accepts an
10982 integer in the range 1-10, a value of 1 means little shakiness, a
10983 value of 10 means strong shakiness. Default value is 5.
10984
10985 @item accuracy
10986 Set the accuracy of the detection process. It must be a value in the
10987 range 1-15. A value of 1 means low accuracy, a value of 15 means high
10988 accuracy. Default value is 15.
10989
10990 @item stepsize
10991 Set stepsize of the search process. The region around minimum is
10992 scanned with 1 pixel resolution. Default value is 6.
10993
10994 @item mincontrast
10995 Set minimum contrast. Below this value a local measurement field is
10996 discarded. Must be a floating point value in the range 0-1. Default
10997 value is 0.3.
10998
10999 @item tripod
11000 Set reference frame number for tripod mode.
11001
11002 If enabled, the motion of the frames is compared to a reference frame
11003 in the filtered stream, identified by the specified number. The idea
11004 is to compensate all movements in a more-or-less static scene and keep
11005 the camera view absolutely still.
11006
11007 If set to 0, it is disabled. The frames are counted starting from 1.
11008
11009 @item show
11010 Show fields and transforms in the resulting frames. It accepts an
11011 integer in the range 0-2. Default value is 0, which disables any
11012 visualization.
11013 @end table
11014
11015 @subsection Examples
11016
11017 @itemize
11018 @item
11019 Use default values:
11020 @example
11021 vidstabdetect
11022 @end example
11023
11024 @item
11025 Analyze strongly shaky movie and put the results in file
11026 @file{mytransforms.trf}:
11027 @example
11028 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
11029 @end example
11030
11031 @item
11032 Visualize the result of internal transformations in the resulting
11033 video:
11034 @example
11035 vidstabdetect=show=1
11036 @end example
11037
11038 @item
11039 Analyze a video with medium shakiness using @command{ffmpeg}:
11040 @example
11041 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
11042 @end example
11043 @end itemize
11044
11045 @anchor{vidstabtransform}
11046 @section vidstabtransform
11047
11048 Video stabilization/deshaking: pass 2 of 2,
11049 see @ref{vidstabdetect} for pass 1.
11050
11051 Read a file with transform information for each frame and
11052 apply/compensate them. Together with the @ref{vidstabdetect}
11053 filter this can be used to deshake videos. See also
11054 @url{http://public.hronopik.de/vid.stab}. It is important to also use
11055 the @ref{unsharp} filter, see below.
11056
11057 To enable compilation of this filter you need to configure FFmpeg with
11058 @code{--enable-libvidstab}.
11059
11060 @subsection Options
11061
11062 @table @option
11063 @item input
11064 Set path to the file used to read the transforms. Default value is
11065 @file{transforms.trf}.
11066
11067 @item smoothing
11068 Set the number of frames (value*2 + 1) used for lowpass filtering the
11069 camera movements. Default value is 10.
11070
11071 For example a number of 10 means that 21 frames are used (10 in the
11072 past and 10 in the future) to smoothen the motion in the video. A
11073 larger value leads to a smoother video, but limits the acceleration of
11074 the camera (pan/tilt movements). 0 is a special case where a static
11075 camera is simulated.
11076
11077 @item optalgo
11078 Set the camera path optimization algorithm.
11079
11080 Accepted values are:
11081 @table @samp
11082 @item gauss
11083 gaussian kernel low-pass filter on camera motion (default)
11084 @item avg
11085 averaging on transformations
11086 @end table
11087
11088 @item maxshift
11089 Set maximal number of pixels to translate frames. Default value is -1,
11090 meaning no limit.
11091
11092 @item maxangle
11093 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
11094 value is -1, meaning no limit.
11095
11096 @item crop
11097 Specify how to deal with borders that may be visible due to movement
11098 compensation.
11099
11100 Available values are:
11101 @table @samp
11102 @item keep
11103 keep image information from previous frame (default)
11104 @item black
11105 fill the border black
11106 @end table
11107
11108 @item invert
11109 Invert transforms if set to 1. Default value is 0.
11110
11111 @item relative
11112 Consider transforms as relative to previous frame if set to 1,
11113 absolute if set to 0. Default value is 0.
11114
11115 @item zoom
11116 Set percentage to zoom. A positive value will result in a zoom-in
11117 effect, a negative value in a zoom-out effect. Default value is 0 (no
11118 zoom).
11119
11120 @item optzoom
11121 Set optimal zooming to avoid borders.
11122
11123 Accepted values are:
11124 @table @samp
11125 @item 0
11126 disabled
11127 @item 1
11128 optimal static zoom value is determined (only very strong movements
11129 will lead to visible borders) (default)
11130 @item 2
11131 optimal adaptive zoom value is determined (no borders will be
11132 visible), see @option{zoomspeed}
11133 @end table
11134
11135 Note that the value given at zoom is added to the one calculated here.
11136
11137 @item zoomspeed
11138 Set percent to zoom maximally each frame (enabled when
11139 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
11140 0.25.
11141
11142 @item interpol
11143 Specify type of interpolation.
11144
11145 Available values are:
11146 @table @samp
11147 @item no
11148 no interpolation
11149 @item linear
11150 linear only horizontal
11151 @item bilinear
11152 linear in both directions (default)
11153 @item bicubic
11154 cubic in both directions (slow)
11155 @end table
11156
11157 @item tripod
11158 Enable virtual tripod mode if set to 1, which is equivalent to
11159 @code{relative=0:smoothing=0}. Default value is 0.
11160
11161 Use also @code{tripod} option of @ref{vidstabdetect}.
11162
11163 @item debug
11164 Increase log verbosity if set to 1. Also the detected global motions
11165 are written to the temporary file @file{global_motions.trf}. Default
11166 value is 0.
11167 @end table
11168
11169 @subsection Examples
11170
11171 @itemize
11172 @item
11173 Use @command{ffmpeg} for a typical stabilization with default values:
11174 @example
11175 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
11176 @end example
11177
11178 Note the use of the @ref{unsharp} filter which is always recommended.
11179
11180 @item
11181 Zoom in a bit more and load transform data from a given file:
11182 @example
11183 vidstabtransform=zoom=5:input="mytransforms.trf"
11184 @end example
11185
11186 @item
11187 Smoothen the video even more:
11188 @example
11189 vidstabtransform=smoothing=30
11190 @end example
11191 @end itemize
11192
11193 @section vflip
11194
11195 Flip the input video vertically.
11196
11197 For example, to vertically flip a video with @command{ffmpeg}:
11198 @example
11199 ffmpeg -i in.avi -vf "vflip" out.avi
11200 @end example
11201
11202 @anchor{vignette}
11203 @section vignette
11204
11205 Make or reverse a natural vignetting effect.
11206
11207 The filter accepts the following options:
11208
11209 @table @option
11210 @item angle, a
11211 Set lens angle expression as a number of radians.
11212
11213 The value is clipped in the @code{[0,PI/2]} range.
11214
11215 Default value: @code{"PI/5"}
11216
11217 @item x0
11218 @item y0
11219 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
11220 by default.
11221
11222 @item mode
11223 Set forward/backward mode.
11224
11225 Available modes are:
11226 @table @samp
11227 @item forward
11228 The larger the distance from the central point, the darker the image becomes.
11229
11230 @item backward
11231 The larger the distance from the central point, the brighter the image becomes.
11232 This can be used to reverse a vignette effect, though there is no automatic
11233 detection to extract the lens @option{angle} and other settings (yet). It can
11234 also be used to create a burning effect.
11235 @end table
11236
11237 Default value is @samp{forward}.
11238
11239 @item eval
11240 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
11241
11242 It accepts the following values:
11243 @table @samp
11244 @item init
11245 Evaluate expressions only once during the filter initialization.
11246
11247 @item frame
11248 Evaluate expressions for each incoming frame. This is way slower than the
11249 @samp{init} mode since it requires all the scalers to be re-computed, but it
11250 allows advanced dynamic expressions.
11251 @end table
11252
11253 Default value is @samp{init}.
11254
11255 @item dither
11256 Set dithering to reduce the circular banding effects. Default is @code{1}
11257 (enabled).
11258
11259 @item aspect
11260 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
11261 Setting this value to the SAR of the input will make a rectangular vignetting
11262 following the dimensions of the video.
11263
11264 Default is @code{1/1}.
11265 @end table
11266
11267 @subsection Expressions
11268
11269 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
11270 following parameters.
11271
11272 @table @option
11273 @item w
11274 @item h
11275 input width and height
11276
11277 @item n
11278 the number of input frame, starting from 0
11279
11280 @item pts
11281 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
11282 @var{TB} units, NAN if undefined
11283
11284 @item r
11285 frame rate of the input video, NAN if the input frame rate is unknown
11286
11287 @item t
11288 the PTS (Presentation TimeStamp) of the filtered video frame,
11289 expressed in seconds, NAN if undefined
11290
11291 @item tb
11292 time base of the input video
11293 @end table
11294
11295
11296 @subsection Examples
11297
11298 @itemize
11299 @item
11300 Apply simple strong vignetting effect:
11301 @example
11302 vignette=PI/4
11303 @end example
11304
11305 @item
11306 Make a flickering vignetting:
11307 @example
11308 vignette='PI/4+random(1)*PI/50':eval=frame
11309 @end example
11310
11311 @end itemize
11312
11313 @section vstack
11314 Stack input videos vertically.
11315
11316 All streams must be of same pixel format and of same width.
11317
11318 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
11319 to create same output.
11320
11321 The filter accept the following option:
11322
11323 @table @option
11324 @item nb_inputs
11325 Set number of input streams. Default is 2.
11326 @end table
11327
11328 @section w3fdif
11329
11330 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
11331 Deinterlacing Filter").
11332
11333 Based on the process described by Martin Weston for BBC R&D, and
11334 implemented based on the de-interlace algorithm written by Jim
11335 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
11336 uses filter coefficients calculated by BBC R&D.
11337
11338 There are two sets of filter coefficients, so called "simple":
11339 and "complex". Which set of filter coefficients is used can
11340 be set by passing an optional parameter:
11341
11342 @table @option
11343 @item filter
11344 Set the interlacing filter coefficients. Accepts one of the following values:
11345
11346 @table @samp
11347 @item simple
11348 Simple filter coefficient set.
11349 @item complex
11350 More-complex filter coefficient set.
11351 @end table
11352 Default value is @samp{complex}.
11353
11354 @item deint
11355 Specify which frames to deinterlace. Accept one of the following values:
11356
11357 @table @samp
11358 @item all
11359 Deinterlace all frames,
11360 @item interlaced
11361 Only deinterlace frames marked as interlaced.
11362 @end table
11363
11364 Default value is @samp{all}.
11365 @end table
11366
11367 @section waveform
11368 Video waveform monitor.
11369
11370 The waveform monitor plots color component intensity. By default luminance
11371 only. Each column of the waveform corresponds to a column of pixels in the
11372 source video.
11373
11374 It accepts the following options:
11375
11376 @table @option
11377 @item mode, m
11378 Can be either @code{row}, or @code{column}. Default is @code{column}.
11379 In row mode, the graph on the left side represents color component value 0 and
11380 the right side represents value = 255. In column mode, the top side represents
11381 color component value = 0 and bottom side represents value = 255.
11382
11383 @item intensity, i
11384 Set intensity. Smaller values are useful to find out how many values of the same
11385 luminance are distributed across input rows/columns.
11386 Default value is @code{0.04}. Allowed range is [0, 1].
11387
11388 @item mirror, r
11389 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
11390 In mirrored mode, higher values will be represented on the left
11391 side for @code{row} mode and at the top for @code{column} mode. Default is
11392 @code{1} (mirrored).
11393
11394 @item display, d
11395 Set display mode.
11396 It accepts the following values:
11397 @table @samp
11398 @item overlay
11399 Presents information identical to that in the @code{parade}, except
11400 that the graphs representing color components are superimposed directly
11401 over one another.
11402
11403 This display mode makes it easier to spot relative differences or similarities
11404 in overlapping areas of the color components that are supposed to be identical,
11405 such as neutral whites, grays, or blacks.
11406
11407 @item parade
11408 Display separate graph for the color components side by side in
11409 @code{row} mode or one below the other in @code{column} mode.
11410
11411 Using this display mode makes it easy to spot color casts in the highlights
11412 and shadows of an image, by comparing the contours of the top and the bottom
11413 graphs of each waveform. Since whites, grays, and blacks are characterized
11414 by exactly equal amounts of red, green, and blue, neutral areas of the picture
11415 should display three waveforms of roughly equal width/height. If not, the
11416 correction is easy to perform by making level adjustments the three waveforms.
11417 @end table
11418 Default is @code{parade}.
11419
11420 @item components, c
11421 Set which color components to display. Default is 1, which means only luminance
11422 or red color component if input is in RGB colorspace. If is set for example to
11423 7 it will display all 3 (if) available color components.
11424
11425 @item envelope, e
11426 @table @samp
11427 @item none
11428 No envelope, this is default.
11429
11430 @item instant
11431 Instant envelope, minimum and maximum values presented in graph will be easily
11432 visible even with small @code{step} value.
11433
11434 @item peak
11435 Hold minimum and maximum values presented in graph across time. This way you
11436 can still spot out of range values without constantly looking at waveforms.
11437
11438 @item peak+instant
11439 Peak and instant envelope combined together.
11440 @end table
11441
11442 @item filter, f
11443 @table @samp
11444 @item lowpass
11445 No filtering, this is default.
11446
11447 @item flat
11448 Luma and chroma combined together.
11449
11450 @item aflat
11451 Similar as above, but shows difference between blue and red chroma.
11452
11453 @item chroma
11454 Displays only chroma.
11455
11456 @item achroma
11457 Similar as above, but shows difference between blue and red chroma.
11458
11459 @item color
11460 Displays actual color value on waveform.
11461 @end table
11462 @end table
11463
11464 @section xbr
11465 Apply the xBR high-quality magnification filter which is designed for pixel
11466 art. It follows a set of edge-detection rules, see
11467 @url{http://www.libretro.com/forums/viewtopic.php?f=6&t=134}.
11468
11469 It accepts the following option:
11470
11471 @table @option
11472 @item n
11473 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
11474 @code{3xBR} and @code{4} for @code{4xBR}.
11475 Default is @code{3}.
11476 @end table
11477
11478 @anchor{yadif}
11479 @section yadif
11480
11481 Deinterlace the input video ("yadif" means "yet another deinterlacing
11482 filter").
11483
11484 It accepts the following parameters:
11485
11486
11487 @table @option
11488
11489 @item mode
11490 The interlacing mode to adopt. It accepts one of the following values:
11491
11492 @table @option
11493 @item 0, send_frame
11494 Output one frame for each frame.
11495 @item 1, send_field
11496 Output one frame for each field.
11497 @item 2, send_frame_nospatial
11498 Like @code{send_frame}, but it skips the spatial interlacing check.
11499 @item 3, send_field_nospatial
11500 Like @code{send_field}, but it skips the spatial interlacing check.
11501 @end table
11502
11503 The default value is @code{send_frame}.
11504
11505 @item parity
11506 The picture field parity assumed for the input interlaced video. It accepts one
11507 of the following values:
11508
11509 @table @option
11510 @item 0, tff
11511 Assume the top field is first.
11512 @item 1, bff
11513 Assume the bottom field is first.
11514 @item -1, auto
11515 Enable automatic detection of field parity.
11516 @end table
11517
11518 The default value is @code{auto}.
11519 If the interlacing is unknown or the decoder does not export this information,
11520 top field first will be assumed.
11521
11522 @item deint
11523 Specify which frames to deinterlace. Accept one of the following
11524 values:
11525
11526 @table @option
11527 @item 0, all
11528 Deinterlace all frames.
11529 @item 1, interlaced
11530 Only deinterlace frames marked as interlaced.
11531 @end table
11532
11533 The default value is @code{all}.
11534 @end table
11535
11536 @section zoompan
11537
11538 Apply Zoom & Pan effect.
11539
11540 This filter accepts the following options:
11541
11542 @table @option
11543 @item zoom, z
11544 Set the zoom expression. Default is 1.
11545
11546 @item x
11547 @item y
11548 Set the x and y expression. Default is 0.
11549
11550 @item d
11551 Set the duration expression in number of frames.
11552 This sets for how many number of frames effect will last for
11553 single input image.
11554
11555 @item s
11556 Set the output image size, default is 'hd720'.
11557 @end table
11558
11559 Each expression can contain the following constants:
11560
11561 @table @option
11562 @item in_w, iw
11563 Input width.
11564
11565 @item in_h, ih
11566 Input height.
11567
11568 @item out_w, ow
11569 Output width.
11570
11571 @item out_h, oh
11572 Output height.
11573
11574 @item in
11575 Input frame count.
11576
11577 @item on
11578 Output frame count.
11579
11580 @item x
11581 @item y
11582 Last calculated 'x' and 'y' position from 'x' and 'y' expression
11583 for current input frame.
11584
11585 @item px
11586 @item py
11587 'x' and 'y' of last output frame of previous input frame or 0 when there was
11588 not yet such frame (first input frame).
11589
11590 @item zoom
11591 Last calculated zoom from 'z' expression for current input frame.
11592
11593 @item pzoom
11594 Last calculated zoom of last output frame of previous input frame.
11595
11596 @item duration
11597 Number of output frames for current input frame. Calculated from 'd' expression
11598 for each input frame.
11599
11600 @item pduration
11601 number of output frames created for previous input frame
11602
11603 @item a
11604 Rational number: input width / input height
11605
11606 @item sar
11607 sample aspect ratio
11608
11609 @item dar
11610 display aspect ratio
11611
11612 @end table
11613
11614 @subsection Examples
11615
11616 @itemize
11617 @item
11618 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
11619 @example
11620 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
11621 @end example
11622
11623 @item
11624 Zoom-in up to 1.5 and pan always at center of picture:
11625 @example
11626 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
11627 @end example
11628 @end itemize
11629
11630 @c man end VIDEO FILTERS
11631
11632 @chapter Video Sources
11633 @c man begin VIDEO SOURCES
11634
11635 Below is a description of the currently available video sources.
11636
11637 @section buffer
11638
11639 Buffer video frames, and make them available to the filter chain.
11640
11641 This source is mainly intended for a programmatic use, in particular
11642 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
11643
11644 It accepts the following parameters:
11645
11646 @table @option
11647
11648 @item video_size
11649 Specify the size (width and height) of the buffered video frames. For the
11650 syntax of this option, check the
11651 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
11652
11653 @item width
11654 The input video width.
11655
11656 @item height
11657 The input video height.
11658
11659 @item pix_fmt
11660 A string representing the pixel format of the buffered video frames.
11661 It may be a number corresponding to a pixel format, or a pixel format
11662 name.
11663
11664 @item time_base
11665 Specify the timebase assumed by the timestamps of the buffered frames.
11666
11667 @item frame_rate
11668 Specify the frame rate expected for the video stream.
11669
11670 @item pixel_aspect, sar
11671 The sample (pixel) aspect ratio of the input video.
11672
11673 @item sws_param
11674 Specify the optional parameters to be used for the scale filter which
11675 is automatically inserted when an input change is detected in the
11676 input size or format.
11677 @end table
11678
11679 For example:
11680 @example
11681 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
11682 @end example
11683
11684 will instruct the source to accept video frames with size 320x240 and
11685 with format "yuv410p", assuming 1/24 as the timestamps timebase and
11686 square pixels (1:1 sample aspect ratio).
11687 Since the pixel format with name "yuv410p" corresponds to the number 6
11688 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
11689 this example corresponds to:
11690 @example
11691 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
11692 @end example
11693
11694 Alternatively, the options can be specified as a flat string, but this
11695 syntax is deprecated:
11696
11697 @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}]
11698
11699 @section cellauto
11700
11701 Create a pattern generated by an elementary cellular automaton.
11702
11703 The initial state of the cellular automaton can be defined through the
11704 @option{filename}, and @option{pattern} options. If such options are
11705 not specified an initial state is created randomly.
11706
11707 At each new frame a new row in the video is filled with the result of
11708 the cellular automaton next generation. The behavior when the whole
11709 frame is filled is defined by the @option{scroll} option.
11710
11711 This source accepts the following options:
11712
11713 @table @option
11714 @item filename, f
11715 Read the initial cellular automaton state, i.e. the starting row, from
11716 the specified file.
11717 In the file, each non-whitespace character is considered an alive
11718 cell, a newline will terminate the row, and further characters in the
11719 file will be ignored.
11720
11721 @item pattern, p
11722 Read the initial cellular automaton state, i.e. the starting row, from
11723 the specified string.
11724
11725 Each non-whitespace character in the string is considered an alive
11726 cell, a newline will terminate the row, and further characters in the
11727 string will be ignored.
11728
11729 @item rate, r
11730 Set the video rate, that is the number of frames generated per second.
11731 Default is 25.
11732
11733 @item random_fill_ratio, ratio
11734 Set the random fill ratio for the initial cellular automaton row. It
11735 is a floating point number value ranging from 0 to 1, defaults to
11736 1/PHI.
11737
11738 This option is ignored when a file or a pattern is specified.
11739
11740 @item random_seed, seed
11741 Set the seed for filling randomly the initial row, must be an integer
11742 included between 0 and UINT32_MAX. If not specified, or if explicitly
11743 set to -1, the filter will try to use a good random seed on a best
11744 effort basis.
11745
11746 @item rule
11747 Set the cellular automaton rule, it is a number ranging from 0 to 255.
11748 Default value is 110.
11749
11750 @item size, s
11751 Set the size of the output video. For the syntax of this option, check the
11752 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
11753
11754 If @option{filename} or @option{pattern} is specified, the size is set
11755 by default to the width of the specified initial state row, and the
11756 height is set to @var{width} * PHI.
11757
11758 If @option{size} is set, it must contain the width of the specified
11759 pattern string, and the specified pattern will be centered in the
11760 larger row.
11761
11762 If a filename or a pattern string is not specified, the size value
11763 defaults to "320x518" (used for a randomly generated initial state).
11764
11765 @item scroll
11766 If set to 1, scroll the output upward when all the rows in the output
11767 have been already filled. If set to 0, the new generated row will be
11768 written over the top row just after the bottom row is filled.
11769 Defaults to 1.
11770
11771 @item start_full, full
11772 If set to 1, completely fill the output with generated rows before
11773 outputting the first frame.
11774 This is the default behavior, for disabling set the value to 0.
11775
11776 @item stitch
11777 If set to 1, stitch the left and right row edges together.
11778 This is the default behavior, for disabling set the value to 0.
11779 @end table
11780
11781 @subsection Examples
11782
11783 @itemize
11784 @item
11785 Read the initial state from @file{pattern}, and specify an output of
11786 size 200x400.
11787 @example
11788 cellauto=f=pattern:s=200x400
11789 @end example
11790
11791 @item
11792 Generate a random initial row with a width of 200 cells, with a fill
11793 ratio of 2/3:
11794 @example
11795 cellauto=ratio=2/3:s=200x200
11796 @end example
11797
11798 @item
11799 Create a pattern generated by rule 18 starting by a single alive cell
11800 centered on an initial row with width 100:
11801 @example
11802 cellauto=p=@@:s=100x400:full=0:rule=18
11803 @end example
11804
11805 @item
11806 Specify a more elaborated initial pattern:
11807 @example
11808 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
11809 @end example
11810
11811 @end itemize
11812
11813 @section mandelbrot
11814
11815 Generate a Mandelbrot set fractal, and progressively zoom towards the
11816 point specified with @var{start_x} and @var{start_y}.
11817
11818 This source accepts the following options:
11819
11820 @table @option
11821
11822 @item end_pts
11823 Set the terminal pts value. Default value is 400.
11824
11825 @item end_scale
11826 Set the terminal scale value.
11827 Must be a floating point value. Default value is 0.3.
11828
11829 @item inner
11830 Set the inner coloring mode, that is the algorithm used to draw the
11831 Mandelbrot fractal internal region.
11832
11833 It shall assume one of the following values:
11834 @table @option
11835 @item black
11836 Set black mode.
11837 @item convergence
11838 Show time until convergence.
11839 @item mincol
11840 Set color based on point closest to the origin of the iterations.
11841 @item period
11842 Set period mode.
11843 @end table
11844
11845 Default value is @var{mincol}.
11846
11847 @item bailout
11848 Set the bailout value. Default value is 10.0.
11849
11850 @item maxiter
11851 Set the maximum of iterations performed by the rendering
11852 algorithm. Default value is 7189.
11853
11854 @item outer
11855 Set outer coloring mode.
11856 It shall assume one of following values:
11857 @table @option
11858 @item iteration_count
11859 Set iteration cound mode.
11860 @item normalized_iteration_count
11861 set normalized iteration count mode.
11862 @end table
11863 Default value is @var{normalized_iteration_count}.
11864
11865 @item rate, r
11866 Set frame rate, expressed as number of frames per second. Default
11867 value is "25".
11868
11869 @item size, s
11870 Set frame size. For the syntax of this option, check the "Video
11871 size" section in the ffmpeg-utils manual. Default value is "640x480".
11872
11873 @item start_scale
11874 Set the initial scale value. Default value is 3.0.
11875
11876 @item start_x
11877 Set the initial x position. Must be a floating point value between
11878 -100 and 100. Default value is -0.743643887037158704752191506114774.
11879
11880 @item start_y
11881 Set the initial y position. Must be a floating point value between
11882 -100 and 100. Default value is -0.131825904205311970493132056385139.
11883 @end table
11884
11885 @section mptestsrc
11886
11887 Generate various test patterns, as generated by the MPlayer test filter.
11888
11889 The size of the generated video is fixed, and is 256x256.
11890 This source is useful in particular for testing encoding features.
11891
11892 This source accepts the following options:
11893
11894 @table @option
11895
11896 @item rate, r
11897 Specify the frame rate of the sourced video, as the number of frames
11898 generated per second. It has to be a string in the format
11899 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
11900 number or a valid video frame rate abbreviation. The default value is
11901 "25".
11902
11903 @item duration, d
11904 Set the duration of the sourced video. See
11905 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
11906 for the accepted syntax.
11907
11908 If not specified, or the expressed duration is negative, the video is
11909 supposed to be generated forever.
11910
11911 @item test, t
11912
11913 Set the number or the name of the test to perform. Supported tests are:
11914 @table @option
11915 @item dc_luma
11916 @item dc_chroma
11917 @item freq_luma
11918 @item freq_chroma
11919 @item amp_luma
11920 @item amp_chroma
11921 @item cbp
11922 @item mv
11923 @item ring1
11924 @item ring2
11925 @item all
11926
11927 @end table
11928
11929 Default value is "all", which will cycle through the list of all tests.
11930 @end table
11931
11932 Some examples:
11933 @example
11934 mptestsrc=t=dc_luma
11935 @end example
11936
11937 will generate a "dc_luma" test pattern.
11938
11939 @section frei0r_src
11940
11941 Provide a frei0r source.
11942
11943 To enable compilation of this filter you need to install the frei0r
11944 header and configure FFmpeg with @code{--enable-frei0r}.
11945
11946 This source accepts the following parameters:
11947
11948 @table @option
11949
11950 @item size
11951 The size of the video to generate. For the syntax of this option, check the
11952 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
11953
11954 @item framerate
11955 The framerate of the generated video. It may be a string of the form
11956 @var{num}/@var{den} or a frame rate abbreviation.
11957
11958 @item filter_name
11959 The name to the frei0r source to load. For more information regarding frei0r and
11960 how to set the parameters, read the @ref{frei0r} section in the video filters
11961 documentation.
11962
11963 @item filter_params
11964 A '|'-separated list of parameters to pass to the frei0r source.
11965
11966 @end table
11967
11968 For example, to generate a frei0r partik0l source with size 200x200
11969 and frame rate 10 which is overlaid on the overlay filter main input:
11970 @example
11971 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
11972 @end example
11973
11974 @section life
11975
11976 Generate a life pattern.
11977
11978 This source is based on a generalization of John Conway's life game.
11979
11980 The sourced input represents a life grid, each pixel represents a cell
11981 which can be in one of two possible states, alive or dead. Every cell
11982 interacts with its eight neighbours, which are the cells that are
11983 horizontally, vertically, or diagonally adjacent.
11984
11985 At each interaction the grid evolves according to the adopted rule,
11986 which specifies the number of neighbor alive cells which will make a
11987 cell stay alive or born. The @option{rule} option allows one to specify
11988 the rule to adopt.
11989
11990 This source accepts the following options:
11991
11992 @table @option
11993 @item filename, f
11994 Set the file from which to read the initial grid state. In the file,
11995 each non-whitespace character is considered an alive cell, and newline
11996 is used to delimit the end of each row.
11997
11998 If this option is not specified, the initial grid is generated
11999 randomly.
12000
12001 @item rate, r
12002 Set the video rate, that is the number of frames generated per second.
12003 Default is 25.
12004
12005 @item random_fill_ratio, ratio
12006 Set the random fill ratio for the initial random grid. It is a
12007 floating point number value ranging from 0 to 1, defaults to 1/PHI.
12008 It is ignored when a file is specified.
12009
12010 @item random_seed, seed
12011 Set the seed for filling the initial random grid, must be an integer
12012 included between 0 and UINT32_MAX. If not specified, or if explicitly
12013 set to -1, the filter will try to use a good random seed on a best
12014 effort basis.
12015
12016 @item rule
12017 Set the life rule.
12018
12019 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
12020 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
12021 @var{NS} specifies the number of alive neighbor cells which make a
12022 live cell stay alive, and @var{NB} the number of alive neighbor cells
12023 which make a dead cell to become alive (i.e. to "born").
12024 "s" and "b" can be used in place of "S" and "B", respectively.
12025
12026 Alternatively a rule can be specified by an 18-bits integer. The 9
12027 high order bits are used to encode the next cell state if it is alive
12028 for each number of neighbor alive cells, the low order bits specify
12029 the rule for "borning" new cells. Higher order bits encode for an
12030 higher number of neighbor cells.
12031 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
12032 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
12033
12034 Default value is "S23/B3", which is the original Conway's game of life
12035 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
12036 cells, and will born a new cell if there are three alive cells around
12037 a dead cell.
12038
12039 @item size, s
12040 Set the size of the output video. For the syntax of this option, check the
12041 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12042
12043 If @option{filename} is specified, the size is set by default to the
12044 same size of the input file. If @option{size} is set, it must contain
12045 the size specified in the input file, and the initial grid defined in
12046 that file is centered in the larger resulting area.
12047
12048 If a filename is not specified, the size value defaults to "320x240"
12049 (used for a randomly generated initial grid).
12050
12051 @item stitch
12052 If set to 1, stitch the left and right grid edges together, and the
12053 top and bottom edges also. Defaults to 1.
12054
12055 @item mold
12056 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
12057 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
12058 value from 0 to 255.
12059
12060 @item life_color
12061 Set the color of living (or new born) cells.
12062
12063 @item death_color
12064 Set the color of dead cells. If @option{mold} is set, this is the first color
12065 used to represent a dead cell.
12066
12067 @item mold_color
12068 Set mold color, for definitely dead and moldy cells.
12069
12070 For the syntax of these 3 color options, check the "Color" section in the
12071 ffmpeg-utils manual.
12072 @end table
12073
12074 @subsection Examples
12075
12076 @itemize
12077 @item
12078 Read a grid from @file{pattern}, and center it on a grid of size
12079 300x300 pixels:
12080 @example
12081 life=f=pattern:s=300x300
12082 @end example
12083
12084 @item
12085 Generate a random grid of size 200x200, with a fill ratio of 2/3:
12086 @example
12087 life=ratio=2/3:s=200x200
12088 @end example
12089
12090 @item
12091 Specify a custom rule for evolving a randomly generated grid:
12092 @example
12093 life=rule=S14/B34
12094 @end example
12095
12096 @item
12097 Full example with slow death effect (mold) using @command{ffplay}:
12098 @example
12099 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
12100 @end example
12101 @end itemize
12102
12103 @anchor{allrgb}
12104 @anchor{allyuv}
12105 @anchor{color}
12106 @anchor{haldclutsrc}
12107 @anchor{nullsrc}
12108 @anchor{rgbtestsrc}
12109 @anchor{smptebars}
12110 @anchor{smptehdbars}
12111 @anchor{testsrc}
12112 @section allrgb, allyuv, color, haldclutsrc, nullsrc, rgbtestsrc, smptebars, smptehdbars, testsrc
12113
12114 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
12115
12116 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
12117
12118 The @code{color} source provides an uniformly colored input.
12119
12120 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
12121 @ref{haldclut} filter.
12122
12123 The @code{nullsrc} source returns unprocessed video frames. It is
12124 mainly useful to be employed in analysis / debugging tools, or as the
12125 source for filters which ignore the input data.
12126
12127 The @code{rgbtestsrc} source generates an RGB test pattern useful for
12128 detecting RGB vs BGR issues. You should see a red, green and blue
12129 stripe from top to bottom.
12130
12131 The @code{smptebars} source generates a color bars pattern, based on
12132 the SMPTE Engineering Guideline EG 1-1990.
12133
12134 The @code{smptehdbars} source generates a color bars pattern, based on
12135 the SMPTE RP 219-2002.
12136
12137 The @code{testsrc} source generates a test video pattern, showing a
12138 color pattern, a scrolling gradient and a timestamp. This is mainly
12139 intended for testing purposes.
12140
12141 The sources accept the following parameters:
12142
12143 @table @option
12144
12145 @item color, c
12146 Specify the color of the source, only available in the @code{color}
12147 source. For the syntax of this option, check the "Color" section in the
12148 ffmpeg-utils manual.
12149
12150 @item level
12151 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
12152 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
12153 pixels to be used as identity matrix for 3D lookup tables. Each component is
12154 coded on a @code{1/(N*N)} scale.
12155
12156 @item size, s
12157 Specify the size of the sourced video. For the syntax of this option, check the
12158 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12159 The default value is @code{320x240}.
12160
12161 This option is not available with the @code{haldclutsrc} filter.
12162
12163 @item rate, r
12164 Specify the frame rate of the sourced video, as the number of frames
12165 generated per second. It has to be a string in the format
12166 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
12167 number or a valid video frame rate abbreviation. The default value is
12168 "25".
12169
12170 @item sar
12171 Set the sample aspect ratio of the sourced video.
12172
12173 @item duration, d
12174 Set the duration of the sourced video. See
12175 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
12176 for the accepted syntax.
12177
12178 If not specified, or the expressed duration is negative, the video is
12179 supposed to be generated forever.
12180
12181 @item decimals, n
12182 Set the number of decimals to show in the timestamp, only available in the
12183 @code{testsrc} source.
12184
12185 The displayed timestamp value will correspond to the original
12186 timestamp value multiplied by the power of 10 of the specified
12187 value. Default value is 0.
12188 @end table
12189
12190 For example the following:
12191 @example
12192 testsrc=duration=5.3:size=qcif:rate=10
12193 @end example
12194
12195 will generate a video with a duration of 5.3 seconds, with size
12196 176x144 and a frame rate of 10 frames per second.
12197
12198 The following graph description will generate a red source
12199 with an opacity of 0.2, with size "qcif" and a frame rate of 10
12200 frames per second.
12201 @example
12202 color=c=red@@0.2:s=qcif:r=10
12203 @end example
12204
12205 If the input content is to be ignored, @code{nullsrc} can be used. The
12206 following command generates noise in the luminance plane by employing
12207 the @code{geq} filter:
12208 @example
12209 nullsrc=s=256x256, geq=random(1)*255:128:128
12210 @end example
12211
12212 @subsection Commands
12213
12214 The @code{color} source supports the following commands:
12215
12216 @table @option
12217 @item c, color
12218 Set the color of the created image. Accepts the same syntax of the
12219 corresponding @option{color} option.
12220 @end table
12221
12222 @c man end VIDEO SOURCES
12223
12224 @chapter Video Sinks
12225 @c man begin VIDEO SINKS
12226
12227 Below is a description of the currently available video sinks.
12228
12229 @section buffersink
12230
12231 Buffer video frames, and make them available to the end of the filter
12232 graph.
12233
12234 This sink is mainly intended for programmatic use, in particular
12235 through the interface defined in @file{libavfilter/buffersink.h}
12236 or the options system.
12237
12238 It accepts a pointer to an AVBufferSinkContext structure, which
12239 defines the incoming buffers' formats, to be passed as the opaque
12240 parameter to @code{avfilter_init_filter} for initialization.
12241
12242 @section nullsink
12243
12244 Null video sink: do absolutely nothing with the input video. It is
12245 mainly useful as a template and for use in analysis / debugging
12246 tools.
12247
12248 @c man end VIDEO SINKS
12249
12250 @chapter Multimedia Filters
12251 @c man begin MULTIMEDIA FILTERS
12252
12253 Below is a description of the currently available multimedia filters.
12254
12255 @section aphasemeter
12256
12257 Convert input audio to a video output, displaying the audio phase.
12258
12259 The filter accepts the following options:
12260
12261 @table @option
12262 @item rate, r
12263 Set the output frame rate. Default value is @code{25}.
12264
12265 @item size, s
12266 Set the video size for the output. For the syntax of this option, check the
12267 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12268 Default value is @code{800x400}.
12269
12270 @item rc
12271 @item gc
12272 @item bc
12273 Specify the red, green, blue contrast. Default values are @code{2},
12274 @code{7} and @code{1}.
12275 Allowed range is @code{[0, 255]}.
12276
12277 @item mpc
12278 Set color which will be used for drawing median phase. If color is
12279 @code{none} which is default, no median phase value will be drawn.
12280 @end table
12281
12282 The filter also exports the frame metadata @code{lavfi.aphasemeter.phase} which
12283 represents mean phase of current audio frame. Value is in range @code{[-1, 1]}.
12284 The @code{-1} means left and right channels are completely out of phase and
12285 @code{1} means channels are in phase.
12286
12287 @section avectorscope
12288
12289 Convert input audio to a video output, representing the audio vector
12290 scope.
12291
12292 The filter is used to measure the difference between channels of stereo
12293 audio stream. A monoaural signal, consisting of identical left and right
12294 signal, results in straight vertical line. Any stereo separation is visible
12295 as a deviation from this line, creating a Lissajous figure.
12296 If the straight (or deviation from it) but horizontal line appears this
12297 indicates that the left and right channels are out of phase.
12298
12299 The filter accepts the following options:
12300
12301 @table @option
12302 @item mode, m
12303 Set the vectorscope mode.
12304
12305 Available values are:
12306 @table @samp
12307 @item lissajous
12308 Lissajous rotated by 45 degrees.
12309
12310 @item lissajous_xy
12311 Same as above but not rotated.
12312
12313 @item polar
12314 Shape resembling half of circle.
12315 @end table
12316
12317 Default value is @samp{lissajous}.
12318
12319 @item size, s
12320 Set the video size for the output. For the syntax of this option, check the
12321 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12322 Default value is @code{400x400}.
12323
12324 @item rate, r
12325 Set the output frame rate. Default value is @code{25}.
12326
12327 @item rc
12328 @item gc
12329 @item bc
12330 @item ac
12331 Specify the red, green, blue and alpha contrast. Default values are @code{40},
12332 @code{160}, @code{80} and @code{255}.
12333 Allowed range is @code{[0, 255]}.
12334
12335 @item rf
12336 @item gf
12337 @item bf
12338 @item af
12339 Specify the red, green, blue and alpha fade. Default values are @code{15},
12340 @code{10}, @code{5} and @code{5}.
12341 Allowed range is @code{[0, 255]}.
12342
12343 @item zoom
12344 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[1, 10]}.
12345 @end table
12346
12347 @subsection Examples
12348
12349 @itemize
12350 @item
12351 Complete example using @command{ffplay}:
12352 @example
12353 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
12354              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
12355 @end example
12356 @end itemize
12357
12358 @section concat
12359
12360 Concatenate audio and video streams, joining them together one after the
12361 other.
12362
12363 The filter works on segments of synchronized video and audio streams. All
12364 segments must have the same number of streams of each type, and that will
12365 also be the number of streams at output.
12366
12367 The filter accepts the following options:
12368
12369 @table @option
12370
12371 @item n
12372 Set the number of segments. Default is 2.
12373
12374 @item v
12375 Set the number of output video streams, that is also the number of video
12376 streams in each segment. Default is 1.
12377
12378 @item a
12379 Set the number of output audio streams, that is also the number of audio
12380 streams in each segment. Default is 0.
12381
12382 @item unsafe
12383 Activate unsafe mode: do not fail if segments have a different format.
12384
12385 @end table
12386
12387 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
12388 @var{a} audio outputs.
12389
12390 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
12391 segment, in the same order as the outputs, then the inputs for the second
12392 segment, etc.
12393
12394 Related streams do not always have exactly the same duration, for various
12395 reasons including codec frame size or sloppy authoring. For that reason,
12396 related synchronized streams (e.g. a video and its audio track) should be
12397 concatenated at once. The concat filter will use the duration of the longest
12398 stream in each segment (except the last one), and if necessary pad shorter
12399 audio streams with silence.
12400
12401 For this filter to work correctly, all segments must start at timestamp 0.
12402
12403 All corresponding streams must have the same parameters in all segments; the
12404 filtering system will automatically select a common pixel format for video
12405 streams, and a common sample format, sample rate and channel layout for
12406 audio streams, but other settings, such as resolution, must be converted
12407 explicitly by the user.
12408
12409 Different frame rates are acceptable but will result in variable frame rate
12410 at output; be sure to configure the output file to handle it.
12411
12412 @subsection Examples
12413
12414 @itemize
12415 @item
12416 Concatenate an opening, an episode and an ending, all in bilingual version
12417 (video in stream 0, audio in streams 1 and 2):
12418 @example
12419 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
12420   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
12421    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
12422   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
12423 @end example
12424
12425 @item
12426 Concatenate two parts, handling audio and video separately, using the
12427 (a)movie sources, and adjusting the resolution:
12428 @example
12429 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
12430 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
12431 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
12432 @end example
12433 Note that a desync will happen at the stitch if the audio and video streams
12434 do not have exactly the same duration in the first file.
12435
12436 @end itemize
12437
12438 @anchor{ebur128}
12439 @section ebur128
12440
12441 EBU R128 scanner filter. This filter takes an audio stream as input and outputs
12442 it unchanged. By default, it logs a message at a frequency of 10Hz with the
12443 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
12444 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
12445
12446 The filter also has a video output (see the @var{video} option) with a real
12447 time graph to observe the loudness evolution. The graphic contains the logged
12448 message mentioned above, so it is not printed anymore when this option is set,
12449 unless the verbose logging is set. The main graphing area contains the
12450 short-term loudness (3 seconds of analysis), and the gauge on the right is for
12451 the momentary loudness (400 milliseconds).
12452
12453 More information about the Loudness Recommendation EBU R128 on
12454 @url{http://tech.ebu.ch/loudness}.
12455
12456 The filter accepts the following options:
12457
12458 @table @option
12459
12460 @item video
12461 Activate the video output. The audio stream is passed unchanged whether this
12462 option is set or no. The video stream will be the first output stream if
12463 activated. Default is @code{0}.
12464
12465 @item size
12466 Set the video size. This option is for video only. For the syntax of this
12467 option, check the
12468 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12469 Default and minimum resolution is @code{640x480}.
12470
12471 @item meter
12472 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
12473 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
12474 other integer value between this range is allowed.
12475
12476 @item metadata
12477 Set metadata injection. If set to @code{1}, the audio input will be segmented
12478 into 100ms output frames, each of them containing various loudness information
12479 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
12480
12481 Default is @code{0}.
12482
12483 @item framelog
12484 Force the frame logging level.
12485
12486 Available values are:
12487 @table @samp
12488 @item info
12489 information logging level
12490 @item verbose
12491 verbose logging level
12492 @end table
12493
12494 By default, the logging level is set to @var{info}. If the @option{video} or
12495 the @option{metadata} options are set, it switches to @var{verbose}.
12496
12497 @item peak
12498 Set peak mode(s).
12499
12500 Available modes can be cumulated (the option is a @code{flag} type). Possible
12501 values are:
12502 @table @samp
12503 @item none
12504 Disable any peak mode (default).
12505 @item sample
12506 Enable sample-peak mode.
12507
12508 Simple peak mode looking for the higher sample value. It logs a message
12509 for sample-peak (identified by @code{SPK}).
12510 @item true
12511 Enable true-peak mode.
12512
12513 If enabled, the peak lookup is done on an over-sampled version of the input
12514 stream for better peak accuracy. It logs a message for true-peak.
12515 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
12516 This mode requires a build with @code{libswresample}.
12517 @end table
12518
12519 @end table
12520
12521 @subsection Examples
12522
12523 @itemize
12524 @item
12525 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
12526 @example
12527 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
12528 @end example
12529
12530 @item
12531 Run an analysis with @command{ffmpeg}:
12532 @example
12533 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
12534 @end example
12535 @end itemize
12536
12537 @section interleave, ainterleave
12538
12539 Temporally interleave frames from several inputs.
12540
12541 @code{interleave} works with video inputs, @code{ainterleave} with audio.
12542
12543 These filters read frames from several inputs and send the oldest
12544 queued frame to the output.
12545
12546 Input streams must have a well defined, monotonically increasing frame
12547 timestamp values.
12548
12549 In order to submit one frame to output, these filters need to enqueue
12550 at least one frame for each input, so they cannot work in case one
12551 input is not yet terminated and will not receive incoming frames.
12552
12553 For example consider the case when one input is a @code{select} filter
12554 which always drop input frames. The @code{interleave} filter will keep
12555 reading from that input, but it will never be able to send new frames
12556 to output until the input will send an end-of-stream signal.
12557
12558 Also, depending on inputs synchronization, the filters will drop
12559 frames in case one input receives more frames than the other ones, and
12560 the queue is already filled.
12561
12562 These filters accept the following options:
12563
12564 @table @option
12565 @item nb_inputs, n
12566 Set the number of different inputs, it is 2 by default.
12567 @end table
12568
12569 @subsection Examples
12570
12571 @itemize
12572 @item
12573 Interleave frames belonging to different streams using @command{ffmpeg}:
12574 @example
12575 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
12576 @end example
12577
12578 @item
12579 Add flickering blur effect:
12580 @example
12581 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
12582 @end example
12583 @end itemize
12584
12585 @section perms, aperms
12586
12587 Set read/write permissions for the output frames.
12588
12589 These filters are mainly aimed at developers to test direct path in the
12590 following filter in the filtergraph.
12591
12592 The filters accept the following options:
12593
12594 @table @option
12595 @item mode
12596 Select the permissions mode.
12597
12598 It accepts the following values:
12599 @table @samp
12600 @item none
12601 Do nothing. This is the default.
12602 @item ro
12603 Set all the output frames read-only.
12604 @item rw
12605 Set all the output frames directly writable.
12606 @item toggle
12607 Make the frame read-only if writable, and writable if read-only.
12608 @item random
12609 Set each output frame read-only or writable randomly.
12610 @end table
12611
12612 @item seed
12613 Set the seed for the @var{random} mode, must be an integer included between
12614 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
12615 @code{-1}, the filter will try to use a good random seed on a best effort
12616 basis.
12617 @end table
12618
12619 Note: in case of auto-inserted filter between the permission filter and the
12620 following one, the permission might not be received as expected in that
12621 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
12622 perms/aperms filter can avoid this problem.
12623
12624 @section select, aselect
12625
12626 Select frames to pass in output.
12627
12628 This filter accepts the following options:
12629
12630 @table @option
12631
12632 @item expr, e
12633 Set expression, which is evaluated for each input frame.
12634
12635 If the expression is evaluated to zero, the frame is discarded.
12636
12637 If the evaluation result is negative or NaN, the frame is sent to the
12638 first output; otherwise it is sent to the output with index
12639 @code{ceil(val)-1}, assuming that the input index starts from 0.
12640
12641 For example a value of @code{1.2} corresponds to the output with index
12642 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
12643
12644 @item outputs, n
12645 Set the number of outputs. The output to which to send the selected
12646 frame is based on the result of the evaluation. Default value is 1.
12647 @end table
12648
12649 The expression can contain the following constants:
12650
12651 @table @option
12652 @item n
12653 The (sequential) number of the filtered frame, starting from 0.
12654
12655 @item selected_n
12656 The (sequential) number of the selected frame, starting from 0.
12657
12658 @item prev_selected_n
12659 The sequential number of the last selected frame. It's NAN if undefined.
12660
12661 @item TB
12662 The timebase of the input timestamps.
12663
12664 @item pts
12665 The PTS (Presentation TimeStamp) of the filtered video frame,
12666 expressed in @var{TB} units. It's NAN if undefined.
12667
12668 @item t
12669 The PTS of the filtered video frame,
12670 expressed in seconds. It's NAN if undefined.
12671
12672 @item prev_pts
12673 The PTS of the previously filtered video frame. It's NAN if undefined.
12674
12675 @item prev_selected_pts
12676 The PTS of the last previously filtered video frame. It's NAN if undefined.
12677
12678 @item prev_selected_t
12679 The PTS of the last previously selected video frame. It's NAN if undefined.
12680
12681 @item start_pts
12682 The PTS of the first video frame in the video. It's NAN if undefined.
12683
12684 @item start_t
12685 The time of the first video frame in the video. It's NAN if undefined.
12686
12687 @item pict_type @emph{(video only)}
12688 The type of the filtered frame. It can assume one of the following
12689 values:
12690 @table @option
12691 @item I
12692 @item P
12693 @item B
12694 @item S
12695 @item SI
12696 @item SP
12697 @item BI
12698 @end table
12699
12700 @item interlace_type @emph{(video only)}
12701 The frame interlace type. It can assume one of the following values:
12702 @table @option
12703 @item PROGRESSIVE
12704 The frame is progressive (not interlaced).
12705 @item TOPFIRST
12706 The frame is top-field-first.
12707 @item BOTTOMFIRST
12708 The frame is bottom-field-first.
12709 @end table
12710
12711 @item consumed_sample_n @emph{(audio only)}
12712 the number of selected samples before the current frame
12713
12714 @item samples_n @emph{(audio only)}
12715 the number of samples in the current frame
12716
12717 @item sample_rate @emph{(audio only)}
12718 the input sample rate
12719
12720 @item key
12721 This is 1 if the filtered frame is a key-frame, 0 otherwise.
12722
12723 @item pos
12724 the position in the file of the filtered frame, -1 if the information
12725 is not available (e.g. for synthetic video)
12726
12727 @item scene @emph{(video only)}
12728 value between 0 and 1 to indicate a new scene; a low value reflects a low
12729 probability for the current frame to introduce a new scene, while a higher
12730 value means the current frame is more likely to be one (see the example below)
12731
12732 @end table
12733
12734 The default value of the select expression is "1".
12735
12736 @subsection Examples
12737
12738 @itemize
12739 @item
12740 Select all frames in input:
12741 @example
12742 select
12743 @end example
12744
12745 The example above is the same as:
12746 @example
12747 select=1
12748 @end example
12749
12750 @item
12751 Skip all frames:
12752 @example
12753 select=0
12754 @end example
12755
12756 @item
12757 Select only I-frames:
12758 @example
12759 select='eq(pict_type\,I)'
12760 @end example
12761
12762 @item
12763 Select one frame every 100:
12764 @example
12765 select='not(mod(n\,100))'
12766 @end example
12767
12768 @item
12769 Select only frames contained in the 10-20 time interval:
12770 @example
12771 select=between(t\,10\,20)
12772 @end example
12773
12774 @item
12775 Select only I frames contained in the 10-20 time interval:
12776 @example
12777 select=between(t\,10\,20)*eq(pict_type\,I)
12778 @end example
12779
12780 @item
12781 Select frames with a minimum distance of 10 seconds:
12782 @example
12783 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
12784 @end example
12785
12786 @item
12787 Use aselect to select only audio frames with samples number > 100:
12788 @example
12789 aselect='gt(samples_n\,100)'
12790 @end example
12791
12792 @item
12793 Create a mosaic of the first scenes:
12794 @example
12795 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
12796 @end example
12797
12798 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
12799 choice.
12800
12801 @item
12802 Send even and odd frames to separate outputs, and compose them:
12803 @example
12804 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
12805 @end example
12806 @end itemize
12807
12808 @section sendcmd, asendcmd
12809
12810 Send commands to filters in the filtergraph.
12811
12812 These filters read commands to be sent to other filters in the
12813 filtergraph.
12814
12815 @code{sendcmd} must be inserted between two video filters,
12816 @code{asendcmd} must be inserted between two audio filters, but apart
12817 from that they act the same way.
12818
12819 The specification of commands can be provided in the filter arguments
12820 with the @var{commands} option, or in a file specified by the
12821 @var{filename} option.
12822
12823 These filters accept the following options:
12824 @table @option
12825 @item commands, c
12826 Set the commands to be read and sent to the other filters.
12827 @item filename, f
12828 Set the filename of the commands to be read and sent to the other
12829 filters.
12830 @end table
12831
12832 @subsection Commands syntax
12833
12834 A commands description consists of a sequence of interval
12835 specifications, comprising a list of commands to be executed when a
12836 particular event related to that interval occurs. The occurring event
12837 is typically the current frame time entering or leaving a given time
12838 interval.
12839
12840 An interval is specified by the following syntax:
12841 @example
12842 @var{START}[-@var{END}] @var{COMMANDS};
12843 @end example
12844
12845 The time interval is specified by the @var{START} and @var{END} times.
12846 @var{END} is optional and defaults to the maximum time.
12847
12848 The current frame time is considered within the specified interval if
12849 it is included in the interval [@var{START}, @var{END}), that is when
12850 the time is greater or equal to @var{START} and is lesser than
12851 @var{END}.
12852
12853 @var{COMMANDS} consists of a sequence of one or more command
12854 specifications, separated by ",", relating to that interval.  The
12855 syntax of a command specification is given by:
12856 @example
12857 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
12858 @end example
12859
12860 @var{FLAGS} is optional and specifies the type of events relating to
12861 the time interval which enable sending the specified command, and must
12862 be a non-null sequence of identifier flags separated by "+" or "|" and
12863 enclosed between "[" and "]".
12864
12865 The following flags are recognized:
12866 @table @option
12867 @item enter
12868 The command is sent when the current frame timestamp enters the
12869 specified interval. In other words, the command is sent when the
12870 previous frame timestamp was not in the given interval, and the
12871 current is.
12872
12873 @item leave
12874 The command is sent when the current frame timestamp leaves the
12875 specified interval. In other words, the command is sent when the
12876 previous frame timestamp was in the given interval, and the
12877 current is not.
12878 @end table
12879
12880 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
12881 assumed.
12882
12883 @var{TARGET} specifies the target of the command, usually the name of
12884 the filter class or a specific filter instance name.
12885
12886 @var{COMMAND} specifies the name of the command for the target filter.
12887
12888 @var{ARG} is optional and specifies the optional list of argument for
12889 the given @var{COMMAND}.
12890
12891 Between one interval specification and another, whitespaces, or
12892 sequences of characters starting with @code{#} until the end of line,
12893 are ignored and can be used to annotate comments.
12894
12895 A simplified BNF description of the commands specification syntax
12896 follows:
12897 @example
12898 @var{COMMAND_FLAG}  ::= "enter" | "leave"
12899 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
12900 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
12901 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
12902 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
12903 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
12904 @end example
12905
12906 @subsection Examples
12907
12908 @itemize
12909 @item
12910 Specify audio tempo change at second 4:
12911 @example
12912 asendcmd=c='4.0 atempo tempo 1.5',atempo
12913 @end example
12914
12915 @item
12916 Specify a list of drawtext and hue commands in a file.
12917 @example
12918 # show text in the interval 5-10
12919 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
12920          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
12921
12922 # desaturate the image in the interval 15-20
12923 15.0-20.0 [enter] hue s 0,
12924           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
12925           [leave] hue s 1,
12926           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
12927
12928 # apply an exponential saturation fade-out effect, starting from time 25
12929 25 [enter] hue s exp(25-t)
12930 @end example
12931
12932 A filtergraph allowing to read and process the above command list
12933 stored in a file @file{test.cmd}, can be specified with:
12934 @example
12935 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
12936 @end example
12937 @end itemize
12938
12939 @anchor{setpts}
12940 @section setpts, asetpts
12941
12942 Change the PTS (presentation timestamp) of the input frames.
12943
12944 @code{setpts} works on video frames, @code{asetpts} on audio frames.
12945
12946 This filter accepts the following options:
12947
12948 @table @option
12949
12950 @item expr
12951 The expression which is evaluated for each frame to construct its timestamp.
12952
12953 @end table
12954
12955 The expression is evaluated through the eval API and can contain the following
12956 constants:
12957
12958 @table @option
12959 @item FRAME_RATE
12960 frame rate, only defined for constant frame-rate video
12961
12962 @item PTS
12963 The presentation timestamp in input
12964
12965 @item N
12966 The count of the input frame for video or the number of consumed samples,
12967 not including the current frame for audio, starting from 0.
12968
12969 @item NB_CONSUMED_SAMPLES
12970 The number of consumed samples, not including the current frame (only
12971 audio)
12972
12973 @item NB_SAMPLES, S
12974 The number of samples in the current frame (only audio)
12975
12976 @item SAMPLE_RATE, SR
12977 The audio sample rate.
12978
12979 @item STARTPTS
12980 The PTS of the first frame.
12981
12982 @item STARTT
12983 the time in seconds of the first frame
12984
12985 @item INTERLACED
12986 State whether the current frame is interlaced.
12987
12988 @item T
12989 the time in seconds of the current frame
12990
12991 @item POS
12992 original position in the file of the frame, or undefined if undefined
12993 for the current frame
12994
12995 @item PREV_INPTS
12996 The previous input PTS.
12997
12998 @item PREV_INT
12999 previous input time in seconds
13000
13001 @item PREV_OUTPTS
13002 The previous output PTS.
13003
13004 @item PREV_OUTT
13005 previous output time in seconds
13006
13007 @item RTCTIME
13008 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
13009 instead.
13010
13011 @item RTCSTART
13012 The wallclock (RTC) time at the start of the movie in microseconds.
13013
13014 @item TB
13015 The timebase of the input timestamps.
13016
13017 @end table
13018
13019 @subsection Examples
13020
13021 @itemize
13022 @item
13023 Start counting PTS from zero
13024 @example
13025 setpts=PTS-STARTPTS
13026 @end example
13027
13028 @item
13029 Apply fast motion effect:
13030 @example
13031 setpts=0.5*PTS
13032 @end example
13033
13034 @item
13035 Apply slow motion effect:
13036 @example
13037 setpts=2.0*PTS
13038 @end example
13039
13040 @item
13041 Set fixed rate of 25 frames per second:
13042 @example
13043 setpts=N/(25*TB)
13044 @end example
13045
13046 @item
13047 Set fixed rate 25 fps with some jitter:
13048 @example
13049 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
13050 @end example
13051
13052 @item
13053 Apply an offset of 10 seconds to the input PTS:
13054 @example
13055 setpts=PTS+10/TB
13056 @end example
13057
13058 @item
13059 Generate timestamps from a "live source" and rebase onto the current timebase:
13060 @example
13061 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
13062 @end example
13063
13064 @item
13065 Generate timestamps by counting samples:
13066 @example
13067 asetpts=N/SR/TB
13068 @end example
13069
13070 @end itemize
13071
13072 @section settb, asettb
13073
13074 Set the timebase to use for the output frames timestamps.
13075 It is mainly useful for testing timebase configuration.
13076
13077 It accepts the following parameters:
13078
13079 @table @option
13080
13081 @item expr, tb
13082 The expression which is evaluated into the output timebase.
13083
13084 @end table
13085
13086 The value for @option{tb} is an arithmetic expression representing a
13087 rational. The expression can contain the constants "AVTB" (the default
13088 timebase), "intb" (the input timebase) and "sr" (the sample rate,
13089 audio only). Default value is "intb".
13090
13091 @subsection Examples
13092
13093 @itemize
13094 @item
13095 Set the timebase to 1/25:
13096 @example
13097 settb=expr=1/25
13098 @end example
13099
13100 @item
13101 Set the timebase to 1/10:
13102 @example
13103 settb=expr=0.1
13104 @end example
13105
13106 @item
13107 Set the timebase to 1001/1000:
13108 @example
13109 settb=1+0.001
13110 @end example
13111
13112 @item
13113 Set the timebase to 2*intb:
13114 @example
13115 settb=2*intb
13116 @end example
13117
13118 @item
13119 Set the default timebase value:
13120 @example
13121 settb=AVTB
13122 @end example
13123 @end itemize
13124
13125 @section showcqt
13126 Convert input audio to a video output representing
13127 frequency spectrum logarithmically (using constant Q transform with
13128 Brown-Puckette algorithm), with musical tone scale, from E0 to D#10 (10 octaves).
13129
13130 The filter accepts the following options:
13131
13132 @table @option
13133 @item volume
13134 Specify transform volume (multiplier) expression. The expression can contain
13135 variables:
13136 @table @option
13137 @item frequency, freq, f
13138 the frequency where transform is evaluated
13139 @item timeclamp, tc
13140 value of timeclamp option
13141 @end table
13142 and functions:
13143 @table @option
13144 @item a_weighting(f)
13145 A-weighting of equal loudness
13146 @item b_weighting(f)
13147 B-weighting of equal loudness
13148 @item c_weighting(f)
13149 C-weighting of equal loudness
13150 @end table
13151 Default value is @code{16}.
13152
13153 @item tlength
13154 Specify transform length expression. The expression can contain variables:
13155 @table @option
13156 @item frequency, freq, f
13157 the frequency where transform is evaluated
13158 @item timeclamp, tc
13159 value of timeclamp option
13160 @end table
13161 Default value is @code{384/f*tc/(384/f+tc)}.
13162
13163 @item timeclamp
13164 Specify the transform timeclamp. At low frequency, there is trade-off between
13165 accuracy in time domain and frequency domain. If timeclamp is lower,
13166 event in time domain is represented more accurately (such as fast bass drum),
13167 otherwise event in frequency domain is represented more accurately
13168 (such as bass guitar). Acceptable value is [0.1, 1.0]. Default value is @code{0.17}.
13169
13170 @item coeffclamp
13171 Specify the transform coeffclamp. If coeffclamp is lower, transform is
13172 more accurate, otherwise transform is faster. Acceptable value is [0.1, 10.0].
13173 Default value is @code{1.0}.
13174
13175 @item gamma
13176 Specify gamma. Lower gamma makes the spectrum more contrast, higher gamma
13177 makes the spectrum having more range. Acceptable value is [1.0, 7.0].
13178 Default value is @code{3.0}.
13179
13180 @item gamma2
13181 Specify gamma of bargraph. Acceptable value is [1.0, 7.0].
13182 Default value is @code{1.0}.
13183
13184 @item fontfile
13185 Specify font file for use with freetype. If not specified, use embedded font.
13186
13187 @item fontcolor
13188 Specify font color expression. This is arithmetic expression that should return
13189 integer value 0xRRGGBB. The expression can contain variables:
13190 @table @option
13191 @item frequency, freq, f
13192 the frequency where transform is evaluated
13193 @item timeclamp, tc
13194 value of timeclamp option
13195 @end table
13196 and functions:
13197 @table @option
13198 @item midi(f)
13199 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
13200 @item r(x), g(x), b(x)
13201 red, green, and blue value of intensity x
13202 @end table
13203 Default value is @code{st(0, (midi(f)-59.5)/12);
13204 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
13205 r(1-ld(1)) + b(ld(1))}
13206
13207 @item fullhd
13208 If set to 1 (the default), the video size is 1920x1080 (full HD),
13209 if set to 0, the video size is 960x540. Use this option to make CPU usage lower.
13210
13211 @item fps
13212 Specify video fps. Default value is @code{25}.
13213
13214 @item count
13215 Specify number of transform per frame, so there are fps*count transforms
13216 per second. Note that audio data rate must be divisible by fps*count.
13217 Default value is @code{6}.
13218
13219 @end table
13220
13221 @subsection Examples
13222
13223 @itemize
13224 @item
13225 Playing audio while showing the spectrum:
13226 @example
13227 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
13228 @end example
13229
13230 @item
13231 Same as above, but with frame rate 30 fps:
13232 @example
13233 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
13234 @end example
13235
13236 @item
13237 Playing at 960x540 and lower CPU usage:
13238 @example
13239 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fullhd=0:count=3 [out0]'
13240 @end example
13241
13242 @item
13243 A1 and its harmonics: A1, A2, (near)E3, A3:
13244 @example
13245 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),
13246                  asplit[a][out1]; [a] showcqt [out0]'
13247 @end example
13248
13249 @item
13250 Same as above, but with more accuracy in frequency domain (and slower):
13251 @example
13252 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),
13253                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
13254 @end example
13255
13256 @item
13257 B-weighting of equal loudness
13258 @example
13259 volume=16*b_weighting(f)
13260 @end example
13261
13262 @item
13263 Lower Q factor
13264 @example
13265 tlength=100/f*tc/(100/f+tc)
13266 @end example
13267
13268 @item
13269 Custom fontcolor, C-note is colored green, others are colored blue
13270 @example
13271 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))'
13272 @end example
13273
13274 @item
13275 Custom gamma, now spectrum is linear to the amplitude.
13276 @example
13277 gamma=2:gamma2=2
13278 @end example
13279
13280 @end itemize
13281
13282 @section showfreqs
13283
13284 Convert input audio to video output representing the audio power spectrum.
13285 Audio amplitude is on Y-axis while frequency is on X-axis.
13286
13287 The filter accepts the following options:
13288
13289 @table @option
13290 @item size, s
13291 Specify size of video. For the syntax of this option, check the
13292 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13293 Default is @code{1024x512}.
13294
13295 @item mode
13296 Set display mode.
13297 This set how each frequency bin will be represented.
13298
13299 It accepts the following values:
13300 @table @samp
13301 @item line
13302 @item bar
13303 @item dot
13304 @end table
13305 Default is @code{bar}.
13306
13307 @item ascale
13308 Set amplitude scale.
13309
13310 It accepts the following values:
13311 @table @samp
13312 @item lin
13313 Linear scale.
13314
13315 @item sqrt
13316 Square root scale.
13317
13318 @item cbrt
13319 Cubic root scale.
13320
13321 @item log
13322 Logarithmic scale.
13323 @end table
13324 Default is @code{log}.
13325
13326 @item fscale
13327 Set frequency scale.
13328
13329 It accepts the following values:
13330 @table @samp
13331 @item lin
13332 Linear scale.
13333
13334 @item log
13335 Logarithmic scale.
13336
13337 @item rlog
13338 Reverse logarithmic scale.
13339 @end table
13340 Default is @code{lin}.
13341
13342 @item win_size
13343 Set window size.
13344
13345 It accepts the following values:
13346 @table @samp
13347 @item w16
13348 @item w32
13349 @item w64
13350 @item w128
13351 @item w256
13352 @item w512
13353 @item w1024
13354 @item w2048
13355 @item w4096
13356 @item w8192
13357 @item w16384
13358 @item w32768
13359 @item w65536
13360 @end table
13361 Default is @code{w2048}
13362
13363 @item win_func
13364 Set windowing function.
13365
13366 It accepts the following values:
13367 @table @samp
13368 @item rect
13369 @item bartlett
13370 @item hanning
13371 @item hamming
13372 @item blackman
13373 @item welch
13374 @item flattop
13375 @item bharris
13376 @item bnuttall
13377 @item bhann
13378 @item sine
13379 @item nuttall
13380 @item lanczos
13381 @item gauss
13382 @end table
13383 Default is @code{hanning}.
13384
13385 @item overlap
13386 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
13387 which means optimal overlap for selected window function will be picked.
13388
13389 @item averaging
13390 Set time averaging. Setting this to 0 will display current maximal peaks.
13391 Default is @code{1}, which means time averaging is disabled.
13392
13393 @item colors
13394 Specify list of colors separated by space or by '|' which will be used to
13395 draw channel frequencies. Unrecognized or missing colors will be replaced
13396 by white color.
13397 @end table
13398
13399 @section showspectrum
13400
13401 Convert input audio to a video output, representing the audio frequency
13402 spectrum.
13403
13404 The filter accepts the following options:
13405
13406 @table @option
13407 @item size, s
13408 Specify the video size for the output. For the syntax of this option, check the
13409 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13410 Default value is @code{640x512}.
13411
13412 @item slide
13413 Specify how the spectrum should slide along the window.
13414
13415 It accepts the following values:
13416 @table @samp
13417 @item replace
13418 the samples start again on the left when they reach the right
13419 @item scroll
13420 the samples scroll from right to left
13421 @item fullframe
13422 frames are only produced when the samples reach the right
13423 @end table
13424
13425 Default value is @code{replace}.
13426
13427 @item mode
13428 Specify display mode.
13429
13430 It accepts the following values:
13431 @table @samp
13432 @item combined
13433 all channels are displayed in the same row
13434 @item separate
13435 all channels are displayed in separate rows
13436 @end table
13437
13438 Default value is @samp{combined}.
13439
13440 @item color
13441 Specify display color mode.
13442
13443 It accepts the following values:
13444 @table @samp
13445 @item channel
13446 each channel is displayed in a separate color
13447 @item intensity
13448 each channel is is displayed using the same color scheme
13449 @end table
13450
13451 Default value is @samp{channel}.
13452
13453 @item scale
13454 Specify scale used for calculating intensity color values.
13455
13456 It accepts the following values:
13457 @table @samp
13458 @item lin
13459 linear
13460 @item sqrt
13461 square root, default
13462 @item cbrt
13463 cubic root
13464 @item log
13465 logarithmic
13466 @end table
13467
13468 Default value is @samp{sqrt}.
13469
13470 @item saturation
13471 Set saturation modifier for displayed colors. Negative values provide
13472 alternative color scheme. @code{0} is no saturation at all.
13473 Saturation must be in [-10.0, 10.0] range.
13474 Default value is @code{1}.
13475
13476 @item win_func
13477 Set window function.
13478
13479 It accepts the following values:
13480 @table @samp
13481 @item none
13482 No samples pre-processing (do not expect this to be faster)
13483 @item hann
13484 Hann window
13485 @item hamming
13486 Hamming window
13487 @item blackman
13488 Blackman window
13489 @end table
13490
13491 Default value is @code{hann}.
13492 @end table
13493
13494 The usage is very similar to the showwaves filter; see the examples in that
13495 section.
13496
13497 @subsection Examples
13498
13499 @itemize
13500 @item
13501 Large window with logarithmic color scaling:
13502 @example
13503 showspectrum=s=1280x480:scale=log
13504 @end example
13505
13506 @item
13507 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
13508 @example
13509 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
13510              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
13511 @end example
13512 @end itemize
13513
13514 @section showvolume
13515
13516 Convert input audio volume to a video output.
13517
13518 The filter accepts the following options:
13519
13520 @table @option
13521 @item rate, r
13522 Set video rate.
13523
13524 @item b
13525 Set border width, allowed range is [0, 5]. Default is 1.
13526
13527 @item w
13528 Set channel width, allowed range is [40, 1080]. Default is 400.
13529
13530 @item h
13531 Set channel height, allowed range is [1, 100]. Default is 20.
13532
13533 @item f
13534 Set fade, allowed range is [1, 255]. Default is 20.
13535
13536 @item c
13537 Set volume color expression.
13538
13539 The expression can use the following variables:
13540
13541 @table @option
13542 @item VOLUME
13543 Current max volume of channel in dB.
13544
13545 @item CHANNEL
13546 Current channel number, starting from 0.
13547 @end table
13548
13549 @item t
13550 If set, displays channel names. Default is enabled.
13551 @end table
13552
13553 @section showwaves
13554
13555 Convert input audio to a video output, representing the samples waves.
13556
13557 The filter accepts the following options:
13558
13559 @table @option
13560 @item size, s
13561 Specify the video size for the output. For the syntax of this option, check the
13562 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13563 Default value is @code{600x240}.
13564
13565 @item mode
13566 Set display mode.
13567
13568 Available values are:
13569 @table @samp
13570 @item point
13571 Draw a point for each sample.
13572
13573 @item line
13574 Draw a vertical line for each sample.
13575
13576 @item p2p
13577 Draw a point for each sample and a line between them.
13578
13579 @item cline
13580 Draw a centered vertical line for each sample.
13581 @end table
13582
13583 Default value is @code{point}.
13584
13585 @item n
13586 Set the number of samples which are printed on the same column. A
13587 larger value will decrease the frame rate. Must be a positive
13588 integer. This option can be set only if the value for @var{rate}
13589 is not explicitly specified.
13590
13591 @item rate, r
13592 Set the (approximate) output frame rate. This is done by setting the
13593 option @var{n}. Default value is "25".
13594
13595 @item split_channels
13596 Set if channels should be drawn separately or overlap. Default value is 0.
13597
13598 @end table
13599
13600 @subsection Examples
13601
13602 @itemize
13603 @item
13604 Output the input file audio and the corresponding video representation
13605 at the same time:
13606 @example
13607 amovie=a.mp3,asplit[out0],showwaves[out1]
13608 @end example
13609
13610 @item
13611 Create a synthetic signal and show it with showwaves, forcing a
13612 frame rate of 30 frames per second:
13613 @example
13614 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
13615 @end example
13616 @end itemize
13617
13618 @section showwavespic
13619
13620 Convert input audio to a single video frame, representing the samples waves.
13621
13622 The filter accepts the following options:
13623
13624 @table @option
13625 @item size, s
13626 Specify the video size for the output. For the syntax of this option, check the
13627 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13628 Default value is @code{600x240}.
13629
13630 @item split_channels
13631 Set if channels should be drawn separately or overlap. Default value is 0.
13632 @end table
13633
13634 @subsection Examples
13635
13636 @itemize
13637 @item
13638 Extract a channel split representation of the wave form of a whole audio track
13639 in a 1024x800 picture using @command{ffmpeg}:
13640 @example
13641 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
13642 @end example
13643 @end itemize
13644
13645 @section split, asplit
13646
13647 Split input into several identical outputs.
13648
13649 @code{asplit} works with audio input, @code{split} with video.
13650
13651 The filter accepts a single parameter which specifies the number of outputs. If
13652 unspecified, it defaults to 2.
13653
13654 @subsection Examples
13655
13656 @itemize
13657 @item
13658 Create two separate outputs from the same input:
13659 @example
13660 [in] split [out0][out1]
13661 @end example
13662
13663 @item
13664 To create 3 or more outputs, you need to specify the number of
13665 outputs, like in:
13666 @example
13667 [in] asplit=3 [out0][out1][out2]
13668 @end example
13669
13670 @item
13671 Create two separate outputs from the same input, one cropped and
13672 one padded:
13673 @example
13674 [in] split [splitout1][splitout2];
13675 [splitout1] crop=100:100:0:0    [cropout];
13676 [splitout2] pad=200:200:100:100 [padout];
13677 @end example
13678
13679 @item
13680 Create 5 copies of the input audio with @command{ffmpeg}:
13681 @example
13682 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
13683 @end example
13684 @end itemize
13685
13686 @section zmq, azmq
13687
13688 Receive commands sent through a libzmq client, and forward them to
13689 filters in the filtergraph.
13690
13691 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
13692 must be inserted between two video filters, @code{azmq} between two
13693 audio filters.
13694
13695 To enable these filters you need to install the libzmq library and
13696 headers and configure FFmpeg with @code{--enable-libzmq}.
13697
13698 For more information about libzmq see:
13699 @url{http://www.zeromq.org/}
13700
13701 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
13702 receives messages sent through a network interface defined by the
13703 @option{bind_address} option.
13704
13705 The received message must be in the form:
13706 @example
13707 @var{TARGET} @var{COMMAND} [@var{ARG}]
13708 @end example
13709
13710 @var{TARGET} specifies the target of the command, usually the name of
13711 the filter class or a specific filter instance name.
13712
13713 @var{COMMAND} specifies the name of the command for the target filter.
13714
13715 @var{ARG} is optional and specifies the optional argument list for the
13716 given @var{COMMAND}.
13717
13718 Upon reception, the message is processed and the corresponding command
13719 is injected into the filtergraph. Depending on the result, the filter
13720 will send a reply to the client, adopting the format:
13721 @example
13722 @var{ERROR_CODE} @var{ERROR_REASON}
13723 @var{MESSAGE}
13724 @end example
13725
13726 @var{MESSAGE} is optional.
13727
13728 @subsection Examples
13729
13730 Look at @file{tools/zmqsend} for an example of a zmq client which can
13731 be used to send commands processed by these filters.
13732
13733 Consider the following filtergraph generated by @command{ffplay}
13734 @example
13735 ffplay -dumpgraph 1 -f lavfi "
13736 color=s=100x100:c=red  [l];
13737 color=s=100x100:c=blue [r];
13738 nullsrc=s=200x100, zmq [bg];
13739 [bg][l]   overlay      [bg+l];
13740 [bg+l][r] overlay=x=100 "
13741 @end example
13742
13743 To change the color of the left side of the video, the following
13744 command can be used:
13745 @example
13746 echo Parsed_color_0 c yellow | tools/zmqsend
13747 @end example
13748
13749 To change the right side:
13750 @example
13751 echo Parsed_color_1 c pink | tools/zmqsend
13752 @end example
13753
13754 @c man end MULTIMEDIA FILTERS
13755
13756 @chapter Multimedia Sources
13757 @c man begin MULTIMEDIA SOURCES
13758
13759 Below is a description of the currently available multimedia sources.
13760
13761 @section amovie
13762
13763 This is the same as @ref{movie} source, except it selects an audio
13764 stream by default.
13765
13766 @anchor{movie}
13767 @section movie
13768
13769 Read audio and/or video stream(s) from a movie container.
13770
13771 It accepts the following parameters:
13772
13773 @table @option
13774 @item filename
13775 The name of the resource to read (not necessarily a file; it can also be a
13776 device or a stream accessed through some protocol).
13777
13778 @item format_name, f
13779 Specifies the format assumed for the movie to read, and can be either
13780 the name of a container or an input device. If not specified, the
13781 format is guessed from @var{movie_name} or by probing.
13782
13783 @item seek_point, sp
13784 Specifies the seek point in seconds. The frames will be output
13785 starting from this seek point. The parameter is evaluated with
13786 @code{av_strtod}, so the numerical value may be suffixed by an IS
13787 postfix. The default value is "0".
13788
13789 @item streams, s
13790 Specifies the streams to read. Several streams can be specified,
13791 separated by "+". The source will then have as many outputs, in the
13792 same order. The syntax is explained in the ``Stream specifiers''
13793 section in the ffmpeg manual. Two special names, "dv" and "da" specify
13794 respectively the default (best suited) video and audio stream. Default
13795 is "dv", or "da" if the filter is called as "amovie".
13796
13797 @item stream_index, si
13798 Specifies the index of the video stream to read. If the value is -1,
13799 the most suitable video stream will be automatically selected. The default
13800 value is "-1". Deprecated. If the filter is called "amovie", it will select
13801 audio instead of video.
13802
13803 @item loop
13804 Specifies how many times to read the stream in sequence.
13805 If the value is less than 1, the stream will be read again and again.
13806 Default value is "1".
13807
13808 Note that when the movie is looped the source timestamps are not
13809 changed, so it will generate non monotonically increasing timestamps.
13810 @end table
13811
13812 It allows overlaying a second video on top of the main input of
13813 a filtergraph, as shown in this graph:
13814 @example
13815 input -----------> deltapts0 --> overlay --> output
13816                                     ^
13817                                     |
13818 movie --> scale--> deltapts1 -------+
13819 @end example
13820 @subsection Examples
13821
13822 @itemize
13823 @item
13824 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
13825 on top of the input labelled "in":
13826 @example
13827 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
13828 [in] setpts=PTS-STARTPTS [main];
13829 [main][over] overlay=16:16 [out]
13830 @end example
13831
13832 @item
13833 Read from a video4linux2 device, and overlay it on top of the input
13834 labelled "in":
13835 @example
13836 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
13837 [in] setpts=PTS-STARTPTS [main];
13838 [main][over] overlay=16:16 [out]
13839 @end example
13840
13841 @item
13842 Read the first video stream and the audio stream with id 0x81 from
13843 dvd.vob; the video is connected to the pad named "video" and the audio is
13844 connected to the pad named "audio":
13845 @example
13846 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
13847 @end example
13848 @end itemize
13849
13850 @c man end MULTIMEDIA SOURCES