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