]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
b78e05a3291be38028a2d3d6e858316b43a8d5cc
[ffmpeg] / doc / filters.texi
1 @chapter Filtering Introduction
2 @c man begin FILTERING INTRODUCTION
3
4 Filtering in FFmpeg is enabled through the libavfilter library.
5
6 In libavfilter, a filter can have multiple inputs and multiple
7 outputs.
8 To illustrate the sorts of things that are possible, we consider the
9 following filtergraph.
10
11 @verbatim
12                 [main]
13 input --> split ---------------------> overlay --> output
14             |                             ^
15             |[tmp]                  [flip]|
16             +-----> crop --> vflip -------+
17 @end verbatim
18
19 This filtergraph splits the input stream in two streams, then sends one
20 stream through the crop filter and the vflip filter, before merging it
21 back with the other stream by overlaying it on top. You can use the
22 following command to achieve this:
23
24 @example
25 ffmpeg -i INPUT -vf "split [main][tmp]; [tmp] crop=iw:ih/2:0:0, vflip [flip]; [main][flip] overlay=0:H/2" OUTPUT
26 @end example
27
28 The result will be that the top half of the video is mirrored
29 onto the bottom half of the output video.
30
31 Filters in the same linear chain are separated by commas, and distinct
32 linear chains of filters are separated by semicolons. In our example,
33 @var{crop,vflip} are in one linear chain, @var{split} and
34 @var{overlay} are separately in another. The points where the linear
35 chains join are labelled by names enclosed in square brackets. In the
36 example, the split filter generates two outputs that are associated to
37 the labels @var{[main]} and @var{[tmp]}.
38
39 The stream sent to the second output of @var{split}, labelled as
40 @var{[tmp]}, is processed through the @var{crop} filter, which crops
41 away the lower half part of the video, and then vertically flipped. The
42 @var{overlay} filter takes in input the first unchanged output of the
43 split filter (which was labelled as @var{[main]}), and overlay on its
44 lower half the output generated by the @var{crop,vflip} filterchain.
45
46 Some filters take in input a list of parameters: they are specified
47 after the filter name and an equal sign, and are separated from each other
48 by a colon.
49
50 There exist so-called @var{source filters} that do not have an
51 audio/video input, and @var{sink filters} that will not have audio/video
52 output.
53
54 @c man end FILTERING INTRODUCTION
55
56 @chapter graph2dot
57 @c man begin GRAPH2DOT
58
59 The @file{graph2dot} program included in the FFmpeg @file{tools}
60 directory can be used to parse a filtergraph description and issue a
61 corresponding textual representation in the dot language.
62
63 Invoke the command:
64 @example
65 graph2dot -h
66 @end example
67
68 to see how to use @file{graph2dot}.
69
70 You can then pass the dot description to the @file{dot} program (from
71 the graphviz suite of programs) and obtain a graphical representation
72 of the filtergraph.
73
74 For example the sequence of commands:
75 @example
76 echo @var{GRAPH_DESCRIPTION} | \
77 tools/graph2dot -o graph.tmp && \
78 dot -Tpng graph.tmp -o graph.png && \
79 display graph.png
80 @end example
81
82 can be used to create and display an image representing the graph
83 described by the @var{GRAPH_DESCRIPTION} string. Note that this string must be
84 a complete self-contained graph, with its inputs and outputs explicitly defined.
85 For example if your command line is of the form:
86 @example
87 ffmpeg -i infile -vf scale=640:360 outfile
88 @end example
89 your @var{GRAPH_DESCRIPTION} string will need to be of the form:
90 @example
91 nullsrc,scale=640:360,nullsink
92 @end example
93 you may also need to set the @var{nullsrc} parameters and add a @var{format}
94 filter in order to simulate a specific input file.
95
96 @c man end GRAPH2DOT
97
98 @chapter Filtergraph description
99 @c man begin FILTERGRAPH DESCRIPTION
100
101 A filtergraph is a directed graph of connected filters. It can contain
102 cycles, and there can be multiple links between a pair of
103 filters. Each link has one input pad on one side connecting it to one
104 filter from which it takes its input, and one output pad on the other
105 side connecting it to one filter accepting its output.
106
107 Each filter in a filtergraph is an instance of a filter class
108 registered in the application, which defines the features and the
109 number of input and output pads of the filter.
110
111 A filter with no input pads is called a "source", and a filter with no
112 output pads is called a "sink".
113
114 @anchor{Filtergraph syntax}
115 @section Filtergraph syntax
116
117 A filtergraph has a textual representation, which is recognized by the
118 @option{-filter}/@option{-vf}/@option{-af} and
119 @option{-filter_complex} options in @command{ffmpeg} and
120 @option{-vf}/@option{-af} in @command{ffplay}, and by the
121 @code{avfilter_graph_parse_ptr()} function defined in
122 @file{libavfilter/avfilter.h}.
123
124 A filterchain consists of a sequence of connected filters, each one
125 connected to the previous one in the sequence. A filterchain is
126 represented by a list of ","-separated filter descriptions.
127
128 A filtergraph consists of a sequence of filterchains. A sequence of
129 filterchains is represented by a list of ";"-separated filterchain
130 descriptions.
131
132 A filter is represented by a string of the form:
133 [@var{in_link_1}]...[@var{in_link_N}]@var{filter_name}@@@var{id}=@var{arguments}[@var{out_link_1}]...[@var{out_link_M}]
134
135 @var{filter_name} is the name of the filter class of which the
136 described filter is an instance of, and has to be the name of one of
137 the filter classes registered in the program optionally followed by "@@@var{id}".
138 The name of the filter class is optionally followed by a string
139 "=@var{arguments}".
140
141 @var{arguments} is a string which contains the parameters used to
142 initialize the filter instance. It may have one of two forms:
143 @itemize
144
145 @item
146 A ':'-separated list of @var{key=value} pairs.
147
148 @item
149 A ':'-separated list of @var{value}. In this case, the keys are assumed to be
150 the option names in the order they are declared. E.g. the @code{fade} filter
151 declares three options in this order -- @option{type}, @option{start_frame} and
152 @option{nb_frames}. Then the parameter list @var{in:0:30} means that the value
153 @var{in} is assigned to the option @option{type}, @var{0} to
154 @option{start_frame} and @var{30} to @option{nb_frames}.
155
156 @item
157 A ':'-separated list of mixed direct @var{value} and long @var{key=value}
158 pairs. The direct @var{value} must precede the @var{key=value} pairs, and
159 follow the same constraints order of the previous point. The following
160 @var{key=value} pairs can be set in any preferred order.
161
162 @end itemize
163
164 If the option value itself is a list of items (e.g. the @code{format} filter
165 takes a list of pixel formats), the items in the list are usually separated by
166 @samp{|}.
167
168 The list of arguments can be quoted using the character @samp{'} as initial
169 and ending mark, and the character @samp{\} for escaping the characters
170 within the quoted text; otherwise the argument string is considered
171 terminated when the next special character (belonging to the set
172 @samp{[]=;,}) is encountered.
173
174 The name and arguments of the filter are optionally preceded and
175 followed by a list of link labels.
176 A link label allows one to name a link and associate it to a filter output
177 or input pad. The preceding labels @var{in_link_1}
178 ... @var{in_link_N}, are associated to the filter input pads,
179 the following labels @var{out_link_1} ... @var{out_link_M}, are
180 associated to the output pads.
181
182 When two link labels with the same name are found in the
183 filtergraph, a link between the corresponding input and output pad is
184 created.
185
186 If an output pad is not labelled, it is linked by default to the first
187 unlabelled input pad of the next filter in the filterchain.
188 For example in the filterchain
189 @example
190 nullsrc, split[L1], [L2]overlay, nullsink
191 @end example
192 the split filter instance has two output pads, and the overlay filter
193 instance two input pads. The first output pad of split is labelled
194 "L1", the first input pad of overlay is labelled "L2", and the second
195 output pad of split is linked to the second input pad of overlay,
196 which are both unlabelled.
197
198 In a filter description, if the input label of the first filter is not
199 specified, "in" is assumed; if the output label of the last filter is not
200 specified, "out" is assumed.
201
202 In a complete filterchain all the unlabelled filter input and output
203 pads must be connected. A filtergraph is considered valid if all the
204 filter input and output pads of all the filterchains are connected.
205
206 Libavfilter will automatically insert @ref{scale} filters where format
207 conversion is required. It is possible to specify swscale flags
208 for those automatically inserted scalers by prepending
209 @code{sws_flags=@var{flags};}
210 to the filtergraph description.
211
212 Here is a BNF description of the filtergraph syntax:
213 @example
214 @var{NAME}             ::= sequence of alphanumeric characters and '_'
215 @var{FILTER_NAME}      ::= @var{NAME}["@@"@var{NAME}]
216 @var{LINKLABEL}        ::= "[" @var{NAME} "]"
217 @var{LINKLABELS}       ::= @var{LINKLABEL} [@var{LINKLABELS}]
218 @var{FILTER_ARGUMENTS} ::= sequence of chars (possibly quoted)
219 @var{FILTER}           ::= [@var{LINKLABELS}] @var{FILTER_NAME} ["=" @var{FILTER_ARGUMENTS}] [@var{LINKLABELS}]
220 @var{FILTERCHAIN}      ::= @var{FILTER} [,@var{FILTERCHAIN}]
221 @var{FILTERGRAPH}      ::= [sws_flags=@var{flags};] @var{FILTERCHAIN} [;@var{FILTERGRAPH}]
222 @end example
223
224 @anchor{filtergraph escaping}
225 @section Notes on filtergraph escaping
226
227 Filtergraph description composition entails several levels of
228 escaping. See @ref{quoting_and_escaping,,the "Quoting and escaping"
229 section in the ffmpeg-utils(1) manual,ffmpeg-utils} for more
230 information about the employed escaping procedure.
231
232 A first level escaping affects the content of each filter option
233 value, which may contain the special character @code{:} used to
234 separate values, or one of the escaping characters @code{\'}.
235
236 A second level escaping affects the whole filter description, which
237 may contain the escaping characters @code{\'} or the special
238 characters @code{[],;} used by the filtergraph description.
239
240 Finally, when you specify a filtergraph on a shell commandline, you
241 need to perform a third level escaping for the shell special
242 characters contained within it.
243
244 For example, consider the following string to be embedded in
245 the @ref{drawtext} filter description @option{text} value:
246 @example
247 this is a 'string': may contain one, or more, special characters
248 @end example
249
250 This string contains the @code{'} special escaping character, and the
251 @code{:} special character, so it needs to be escaped in this way:
252 @example
253 text=this is a \'string\'\: may contain one, or more, special characters
254 @end example
255
256 A second level of escaping is required when embedding the filter
257 description in a filtergraph description, in order to escape all the
258 filtergraph special characters. Thus the example above becomes:
259 @example
260 drawtext=text=this is a \\\'string\\\'\\: may contain one\, or more\, special characters
261 @end example
262 (note that in addition to the @code{\'} escaping special characters,
263 also @code{,} needs to be escaped).
264
265 Finally an additional level of escaping is needed when writing the
266 filtergraph description in a shell command, which depends on the
267 escaping rules of the adopted shell. For example, assuming that
268 @code{\} is special and needs to be escaped with another @code{\}, the
269 previous string will finally result in:
270 @example
271 -vf "drawtext=text=this is a \\\\\\'string\\\\\\'\\\\: may contain one\\, or more\\, special characters"
272 @end example
273
274 @chapter Timeline editing
275
276 Some filters support a generic @option{enable} option. For the filters
277 supporting timeline editing, this option can be set to an expression which is
278 evaluated before sending a frame to the filter. If the evaluation is non-zero,
279 the filter will be enabled, otherwise the frame will be sent unchanged to the
280 next filter in the filtergraph.
281
282 The expression accepts the following values:
283 @table @samp
284 @item t
285 timestamp expressed in seconds, NAN if the input timestamp is unknown
286
287 @item n
288 sequential number of the input frame, starting from 0
289
290 @item pos
291 the position in the file of the input frame, NAN if unknown
292
293 @item w
294 @item h
295 width and height of the input frame if video
296 @end table
297
298 Additionally, these filters support an @option{enable} command that can be used
299 to re-define the expression.
300
301 Like any other filtering option, the @option{enable} option follows the same
302 rules.
303
304 For example, to enable a blur filter (@ref{smartblur}) from 10 seconds to 3
305 minutes, and a @ref{curves} filter starting at 3 seconds:
306 @example
307 smartblur = enable='between(t,10,3*60)',
308 curves    = enable='gte(t,3)' : preset=cross_process
309 @end example
310
311 See @code{ffmpeg -filters} to view which filters have timeline support.
312
313 @c man end FILTERGRAPH DESCRIPTION
314
315 @anchor{framesync}
316 @chapter Options for filters with several inputs (framesync)
317 @c man begin OPTIONS FOR FILTERS WITH SEVERAL INPUTS
318
319 Some filters with several inputs support a common set of options.
320 These options can only be set by name, not with the short notation.
321
322 @table @option
323 @item eof_action
324 The action to take when EOF is encountered on the secondary input; it accepts
325 one of the following values:
326
327 @table @option
328 @item repeat
329 Repeat the last frame (the default).
330 @item endall
331 End both streams.
332 @item pass
333 Pass the main input through.
334 @end table
335
336 @item shortest
337 If set to 1, force the output to terminate when the shortest input
338 terminates. Default value is 0.
339
340 @item repeatlast
341 If set to 1, force the filter to extend the last frame of secondary streams
342 until the end of the primary stream. A value of 0 disables this behavior.
343 Default value is 1.
344 @end table
345
346 @c man end OPTIONS FOR FILTERS WITH SEVERAL INPUTS
347
348 @chapter Audio Filters
349 @c man begin AUDIO FILTERS
350
351 When you configure your FFmpeg build, you can disable any of the
352 existing filters using @code{--disable-filters}.
353 The configure output will show the audio filters included in your
354 build.
355
356 Below is a description of the currently available audio filters.
357
358 @section acompressor
359
360 A compressor is mainly used to reduce the dynamic range of a signal.
361 Especially modern music is mostly compressed at a high ratio to
362 improve the overall loudness. It's done to get the highest attention
363 of a listener, "fatten" the sound and bring more "power" to the track.
364 If a signal is compressed too much it may sound dull or "dead"
365 afterwards or it may start to "pump" (which could be a powerful effect
366 but can also destroy a track completely).
367 The right compression is the key to reach a professional sound and is
368 the high art of mixing and mastering. Because of its complex settings
369 it may take a long time to get the right feeling for this kind of effect.
370
371 Compression is done by detecting the volume above a chosen level
372 @code{threshold} and dividing it by the factor set with @code{ratio}.
373 So if you set the threshold to -12dB and your signal reaches -6dB a ratio
374 of 2:1 will result in a signal at -9dB. Because an exact manipulation of
375 the signal would cause distortion of the waveform the reduction can be
376 levelled over the time. This is done by setting "Attack" and "Release".
377 @code{attack} determines how long the signal has to rise above the threshold
378 before any reduction will occur and @code{release} sets the time the signal
379 has to fall below the threshold to reduce the reduction again. Shorter signals
380 than the chosen attack time will be left untouched.
381 The overall reduction of the signal can be made up afterwards with the
382 @code{makeup} setting. So compressing the peaks of a signal about 6dB and
383 raising the makeup to this level results in a signal twice as loud than the
384 source. To gain a softer entry in the compression the @code{knee} flattens the
385 hard edge at the threshold in the range of the chosen decibels.
386
387 The filter accepts the following options:
388
389 @table @option
390 @item level_in
391 Set input gain. Default is 1. Range is between 0.015625 and 64.
392
393 @item threshold
394 If a signal of stream rises above this level it will affect the gain
395 reduction.
396 By default it is 0.125. Range is between 0.00097563 and 1.
397
398 @item ratio
399 Set a ratio by which the signal is reduced. 1:2 means that if the level
400 rose 4dB above the threshold, it will be only 2dB above after the reduction.
401 Default is 2. Range is between 1 and 20.
402
403 @item attack
404 Amount of milliseconds the signal has to rise above the threshold before gain
405 reduction starts. Default is 20. Range is between 0.01 and 2000.
406
407 @item release
408 Amount of milliseconds the signal has to fall below the threshold before
409 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
410
411 @item makeup
412 Set the amount by how much signal will be amplified after processing.
413 Default is 1. Range is from 1 to 64.
414
415 @item knee
416 Curve the sharp knee around the threshold to enter gain reduction more softly.
417 Default is 2.82843. Range is between 1 and 8.
418
419 @item link
420 Choose if the @code{average} level between all channels of input stream
421 or the louder(@code{maximum}) channel of input stream affects the
422 reduction. Default is @code{average}.
423
424 @item detection
425 Should the exact signal be taken in case of @code{peak} or an RMS one in case
426 of @code{rms}. Default is @code{rms} which is mostly smoother.
427
428 @item mix
429 How much to use compressed signal in output. Default is 1.
430 Range is between 0 and 1.
431 @end table
432
433 @section acontrast
434 Simple audio dynamic range commpression/expansion filter.
435
436 The filter accepts the following options:
437
438 @table @option
439 @item contrast
440 Set contrast. Default is 33. Allowed range is between 0 and 100.
441 @end table
442
443 @section acopy
444
445 Copy the input audio source unchanged to the output. This is mainly useful for
446 testing purposes.
447
448 @section acrossfade
449
450 Apply cross fade from one input audio stream to another input audio stream.
451 The cross fade is applied for specified duration near the end of first stream.
452
453 The filter accepts the following options:
454
455 @table @option
456 @item nb_samples, ns
457 Specify the number of samples for which the cross fade effect has to last.
458 At the end of the cross fade effect the first input audio will be completely
459 silent. Default is 44100.
460
461 @item duration, d
462 Specify the duration of the cross fade effect. See
463 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
464 for the accepted syntax.
465 By default the duration is determined by @var{nb_samples}.
466 If set this option is used instead of @var{nb_samples}.
467
468 @item overlap, o
469 Should first stream end overlap with second stream start. Default is enabled.
470
471 @item curve1
472 Set curve for cross fade transition for first stream.
473
474 @item curve2
475 Set curve for cross fade transition for second stream.
476
477 For description of available curve types see @ref{afade} filter description.
478 @end table
479
480 @subsection Examples
481
482 @itemize
483 @item
484 Cross fade from one input to another:
485 @example
486 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:c1=exp:c2=exp output.flac
487 @end example
488
489 @item
490 Cross fade from one input to another but without overlapping:
491 @example
492 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:o=0:c1=exp:c2=exp output.flac
493 @end example
494 @end itemize
495
496 @section acrusher
497
498 Reduce audio bit resolution.
499
500 This filter is bit crusher with enhanced functionality. A bit crusher
501 is used to audibly reduce number of bits an audio signal is sampled
502 with. This doesn't change the bit depth at all, it just produces the
503 effect. Material reduced in bit depth sounds more harsh and "digital".
504 This filter is able to even round to continuous values instead of discrete
505 bit depths.
506 Additionally it has a D/C offset which results in different crushing of
507 the lower and the upper half of the signal.
508 An Anti-Aliasing setting is able to produce "softer" crushing sounds.
509
510 Another feature of this filter is the logarithmic mode.
511 This setting switches from linear distances between bits to logarithmic ones.
512 The result is a much more "natural" sounding crusher which doesn't gate low
513 signals for example. The human ear has a logarithmic perception,
514 so this kind of crushing is much more pleasant.
515 Logarithmic crushing is also able to get anti-aliased.
516
517 The filter accepts the following options:
518
519 @table @option
520 @item level_in
521 Set level in.
522
523 @item level_out
524 Set level out.
525
526 @item bits
527 Set bit reduction.
528
529 @item mix
530 Set mixing amount.
531
532 @item mode
533 Can be linear: @code{lin} or logarithmic: @code{log}.
534
535 @item dc
536 Set DC.
537
538 @item aa
539 Set anti-aliasing.
540
541 @item samples
542 Set sample reduction.
543
544 @item lfo
545 Enable LFO. By default disabled.
546
547 @item lforange
548 Set LFO range.
549
550 @item lforate
551 Set LFO rate.
552 @end table
553
554 @section adelay
555
556 Delay one or more audio channels.
557
558 Samples in delayed channel are filled with silence.
559
560 The filter accepts the following option:
561
562 @table @option
563 @item delays
564 Set list of delays in milliseconds for each channel separated by '|'.
565 Unused delays will be silently ignored. If number of given delays is
566 smaller than number of channels all remaining channels will not be delayed.
567 If you want to delay exact number of samples, append 'S' to number.
568 @end table
569
570 @subsection Examples
571
572 @itemize
573 @item
574 Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
575 the second channel (and any other channels that may be present) unchanged.
576 @example
577 adelay=1500|0|500
578 @end example
579
580 @item
581 Delay second channel by 500 samples, the third channel by 700 samples and leave
582 the first channel (and any other channels that may be present) unchanged.
583 @example
584 adelay=0|500S|700S
585 @end example
586 @end itemize
587
588 @section aecho
589
590 Apply echoing to the input audio.
591
592 Echoes are reflected sound and can occur naturally amongst mountains
593 (and sometimes large buildings) when talking or shouting; digital echo
594 effects emulate this behaviour and are often used to help fill out the
595 sound of a single instrument or vocal. The time difference between the
596 original signal and the reflection is the @code{delay}, and the
597 loudness of the reflected signal is the @code{decay}.
598 Multiple echoes can have different delays and decays.
599
600 A description of the accepted parameters follows.
601
602 @table @option
603 @item in_gain
604 Set input gain of reflected signal. Default is @code{0.6}.
605
606 @item out_gain
607 Set output gain of reflected signal. Default is @code{0.3}.
608
609 @item delays
610 Set list of time intervals in milliseconds between original signal and reflections
611 separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
612 Default is @code{1000}.
613
614 @item decays
615 Set list of loudness of reflected signals separated by '|'.
616 Allowed range for each @code{decay} is @code{(0 - 1.0]}.
617 Default is @code{0.5}.
618 @end table
619
620 @subsection Examples
621
622 @itemize
623 @item
624 Make it sound as if there are twice as many instruments as are actually playing:
625 @example
626 aecho=0.8:0.88:60:0.4
627 @end example
628
629 @item
630 If delay is very short, then it sound like a (metallic) robot playing music:
631 @example
632 aecho=0.8:0.88:6:0.4
633 @end example
634
635 @item
636 A longer delay will sound like an open air concert in the mountains:
637 @example
638 aecho=0.8:0.9:1000:0.3
639 @end example
640
641 @item
642 Same as above but with one more mountain:
643 @example
644 aecho=0.8:0.9:1000|1800:0.3|0.25
645 @end example
646 @end itemize
647
648 @section aemphasis
649 Audio emphasis filter creates or restores material directly taken from LPs or
650 emphased CDs with different filter curves. E.g. to store music on vinyl the
651 signal has to be altered by a filter first to even out the disadvantages of
652 this recording medium.
653 Once the material is played back the inverse filter has to be applied to
654 restore the distortion of the frequency response.
655
656 The filter accepts the following options:
657
658 @table @option
659 @item level_in
660 Set input gain.
661
662 @item level_out
663 Set output gain.
664
665 @item mode
666 Set filter mode. For restoring material use @code{reproduction} mode, otherwise
667 use @code{production} mode. Default is @code{reproduction} mode.
668
669 @item type
670 Set filter type. Selects medium. Can be one of the following:
671
672 @table @option
673 @item col
674 select Columbia.
675 @item emi
676 select EMI.
677 @item bsi
678 select BSI (78RPM).
679 @item riaa
680 select RIAA.
681 @item cd
682 select Compact Disc (CD).
683 @item 50fm
684 select 50µs (FM).
685 @item 75fm
686 select 75µs (FM).
687 @item 50kf
688 select 50µs (FM-KF).
689 @item 75kf
690 select 75µs (FM-KF).
691 @end table
692 @end table
693
694 @section aeval
695
696 Modify an audio signal according to the specified expressions.
697
698 This filter accepts one or more expressions (one for each channel),
699 which are evaluated and used to modify a corresponding audio signal.
700
701 It accepts the following parameters:
702
703 @table @option
704 @item exprs
705 Set the '|'-separated expressions list for each separate channel. If
706 the number of input channels is greater than the number of
707 expressions, the last specified expression is used for the remaining
708 output channels.
709
710 @item channel_layout, c
711 Set output channel layout. If not specified, the channel layout is
712 specified by the number of expressions. If set to @samp{same}, it will
713 use by default the same input channel layout.
714 @end table
715
716 Each expression in @var{exprs} can contain the following constants and functions:
717
718 @table @option
719 @item ch
720 channel number of the current expression
721
722 @item n
723 number of the evaluated sample, starting from 0
724
725 @item s
726 sample rate
727
728 @item t
729 time of the evaluated sample expressed in seconds
730
731 @item nb_in_channels
732 @item nb_out_channels
733 input and output number of channels
734
735 @item val(CH)
736 the value of input channel with number @var{CH}
737 @end table
738
739 Note: this filter is slow. For faster processing you should use a
740 dedicated filter.
741
742 @subsection Examples
743
744 @itemize
745 @item
746 Half volume:
747 @example
748 aeval=val(ch)/2:c=same
749 @end example
750
751 @item
752 Invert phase of the second channel:
753 @example
754 aeval=val(0)|-val(1)
755 @end example
756 @end itemize
757
758 @anchor{afade}
759 @section afade
760
761 Apply fade-in/out effect to input audio.
762
763 A description of the accepted parameters follows.
764
765 @table @option
766 @item type, t
767 Specify the effect type, can be either @code{in} for fade-in, or
768 @code{out} for a fade-out effect. Default is @code{in}.
769
770 @item start_sample, ss
771 Specify the number of the start sample for starting to apply the fade
772 effect. Default is 0.
773
774 @item nb_samples, ns
775 Specify the number of samples for which the fade effect has to last. At
776 the end of the fade-in effect the output audio will have the same
777 volume as the input audio, at the end of the fade-out transition
778 the output audio will be silence. Default is 44100.
779
780 @item start_time, st
781 Specify the start time of the fade effect. Default is 0.
782 The value must be specified as a time duration; see
783 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
784 for the accepted syntax.
785 If set this option is used instead of @var{start_sample}.
786
787 @item duration, d
788 Specify the duration of the fade effect. See
789 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
790 for the accepted syntax.
791 At the end of the fade-in effect the output audio will have the same
792 volume as the input audio, at the end of the fade-out transition
793 the output audio will be silence.
794 By default the duration is determined by @var{nb_samples}.
795 If set this option is used instead of @var{nb_samples}.
796
797 @item curve
798 Set curve for fade transition.
799
800 It accepts the following values:
801 @table @option
802 @item tri
803 select triangular, linear slope (default)
804 @item qsin
805 select quarter of sine wave
806 @item hsin
807 select half of sine wave
808 @item esin
809 select exponential sine wave
810 @item log
811 select logarithmic
812 @item ipar
813 select inverted parabola
814 @item qua
815 select quadratic
816 @item cub
817 select cubic
818 @item squ
819 select square root
820 @item cbr
821 select cubic root
822 @item par
823 select parabola
824 @item exp
825 select exponential
826 @item iqsin
827 select inverted quarter of sine wave
828 @item ihsin
829 select inverted half of sine wave
830 @item dese
831 select double-exponential seat
832 @item desi
833 select double-exponential sigmoid
834 @end table
835 @end table
836
837 @subsection Examples
838
839 @itemize
840 @item
841 Fade in first 15 seconds of audio:
842 @example
843 afade=t=in:ss=0:d=15
844 @end example
845
846 @item
847 Fade out last 25 seconds of a 900 seconds audio:
848 @example
849 afade=t=out:st=875:d=25
850 @end example
851 @end itemize
852
853 @section afftfilt
854 Apply arbitrary expressions to samples in frequency domain.
855
856 @table @option
857 @item real
858 Set frequency domain real expression for each separate channel separated
859 by '|'. Default is "1".
860 If the number of input channels is greater than the number of
861 expressions, the last specified expression is used for the remaining
862 output channels.
863
864 @item imag
865 Set frequency domain imaginary expression for each separate channel
866 separated by '|'. If not set, @var{real} option is used.
867
868 Each expression in @var{real} and @var{imag} can contain the following
869 constants:
870
871 @table @option
872 @item sr
873 sample rate
874
875 @item b
876 current frequency bin number
877
878 @item nb
879 number of available bins
880
881 @item ch
882 channel number of the current expression
883
884 @item chs
885 number of channels
886
887 @item pts
888 current frame pts
889 @end table
890
891 @item win_size
892 Set window size.
893
894 It accepts the following values:
895 @table @samp
896 @item w16
897 @item w32
898 @item w64
899 @item w128
900 @item w256
901 @item w512
902 @item w1024
903 @item w2048
904 @item w4096
905 @item w8192
906 @item w16384
907 @item w32768
908 @item w65536
909 @end table
910 Default is @code{w4096}
911
912 @item win_func
913 Set window function. Default is @code{hann}.
914
915 @item overlap
916 Set window overlap. If set to 1, the recommended overlap for selected
917 window function will be picked. Default is @code{0.75}.
918 @end table
919
920 @subsection Examples
921
922 @itemize
923 @item
924 Leave almost only low frequencies in audio:
925 @example
926 afftfilt="1-clip((b/nb)*b,0,1)"
927 @end example
928 @end itemize
929
930 @anchor{afir}
931 @section afir
932
933 Apply an arbitrary Frequency Impulse Response filter.
934
935 This filter is designed for applying long FIR filters,
936 up to 30 seconds long.
937
938 It can be used as component for digital crossover filters,
939 room equalization, cross talk cancellation, wavefield synthesis,
940 auralization, ambiophonics and ambisonics.
941
942 This filter uses second stream as FIR coefficients.
943 If second stream holds single channel, it will be used
944 for all input channels in first stream, otherwise
945 number of channels in second stream must be same as
946 number of channels in first stream.
947
948 It accepts the following parameters:
949
950 @table @option
951 @item dry
952 Set dry gain. This sets input gain.
953
954 @item wet
955 Set wet gain. This sets final output gain.
956
957 @item length
958 Set Impulse Response filter length. Default is 1, which means whole IR is processed.
959
960 @item again
961 Enable applying gain measured from power of IR.
962 @end table
963
964 @subsection Examples
965
966 @itemize
967 @item
968 Apply reverb to stream using mono IR file as second input, complete command using ffmpeg:
969 @example
970 ffmpeg -i input.wav -i middle_tunnel_1way_mono.wav -lavfi afir output.wav
971 @end example
972 @end itemize
973
974 @anchor{aformat}
975 @section aformat
976
977 Set output format constraints for the input audio. The framework will
978 negotiate the most appropriate format to minimize conversions.
979
980 It accepts the following parameters:
981 @table @option
982
983 @item sample_fmts
984 A '|'-separated list of requested sample formats.
985
986 @item sample_rates
987 A '|'-separated list of requested sample rates.
988
989 @item channel_layouts
990 A '|'-separated list of requested channel layouts.
991
992 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
993 for the required syntax.
994 @end table
995
996 If a parameter is omitted, all values are allowed.
997
998 Force the output to either unsigned 8-bit or signed 16-bit stereo
999 @example
1000 aformat=sample_fmts=u8|s16:channel_layouts=stereo
1001 @end example
1002
1003 @section agate
1004
1005 A gate is mainly used to reduce lower parts of a signal. This kind of signal
1006 processing reduces disturbing noise between useful signals.
1007
1008 Gating is done by detecting the volume below a chosen level @var{threshold}
1009 and dividing it by the factor set with @var{ratio}. The bottom of the noise
1010 floor is set via @var{range}. Because an exact manipulation of the signal
1011 would cause distortion of the waveform the reduction can be levelled over
1012 time. This is done by setting @var{attack} and @var{release}.
1013
1014 @var{attack} determines how long the signal has to fall below the threshold
1015 before any reduction will occur and @var{release} sets the time the signal
1016 has to rise above the threshold to reduce the reduction again.
1017 Shorter signals than the chosen attack time will be left untouched.
1018
1019 @table @option
1020 @item level_in
1021 Set input level before filtering.
1022 Default is 1. Allowed range is from 0.015625 to 64.
1023
1024 @item range
1025 Set the level of gain reduction when the signal is below the threshold.
1026 Default is 0.06125. Allowed range is from 0 to 1.
1027
1028 @item threshold
1029 If a signal rises above this level the gain reduction is released.
1030 Default is 0.125. Allowed range is from 0 to 1.
1031
1032 @item ratio
1033 Set a ratio by which the signal is reduced.
1034 Default is 2. Allowed range is from 1 to 9000.
1035
1036 @item attack
1037 Amount of milliseconds the signal has to rise above the threshold before gain
1038 reduction stops.
1039 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
1040
1041 @item release
1042 Amount of milliseconds the signal has to fall below the threshold before the
1043 reduction is increased again. Default is 250 milliseconds.
1044 Allowed range is from 0.01 to 9000.
1045
1046 @item makeup
1047 Set amount of amplification of signal after processing.
1048 Default is 1. Allowed range is from 1 to 64.
1049
1050 @item knee
1051 Curve the sharp knee around the threshold to enter gain reduction more softly.
1052 Default is 2.828427125. Allowed range is from 1 to 8.
1053
1054 @item detection
1055 Choose if exact signal should be taken for detection or an RMS like one.
1056 Default is @code{rms}. Can be @code{peak} or @code{rms}.
1057
1058 @item link
1059 Choose if the average level between all channels or the louder channel affects
1060 the reduction.
1061 Default is @code{average}. Can be @code{average} or @code{maximum}.
1062 @end table
1063
1064 @section aiir
1065
1066 Apply an arbitrary Infinite Impulse Response filter.
1067
1068 It accepts the following parameters:
1069
1070 @table @option
1071 @item z
1072 Set numerator/zeros coefficients.
1073
1074 @item p
1075 Set denominator/poles coefficients.
1076
1077 @item k
1078 Set channels gains.
1079
1080 @item dry_gain
1081 Set input gain.
1082
1083 @item wet_gain
1084 Set output gain.
1085
1086 @item f
1087 Set coefficients format.
1088
1089 @table @samp
1090 @item tf
1091 transfer function
1092 @item zp
1093 Z-plane zeros/poles, cartesian (default)
1094 @item pr
1095 Z-plane zeros/poles, polar radians
1096 @item pd
1097 Z-plane zeros/poles, polar degrees
1098 @end table
1099
1100 @item r
1101 Set kind of processing.
1102 Can be @code{d} - direct or @code{s} - serial cascading. Defauls is @code{s}.
1103
1104 @item e
1105 Set filtering precision.
1106
1107 @table @samp
1108 @item dbl
1109 double-precision floating-point (default)
1110 @item flt
1111 single-precision floating-point
1112 @item i32
1113 32-bit integers
1114 @item i16
1115 16-bit integers
1116 @end table
1117
1118 @end table
1119
1120 Coefficients in @code{tf} format are separated by spaces and are in ascending
1121 order.
1122
1123 Coefficients in @code{zp} format are separated by spaces and order of coefficients
1124 doesn't matter. Coefficients in @code{zp} format are complex numbers with @var{i}
1125 imaginary unit.
1126
1127 Different coefficients and gains can be provided for every channel, in such case
1128 use '|' to separate coefficients or gains. Last provided coefficients will be
1129 used for all remaining channels.
1130
1131 @subsection Examples
1132
1133 @itemize
1134 @item
1135 Apply 2 pole elliptic notch at arround 5000Hz for 48000 Hz sample rate:
1136 @example
1137 aiir=k=1:z=7.957584807809675810E-1 -2.575128568908332300 3.674839853930788710 -2.57512875289799137 7.957586296317130880E-1:p=1 -2.86950072432325953 3.63022088054647218 -2.28075678147272232 6.361362326477423500E-1:f=tf:r=d
1138 @end example
1139
1140 @item
1141 Same as above but in @code{zp} format:
1142 @example
1143 aiir=k=0.79575848078096756:z=0.80918701+0.58773007i 0.80918701-0.58773007i 0.80884700+0.58784055i 0.80884700-0.58784055i:p=0.63892345+0.59951235i 0.63892345-0.59951235i 0.79582691+0.44198673i 0.79582691-0.44198673i:f=zp:r=s
1144 @end example
1145 @end itemize
1146
1147 @section alimiter
1148
1149 The limiter prevents an input signal from rising over a desired threshold.
1150 This limiter uses lookahead technology to prevent your signal from distorting.
1151 It means that there is a small delay after the signal is processed. Keep in mind
1152 that the delay it produces is the attack time you set.
1153
1154 The filter accepts the following options:
1155
1156 @table @option
1157 @item level_in
1158 Set input gain. Default is 1.
1159
1160 @item level_out
1161 Set output gain. Default is 1.
1162
1163 @item limit
1164 Don't let signals above this level pass the limiter. Default is 1.
1165
1166 @item attack
1167 The limiter will reach its attenuation level in this amount of time in
1168 milliseconds. Default is 5 milliseconds.
1169
1170 @item release
1171 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
1172 Default is 50 milliseconds.
1173
1174 @item asc
1175 When gain reduction is always needed ASC takes care of releasing to an
1176 average reduction level rather than reaching a reduction of 0 in the release
1177 time.
1178
1179 @item asc_level
1180 Select how much the release time is affected by ASC, 0 means nearly no changes
1181 in release time while 1 produces higher release times.
1182
1183 @item level
1184 Auto level output signal. Default is enabled.
1185 This normalizes audio back to 0dB if enabled.
1186 @end table
1187
1188 Depending on picked setting it is recommended to upsample input 2x or 4x times
1189 with @ref{aresample} before applying this filter.
1190
1191 @section allpass
1192
1193 Apply a two-pole all-pass filter with central frequency (in Hz)
1194 @var{frequency}, and filter-width @var{width}.
1195 An all-pass filter changes the audio's frequency to phase relationship
1196 without changing its frequency to amplitude relationship.
1197
1198 The filter accepts the following options:
1199
1200 @table @option
1201 @item frequency, f
1202 Set frequency in Hz.
1203
1204 @item width_type, t
1205 Set method to specify band-width of filter.
1206 @table @option
1207 @item h
1208 Hz
1209 @item q
1210 Q-Factor
1211 @item o
1212 octave
1213 @item s
1214 slope
1215 @item k
1216 kHz
1217 @end table
1218
1219 @item width, w
1220 Specify the band-width of a filter in width_type units.
1221
1222 @item channels, c
1223 Specify which channels to filter, by default all available are filtered.
1224 @end table
1225
1226 @subsection Commands
1227
1228 This filter supports the following commands:
1229 @table @option
1230 @item frequency, f
1231 Change allpass frequency.
1232 Syntax for the command is : "@var{frequency}"
1233
1234 @item width_type, t
1235 Change allpass width_type.
1236 Syntax for the command is : "@var{width_type}"
1237
1238 @item width, w
1239 Change allpass width.
1240 Syntax for the command is : "@var{width}"
1241 @end table
1242
1243 @section aloop
1244
1245 Loop audio samples.
1246
1247 The filter accepts the following options:
1248
1249 @table @option
1250 @item loop
1251 Set the number of loops. Setting this value to -1 will result in infinite loops.
1252 Default is 0.
1253
1254 @item size
1255 Set maximal number of samples. Default is 0.
1256
1257 @item start
1258 Set first sample of loop. Default is 0.
1259 @end table
1260
1261 @anchor{amerge}
1262 @section amerge
1263
1264 Merge two or more audio streams into a single multi-channel stream.
1265
1266 The filter accepts the following options:
1267
1268 @table @option
1269
1270 @item inputs
1271 Set the number of inputs. Default is 2.
1272
1273 @end table
1274
1275 If the channel layouts of the inputs are disjoint, and therefore compatible,
1276 the channel layout of the output will be set accordingly and the channels
1277 will be reordered as necessary. If the channel layouts of the inputs are not
1278 disjoint, the output will have all the channels of the first input then all
1279 the channels of the second input, in that order, and the channel layout of
1280 the output will be the default value corresponding to the total number of
1281 channels.
1282
1283 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
1284 is FC+BL+BR, then the output will be in 5.1, with the channels in the
1285 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
1286 first input, b1 is the first channel of the second input).
1287
1288 On the other hand, if both input are in stereo, the output channels will be
1289 in the default order: a1, a2, b1, b2, and the channel layout will be
1290 arbitrarily set to 4.0, which may or may not be the expected value.
1291
1292 All inputs must have the same sample rate, and format.
1293
1294 If inputs do not have the same duration, the output will stop with the
1295 shortest.
1296
1297 @subsection Examples
1298
1299 @itemize
1300 @item
1301 Merge two mono files into a stereo stream:
1302 @example
1303 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
1304 @end example
1305
1306 @item
1307 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
1308 @example
1309 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
1310 @end example
1311 @end itemize
1312
1313 @section amix
1314
1315 Mixes multiple audio inputs into a single output.
1316
1317 Note that this filter only supports float samples (the @var{amerge}
1318 and @var{pan} audio filters support many formats). If the @var{amix}
1319 input has integer samples then @ref{aresample} will be automatically
1320 inserted to perform the conversion to float samples.
1321
1322 For example
1323 @example
1324 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
1325 @end example
1326 will mix 3 input audio streams to a single output with the same duration as the
1327 first input and a dropout transition time of 3 seconds.
1328
1329 It accepts the following parameters:
1330 @table @option
1331
1332 @item inputs
1333 The number of inputs. If unspecified, it defaults to 2.
1334
1335 @item duration
1336 How to determine the end-of-stream.
1337 @table @option
1338
1339 @item longest
1340 The duration of the longest input. (default)
1341
1342 @item shortest
1343 The duration of the shortest input.
1344
1345 @item first
1346 The duration of the first input.
1347
1348 @end table
1349
1350 @item dropout_transition
1351 The transition time, in seconds, for volume renormalization when an input
1352 stream ends. The default value is 2 seconds.
1353
1354 @item weights
1355 Specify weight of each input audio stream as sequence.
1356 Each weight is separated by space. By default all inputs have same weight.
1357 @end table
1358
1359 @section anequalizer
1360
1361 High-order parametric multiband equalizer for each channel.
1362
1363 It accepts the following parameters:
1364 @table @option
1365 @item params
1366
1367 This option string is in format:
1368 "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
1369 Each equalizer band is separated by '|'.
1370
1371 @table @option
1372 @item chn
1373 Set channel number to which equalization will be applied.
1374 If input doesn't have that channel the entry is ignored.
1375
1376 @item f
1377 Set central frequency for band.
1378 If input doesn't have that frequency the entry is ignored.
1379
1380 @item w
1381 Set band width in hertz.
1382
1383 @item g
1384 Set band gain in dB.
1385
1386 @item t
1387 Set filter type for band, optional, can be:
1388
1389 @table @samp
1390 @item 0
1391 Butterworth, this is default.
1392
1393 @item 1
1394 Chebyshev type 1.
1395
1396 @item 2
1397 Chebyshev type 2.
1398 @end table
1399 @end table
1400
1401 @item curves
1402 With this option activated frequency response of anequalizer is displayed
1403 in video stream.
1404
1405 @item size
1406 Set video stream size. Only useful if curves option is activated.
1407
1408 @item mgain
1409 Set max gain that will be displayed. Only useful if curves option is activated.
1410 Setting this to a reasonable value makes it possible to display gain which is derived from
1411 neighbour bands which are too close to each other and thus produce higher gain
1412 when both are activated.
1413
1414 @item fscale
1415 Set frequency scale used to draw frequency response in video output.
1416 Can be linear or logarithmic. Default is logarithmic.
1417
1418 @item colors
1419 Set color for each channel curve which is going to be displayed in video stream.
1420 This is list of color names separated by space or by '|'.
1421 Unrecognised or missing colors will be replaced by white color.
1422 @end table
1423
1424 @subsection Examples
1425
1426 @itemize
1427 @item
1428 Lower gain by 10 of central frequency 200Hz and width 100 Hz
1429 for first 2 channels using Chebyshev type 1 filter:
1430 @example
1431 anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
1432 @end example
1433 @end itemize
1434
1435 @subsection Commands
1436
1437 This filter supports the following commands:
1438 @table @option
1439 @item change
1440 Alter existing filter parameters.
1441 Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
1442
1443 @var{fN} is existing filter number, starting from 0, if no such filter is available
1444 error is returned.
1445 @var{freq} set new frequency parameter.
1446 @var{width} set new width parameter in herz.
1447 @var{gain} set new gain parameter in dB.
1448
1449 Full filter invocation with asendcmd may look like this:
1450 asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
1451 @end table
1452
1453 @section anull
1454
1455 Pass the audio source unchanged to the output.
1456
1457 @section apad
1458
1459 Pad the end of an audio stream with silence.
1460
1461 This can be used together with @command{ffmpeg} @option{-shortest} to
1462 extend audio streams to the same length as the video stream.
1463
1464 A description of the accepted options follows.
1465
1466 @table @option
1467 @item packet_size
1468 Set silence packet size. Default value is 4096.
1469
1470 @item pad_len
1471 Set the number of samples of silence to add to the end. After the
1472 value is reached, the stream is terminated. This option is mutually
1473 exclusive with @option{whole_len}.
1474
1475 @item whole_len
1476 Set the minimum total number of samples in the output audio stream. If
1477 the value is longer than the input audio length, silence is added to
1478 the end, until the value is reached. This option is mutually exclusive
1479 with @option{pad_len}.
1480 @end table
1481
1482 If neither the @option{pad_len} nor the @option{whole_len} option is
1483 set, the filter will add silence to the end of the input stream
1484 indefinitely.
1485
1486 @subsection Examples
1487
1488 @itemize
1489 @item
1490 Add 1024 samples of silence to the end of the input:
1491 @example
1492 apad=pad_len=1024
1493 @end example
1494
1495 @item
1496 Make sure the audio output will contain at least 10000 samples, pad
1497 the input with silence if required:
1498 @example
1499 apad=whole_len=10000
1500 @end example
1501
1502 @item
1503 Use @command{ffmpeg} to pad the audio input with silence, so that the
1504 video stream will always result the shortest and will be converted
1505 until the end in the output file when using the @option{shortest}
1506 option:
1507 @example
1508 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
1509 @end example
1510 @end itemize
1511
1512 @section aphaser
1513 Add a phasing effect to the input audio.
1514
1515 A phaser filter creates series of peaks and troughs in the frequency spectrum.
1516 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
1517
1518 A description of the accepted parameters follows.
1519
1520 @table @option
1521 @item in_gain
1522 Set input gain. Default is 0.4.
1523
1524 @item out_gain
1525 Set output gain. Default is 0.74
1526
1527 @item delay
1528 Set delay in milliseconds. Default is 3.0.
1529
1530 @item decay
1531 Set decay. Default is 0.4.
1532
1533 @item speed
1534 Set modulation speed in Hz. Default is 0.5.
1535
1536 @item type
1537 Set modulation type. Default is triangular.
1538
1539 It accepts the following values:
1540 @table @samp
1541 @item triangular, t
1542 @item sinusoidal, s
1543 @end table
1544 @end table
1545
1546 @section apulsator
1547
1548 Audio pulsator is something between an autopanner and a tremolo.
1549 But it can produce funny stereo effects as well. Pulsator changes the volume
1550 of the left and right channel based on a LFO (low frequency oscillator) with
1551 different waveforms and shifted phases.
1552 This filter have the ability to define an offset between left and right
1553 channel. An offset of 0 means that both LFO shapes match each other.
1554 The left and right channel are altered equally - a conventional tremolo.
1555 An offset of 50% means that the shape of the right channel is exactly shifted
1556 in phase (or moved backwards about half of the frequency) - pulsator acts as
1557 an autopanner. At 1 both curves match again. Every setting in between moves the
1558 phase shift gapless between all stages and produces some "bypassing" sounds with
1559 sine and triangle waveforms. The more you set the offset near 1 (starting from
1560 the 0.5) the faster the signal passes from the left to the right speaker.
1561
1562 The filter accepts the following options:
1563
1564 @table @option
1565 @item level_in
1566 Set input gain. By default it is 1. Range is [0.015625 - 64].
1567
1568 @item level_out
1569 Set output gain. By default it is 1. Range is [0.015625 - 64].
1570
1571 @item mode
1572 Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
1573 sawup or sawdown. Default is sine.
1574
1575 @item amount
1576 Set modulation. Define how much of original signal is affected by the LFO.
1577
1578 @item offset_l
1579 Set left channel offset. Default is 0. Allowed range is [0 - 1].
1580
1581 @item offset_r
1582 Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
1583
1584 @item width
1585 Set pulse width. Default is 1. Allowed range is [0 - 2].
1586
1587 @item timing
1588 Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
1589
1590 @item bpm
1591 Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
1592 is set to bpm.
1593
1594 @item ms
1595 Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
1596 is set to ms.
1597
1598 @item hz
1599 Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
1600 if timing is set to hz.
1601 @end table
1602
1603 @anchor{aresample}
1604 @section aresample
1605
1606 Resample the input audio to the specified parameters, using the
1607 libswresample library. If none are specified then the filter will
1608 automatically convert between its input and output.
1609
1610 This filter is also able to stretch/squeeze the audio data to make it match
1611 the timestamps or to inject silence / cut out audio to make it match the
1612 timestamps, do a combination of both or do neither.
1613
1614 The filter accepts the syntax
1615 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
1616 expresses a sample rate and @var{resampler_options} is a list of
1617 @var{key}=@var{value} pairs, separated by ":". See the
1618 @ref{Resampler Options,,"Resampler Options" section in the
1619 ffmpeg-resampler(1) manual,ffmpeg-resampler}
1620 for the complete list of supported options.
1621
1622 @subsection Examples
1623
1624 @itemize
1625 @item
1626 Resample the input audio to 44100Hz:
1627 @example
1628 aresample=44100
1629 @end example
1630
1631 @item
1632 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
1633 samples per second compensation:
1634 @example
1635 aresample=async=1000
1636 @end example
1637 @end itemize
1638
1639 @section areverse
1640
1641 Reverse an audio clip.
1642
1643 Warning: This filter requires memory to buffer the entire clip, so trimming
1644 is suggested.
1645
1646 @subsection Examples
1647
1648 @itemize
1649 @item
1650 Take the first 5 seconds of a clip, and reverse it.
1651 @example
1652 atrim=end=5,areverse
1653 @end example
1654 @end itemize
1655
1656 @section asetnsamples
1657
1658 Set the number of samples per each output audio frame.
1659
1660 The last output packet may contain a different number of samples, as
1661 the filter will flush all the remaining samples when the input audio
1662 signals its end.
1663
1664 The filter accepts the following options:
1665
1666 @table @option
1667
1668 @item nb_out_samples, n
1669 Set the number of frames per each output audio frame. The number is
1670 intended as the number of samples @emph{per each channel}.
1671 Default value is 1024.
1672
1673 @item pad, p
1674 If set to 1, the filter will pad the last audio frame with zeroes, so
1675 that the last frame will contain the same number of samples as the
1676 previous ones. Default value is 1.
1677 @end table
1678
1679 For example, to set the number of per-frame samples to 1234 and
1680 disable padding for the last frame, use:
1681 @example
1682 asetnsamples=n=1234:p=0
1683 @end example
1684
1685 @section asetrate
1686
1687 Set the sample rate without altering the PCM data.
1688 This will result in a change of speed and pitch.
1689
1690 The filter accepts the following options:
1691
1692 @table @option
1693 @item sample_rate, r
1694 Set the output sample rate. Default is 44100 Hz.
1695 @end table
1696
1697 @section ashowinfo
1698
1699 Show a line containing various information for each input audio frame.
1700 The input audio is not modified.
1701
1702 The shown line contains a sequence of key/value pairs of the form
1703 @var{key}:@var{value}.
1704
1705 The following values are shown in the output:
1706
1707 @table @option
1708 @item n
1709 The (sequential) number of the input frame, starting from 0.
1710
1711 @item pts
1712 The presentation timestamp of the input frame, in time base units; the time base
1713 depends on the filter input pad, and is usually 1/@var{sample_rate}.
1714
1715 @item pts_time
1716 The presentation timestamp of the input frame in seconds.
1717
1718 @item pos
1719 position of the frame in the input stream, -1 if this information in
1720 unavailable and/or meaningless (for example in case of synthetic audio)
1721
1722 @item fmt
1723 The sample format.
1724
1725 @item chlayout
1726 The channel layout.
1727
1728 @item rate
1729 The sample rate for the audio frame.
1730
1731 @item nb_samples
1732 The number of samples (per channel) in the frame.
1733
1734 @item checksum
1735 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
1736 audio, the data is treated as if all the planes were concatenated.
1737
1738 @item plane_checksums
1739 A list of Adler-32 checksums for each data plane.
1740 @end table
1741
1742 @anchor{astats}
1743 @section astats
1744
1745 Display time domain statistical information about the audio channels.
1746 Statistics are calculated and displayed for each audio channel and,
1747 where applicable, an overall figure is also given.
1748
1749 It accepts the following option:
1750 @table @option
1751 @item length
1752 Short window length in seconds, used for peak and trough RMS measurement.
1753 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.01 - 10]}.
1754
1755 @item metadata
1756
1757 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
1758 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
1759 disabled.
1760
1761 Available keys for each channel are:
1762 DC_offset
1763 Min_level
1764 Max_level
1765 Min_difference
1766 Max_difference
1767 Mean_difference
1768 RMS_difference
1769 Peak_level
1770 RMS_peak
1771 RMS_trough
1772 Crest_factor
1773 Flat_factor
1774 Peak_count
1775 Bit_depth
1776 Dynamic_range
1777
1778 and for Overall:
1779 DC_offset
1780 Min_level
1781 Max_level
1782 Min_difference
1783 Max_difference
1784 Mean_difference
1785 RMS_difference
1786 Peak_level
1787 RMS_level
1788 RMS_peak
1789 RMS_trough
1790 Flat_factor
1791 Peak_count
1792 Bit_depth
1793 Number_of_samples
1794
1795 For example full key look like this @code{lavfi.astats.1.DC_offset} or
1796 this @code{lavfi.astats.Overall.Peak_count}.
1797
1798 For description what each key means read below.
1799
1800 @item reset
1801 Set number of frame after which stats are going to be recalculated.
1802 Default is disabled.
1803 @end table
1804
1805 A description of each shown parameter follows:
1806
1807 @table @option
1808 @item DC offset
1809 Mean amplitude displacement from zero.
1810
1811 @item Min level
1812 Minimal sample level.
1813
1814 @item Max level
1815 Maximal sample level.
1816
1817 @item Min difference
1818 Minimal difference between two consecutive samples.
1819
1820 @item Max difference
1821 Maximal difference between two consecutive samples.
1822
1823 @item Mean difference
1824 Mean difference between two consecutive samples.
1825 The average of each difference between two consecutive samples.
1826
1827 @item RMS difference
1828 Root Mean Square difference between two consecutive samples.
1829
1830 @item Peak level dB
1831 @item RMS level dB
1832 Standard peak and RMS level measured in dBFS.
1833
1834 @item RMS peak dB
1835 @item RMS trough dB
1836 Peak and trough values for RMS level measured over a short window.
1837
1838 @item Crest factor
1839 Standard ratio of peak to RMS level (note: not in dB).
1840
1841 @item Flat factor
1842 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
1843 (i.e. either @var{Min level} or @var{Max level}).
1844
1845 @item Peak count
1846 Number of occasions (not the number of samples) that the signal attained either
1847 @var{Min level} or @var{Max level}.
1848
1849 @item Bit depth
1850 Overall bit depth of audio. Number of bits used for each sample.
1851
1852 @item Dynamic range
1853 Measured dynamic range of audio in dB.
1854 @end table
1855
1856 @section atempo
1857
1858 Adjust audio tempo.
1859
1860 The filter accepts exactly one parameter, the audio tempo. If not
1861 specified then the filter will assume nominal 1.0 tempo. Tempo must
1862 be in the [0.5, 2.0] range.
1863
1864 @subsection Examples
1865
1866 @itemize
1867 @item
1868 Slow down audio to 80% tempo:
1869 @example
1870 atempo=0.8
1871 @end example
1872
1873 @item
1874 To speed up audio to 125% tempo:
1875 @example
1876 atempo=1.25
1877 @end example
1878 @end itemize
1879
1880 @section atrim
1881
1882 Trim the input so that the output contains one continuous subpart of the input.
1883
1884 It accepts the following parameters:
1885 @table @option
1886 @item start
1887 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
1888 sample with the timestamp @var{start} will be the first sample in the output.
1889
1890 @item end
1891 Specify time of the first audio sample that will be dropped, i.e. the
1892 audio sample immediately preceding the one with the timestamp @var{end} will be
1893 the last sample in the output.
1894
1895 @item start_pts
1896 Same as @var{start}, except this option sets the start timestamp in samples
1897 instead of seconds.
1898
1899 @item end_pts
1900 Same as @var{end}, except this option sets the end timestamp in samples instead
1901 of seconds.
1902
1903 @item duration
1904 The maximum duration of the output in seconds.
1905
1906 @item start_sample
1907 The number of the first sample that should be output.
1908
1909 @item end_sample
1910 The number of the first sample that should be dropped.
1911 @end table
1912
1913 @option{start}, @option{end}, and @option{duration} are expressed as time
1914 duration specifications; see
1915 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
1916
1917 Note that the first two sets of the start/end options and the @option{duration}
1918 option look at the frame timestamp, while the _sample options simply count the
1919 samples that pass through the filter. So start/end_pts and start/end_sample will
1920 give different results when the timestamps are wrong, inexact or do not start at
1921 zero. Also note that this filter does not modify the timestamps. If you wish
1922 to have the output timestamps start at zero, insert the asetpts filter after the
1923 atrim filter.
1924
1925 If multiple start or end options are set, this filter tries to be greedy and
1926 keep all samples that match at least one of the specified constraints. To keep
1927 only the part that matches all the constraints at once, chain multiple atrim
1928 filters.
1929
1930 The defaults are such that all the input is kept. So it is possible to set e.g.
1931 just the end values to keep everything before the specified time.
1932
1933 Examples:
1934 @itemize
1935 @item
1936 Drop everything except the second minute of input:
1937 @example
1938 ffmpeg -i INPUT -af atrim=60:120
1939 @end example
1940
1941 @item
1942 Keep only the first 1000 samples:
1943 @example
1944 ffmpeg -i INPUT -af atrim=end_sample=1000
1945 @end example
1946
1947 @end itemize
1948
1949 @section bandpass
1950
1951 Apply a two-pole Butterworth band-pass filter with central
1952 frequency @var{frequency}, and (3dB-point) band-width width.
1953 The @var{csg} option selects a constant skirt gain (peak gain = Q)
1954 instead of the default: constant 0dB peak gain.
1955 The filter roll off at 6dB per octave (20dB per decade).
1956
1957 The filter accepts the following options:
1958
1959 @table @option
1960 @item frequency, f
1961 Set the filter's central frequency. Default is @code{3000}.
1962
1963 @item csg
1964 Constant skirt gain if set to 1. Defaults to 0.
1965
1966 @item width_type, t
1967 Set method to specify band-width of filter.
1968 @table @option
1969 @item h
1970 Hz
1971 @item q
1972 Q-Factor
1973 @item o
1974 octave
1975 @item s
1976 slope
1977 @item k
1978 kHz
1979 @end table
1980
1981 @item width, w
1982 Specify the band-width of a filter in width_type units.
1983
1984 @item channels, c
1985 Specify which channels to filter, by default all available are filtered.
1986 @end table
1987
1988 @subsection Commands
1989
1990 This filter supports the following commands:
1991 @table @option
1992 @item frequency, f
1993 Change bandpass frequency.
1994 Syntax for the command is : "@var{frequency}"
1995
1996 @item width_type, t
1997 Change bandpass width_type.
1998 Syntax for the command is : "@var{width_type}"
1999
2000 @item width, w
2001 Change bandpass width.
2002 Syntax for the command is : "@var{width}"
2003 @end table
2004
2005 @section bandreject
2006
2007 Apply a two-pole Butterworth band-reject filter with central
2008 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
2009 The filter roll off at 6dB per octave (20dB per decade).
2010
2011 The filter accepts the following options:
2012
2013 @table @option
2014 @item frequency, f
2015 Set the filter's central frequency. Default is @code{3000}.
2016
2017 @item width_type, t
2018 Set method to specify band-width of filter.
2019 @table @option
2020 @item h
2021 Hz
2022 @item q
2023 Q-Factor
2024 @item o
2025 octave
2026 @item s
2027 slope
2028 @item k
2029 kHz
2030 @end table
2031
2032 @item width, w
2033 Specify the band-width of a filter in width_type units.
2034
2035 @item channels, c
2036 Specify which channels to filter, by default all available are filtered.
2037 @end table
2038
2039 @subsection Commands
2040
2041 This filter supports the following commands:
2042 @table @option
2043 @item frequency, f
2044 Change bandreject frequency.
2045 Syntax for the command is : "@var{frequency}"
2046
2047 @item width_type, t
2048 Change bandreject width_type.
2049 Syntax for the command is : "@var{width_type}"
2050
2051 @item width, w
2052 Change bandreject width.
2053 Syntax for the command is : "@var{width}"
2054 @end table
2055
2056 @section bass
2057
2058 Boost or cut the bass (lower) frequencies of the audio using a two-pole
2059 shelving filter with a response similar to that of a standard
2060 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
2061
2062 The filter accepts the following options:
2063
2064 @table @option
2065 @item gain, g
2066 Give the gain at 0 Hz. Its useful range is about -20
2067 (for a large cut) to +20 (for a large boost).
2068 Beware of clipping when using a positive gain.
2069
2070 @item frequency, f
2071 Set the filter's central frequency and so can be used
2072 to extend or reduce the frequency range to be boosted or cut.
2073 The default value is @code{100} Hz.
2074
2075 @item width_type, t
2076 Set method to specify band-width of filter.
2077 @table @option
2078 @item h
2079 Hz
2080 @item q
2081 Q-Factor
2082 @item o
2083 octave
2084 @item s
2085 slope
2086 @item k
2087 kHz
2088 @end table
2089
2090 @item width, w
2091 Determine how steep is the filter's shelf transition.
2092
2093 @item channels, c
2094 Specify which channels to filter, by default all available are filtered.
2095 @end table
2096
2097 @subsection Commands
2098
2099 This filter supports the following commands:
2100 @table @option
2101 @item frequency, f
2102 Change bass frequency.
2103 Syntax for the command is : "@var{frequency}"
2104
2105 @item width_type, t
2106 Change bass width_type.
2107 Syntax for the command is : "@var{width_type}"
2108
2109 @item width, w
2110 Change bass width.
2111 Syntax for the command is : "@var{width}"
2112
2113 @item gain, g
2114 Change bass gain.
2115 Syntax for the command is : "@var{gain}"
2116 @end table
2117
2118 @section biquad
2119
2120 Apply a biquad IIR filter with the given coefficients.
2121 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
2122 are the numerator and denominator coefficients respectively.
2123 and @var{channels}, @var{c} specify which channels to filter, by default all
2124 available are filtered.
2125
2126 @subsection Commands
2127
2128 This filter supports the following commands:
2129 @table @option
2130 @item a0
2131 @item a1
2132 @item a2
2133 @item b0
2134 @item b1
2135 @item b2
2136 Change biquad parameter.
2137 Syntax for the command is : "@var{value}"
2138 @end table
2139
2140 @section bs2b
2141 Bauer stereo to binaural transformation, which improves headphone listening of
2142 stereo audio records.
2143
2144 To enable compilation of this filter you need to configure FFmpeg with
2145 @code{--enable-libbs2b}.
2146
2147 It accepts the following parameters:
2148 @table @option
2149
2150 @item profile
2151 Pre-defined crossfeed level.
2152 @table @option
2153
2154 @item default
2155 Default level (fcut=700, feed=50).
2156
2157 @item cmoy
2158 Chu Moy circuit (fcut=700, feed=60).
2159
2160 @item jmeier
2161 Jan Meier circuit (fcut=650, feed=95).
2162
2163 @end table
2164
2165 @item fcut
2166 Cut frequency (in Hz).
2167
2168 @item feed
2169 Feed level (in Hz).
2170
2171 @end table
2172
2173 @section channelmap
2174
2175 Remap input channels to new locations.
2176
2177 It accepts the following parameters:
2178 @table @option
2179 @item map
2180 Map channels from input to output. The argument is a '|'-separated list of
2181 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
2182 @var{in_channel} form. @var{in_channel} can be either the name of the input
2183 channel (e.g. FL for front left) or its index in the input channel layout.
2184 @var{out_channel} is the name of the output channel or its index in the output
2185 channel layout. If @var{out_channel} is not given then it is implicitly an
2186 index, starting with zero and increasing by one for each mapping.
2187
2188 @item channel_layout
2189 The channel layout of the output stream.
2190 @end table
2191
2192 If no mapping is present, the filter will implicitly map input channels to
2193 output channels, preserving indices.
2194
2195 @subsection Examples
2196
2197 @itemize
2198 @item
2199 For example, assuming a 5.1+downmix input MOV file,
2200 @example
2201 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
2202 @end example
2203 will create an output WAV file tagged as stereo from the downmix channels of
2204 the input.
2205
2206 @item
2207 To fix a 5.1 WAV improperly encoded in AAC's native channel order
2208 @example
2209 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
2210 @end example
2211 @end itemize
2212
2213 @section channelsplit
2214
2215 Split each channel from an input audio stream into a separate output stream.
2216
2217 It accepts the following parameters:
2218 @table @option
2219 @item channel_layout
2220 The channel layout of the input stream. The default is "stereo".
2221 @item channels
2222 A channel layout describing the channels to be extracted as separate output streams
2223 or "all" to extract each input channel as a separate stream. The default is "all".
2224
2225 Choosing channels not present in channel layout in the input will result in an error.
2226 @end table
2227
2228 @subsection Examples
2229
2230 @itemize
2231 @item
2232 For example, assuming a stereo input MP3 file,
2233 @example
2234 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
2235 @end example
2236 will create an output Matroska file with two audio streams, one containing only
2237 the left channel and the other the right channel.
2238
2239 @item
2240 Split a 5.1 WAV file into per-channel files:
2241 @example
2242 ffmpeg -i in.wav -filter_complex
2243 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
2244 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
2245 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
2246 side_right.wav
2247 @end example
2248
2249 @item
2250 Extract only LFE from a 5.1 WAV file:
2251 @example
2252 ffmpeg -i in.wav -filter_complex 'channelsplit=channel_layout=5.1:channels=LFE[LFE]'
2253 -map '[LFE]' lfe.wav
2254 @end example
2255 @end itemize
2256
2257 @section chorus
2258 Add a chorus effect to the audio.
2259
2260 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
2261
2262 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
2263 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
2264 The modulation depth defines the range the modulated delay is played before or after
2265 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
2266 sound tuned around the original one, like in a chorus where some vocals are slightly
2267 off key.
2268
2269 It accepts the following parameters:
2270 @table @option
2271 @item in_gain
2272 Set input gain. Default is 0.4.
2273
2274 @item out_gain
2275 Set output gain. Default is 0.4.
2276
2277 @item delays
2278 Set delays. A typical delay is around 40ms to 60ms.
2279
2280 @item decays
2281 Set decays.
2282
2283 @item speeds
2284 Set speeds.
2285
2286 @item depths
2287 Set depths.
2288 @end table
2289
2290 @subsection Examples
2291
2292 @itemize
2293 @item
2294 A single delay:
2295 @example
2296 chorus=0.7:0.9:55:0.4:0.25:2
2297 @end example
2298
2299 @item
2300 Two delays:
2301 @example
2302 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
2303 @end example
2304
2305 @item
2306 Fuller sounding chorus with three delays:
2307 @example
2308 chorus=0.5:0.9:50|60|40:0.4|0.32|0.3:0.25|0.4|0.3:2|2.3|1.3
2309 @end example
2310 @end itemize
2311
2312 @section compand
2313 Compress or expand the audio's dynamic range.
2314
2315 It accepts the following parameters:
2316
2317 @table @option
2318
2319 @item attacks
2320 @item decays
2321 A list of times in seconds for each channel over which the instantaneous level
2322 of the input signal is averaged to determine its volume. @var{attacks} refers to
2323 increase of volume and @var{decays} refers to decrease of volume. For most
2324 situations, the attack time (response to the audio getting louder) should be
2325 shorter than the decay time, because the human ear is more sensitive to sudden
2326 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
2327 a typical value for decay is 0.8 seconds.
2328 If specified number of attacks & decays is lower than number of channels, the last
2329 set attack/decay will be used for all remaining channels.
2330
2331 @item points
2332 A list of points for the transfer function, specified in dB relative to the
2333 maximum possible signal amplitude. Each key points list must be defined using
2334 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
2335 @code{x0/y0 x1/y1 x2/y2 ....}
2336
2337 The input values must be in strictly increasing order but the transfer function
2338 does not have to be monotonically rising. The point @code{0/0} is assumed but
2339 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
2340 function are @code{-70/-70|-60/-20|1/0}.
2341
2342 @item soft-knee
2343 Set the curve radius in dB for all joints. It defaults to 0.01.
2344
2345 @item gain
2346 Set the additional gain in dB to be applied at all points on the transfer
2347 function. This allows for easy adjustment of the overall gain.
2348 It defaults to 0.
2349
2350 @item volume
2351 Set an initial volume, in dB, to be assumed for each channel when filtering
2352 starts. This permits the user to supply a nominal level initially, so that, for
2353 example, a very large gain is not applied to initial signal levels before the
2354 companding has begun to operate. A typical value for audio which is initially
2355 quiet is -90 dB. It defaults to 0.
2356
2357 @item delay
2358 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
2359 delayed before being fed to the volume adjuster. Specifying a delay
2360 approximately equal to the attack/decay times allows the filter to effectively
2361 operate in predictive rather than reactive mode. It defaults to 0.
2362
2363 @end table
2364
2365 @subsection Examples
2366
2367 @itemize
2368 @item
2369 Make music with both quiet and loud passages suitable for listening to in a
2370 noisy environment:
2371 @example
2372 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
2373 @end example
2374
2375 Another example for audio with whisper and explosion parts:
2376 @example
2377 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
2378 @end example
2379
2380 @item
2381 A noise gate for when the noise is at a lower level than the signal:
2382 @example
2383 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
2384 @end example
2385
2386 @item
2387 Here is another noise gate, this time for when the noise is at a higher level
2388 than the signal (making it, in some ways, similar to squelch):
2389 @example
2390 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
2391 @end example
2392
2393 @item
2394 2:1 compression starting at -6dB:
2395 @example
2396 compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
2397 @end example
2398
2399 @item
2400 2:1 compression starting at -9dB:
2401 @example
2402 compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
2403 @end example
2404
2405 @item
2406 2:1 compression starting at -12dB:
2407 @example
2408 compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
2409 @end example
2410
2411 @item
2412 2:1 compression starting at -18dB:
2413 @example
2414 compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
2415 @end example
2416
2417 @item
2418 3:1 compression starting at -15dB:
2419 @example
2420 compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
2421 @end example
2422
2423 @item
2424 Compressor/Gate:
2425 @example
2426 compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
2427 @end example
2428
2429 @item
2430 Expander:
2431 @example
2432 compand=attacks=0:points=-80/-169|-54/-80|-49.5/-64.6|-41.1/-41.1|-25.8/-15|-10.8/-4.5|0/0|20/8.3
2433 @end example
2434
2435 @item
2436 Hard limiter at -6dB:
2437 @example
2438 compand=attacks=0:points=-80/-80|-6/-6|20/-6
2439 @end example
2440
2441 @item
2442 Hard limiter at -12dB:
2443 @example
2444 compand=attacks=0:points=-80/-80|-12/-12|20/-12
2445 @end example
2446
2447 @item
2448 Hard noise gate at -35 dB:
2449 @example
2450 compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
2451 @end example
2452
2453 @item
2454 Soft limiter:
2455 @example
2456 compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
2457 @end example
2458 @end itemize
2459
2460 @section compensationdelay
2461
2462 Compensation Delay Line is a metric based delay to compensate differing
2463 positions of microphones or speakers.
2464
2465 For example, you have recorded guitar with two microphones placed in
2466 different location. Because the front of sound wave has fixed speed in
2467 normal conditions, the phasing of microphones can vary and depends on
2468 their location and interposition. The best sound mix can be achieved when
2469 these microphones are in phase (synchronized). Note that distance of
2470 ~30 cm between microphones makes one microphone to capture signal in
2471 antiphase to another microphone. That makes the final mix sounding moody.
2472 This filter helps to solve phasing problems by adding different delays
2473 to each microphone track and make them synchronized.
2474
2475 The best result can be reached when you take one track as base and
2476 synchronize other tracks one by one with it.
2477 Remember that synchronization/delay tolerance depends on sample rate, too.
2478 Higher sample rates will give more tolerance.
2479
2480 It accepts the following parameters:
2481
2482 @table @option
2483 @item mm
2484 Set millimeters distance. This is compensation distance for fine tuning.
2485 Default is 0.
2486
2487 @item cm
2488 Set cm distance. This is compensation distance for tightening distance setup.
2489 Default is 0.
2490
2491 @item m
2492 Set meters distance. This is compensation distance for hard distance setup.
2493 Default is 0.
2494
2495 @item dry
2496 Set dry amount. Amount of unprocessed (dry) signal.
2497 Default is 0.
2498
2499 @item wet
2500 Set wet amount. Amount of processed (wet) signal.
2501 Default is 1.
2502
2503 @item temp
2504 Set temperature degree in Celsius. This is the temperature of the environment.
2505 Default is 20.
2506 @end table
2507
2508 @section crossfeed
2509 Apply headphone crossfeed filter.
2510
2511 Crossfeed is the process of blending the left and right channels of stereo
2512 audio recording.
2513 It is mainly used to reduce extreme stereo separation of low frequencies.
2514
2515 The intent is to produce more speaker like sound to the listener.
2516
2517 The filter accepts the following options:
2518
2519 @table @option
2520 @item strength
2521 Set strength of crossfeed. Default is 0.2. Allowed range is from 0 to 1.
2522 This sets gain of low shelf filter for side part of stereo image.
2523 Default is -6dB. Max allowed is -30db when strength is set to 1.
2524
2525 @item range
2526 Set soundstage wideness. Default is 0.5. Allowed range is from 0 to 1.
2527 This sets cut off frequency of low shelf filter. Default is cut off near
2528 1550 Hz. With range set to 1 cut off frequency is set to 2100 Hz.
2529
2530 @item level_in
2531 Set input gain. Default is 0.9.
2532
2533 @item level_out
2534 Set output gain. Default is 1.
2535 @end table
2536
2537 @section crystalizer
2538 Simple algorithm to expand audio dynamic range.
2539
2540 The filter accepts the following options:
2541
2542 @table @option
2543 @item i
2544 Sets the intensity of effect (default: 2.0). Must be in range between 0.0
2545 (unchanged sound) to 10.0 (maximum effect).
2546
2547 @item c
2548 Enable clipping. By default is enabled.
2549 @end table
2550
2551 @section dcshift
2552 Apply a DC shift to the audio.
2553
2554 This can be useful to remove a DC offset (caused perhaps by a hardware problem
2555 in the recording chain) from the audio. The effect of a DC offset is reduced
2556 headroom and hence volume. The @ref{astats} filter can be used to determine if
2557 a signal has a DC offset.
2558
2559 @table @option
2560 @item shift
2561 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
2562 the audio.
2563
2564 @item limitergain
2565 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
2566 used to prevent clipping.
2567 @end table
2568
2569 @section drmeter
2570 Measure audio dynamic range.
2571
2572 DR values of 14 and higher is found in very dynamic material. DR of 8 to 13
2573 is found in transition material. And anything less that 8 have very poor dynamics
2574 and is very compressed.
2575
2576 The filter accepts the following options:
2577
2578 @table @option
2579 @item length
2580 Set window length in seconds used to split audio into segments of equal length.
2581 Default is 3 seconds.
2582 @end table
2583
2584 @section dynaudnorm
2585 Dynamic Audio Normalizer.
2586
2587 This filter applies a certain amount of gain to the input audio in order
2588 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
2589 contrast to more "simple" normalization algorithms, the Dynamic Audio
2590 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
2591 This allows for applying extra gain to the "quiet" sections of the audio
2592 while avoiding distortions or clipping the "loud" sections. In other words:
2593 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
2594 sections, in the sense that the volume of each section is brought to the
2595 same target level. Note, however, that the Dynamic Audio Normalizer achieves
2596 this goal *without* applying "dynamic range compressing". It will retain 100%
2597 of the dynamic range *within* each section of the audio file.
2598
2599 @table @option
2600 @item f
2601 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
2602 Default is 500 milliseconds.
2603 The Dynamic Audio Normalizer processes the input audio in small chunks,
2604 referred to as frames. This is required, because a peak magnitude has no
2605 meaning for just a single sample value. Instead, we need to determine the
2606 peak magnitude for a contiguous sequence of sample values. While a "standard"
2607 normalizer would simply use the peak magnitude of the complete file, the
2608 Dynamic Audio Normalizer determines the peak magnitude individually for each
2609 frame. The length of a frame is specified in milliseconds. By default, the
2610 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
2611 been found to give good results with most files.
2612 Note that the exact frame length, in number of samples, will be determined
2613 automatically, based on the sampling rate of the individual input audio file.
2614
2615 @item g
2616 Set the Gaussian filter window size. In range from 3 to 301, must be odd
2617 number. Default is 31.
2618 Probably the most important parameter of the Dynamic Audio Normalizer is the
2619 @code{window size} of the Gaussian smoothing filter. The filter's window size
2620 is specified in frames, centered around the current frame. For the sake of
2621 simplicity, this must be an odd number. Consequently, the default value of 31
2622 takes into account the current frame, as well as the 15 preceding frames and
2623 the 15 subsequent frames. Using a larger window results in a stronger
2624 smoothing effect and thus in less gain variation, i.e. slower gain
2625 adaptation. Conversely, using a smaller window results in a weaker smoothing
2626 effect and thus in more gain variation, i.e. faster gain adaptation.
2627 In other words, the more you increase this value, the more the Dynamic Audio
2628 Normalizer will behave like a "traditional" normalization filter. On the
2629 contrary, the more you decrease this value, the more the Dynamic Audio
2630 Normalizer will behave like a dynamic range compressor.
2631
2632 @item p
2633 Set the target peak value. This specifies the highest permissible magnitude
2634 level for the normalized audio input. This filter will try to approach the
2635 target peak magnitude as closely as possible, but at the same time it also
2636 makes sure that the normalized signal will never exceed the peak magnitude.
2637 A frame's maximum local gain factor is imposed directly by the target peak
2638 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
2639 It is not recommended to go above this value.
2640
2641 @item m
2642 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
2643 The Dynamic Audio Normalizer determines the maximum possible (local) gain
2644 factor for each input frame, i.e. the maximum gain factor that does not
2645 result in clipping or distortion. The maximum gain factor is determined by
2646 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
2647 additionally bounds the frame's maximum gain factor by a predetermined
2648 (global) maximum gain factor. This is done in order to avoid excessive gain
2649 factors in "silent" or almost silent frames. By default, the maximum gain
2650 factor is 10.0, For most inputs the default value should be sufficient and
2651 it usually is not recommended to increase this value. Though, for input
2652 with an extremely low overall volume level, it may be necessary to allow even
2653 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
2654 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
2655 Instead, a "sigmoid" threshold function will be applied. This way, the
2656 gain factors will smoothly approach the threshold value, but never exceed that
2657 value.
2658
2659 @item r
2660 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
2661 By default, the Dynamic Audio Normalizer performs "peak" normalization.
2662 This means that the maximum local gain factor for each frame is defined
2663 (only) by the frame's highest magnitude sample. This way, the samples can
2664 be amplified as much as possible without exceeding the maximum signal
2665 level, i.e. without clipping. Optionally, however, the Dynamic Audio
2666 Normalizer can also take into account the frame's root mean square,
2667 abbreviated RMS. In electrical engineering, the RMS is commonly used to
2668 determine the power of a time-varying signal. It is therefore considered
2669 that the RMS is a better approximation of the "perceived loudness" than
2670 just looking at the signal's peak magnitude. Consequently, by adjusting all
2671 frames to a constant RMS value, a uniform "perceived loudness" can be
2672 established. If a target RMS value has been specified, a frame's local gain
2673 factor is defined as the factor that would result in exactly that RMS value.
2674 Note, however, that the maximum local gain factor is still restricted by the
2675 frame's highest magnitude sample, in order to prevent clipping.
2676
2677 @item n
2678 Enable channels coupling. By default is enabled.
2679 By default, the Dynamic Audio Normalizer will amplify all channels by the same
2680 amount. This means the same gain factor will be applied to all channels, i.e.
2681 the maximum possible gain factor is determined by the "loudest" channel.
2682 However, in some recordings, it may happen that the volume of the different
2683 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
2684 In this case, this option can be used to disable the channel coupling. This way,
2685 the gain factor will be determined independently for each channel, depending
2686 only on the individual channel's highest magnitude sample. This allows for
2687 harmonizing the volume of the different channels.
2688
2689 @item c
2690 Enable DC bias correction. By default is disabled.
2691 An audio signal (in the time domain) is a sequence of sample values.
2692 In the Dynamic Audio Normalizer these sample values are represented in the
2693 -1.0 to 1.0 range, regardless of the original input format. Normally, the
2694 audio signal, or "waveform", should be centered around the zero point.
2695 That means if we calculate the mean value of all samples in a file, or in a
2696 single frame, then the result should be 0.0 or at least very close to that
2697 value. If, however, there is a significant deviation of the mean value from
2698 0.0, in either positive or negative direction, this is referred to as a
2699 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
2700 Audio Normalizer provides optional DC bias correction.
2701 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
2702 the mean value, or "DC correction" offset, of each input frame and subtract
2703 that value from all of the frame's sample values which ensures those samples
2704 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
2705 boundaries, the DC correction offset values will be interpolated smoothly
2706 between neighbouring frames.
2707
2708 @item b
2709 Enable alternative boundary mode. By default is disabled.
2710 The Dynamic Audio Normalizer takes into account a certain neighbourhood
2711 around each frame. This includes the preceding frames as well as the
2712 subsequent frames. However, for the "boundary" frames, located at the very
2713 beginning and at the very end of the audio file, not all neighbouring
2714 frames are available. In particular, for the first few frames in the audio
2715 file, the preceding frames are not known. And, similarly, for the last few
2716 frames in the audio file, the subsequent frames are not known. Thus, the
2717 question arises which gain factors should be assumed for the missing frames
2718 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
2719 to deal with this situation. The default boundary mode assumes a gain factor
2720 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
2721 "fade out" at the beginning and at the end of the input, respectively.
2722
2723 @item s
2724 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
2725 By default, the Dynamic Audio Normalizer does not apply "traditional"
2726 compression. This means that signal peaks will not be pruned and thus the
2727 full dynamic range will be retained within each local neighbourhood. However,
2728 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
2729 normalization algorithm with a more "traditional" compression.
2730 For this purpose, the Dynamic Audio Normalizer provides an optional compression
2731 (thresholding) function. If (and only if) the compression feature is enabled,
2732 all input frames will be processed by a soft knee thresholding function prior
2733 to the actual normalization process. Put simply, the thresholding function is
2734 going to prune all samples whose magnitude exceeds a certain threshold value.
2735 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
2736 value. Instead, the threshold value will be adjusted for each individual
2737 frame.
2738 In general, smaller parameters result in stronger compression, and vice versa.
2739 Values below 3.0 are not recommended, because audible distortion may appear.
2740 @end table
2741
2742 @section earwax
2743
2744 Make audio easier to listen to on headphones.
2745
2746 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
2747 so that when listened to on headphones the stereo image is moved from
2748 inside your head (standard for headphones) to outside and in front of
2749 the listener (standard for speakers).
2750
2751 Ported from SoX.
2752
2753 @section equalizer
2754
2755 Apply a two-pole peaking equalisation (EQ) filter. With this
2756 filter, the signal-level at and around a selected frequency can
2757 be increased or decreased, whilst (unlike bandpass and bandreject
2758 filters) that at all other frequencies is unchanged.
2759
2760 In order to produce complex equalisation curves, this filter can
2761 be given several times, each with a different central frequency.
2762
2763 The filter accepts the following options:
2764
2765 @table @option
2766 @item frequency, f
2767 Set the filter's central frequency in Hz.
2768
2769 @item width_type, t
2770 Set method to specify band-width of filter.
2771 @table @option
2772 @item h
2773 Hz
2774 @item q
2775 Q-Factor
2776 @item o
2777 octave
2778 @item s
2779 slope
2780 @item k
2781 kHz
2782 @end table
2783
2784 @item width, w
2785 Specify the band-width of a filter in width_type units.
2786
2787 @item gain, g
2788 Set the required gain or attenuation in dB.
2789 Beware of clipping when using a positive gain.
2790
2791 @item channels, c
2792 Specify which channels to filter, by default all available are filtered.
2793 @end table
2794
2795 @subsection Examples
2796 @itemize
2797 @item
2798 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
2799 @example
2800 equalizer=f=1000:t=h:width=200:g=-10
2801 @end example
2802
2803 @item
2804 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
2805 @example
2806 equalizer=f=1000:t=q:w=1:g=2,equalizer=f=100:t=q:w=2:g=-5
2807 @end example
2808 @end itemize
2809
2810 @subsection Commands
2811
2812 This filter supports the following commands:
2813 @table @option
2814 @item frequency, f
2815 Change equalizer frequency.
2816 Syntax for the command is : "@var{frequency}"
2817
2818 @item width_type, t
2819 Change equalizer width_type.
2820 Syntax for the command is : "@var{width_type}"
2821
2822 @item width, w
2823 Change equalizer width.
2824 Syntax for the command is : "@var{width}"
2825
2826 @item gain, g
2827 Change equalizer gain.
2828 Syntax for the command is : "@var{gain}"
2829 @end table
2830
2831 @section extrastereo
2832
2833 Linearly increases the difference between left and right channels which
2834 adds some sort of "live" effect to playback.
2835
2836 The filter accepts the following options:
2837
2838 @table @option
2839 @item m
2840 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
2841 (average of both channels), with 1.0 sound will be unchanged, with
2842 -1.0 left and right channels will be swapped.
2843
2844 @item c
2845 Enable clipping. By default is enabled.
2846 @end table
2847
2848 @section firequalizer
2849 Apply FIR Equalization using arbitrary frequency response.
2850
2851 The filter accepts the following option:
2852
2853 @table @option
2854 @item gain
2855 Set gain curve equation (in dB). The expression can contain variables:
2856 @table @option
2857 @item f
2858 the evaluated frequency
2859 @item sr
2860 sample rate
2861 @item ch
2862 channel number, set to 0 when multichannels evaluation is disabled
2863 @item chid
2864 channel id, see libavutil/channel_layout.h, set to the first channel id when
2865 multichannels evaluation is disabled
2866 @item chs
2867 number of channels
2868 @item chlayout
2869 channel_layout, see libavutil/channel_layout.h
2870
2871 @end table
2872 and functions:
2873 @table @option
2874 @item gain_interpolate(f)
2875 interpolate gain on frequency f based on gain_entry
2876 @item cubic_interpolate(f)
2877 same as gain_interpolate, but smoother
2878 @end table
2879 This option is also available as command. Default is @code{gain_interpolate(f)}.
2880
2881 @item gain_entry
2882 Set gain entry for gain_interpolate function. The expression can
2883 contain functions:
2884 @table @option
2885 @item entry(f, g)
2886 store gain entry at frequency f with value g
2887 @end table
2888 This option is also available as command.
2889
2890 @item delay
2891 Set filter delay in seconds. Higher value means more accurate.
2892 Default is @code{0.01}.
2893
2894 @item accuracy
2895 Set filter accuracy in Hz. Lower value means more accurate.
2896 Default is @code{5}.
2897
2898 @item wfunc
2899 Set window function. Acceptable values are:
2900 @table @option
2901 @item rectangular
2902 rectangular window, useful when gain curve is already smooth
2903 @item hann
2904 hann window (default)
2905 @item hamming
2906 hamming window
2907 @item blackman
2908 blackman window
2909 @item nuttall3
2910 3-terms continuous 1st derivative nuttall window
2911 @item mnuttall3
2912 minimum 3-terms discontinuous nuttall window
2913 @item nuttall
2914 4-terms continuous 1st derivative nuttall window
2915 @item bnuttall
2916 minimum 4-terms discontinuous nuttall (blackman-nuttall) window
2917 @item bharris
2918 blackman-harris window
2919 @item tukey
2920 tukey window
2921 @end table
2922
2923 @item fixed
2924 If enabled, use fixed number of audio samples. This improves speed when
2925 filtering with large delay. Default is disabled.
2926
2927 @item multi
2928 Enable multichannels evaluation on gain. Default is disabled.
2929
2930 @item zero_phase
2931 Enable zero phase mode by subtracting timestamp to compensate delay.
2932 Default is disabled.
2933
2934 @item scale
2935 Set scale used by gain. Acceptable values are:
2936 @table @option
2937 @item linlin
2938 linear frequency, linear gain
2939 @item linlog
2940 linear frequency, logarithmic (in dB) gain (default)
2941 @item loglin
2942 logarithmic (in octave scale where 20 Hz is 0) frequency, linear gain
2943 @item loglog
2944 logarithmic frequency, logarithmic gain
2945 @end table
2946
2947 @item dumpfile
2948 Set file for dumping, suitable for gnuplot.
2949
2950 @item dumpscale
2951 Set scale for dumpfile. Acceptable values are same with scale option.
2952 Default is linlog.
2953
2954 @item fft2
2955 Enable 2-channel convolution using complex FFT. This improves speed significantly.
2956 Default is disabled.
2957
2958 @item min_phase
2959 Enable minimum phase impulse response. Default is disabled.
2960 @end table
2961
2962 @subsection Examples
2963 @itemize
2964 @item
2965 lowpass at 1000 Hz:
2966 @example
2967 firequalizer=gain='if(lt(f,1000), 0, -INF)'
2968 @end example
2969 @item
2970 lowpass at 1000 Hz with gain_entry:
2971 @example
2972 firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
2973 @end example
2974 @item
2975 custom equalization:
2976 @example
2977 firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
2978 @end example
2979 @item
2980 higher delay with zero phase to compensate delay:
2981 @example
2982 firequalizer=delay=0.1:fixed=on:zero_phase=on
2983 @end example
2984 @item
2985 lowpass on left channel, highpass on right channel:
2986 @example
2987 firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
2988 :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
2989 @end example
2990 @end itemize
2991
2992 @section flanger
2993 Apply a flanging effect to the audio.
2994
2995 The filter accepts the following options:
2996
2997 @table @option
2998 @item delay
2999 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
3000
3001 @item depth
3002 Set added sweep delay in milliseconds. Range from 0 to 10. Default value is 2.
3003
3004 @item regen
3005 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
3006 Default value is 0.
3007
3008 @item width
3009 Set percentage of delayed signal mixed with original. Range from 0 to 100.
3010 Default value is 71.
3011
3012 @item speed
3013 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
3014
3015 @item shape
3016 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
3017 Default value is @var{sinusoidal}.
3018
3019 @item phase
3020 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
3021 Default value is 25.
3022
3023 @item interp
3024 Set delay-line interpolation, @var{linear} or @var{quadratic}.
3025 Default is @var{linear}.
3026 @end table
3027
3028 @section haas
3029 Apply Haas effect to audio.
3030
3031 Note that this makes most sense to apply on mono signals.
3032 With this filter applied to mono signals it give some directionality and
3033 stretches its stereo image.
3034
3035 The filter accepts the following options:
3036
3037 @table @option
3038 @item level_in
3039 Set input level. By default is @var{1}, or 0dB
3040
3041 @item level_out
3042 Set output level. By default is @var{1}, or 0dB.
3043
3044 @item side_gain
3045 Set gain applied to side part of signal. By default is @var{1}.
3046
3047 @item middle_source
3048 Set kind of middle source. Can be one of the following:
3049
3050 @table @samp
3051 @item left
3052 Pick left channel.
3053
3054 @item right
3055 Pick right channel.
3056
3057 @item mid
3058 Pick middle part signal of stereo image.
3059
3060 @item side
3061 Pick side part signal of stereo image.
3062 @end table
3063
3064 @item middle_phase
3065 Change middle phase. By default is disabled.
3066
3067 @item left_delay
3068 Set left channel delay. By default is @var{2.05} milliseconds.
3069
3070 @item left_balance
3071 Set left channel balance. By default is @var{-1}.
3072
3073 @item left_gain
3074 Set left channel gain. By default is @var{1}.
3075
3076 @item left_phase
3077 Change left phase. By default is disabled.
3078
3079 @item right_delay
3080 Set right channel delay. By defaults is @var{2.12} milliseconds.
3081
3082 @item right_balance
3083 Set right channel balance. By default is @var{1}.
3084
3085 @item right_gain
3086 Set right channel gain. By default is @var{1}.
3087
3088 @item right_phase
3089 Change right phase. By default is enabled.
3090 @end table
3091
3092 @section hdcd
3093
3094 Decodes High Definition Compatible Digital (HDCD) data. A 16-bit PCM stream with
3095 embedded HDCD codes is expanded into a 20-bit PCM stream.
3096
3097 The filter supports the Peak Extend and Low-level Gain Adjustment features
3098 of HDCD, and detects the Transient Filter flag.
3099
3100 @example
3101 ffmpeg -i HDCD16.flac -af hdcd OUT24.flac
3102 @end example
3103
3104 When using the filter with wav, note the default encoding for wav is 16-bit,
3105 so the resulting 20-bit stream will be truncated back to 16-bit. Use something
3106 like @command{-acodec pcm_s24le} after the filter to get 24-bit PCM output.
3107 @example
3108 ffmpeg -i HDCD16.wav -af hdcd OUT16.wav
3109 ffmpeg -i HDCD16.wav -af hdcd -c:a pcm_s24le OUT24.wav
3110 @end example
3111
3112 The filter accepts the following options:
3113
3114 @table @option
3115 @item disable_autoconvert
3116 Disable any automatic format conversion or resampling in the filter graph.
3117
3118 @item process_stereo
3119 Process the stereo channels together. If target_gain does not match between
3120 channels, consider it invalid and use the last valid target_gain.
3121
3122 @item cdt_ms
3123 Set the code detect timer period in ms.
3124
3125 @item force_pe
3126 Always extend peaks above -3dBFS even if PE isn't signaled.
3127
3128 @item analyze_mode
3129 Replace audio with a solid tone and adjust the amplitude to signal some
3130 specific aspect of the decoding process. The output file can be loaded in
3131 an audio editor alongside the original to aid analysis.
3132
3133 @code{analyze_mode=pe:force_pe=true} can be used to see all samples above the PE level.
3134
3135 Modes are:
3136 @table @samp
3137 @item 0, off
3138 Disabled
3139 @item 1, lle
3140 Gain adjustment level at each sample
3141 @item 2, pe
3142 Samples where peak extend occurs
3143 @item 3, cdt
3144 Samples where the code detect timer is active
3145 @item 4, tgm
3146 Samples where the target gain does not match between channels
3147 @end table
3148 @end table
3149
3150 @section headphone
3151
3152 Apply head-related transfer functions (HRTFs) to create virtual
3153 loudspeakers around the user for binaural listening via headphones.
3154 The HRIRs are provided via additional streams, for each channel
3155 one stereo input stream is needed.
3156
3157 The filter accepts the following options:
3158
3159 @table @option
3160 @item map
3161 Set mapping of input streams for convolution.
3162 The argument is a '|'-separated list of channel names in order as they
3163 are given as additional stream inputs for filter.
3164 This also specify number of input streams. Number of input streams
3165 must be not less than number of channels in first stream plus one.
3166
3167 @item gain
3168 Set gain applied to audio. Value is in dB. Default is 0.
3169
3170 @item type
3171 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
3172 processing audio in time domain which is slow.
3173 @var{freq} is processing audio in frequency domain which is fast.
3174 Default is @var{freq}.
3175
3176 @item lfe
3177 Set custom gain for LFE channels. Value is in dB. Default is 0.
3178 @end table
3179
3180 @subsection Examples
3181
3182 @itemize
3183 @item
3184 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
3185 each amovie filter use stereo file with IR coefficients as input.
3186 The files give coefficients for each position of virtual loudspeaker:
3187 @example
3188 ffmpeg -i input.wav -lavfi-complex "amovie=azi_270_ele_0_DFC.wav[sr],amovie=azi_90_ele_0_DFC.wav[sl],amovie=azi_225_ele_0_DFC.wav[br],amovie=azi_135_ele_0_DFC.wav[bl],amovie=azi_0_ele_0_DFC.wav,asplit[fc][lfe],amovie=azi_35_ele_0_DFC.wav[fl],amovie=azi_325_ele_0_DFC.wav[fr],[a:0][fl][fr][fc][lfe][bl][br][sl][sr]headphone=FL|FR|FC|LFE|BL|BR|SL|SR"
3189 output.wav
3190 @end example
3191 @end itemize
3192
3193 @section highpass
3194
3195 Apply a high-pass filter with 3dB point frequency.
3196 The filter can be either single-pole, or double-pole (the default).
3197 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
3198
3199 The filter accepts the following options:
3200
3201 @table @option
3202 @item frequency, f
3203 Set frequency in Hz. Default is 3000.
3204
3205 @item poles, p
3206 Set number of poles. Default is 2.
3207
3208 @item width_type, t
3209 Set method to specify band-width of filter.
3210 @table @option
3211 @item h
3212 Hz
3213 @item q
3214 Q-Factor
3215 @item o
3216 octave
3217 @item s
3218 slope
3219 @item k
3220 kHz
3221 @end table
3222
3223 @item width, w
3224 Specify the band-width of a filter in width_type units.
3225 Applies only to double-pole filter.
3226 The default is 0.707q and gives a Butterworth response.
3227
3228 @item channels, c
3229 Specify which channels to filter, by default all available are filtered.
3230 @end table
3231
3232 @subsection Commands
3233
3234 This filter supports the following commands:
3235 @table @option
3236 @item frequency, f
3237 Change highpass frequency.
3238 Syntax for the command is : "@var{frequency}"
3239
3240 @item width_type, t
3241 Change highpass width_type.
3242 Syntax for the command is : "@var{width_type}"
3243
3244 @item width, w
3245 Change highpass width.
3246 Syntax for the command is : "@var{width}"
3247 @end table
3248
3249 @section join
3250
3251 Join multiple input streams into one multi-channel stream.
3252
3253 It accepts the following parameters:
3254 @table @option
3255
3256 @item inputs
3257 The number of input streams. It defaults to 2.
3258
3259 @item channel_layout
3260 The desired output channel layout. It defaults to stereo.
3261
3262 @item map
3263 Map channels from inputs to output. The argument is a '|'-separated list of
3264 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
3265 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
3266 can be either the name of the input channel (e.g. FL for front left) or its
3267 index in the specified input stream. @var{out_channel} is the name of the output
3268 channel.
3269 @end table
3270
3271 The filter will attempt to guess the mappings when they are not specified
3272 explicitly. It does so by first trying to find an unused matching input channel
3273 and if that fails it picks the first unused input channel.
3274
3275 Join 3 inputs (with properly set channel layouts):
3276 @example
3277 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
3278 @end example
3279
3280 Build a 5.1 output from 6 single-channel streams:
3281 @example
3282 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
3283 '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'
3284 out
3285 @end example
3286
3287 @section ladspa
3288
3289 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
3290
3291 To enable compilation of this filter you need to configure FFmpeg with
3292 @code{--enable-ladspa}.
3293
3294 @table @option
3295 @item file, f
3296 Specifies the name of LADSPA plugin library to load. If the environment
3297 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
3298 each one of the directories specified by the colon separated list in
3299 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
3300 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
3301 @file{/usr/lib/ladspa/}.
3302
3303 @item plugin, p
3304 Specifies the plugin within the library. Some libraries contain only
3305 one plugin, but others contain many of them. If this is not set filter
3306 will list all available plugins within the specified library.
3307
3308 @item controls, c
3309 Set the '|' separated list of controls which are zero or more floating point
3310 values that determine the behavior of the loaded plugin (for example delay,
3311 threshold or gain).
3312 Controls need to be defined using the following syntax:
3313 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
3314 @var{valuei} is the value set on the @var{i}-th control.
3315 Alternatively they can be also defined using the following syntax:
3316 @var{value0}|@var{value1}|@var{value2}|..., where
3317 @var{valuei} is the value set on the @var{i}-th control.
3318 If @option{controls} is set to @code{help}, all available controls and
3319 their valid ranges are printed.
3320
3321 @item sample_rate, s
3322 Specify the sample rate, default to 44100. Only used if plugin have
3323 zero inputs.
3324
3325 @item nb_samples, n
3326 Set the number of samples per channel per each output frame, default
3327 is 1024. Only used if plugin have zero inputs.
3328
3329 @item duration, d
3330 Set the minimum duration of the sourced audio. See
3331 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
3332 for the accepted syntax.
3333 Note that the resulting duration may be greater than the specified duration,
3334 as the generated audio is always cut at the end of a complete frame.
3335 If not specified, or the expressed duration is negative, the audio is
3336 supposed to be generated forever.
3337 Only used if plugin have zero inputs.
3338
3339 @end table
3340
3341 @subsection Examples
3342
3343 @itemize
3344 @item
3345 List all available plugins within amp (LADSPA example plugin) library:
3346 @example
3347 ladspa=file=amp
3348 @end example
3349
3350 @item
3351 List all available controls and their valid ranges for @code{vcf_notch}
3352 plugin from @code{VCF} library:
3353 @example
3354 ladspa=f=vcf:p=vcf_notch:c=help
3355 @end example
3356
3357 @item
3358 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
3359 plugin library:
3360 @example
3361 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
3362 @end example
3363
3364 @item
3365 Add reverberation to the audio using TAP-plugins
3366 (Tom's Audio Processing plugins):
3367 @example
3368 ladspa=file=tap_reverb:tap_reverb
3369 @end example
3370
3371 @item
3372 Generate white noise, with 0.2 amplitude:
3373 @example
3374 ladspa=file=cmt:noise_source_white:c=c0=.2
3375 @end example
3376
3377 @item
3378 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
3379 @code{C* Audio Plugin Suite} (CAPS) library:
3380 @example
3381 ladspa=file=caps:Click:c=c1=20'
3382 @end example
3383
3384 @item
3385 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
3386 @example
3387 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
3388 @end example
3389
3390 @item
3391 Increase volume by 20dB using fast lookahead limiter from Steve Harris
3392 @code{SWH Plugins} collection:
3393 @example
3394 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
3395 @end example
3396
3397 @item
3398 Attenuate low frequencies using Multiband EQ from Steve Harris
3399 @code{SWH Plugins} collection:
3400 @example
3401 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
3402 @end example
3403
3404 @item
3405 Reduce stereo image using @code{Narrower} from the @code{C* Audio Plugin Suite}
3406 (CAPS) library:
3407 @example
3408 ladspa=caps:Narrower
3409 @end example
3410
3411 @item
3412 Another white noise, now using @code{C* Audio Plugin Suite} (CAPS) library:
3413 @example
3414 ladspa=caps:White:.2
3415 @end example
3416
3417 @item
3418 Some fractal noise, using @code{C* Audio Plugin Suite} (CAPS) library:
3419 @example
3420 ladspa=caps:Fractal:c=c1=1
3421 @end example
3422
3423 @item
3424 Dynamic volume normalization using @code{VLevel} plugin:
3425 @example
3426 ladspa=vlevel-ladspa:vlevel_mono
3427 @end example
3428 @end itemize
3429
3430 @subsection Commands
3431
3432 This filter supports the following commands:
3433 @table @option
3434 @item cN
3435 Modify the @var{N}-th control value.
3436
3437 If the specified value is not valid, it is ignored and prior one is kept.
3438 @end table
3439
3440 @section loudnorm
3441
3442 EBU R128 loudness normalization. Includes both dynamic and linear normalization modes.
3443 Support for both single pass (livestreams, files) and double pass (files) modes.
3444 This algorithm can target IL, LRA, and maximum true peak. To accurately detect true peaks,
3445 the audio stream will be upsampled to 192 kHz unless the normalization mode is linear.
3446 Use the @code{-ar} option or @code{aresample} filter to explicitly set an output sample rate.
3447
3448 The filter accepts the following options:
3449
3450 @table @option
3451 @item I, i
3452 Set integrated loudness target.
3453 Range is -70.0 - -5.0. Default value is -24.0.
3454
3455 @item LRA, lra
3456 Set loudness range target.
3457 Range is 1.0 - 20.0. Default value is 7.0.
3458
3459 @item TP, tp
3460 Set maximum true peak.
3461 Range is -9.0 - +0.0. Default value is -2.0.
3462
3463 @item measured_I, measured_i
3464 Measured IL of input file.
3465 Range is -99.0 - +0.0.
3466
3467 @item measured_LRA, measured_lra
3468 Measured LRA of input file.
3469 Range is  0.0 - 99.0.
3470
3471 @item measured_TP, measured_tp
3472 Measured true peak of input file.
3473 Range is  -99.0 - +99.0.
3474
3475 @item measured_thresh
3476 Measured threshold of input file.
3477 Range is -99.0 - +0.0.
3478
3479 @item offset
3480 Set offset gain. Gain is applied before the true-peak limiter.
3481 Range is  -99.0 - +99.0. Default is +0.0.
3482
3483 @item linear
3484 Normalize linearly if possible.
3485 measured_I, measured_LRA, measured_TP, and measured_thresh must also
3486 to be specified in order to use this mode.
3487 Options are true or false. Default is true.
3488
3489 @item dual_mono
3490 Treat mono input files as "dual-mono". If a mono file is intended for playback
3491 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
3492 If set to @code{true}, this option will compensate for this effect.
3493 Multi-channel input files are not affected by this option.
3494 Options are true or false. Default is false.
3495
3496 @item print_format
3497 Set print format for stats. Options are summary, json, or none.
3498 Default value is none.
3499 @end table
3500
3501 @section lowpass
3502
3503 Apply a low-pass filter with 3dB point frequency.
3504 The filter can be either single-pole or double-pole (the default).
3505 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
3506
3507 The filter accepts the following options:
3508
3509 @table @option
3510 @item frequency, f
3511 Set frequency in Hz. Default is 500.
3512
3513 @item poles, p
3514 Set number of poles. Default is 2.
3515
3516 @item width_type, t
3517 Set method to specify band-width of filter.
3518 @table @option
3519 @item h
3520 Hz
3521 @item q
3522 Q-Factor
3523 @item o
3524 octave
3525 @item s
3526 slope
3527 @item k
3528 kHz
3529 @end table
3530
3531 @item width, w
3532 Specify the band-width of a filter in width_type units.
3533 Applies only to double-pole filter.
3534 The default is 0.707q and gives a Butterworth response.
3535
3536 @item channels, c
3537 Specify which channels to filter, by default all available are filtered.
3538 @end table
3539
3540 @subsection Examples
3541 @itemize
3542 @item
3543 Lowpass only LFE channel, it LFE is not present it does nothing:
3544 @example
3545 lowpass=c=LFE
3546 @end example
3547 @end itemize
3548
3549 @subsection Commands
3550
3551 This filter supports the following commands:
3552 @table @option
3553 @item frequency, f
3554 Change lowpass frequency.
3555 Syntax for the command is : "@var{frequency}"
3556
3557 @item width_type, t
3558 Change lowpass width_type.
3559 Syntax for the command is : "@var{width_type}"
3560
3561 @item width, w
3562 Change lowpass width.
3563 Syntax for the command is : "@var{width}"
3564 @end table
3565
3566 @section lv2
3567
3568 Load a LV2 (LADSPA Version 2) plugin.
3569
3570 To enable compilation of this filter you need to configure FFmpeg with
3571 @code{--enable-lv2}.
3572
3573 @table @option
3574 @item plugin, p
3575 Specifies the plugin URI. You may need to escape ':'.
3576
3577 @item controls, c
3578 Set the '|' separated list of controls which are zero or more floating point
3579 values that determine the behavior of the loaded plugin (for example delay,
3580 threshold or gain).
3581 If @option{controls} is set to @code{help}, all available controls and
3582 their valid ranges are printed.
3583
3584 @item sample_rate, s
3585 Specify the sample rate, default to 44100. Only used if plugin have
3586 zero inputs.
3587
3588 @item nb_samples, n
3589 Set the number of samples per channel per each output frame, default
3590 is 1024. Only used if plugin have zero inputs.
3591
3592 @item duration, d
3593 Set the minimum duration of the sourced audio. See
3594 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
3595 for the accepted syntax.
3596 Note that the resulting duration may be greater than the specified duration,
3597 as the generated audio is always cut at the end of a complete frame.
3598 If not specified, or the expressed duration is negative, the audio is
3599 supposed to be generated forever.
3600 Only used if plugin have zero inputs.
3601 @end table
3602
3603 @subsection Examples
3604
3605 @itemize
3606 @item
3607 Apply bass enhancer plugin from Calf:
3608 @example
3609 lv2=p=http\\\\://calf.sourceforge.net/plugins/BassEnhancer:c=amount=2
3610 @end example
3611
3612 @item
3613 Apply vinyl plugin from Calf:
3614 @example
3615 lv2=p=http\\\\://calf.sourceforge.net/plugins/Vinyl:c=drone=0.2|aging=0.5
3616 @end example
3617
3618 @item
3619 Apply bit crusher plugin from ArtyFX:
3620 @example
3621 lv2=p=http\\\\://www.openavproductions.com/artyfx#bitta:c=crush=0.3
3622 @end example
3623 @end itemize
3624
3625 @section mcompand
3626 Multiband Compress or expand the audio's dynamic range.
3627
3628 The input audio is divided into bands using 4th order Linkwitz-Riley IIRs.
3629 This is akin to the crossover of a loudspeaker, and results in flat frequency
3630 response when absent compander action.
3631
3632 It accepts the following parameters:
3633
3634 @table @option
3635 @item args
3636 This option syntax is:
3637 attack,decay,[attack,decay..] soft-knee points crossover_frequency [delay [initial_volume [gain]]] | attack,decay ...
3638 For explanation of each item refer to compand filter documentation.
3639 @end table
3640
3641 @anchor{pan}
3642 @section pan
3643
3644 Mix channels with specific gain levels. The filter accepts the output
3645 channel layout followed by a set of channels definitions.
3646
3647 This filter is also designed to efficiently remap the channels of an audio
3648 stream.
3649
3650 The filter accepts parameters of the form:
3651 "@var{l}|@var{outdef}|@var{outdef}|..."
3652
3653 @table @option
3654 @item l
3655 output channel layout or number of channels
3656
3657 @item outdef
3658 output channel specification, of the form:
3659 "@var{out_name}=[@var{gain}*]@var{in_name}[(+-)[@var{gain}*]@var{in_name}...]"
3660
3661 @item out_name
3662 output channel to define, either a channel name (FL, FR, etc.) or a channel
3663 number (c0, c1, etc.)
3664
3665 @item gain
3666 multiplicative coefficient for the channel, 1 leaving the volume unchanged
3667
3668 @item in_name
3669 input channel to use, see out_name for details; it is not possible to mix
3670 named and numbered input channels
3671 @end table
3672
3673 If the `=' in a channel specification is replaced by `<', then the gains for
3674 that specification will be renormalized so that the total is 1, thus
3675 avoiding clipping noise.
3676
3677 @subsection Mixing examples
3678
3679 For example, if you want to down-mix from stereo to mono, but with a bigger
3680 factor for the left channel:
3681 @example
3682 pan=1c|c0=0.9*c0+0.1*c1
3683 @end example
3684
3685 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
3686 7-channels surround:
3687 @example
3688 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
3689 @end example
3690
3691 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
3692 that should be preferred (see "-ac" option) unless you have very specific
3693 needs.
3694
3695 @subsection Remapping examples
3696
3697 The channel remapping will be effective if, and only if:
3698
3699 @itemize
3700 @item gain coefficients are zeroes or ones,
3701 @item only one input per channel output,
3702 @end itemize
3703
3704 If all these conditions are satisfied, the filter will notify the user ("Pure
3705 channel mapping detected"), and use an optimized and lossless method to do the
3706 remapping.
3707
3708 For example, if you have a 5.1 source and want a stereo audio stream by
3709 dropping the extra channels:
3710 @example
3711 pan="stereo| c0=FL | c1=FR"
3712 @end example
3713
3714 Given the same source, you can also switch front left and front right channels
3715 and keep the input channel layout:
3716 @example
3717 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
3718 @end example
3719
3720 If the input is a stereo audio stream, you can mute the front left channel (and
3721 still keep the stereo channel layout) with:
3722 @example
3723 pan="stereo|c1=c1"
3724 @end example
3725
3726 Still with a stereo audio stream input, you can copy the right channel in both
3727 front left and right:
3728 @example
3729 pan="stereo| c0=FR | c1=FR"
3730 @end example
3731
3732 @section replaygain
3733
3734 ReplayGain scanner filter. This filter takes an audio stream as an input and
3735 outputs it unchanged.
3736 At end of filtering it displays @code{track_gain} and @code{track_peak}.
3737
3738 @section resample
3739
3740 Convert the audio sample format, sample rate and channel layout. It is
3741 not meant to be used directly.
3742
3743 @section rubberband
3744 Apply time-stretching and pitch-shifting with librubberband.
3745
3746 The filter accepts the following options:
3747
3748 @table @option
3749 @item tempo
3750 Set tempo scale factor.
3751
3752 @item pitch
3753 Set pitch scale factor.
3754
3755 @item transients
3756 Set transients detector.
3757 Possible values are:
3758 @table @var
3759 @item crisp
3760 @item mixed
3761 @item smooth
3762 @end table
3763
3764 @item detector
3765 Set detector.
3766 Possible values are:
3767 @table @var
3768 @item compound
3769 @item percussive
3770 @item soft
3771 @end table
3772
3773 @item phase
3774 Set phase.
3775 Possible values are:
3776 @table @var
3777 @item laminar
3778 @item independent
3779 @end table
3780
3781 @item window
3782 Set processing window size.
3783 Possible values are:
3784 @table @var
3785 @item standard
3786 @item short
3787 @item long
3788 @end table
3789
3790 @item smoothing
3791 Set smoothing.
3792 Possible values are:
3793 @table @var
3794 @item off
3795 @item on
3796 @end table
3797
3798 @item formant
3799 Enable formant preservation when shift pitching.
3800 Possible values are:
3801 @table @var
3802 @item shifted
3803 @item preserved
3804 @end table
3805
3806 @item pitchq
3807 Set pitch quality.
3808 Possible values are:
3809 @table @var
3810 @item quality
3811 @item speed
3812 @item consistency
3813 @end table
3814
3815 @item channels
3816 Set channels.
3817 Possible values are:
3818 @table @var
3819 @item apart
3820 @item together
3821 @end table
3822 @end table
3823
3824 @section sidechaincompress
3825
3826 This filter acts like normal compressor but has the ability to compress
3827 detected signal using second input signal.
3828 It needs two input streams and returns one output stream.
3829 First input stream will be processed depending on second stream signal.
3830 The filtered signal then can be filtered with other filters in later stages of
3831 processing. See @ref{pan} and @ref{amerge} filter.
3832
3833 The filter accepts the following options:
3834
3835 @table @option
3836 @item level_in
3837 Set input gain. Default is 1. Range is between 0.015625 and 64.
3838
3839 @item threshold
3840 If a signal of second stream raises above this level it will affect the gain
3841 reduction of first stream.
3842 By default is 0.125. Range is between 0.00097563 and 1.
3843
3844 @item ratio
3845 Set a ratio about which the signal is reduced. 1:2 means that if the level
3846 raised 4dB above the threshold, it will be only 2dB above after the reduction.
3847 Default is 2. Range is between 1 and 20.
3848
3849 @item attack
3850 Amount of milliseconds the signal has to rise above the threshold before gain
3851 reduction starts. Default is 20. Range is between 0.01 and 2000.
3852
3853 @item release
3854 Amount of milliseconds the signal has to fall below the threshold before
3855 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
3856
3857 @item makeup
3858 Set the amount by how much signal will be amplified after processing.
3859 Default is 1. Range is from 1 to 64.
3860
3861 @item knee
3862 Curve the sharp knee around the threshold to enter gain reduction more softly.
3863 Default is 2.82843. Range is between 1 and 8.
3864
3865 @item link
3866 Choose if the @code{average} level between all channels of side-chain stream
3867 or the louder(@code{maximum}) channel of side-chain stream affects the
3868 reduction. Default is @code{average}.
3869
3870 @item detection
3871 Should the exact signal be taken in case of @code{peak} or an RMS one in case
3872 of @code{rms}. Default is @code{rms} which is mainly smoother.
3873
3874 @item level_sc
3875 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
3876
3877 @item mix
3878 How much to use compressed signal in output. Default is 1.
3879 Range is between 0 and 1.
3880 @end table
3881
3882 @subsection Examples
3883
3884 @itemize
3885 @item
3886 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
3887 depending on the signal of 2nd input and later compressed signal to be
3888 merged with 2nd input:
3889 @example
3890 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
3891 @end example
3892 @end itemize
3893
3894 @section sidechaingate
3895
3896 A sidechain gate acts like a normal (wideband) gate but has the ability to
3897 filter the detected signal before sending it to the gain reduction stage.
3898 Normally a gate uses the full range signal to detect a level above the
3899 threshold.
3900 For example: If you cut all lower frequencies from your sidechain signal
3901 the gate will decrease the volume of your track only if not enough highs
3902 appear. With this technique you are able to reduce the resonation of a
3903 natural drum or remove "rumbling" of muted strokes from a heavily distorted
3904 guitar.
3905 It needs two input streams and returns one output stream.
3906 First input stream will be processed depending on second stream signal.
3907
3908 The filter accepts the following options:
3909
3910 @table @option
3911 @item level_in
3912 Set input level before filtering.
3913 Default is 1. Allowed range is from 0.015625 to 64.
3914
3915 @item range
3916 Set the level of gain reduction when the signal is below the threshold.
3917 Default is 0.06125. Allowed range is from 0 to 1.
3918
3919 @item threshold
3920 If a signal rises above this level the gain reduction is released.
3921 Default is 0.125. Allowed range is from 0 to 1.
3922
3923 @item ratio
3924 Set a ratio about which the signal is reduced.
3925 Default is 2. Allowed range is from 1 to 9000.
3926
3927 @item attack
3928 Amount of milliseconds the signal has to rise above the threshold before gain
3929 reduction stops.
3930 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
3931
3932 @item release
3933 Amount of milliseconds the signal has to fall below the threshold before the
3934 reduction is increased again. Default is 250 milliseconds.
3935 Allowed range is from 0.01 to 9000.
3936
3937 @item makeup
3938 Set amount of amplification of signal after processing.
3939 Default is 1. Allowed range is from 1 to 64.
3940
3941 @item knee
3942 Curve the sharp knee around the threshold to enter gain reduction more softly.
3943 Default is 2.828427125. Allowed range is from 1 to 8.
3944
3945 @item detection
3946 Choose if exact signal should be taken for detection or an RMS like one.
3947 Default is rms. Can be peak or rms.
3948
3949 @item link
3950 Choose if the average level between all channels or the louder channel affects
3951 the reduction.
3952 Default is average. Can be average or maximum.
3953
3954 @item level_sc
3955 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
3956 @end table
3957
3958 @section silencedetect
3959
3960 Detect silence in an audio stream.
3961
3962 This filter logs a message when it detects that the input audio volume is less
3963 or equal to a noise tolerance value for a duration greater or equal to the
3964 minimum detected noise duration.
3965
3966 The printed times and duration are expressed in seconds.
3967
3968 The filter accepts the following options:
3969
3970 @table @option
3971 @item duration, d
3972 Set silence duration until notification (default is 2 seconds).
3973
3974 @item noise, n
3975 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
3976 specified value) or amplitude ratio. Default is -60dB, or 0.001.
3977 @end table
3978
3979 @subsection Examples
3980
3981 @itemize
3982 @item
3983 Detect 5 seconds of silence with -50dB noise tolerance:
3984 @example
3985 silencedetect=n=-50dB:d=5
3986 @end example
3987
3988 @item
3989 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
3990 tolerance in @file{silence.mp3}:
3991 @example
3992 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
3993 @end example
3994 @end itemize
3995
3996 @section silenceremove
3997
3998 Remove silence from the beginning, middle or end of the audio.
3999
4000 The filter accepts the following options:
4001
4002 @table @option
4003 @item start_periods
4004 This value is used to indicate if audio should be trimmed at beginning of
4005 the audio. A value of zero indicates no silence should be trimmed from the
4006 beginning. When specifying a non-zero value, it trims audio up until it
4007 finds non-silence. Normally, when trimming silence from beginning of audio
4008 the @var{start_periods} will be @code{1} but it can be increased to higher
4009 values to trim all audio up to specific count of non-silence periods.
4010 Default value is @code{0}.
4011
4012 @item start_duration
4013 Specify the amount of time that non-silence must be detected before it stops
4014 trimming audio. By increasing the duration, bursts of noises can be treated
4015 as silence and trimmed off. Default value is @code{0}.
4016
4017 @item start_threshold
4018 This indicates what sample value should be treated as silence. For digital
4019 audio, a value of @code{0} may be fine but for audio recorded from analog,
4020 you may wish to increase the value to account for background noise.
4021 Can be specified in dB (in case "dB" is appended to the specified value)
4022 or amplitude ratio. Default value is @code{0}.
4023
4024 @item stop_periods
4025 Set the count for trimming silence from the end of audio.
4026 To remove silence from the middle of a file, specify a @var{stop_periods}
4027 that is negative. This value is then treated as a positive value and is
4028 used to indicate the effect should restart processing as specified by
4029 @var{start_periods}, making it suitable for removing periods of silence
4030 in the middle of the audio.
4031 Default value is @code{0}.
4032
4033 @item stop_duration
4034 Specify a duration of silence that must exist before audio is not copied any
4035 more. By specifying a higher duration, silence that is wanted can be left in
4036 the audio.
4037 Default value is @code{0}.
4038
4039 @item stop_threshold
4040 This is the same as @option{start_threshold} but for trimming silence from
4041 the end of audio.
4042 Can be specified in dB (in case "dB" is appended to the specified value)
4043 or amplitude ratio. Default value is @code{0}.
4044
4045 @item leave_silence
4046 This indicates that @var{stop_duration} length of audio should be left intact
4047 at the beginning of each period of silence.
4048 For example, if you want to remove long pauses between words but do not want
4049 to remove the pauses completely. Default value is @code{0}.
4050
4051 @item detection
4052 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
4053 and works better with digital silence which is exactly 0.
4054 Default value is @code{rms}.
4055
4056 @item window
4057 Set ratio used to calculate size of window for detecting silence.
4058 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
4059 @end table
4060
4061 @subsection Examples
4062
4063 @itemize
4064 @item
4065 The following example shows how this filter can be used to start a recording
4066 that does not contain the delay at the start which usually occurs between
4067 pressing the record button and the start of the performance:
4068 @example
4069 silenceremove=1:5:0.02
4070 @end example
4071
4072 @item
4073 Trim all silence encountered from beginning to end where there is more than 1
4074 second of silence in audio:
4075 @example
4076 silenceremove=0:0:0:-1:1:-90dB
4077 @end example
4078 @end itemize
4079
4080 @section sofalizer
4081
4082 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
4083 loudspeakers around the user for binaural listening via headphones (audio
4084 formats up to 9 channels supported).
4085 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
4086 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
4087 Austrian Academy of Sciences.
4088
4089 To enable compilation of this filter you need to configure FFmpeg with
4090 @code{--enable-libmysofa}.
4091
4092 The filter accepts the following options:
4093
4094 @table @option
4095 @item sofa
4096 Set the SOFA file used for rendering.
4097
4098 @item gain
4099 Set gain applied to audio. Value is in dB. Default is 0.
4100
4101 @item rotation
4102 Set rotation of virtual loudspeakers in deg. Default is 0.
4103
4104 @item elevation
4105 Set elevation of virtual speakers in deg. Default is 0.
4106
4107 @item radius
4108 Set distance in meters between loudspeakers and the listener with near-field
4109 HRTFs. Default is 1.
4110
4111 @item type
4112 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
4113 processing audio in time domain which is slow.
4114 @var{freq} is processing audio in frequency domain which is fast.
4115 Default is @var{freq}.
4116
4117 @item speakers
4118 Set custom positions of virtual loudspeakers. Syntax for this option is:
4119 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
4120 Each virtual loudspeaker is described with short channel name following with
4121 azimuth and elevation in degrees.
4122 Each virtual loudspeaker description is separated by '|'.
4123 For example to override front left and front right channel positions use:
4124 'speakers=FL 45 15|FR 345 15'.
4125 Descriptions with unrecognised channel names are ignored.
4126
4127 @item lfegain
4128 Set custom gain for LFE channels. Value is in dB. Default is 0.
4129 @end table
4130
4131 @subsection Examples
4132
4133 @itemize
4134 @item
4135 Using ClubFritz6 sofa file:
4136 @example
4137 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
4138 @end example
4139
4140 @item
4141 Using ClubFritz12 sofa file and bigger radius with small rotation:
4142 @example
4143 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
4144 @end example
4145
4146 @item
4147 Similar as above but with custom speaker positions for front left, front right, back left and back right
4148 and also with custom gain:
4149 @example
4150 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|BL 135|BR 225:gain=28"
4151 @end example
4152 @end itemize
4153
4154 @section stereotools
4155
4156 This filter has some handy utilities to manage stereo signals, for converting
4157 M/S stereo recordings to L/R signal while having control over the parameters
4158 or spreading the stereo image of master track.
4159
4160 The filter accepts the following options:
4161
4162 @table @option
4163 @item level_in
4164 Set input level before filtering for both channels. Defaults is 1.
4165 Allowed range is from 0.015625 to 64.
4166
4167 @item level_out
4168 Set output level after filtering for both channels. Defaults is 1.
4169 Allowed range is from 0.015625 to 64.
4170
4171 @item balance_in
4172 Set input balance between both channels. Default is 0.
4173 Allowed range is from -1 to 1.
4174
4175 @item balance_out
4176 Set output balance between both channels. Default is 0.
4177 Allowed range is from -1 to 1.
4178
4179 @item softclip
4180 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
4181 clipping. Disabled by default.
4182
4183 @item mutel
4184 Mute the left channel. Disabled by default.
4185
4186 @item muter
4187 Mute the right channel. Disabled by default.
4188
4189 @item phasel
4190 Change the phase of the left channel. Disabled by default.
4191
4192 @item phaser
4193 Change the phase of the right channel. Disabled by default.
4194
4195 @item mode
4196 Set stereo mode. Available values are:
4197
4198 @table @samp
4199 @item lr>lr
4200 Left/Right to Left/Right, this is default.
4201
4202 @item lr>ms
4203 Left/Right to Mid/Side.
4204
4205 @item ms>lr
4206 Mid/Side to Left/Right.
4207
4208 @item lr>ll
4209 Left/Right to Left/Left.
4210
4211 @item lr>rr
4212 Left/Right to Right/Right.
4213
4214 @item lr>l+r
4215 Left/Right to Left + Right.
4216
4217 @item lr>rl
4218 Left/Right to Right/Left.
4219
4220 @item ms>ll
4221 Mid/Side to Left/Left.
4222
4223 @item ms>rr
4224 Mid/Side to Right/Right.
4225 @end table
4226
4227 @item slev
4228 Set level of side signal. Default is 1.
4229 Allowed range is from 0.015625 to 64.
4230
4231 @item sbal
4232 Set balance of side signal. Default is 0.
4233 Allowed range is from -1 to 1.
4234
4235 @item mlev
4236 Set level of the middle signal. Default is 1.
4237 Allowed range is from 0.015625 to 64.
4238
4239 @item mpan
4240 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
4241
4242 @item base
4243 Set stereo base between mono and inversed channels. Default is 0.
4244 Allowed range is from -1 to 1.
4245
4246 @item delay
4247 Set delay in milliseconds how much to delay left from right channel and
4248 vice versa. Default is 0. Allowed range is from -20 to 20.
4249
4250 @item sclevel
4251 Set S/C level. Default is 1. Allowed range is from 1 to 100.
4252
4253 @item phase
4254 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
4255
4256 @item bmode_in, bmode_out
4257 Set balance mode for balance_in/balance_out option.
4258
4259 Can be one of the following:
4260
4261 @table @samp
4262 @item balance
4263 Classic balance mode. Attenuate one channel at time.
4264 Gain is raised up to 1.
4265
4266 @item amplitude
4267 Similar as classic mode above but gain is raised up to 2.
4268
4269 @item power
4270 Equal power distribution, from -6dB to +6dB range.
4271 @end table
4272 @end table
4273
4274 @subsection Examples
4275
4276 @itemize
4277 @item
4278 Apply karaoke like effect:
4279 @example
4280 stereotools=mlev=0.015625
4281 @end example
4282
4283 @item
4284 Convert M/S signal to L/R:
4285 @example
4286 "stereotools=mode=ms>lr"
4287 @end example
4288 @end itemize
4289
4290 @section stereowiden
4291
4292 This filter enhance the stereo effect by suppressing signal common to both
4293 channels and by delaying the signal of left into right and vice versa,
4294 thereby widening the stereo effect.
4295
4296 The filter accepts the following options:
4297
4298 @table @option
4299 @item delay
4300 Time in milliseconds of the delay of left signal into right and vice versa.
4301 Default is 20 milliseconds.
4302
4303 @item feedback
4304 Amount of gain in delayed signal into right and vice versa. Gives a delay
4305 effect of left signal in right output and vice versa which gives widening
4306 effect. Default is 0.3.
4307
4308 @item crossfeed
4309 Cross feed of left into right with inverted phase. This helps in suppressing
4310 the mono. If the value is 1 it will cancel all the signal common to both
4311 channels. Default is 0.3.
4312
4313 @item drymix
4314 Set level of input signal of original channel. Default is 0.8.
4315 @end table
4316
4317 @section superequalizer
4318 Apply 18 band equalizer.
4319
4320 The filter accepts the following options:
4321 @table @option
4322 @item 1b
4323 Set 65Hz band gain.
4324 @item 2b
4325 Set 92Hz band gain.
4326 @item 3b
4327 Set 131Hz band gain.
4328 @item 4b
4329 Set 185Hz band gain.
4330 @item 5b
4331 Set 262Hz band gain.
4332 @item 6b
4333 Set 370Hz band gain.
4334 @item 7b
4335 Set 523Hz band gain.
4336 @item 8b
4337 Set 740Hz band gain.
4338 @item 9b
4339 Set 1047Hz band gain.
4340 @item 10b
4341 Set 1480Hz band gain.
4342 @item 11b
4343 Set 2093Hz band gain.
4344 @item 12b
4345 Set 2960Hz band gain.
4346 @item 13b
4347 Set 4186Hz band gain.
4348 @item 14b
4349 Set 5920Hz band gain.
4350 @item 15b
4351 Set 8372Hz band gain.
4352 @item 16b
4353 Set 11840Hz band gain.
4354 @item 17b
4355 Set 16744Hz band gain.
4356 @item 18b
4357 Set 20000Hz band gain.
4358 @end table
4359
4360 @section surround
4361 Apply audio surround upmix filter.
4362
4363 This filter allows to produce multichannel output from audio stream.
4364
4365 The filter accepts the following options:
4366
4367 @table @option
4368 @item chl_out
4369 Set output channel layout. By default, this is @var{5.1}.
4370
4371 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4372 for the required syntax.
4373
4374 @item chl_in
4375 Set input channel layout. By default, this is @var{stereo}.
4376
4377 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4378 for the required syntax.
4379
4380 @item level_in
4381 Set input volume level. By default, this is @var{1}.
4382
4383 @item level_out
4384 Set output volume level. By default, this is @var{1}.
4385
4386 @item lfe
4387 Enable LFE channel output if output channel layout has it. By default, this is enabled.
4388
4389 @item lfe_low
4390 Set LFE low cut off frequency. By default, this is @var{128} Hz.
4391
4392 @item lfe_high
4393 Set LFE high cut off frequency. By default, this is @var{256} Hz.
4394
4395 @item fc_in
4396 Set front center input volume. By default, this is @var{1}.
4397
4398 @item fc_out
4399 Set front center output volume. By default, this is @var{1}.
4400
4401 @item lfe_in
4402 Set LFE input volume. By default, this is @var{1}.
4403
4404 @item lfe_out
4405 Set LFE output volume. By default, this is @var{1}.
4406 @end table
4407
4408 @section treble
4409
4410 Boost or cut treble (upper) frequencies of the audio using a two-pole
4411 shelving filter with a response similar to that of a standard
4412 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
4413
4414 The filter accepts the following options:
4415
4416 @table @option
4417 @item gain, g
4418 Give the gain at whichever is the lower of ~22 kHz and the
4419 Nyquist frequency. Its useful range is about -20 (for a large cut)
4420 to +20 (for a large boost). Beware of clipping when using a positive gain.
4421
4422 @item frequency, f
4423 Set the filter's central frequency and so can be used
4424 to extend or reduce the frequency range to be boosted or cut.
4425 The default value is @code{3000} Hz.
4426
4427 @item width_type, t
4428 Set method to specify band-width of filter.
4429 @table @option
4430 @item h
4431 Hz
4432 @item q
4433 Q-Factor
4434 @item o
4435 octave
4436 @item s
4437 slope
4438 @item k
4439 kHz
4440 @end table
4441
4442 @item width, w
4443 Determine how steep is the filter's shelf transition.
4444
4445 @item channels, c
4446 Specify which channels to filter, by default all available are filtered.
4447 @end table
4448
4449 @subsection Commands
4450
4451 This filter supports the following commands:
4452 @table @option
4453 @item frequency, f
4454 Change treble frequency.
4455 Syntax for the command is : "@var{frequency}"
4456
4457 @item width_type, t
4458 Change treble width_type.
4459 Syntax for the command is : "@var{width_type}"
4460
4461 @item width, w
4462 Change treble width.
4463 Syntax for the command is : "@var{width}"
4464
4465 @item gain, g
4466 Change treble gain.
4467 Syntax for the command is : "@var{gain}"
4468 @end table
4469
4470 @section tremolo
4471
4472 Sinusoidal amplitude modulation.
4473
4474 The filter accepts the following options:
4475
4476 @table @option
4477 @item f
4478 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
4479 (20 Hz or lower) will result in a tremolo effect.
4480 This filter may also be used as a ring modulator by specifying
4481 a modulation frequency higher than 20 Hz.
4482 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
4483
4484 @item d
4485 Depth of modulation as a percentage. Range is 0.0 - 1.0.
4486 Default value is 0.5.
4487 @end table
4488
4489 @section vibrato
4490
4491 Sinusoidal phase modulation.
4492
4493 The filter accepts the following options:
4494
4495 @table @option
4496 @item f
4497 Modulation frequency in Hertz.
4498 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
4499
4500 @item d
4501 Depth of modulation as a percentage. Range is 0.0 - 1.0.
4502 Default value is 0.5.
4503 @end table
4504
4505 @section volume
4506
4507 Adjust the input audio volume.
4508
4509 It accepts the following parameters:
4510 @table @option
4511
4512 @item volume
4513 Set audio volume expression.
4514
4515 Output values are clipped to the maximum value.
4516
4517 The output audio volume is given by the relation:
4518 @example
4519 @var{output_volume} = @var{volume} * @var{input_volume}
4520 @end example
4521
4522 The default value for @var{volume} is "1.0".
4523
4524 @item precision
4525 This parameter represents the mathematical precision.
4526
4527 It determines which input sample formats will be allowed, which affects the
4528 precision of the volume scaling.
4529
4530 @table @option
4531 @item fixed
4532 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
4533 @item float
4534 32-bit floating-point; this limits input sample format to FLT. (default)
4535 @item double
4536 64-bit floating-point; this limits input sample format to DBL.
4537 @end table
4538
4539 @item replaygain
4540 Choose the behaviour on encountering ReplayGain side data in input frames.
4541
4542 @table @option
4543 @item drop
4544 Remove ReplayGain side data, ignoring its contents (the default).
4545
4546 @item ignore
4547 Ignore ReplayGain side data, but leave it in the frame.
4548
4549 @item track
4550 Prefer the track gain, if present.
4551
4552 @item album
4553 Prefer the album gain, if present.
4554 @end table
4555
4556 @item replaygain_preamp
4557 Pre-amplification gain in dB to apply to the selected replaygain gain.
4558
4559 Default value for @var{replaygain_preamp} is 0.0.
4560
4561 @item eval
4562 Set when the volume expression is evaluated.
4563
4564 It accepts the following values:
4565 @table @samp
4566 @item once
4567 only evaluate expression once during the filter initialization, or
4568 when the @samp{volume} command is sent
4569
4570 @item frame
4571 evaluate expression for each incoming frame
4572 @end table
4573
4574 Default value is @samp{once}.
4575 @end table
4576
4577 The volume expression can contain the following parameters.
4578
4579 @table @option
4580 @item n
4581 frame number (starting at zero)
4582 @item nb_channels
4583 number of channels
4584 @item nb_consumed_samples
4585 number of samples consumed by the filter
4586 @item nb_samples
4587 number of samples in the current frame
4588 @item pos
4589 original frame position in the file
4590 @item pts
4591 frame PTS
4592 @item sample_rate
4593 sample rate
4594 @item startpts
4595 PTS at start of stream
4596 @item startt
4597 time at start of stream
4598 @item t
4599 frame time
4600 @item tb
4601 timestamp timebase
4602 @item volume
4603 last set volume value
4604 @end table
4605
4606 Note that when @option{eval} is set to @samp{once} only the
4607 @var{sample_rate} and @var{tb} variables are available, all other
4608 variables will evaluate to NAN.
4609
4610 @subsection Commands
4611
4612 This filter supports the following commands:
4613 @table @option
4614 @item volume
4615 Modify the volume expression.
4616 The command accepts the same syntax of the corresponding option.
4617
4618 If the specified expression is not valid, it is kept at its current
4619 value.
4620 @item replaygain_noclip
4621 Prevent clipping by limiting the gain applied.
4622
4623 Default value for @var{replaygain_noclip} is 1.
4624
4625 @end table
4626
4627 @subsection Examples
4628
4629 @itemize
4630 @item
4631 Halve the input audio volume:
4632 @example
4633 volume=volume=0.5
4634 volume=volume=1/2
4635 volume=volume=-6.0206dB
4636 @end example
4637
4638 In all the above example the named key for @option{volume} can be
4639 omitted, for example like in:
4640 @example
4641 volume=0.5
4642 @end example
4643
4644 @item
4645 Increase input audio power by 6 decibels using fixed-point precision:
4646 @example
4647 volume=volume=6dB:precision=fixed
4648 @end example
4649
4650 @item
4651 Fade volume after time 10 with an annihilation period of 5 seconds:
4652 @example
4653 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
4654 @end example
4655 @end itemize
4656
4657 @section volumedetect
4658
4659 Detect the volume of the input video.
4660
4661 The filter has no parameters. The input is not modified. Statistics about
4662 the volume will be printed in the log when the input stream end is reached.
4663
4664 In particular it will show the mean volume (root mean square), maximum
4665 volume (on a per-sample basis), and the beginning of a histogram of the
4666 registered volume values (from the maximum value to a cumulated 1/1000 of
4667 the samples).
4668
4669 All volumes are in decibels relative to the maximum PCM value.
4670
4671 @subsection Examples
4672
4673 Here is an excerpt of the output:
4674 @example
4675 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
4676 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
4677 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
4678 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
4679 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
4680 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
4681 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
4682 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
4683 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
4684 @end example
4685
4686 It means that:
4687 @itemize
4688 @item
4689 The mean square energy is approximately -27 dB, or 10^-2.7.
4690 @item
4691 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
4692 @item
4693 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
4694 @end itemize
4695
4696 In other words, raising the volume by +4 dB does not cause any clipping,
4697 raising it by +5 dB causes clipping for 6 samples, etc.
4698
4699 @c man end AUDIO FILTERS
4700
4701 @chapter Audio Sources
4702 @c man begin AUDIO SOURCES
4703
4704 Below is a description of the currently available audio sources.
4705
4706 @section abuffer
4707
4708 Buffer audio frames, and make them available to the filter chain.
4709
4710 This source is mainly intended for a programmatic use, in particular
4711 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
4712
4713 It accepts the following parameters:
4714 @table @option
4715
4716 @item time_base
4717 The timebase which will be used for timestamps of submitted frames. It must be
4718 either a floating-point number or in @var{numerator}/@var{denominator} form.
4719
4720 @item sample_rate
4721 The sample rate of the incoming audio buffers.
4722
4723 @item sample_fmt
4724 The sample format of the incoming audio buffers.
4725 Either a sample format name or its corresponding integer representation from
4726 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
4727
4728 @item channel_layout
4729 The channel layout of the incoming audio buffers.
4730 Either a channel layout name from channel_layout_map in
4731 @file{libavutil/channel_layout.c} or its corresponding integer representation
4732 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
4733
4734 @item channels
4735 The number of channels of the incoming audio buffers.
4736 If both @var{channels} and @var{channel_layout} are specified, then they
4737 must be consistent.
4738
4739 @end table
4740
4741 @subsection Examples
4742
4743 @example
4744 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
4745 @end example
4746
4747 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
4748 Since the sample format with name "s16p" corresponds to the number
4749 6 and the "stereo" channel layout corresponds to the value 0x3, this is
4750 equivalent to:
4751 @example
4752 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
4753 @end example
4754
4755 @section aevalsrc
4756
4757 Generate an audio signal specified by an expression.
4758
4759 This source accepts in input one or more expressions (one for each
4760 channel), which are evaluated and used to generate a corresponding
4761 audio signal.
4762
4763 This source accepts the following options:
4764
4765 @table @option
4766 @item exprs
4767 Set the '|'-separated expressions list for each separate channel. In case the
4768 @option{channel_layout} option is not specified, the selected channel layout
4769 depends on the number of provided expressions. Otherwise the last
4770 specified expression is applied to the remaining output channels.
4771
4772 @item channel_layout, c
4773 Set the channel layout. The number of channels in the specified layout
4774 must be equal to the number of specified expressions.
4775
4776 @item duration, d
4777 Set the minimum duration of the sourced audio. See
4778 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4779 for the accepted syntax.
4780 Note that the resulting duration may be greater than the specified
4781 duration, as the generated audio is always cut at the end of a
4782 complete frame.
4783
4784 If not specified, or the expressed duration is negative, the audio is
4785 supposed to be generated forever.
4786
4787 @item nb_samples, n
4788 Set the number of samples per channel per each output frame,
4789 default to 1024.
4790
4791 @item sample_rate, s
4792 Specify the sample rate, default to 44100.
4793 @end table
4794
4795 Each expression in @var{exprs} can contain the following constants:
4796
4797 @table @option
4798 @item n
4799 number of the evaluated sample, starting from 0
4800
4801 @item t
4802 time of the evaluated sample expressed in seconds, starting from 0
4803
4804 @item s
4805 sample rate
4806
4807 @end table
4808
4809 @subsection Examples
4810
4811 @itemize
4812 @item
4813 Generate silence:
4814 @example
4815 aevalsrc=0
4816 @end example
4817
4818 @item
4819 Generate a sin signal with frequency of 440 Hz, set sample rate to
4820 8000 Hz:
4821 @example
4822 aevalsrc="sin(440*2*PI*t):s=8000"
4823 @end example
4824
4825 @item
4826 Generate a two channels signal, specify the channel layout (Front
4827 Center + Back Center) explicitly:
4828 @example
4829 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
4830 @end example
4831
4832 @item
4833 Generate white noise:
4834 @example
4835 aevalsrc="-2+random(0)"
4836 @end example
4837
4838 @item
4839 Generate an amplitude modulated signal:
4840 @example
4841 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
4842 @end example
4843
4844 @item
4845 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
4846 @example
4847 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
4848 @end example
4849
4850 @end itemize
4851
4852 @section anullsrc
4853
4854 The null audio source, return unprocessed audio frames. It is mainly useful
4855 as a template and to be employed in analysis / debugging tools, or as
4856 the source for filters which ignore the input data (for example the sox
4857 synth filter).
4858
4859 This source accepts the following options:
4860
4861 @table @option
4862
4863 @item channel_layout, cl
4864
4865 Specifies the channel layout, and can be either an integer or a string
4866 representing a channel layout. The default value of @var{channel_layout}
4867 is "stereo".
4868
4869 Check the channel_layout_map definition in
4870 @file{libavutil/channel_layout.c} for the mapping between strings and
4871 channel layout values.
4872
4873 @item sample_rate, r
4874 Specifies the sample rate, and defaults to 44100.
4875
4876 @item nb_samples, n
4877 Set the number of samples per requested frames.
4878
4879 @end table
4880
4881 @subsection Examples
4882
4883 @itemize
4884 @item
4885 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
4886 @example
4887 anullsrc=r=48000:cl=4
4888 @end example
4889
4890 @item
4891 Do the same operation with a more obvious syntax:
4892 @example
4893 anullsrc=r=48000:cl=mono
4894 @end example
4895 @end itemize
4896
4897 All the parameters need to be explicitly defined.
4898
4899 @section flite
4900
4901 Synthesize a voice utterance using the libflite library.
4902
4903 To enable compilation of this filter you need to configure FFmpeg with
4904 @code{--enable-libflite}.
4905
4906 Note that versions of the flite library prior to 2.0 are not thread-safe.
4907
4908 The filter accepts the following options:
4909
4910 @table @option
4911
4912 @item list_voices
4913 If set to 1, list the names of the available voices and exit
4914 immediately. Default value is 0.
4915
4916 @item nb_samples, n
4917 Set the maximum number of samples per frame. Default value is 512.
4918
4919 @item textfile
4920 Set the filename containing the text to speak.
4921
4922 @item text
4923 Set the text to speak.
4924
4925 @item voice, v
4926 Set the voice to use for the speech synthesis. Default value is
4927 @code{kal}. See also the @var{list_voices} option.
4928 @end table
4929
4930 @subsection Examples
4931
4932 @itemize
4933 @item
4934 Read from file @file{speech.txt}, and synthesize the text using the
4935 standard flite voice:
4936 @example
4937 flite=textfile=speech.txt
4938 @end example
4939
4940 @item
4941 Read the specified text selecting the @code{slt} voice:
4942 @example
4943 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
4944 @end example
4945
4946 @item
4947 Input text to ffmpeg:
4948 @example
4949 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
4950 @end example
4951
4952 @item
4953 Make @file{ffplay} speak the specified text, using @code{flite} and
4954 the @code{lavfi} device:
4955 @example
4956 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
4957 @end example
4958 @end itemize
4959
4960 For more information about libflite, check:
4961 @url{http://www.festvox.org/flite/}
4962
4963 @section anoisesrc
4964
4965 Generate a noise audio signal.
4966
4967 The filter accepts the following options:
4968
4969 @table @option
4970 @item sample_rate, r
4971 Specify the sample rate. Default value is 48000 Hz.
4972
4973 @item amplitude, a
4974 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
4975 is 1.0.
4976
4977 @item duration, d
4978 Specify the duration of the generated audio stream. Not specifying this option
4979 results in noise with an infinite length.
4980
4981 @item color, colour, c
4982 Specify the color of noise. Available noise colors are white, pink, brown,
4983 blue and violet. Default color is white.
4984
4985 @item seed, s
4986 Specify a value used to seed the PRNG.
4987
4988 @item nb_samples, n
4989 Set the number of samples per each output frame, default is 1024.
4990 @end table
4991
4992 @subsection Examples
4993
4994 @itemize
4995
4996 @item
4997 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
4998 @example
4999 anoisesrc=d=60:c=pink:r=44100:a=0.5
5000 @end example
5001 @end itemize
5002
5003 @section hilbert
5004
5005 Generate odd-tap Hilbert transform FIR coefficients.
5006
5007 The resulting stream can be used with @ref{afir} filter for phase-shifting
5008 the signal by 90 degrees.
5009
5010 This is used in many matrix coding schemes and for analytic signal generation.
5011 The process is often written as a multiplication by i (or j), the imaginary unit.
5012
5013 The filter accepts the following options:
5014
5015 @table @option
5016
5017 @item sample_rate, s
5018 Set sample rate, default is 44100.
5019
5020 @item taps, t
5021 Set length of FIR filter, default is 22051.
5022
5023 @item nb_samples, n
5024 Set number of samples per each frame.
5025
5026 @item win_func, w
5027 Set window function to be used when generating FIR coefficients.
5028 @end table
5029
5030 @section sine
5031
5032 Generate an audio signal made of a sine wave with amplitude 1/8.
5033
5034 The audio signal is bit-exact.
5035
5036 The filter accepts the following options:
5037
5038 @table @option
5039
5040 @item frequency, f
5041 Set the carrier frequency. Default is 440 Hz.
5042
5043 @item beep_factor, b
5044 Enable a periodic beep every second with frequency @var{beep_factor} times
5045 the carrier frequency. Default is 0, meaning the beep is disabled.
5046
5047 @item sample_rate, r
5048 Specify the sample rate, default is 44100.
5049
5050 @item duration, d
5051 Specify the duration of the generated audio stream.
5052
5053 @item samples_per_frame
5054 Set the number of samples per output frame.
5055
5056 The expression can contain the following constants:
5057
5058 @table @option
5059 @item n
5060 The (sequential) number of the output audio frame, starting from 0.
5061
5062 @item pts
5063 The PTS (Presentation TimeStamp) of the output audio frame,
5064 expressed in @var{TB} units.
5065
5066 @item t
5067 The PTS of the output audio frame, expressed in seconds.
5068
5069 @item TB
5070 The timebase of the output audio frames.
5071 @end table
5072
5073 Default is @code{1024}.
5074 @end table
5075
5076 @subsection Examples
5077
5078 @itemize
5079
5080 @item
5081 Generate a simple 440 Hz sine wave:
5082 @example
5083 sine
5084 @end example
5085
5086 @item
5087 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
5088 @example
5089 sine=220:4:d=5
5090 sine=f=220:b=4:d=5
5091 sine=frequency=220:beep_factor=4:duration=5
5092 @end example
5093
5094 @item
5095 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
5096 pattern:
5097 @example
5098 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
5099 @end example
5100 @end itemize
5101
5102 @c man end AUDIO SOURCES
5103
5104 @chapter Audio Sinks
5105 @c man begin AUDIO SINKS
5106
5107 Below is a description of the currently available audio sinks.
5108
5109 @section abuffersink
5110
5111 Buffer audio frames, and make them available to the end of filter chain.
5112
5113 This sink is mainly intended for programmatic use, in particular
5114 through the interface defined in @file{libavfilter/buffersink.h}
5115 or the options system.
5116
5117 It accepts a pointer to an AVABufferSinkContext structure, which
5118 defines the incoming buffers' formats, to be passed as the opaque
5119 parameter to @code{avfilter_init_filter} for initialization.
5120 @section anullsink
5121
5122 Null audio sink; do absolutely nothing with the input audio. It is
5123 mainly useful as a template and for use in analysis / debugging
5124 tools.
5125
5126 @c man end AUDIO SINKS
5127
5128 @chapter Video Filters
5129 @c man begin VIDEO FILTERS
5130
5131 When you configure your FFmpeg build, you can disable any of the
5132 existing filters using @code{--disable-filters}.
5133 The configure output will show the video filters included in your
5134 build.
5135
5136 Below is a description of the currently available video filters.
5137
5138 @section alphaextract
5139
5140 Extract the alpha component from the input as a grayscale video. This
5141 is especially useful with the @var{alphamerge} filter.
5142
5143 @section alphamerge
5144
5145 Add or replace the alpha component of the primary input with the
5146 grayscale value of a second input. This is intended for use with
5147 @var{alphaextract} to allow the transmission or storage of frame
5148 sequences that have alpha in a format that doesn't support an alpha
5149 channel.
5150
5151 For example, to reconstruct full frames from a normal YUV-encoded video
5152 and a separate video created with @var{alphaextract}, you might use:
5153 @example
5154 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
5155 @end example
5156
5157 Since this filter is designed for reconstruction, it operates on frame
5158 sequences without considering timestamps, and terminates when either
5159 input reaches end of stream. This will cause problems if your encoding
5160 pipeline drops frames. If you're trying to apply an image as an
5161 overlay to a video stream, consider the @var{overlay} filter instead.
5162
5163 @section ass
5164
5165 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
5166 and libavformat to work. On the other hand, it is limited to ASS (Advanced
5167 Substation Alpha) subtitles files.
5168
5169 This filter accepts the following option in addition to the common options from
5170 the @ref{subtitles} filter:
5171
5172 @table @option
5173 @item shaping
5174 Set the shaping engine
5175
5176 Available values are:
5177 @table @samp
5178 @item auto
5179 The default libass shaping engine, which is the best available.
5180 @item simple
5181 Fast, font-agnostic shaper that can do only substitutions
5182 @item complex
5183 Slower shaper using OpenType for substitutions and positioning
5184 @end table
5185
5186 The default is @code{auto}.
5187 @end table
5188
5189 @section atadenoise
5190 Apply an Adaptive Temporal Averaging Denoiser to the video input.
5191
5192 The filter accepts the following options:
5193
5194 @table @option
5195 @item 0a
5196 Set threshold A for 1st plane. Default is 0.02.
5197 Valid range is 0 to 0.3.
5198
5199 @item 0b
5200 Set threshold B for 1st plane. Default is 0.04.
5201 Valid range is 0 to 5.
5202
5203 @item 1a
5204 Set threshold A for 2nd plane. Default is 0.02.
5205 Valid range is 0 to 0.3.
5206
5207 @item 1b
5208 Set threshold B for 2nd plane. Default is 0.04.
5209 Valid range is 0 to 5.
5210
5211 @item 2a
5212 Set threshold A for 3rd plane. Default is 0.02.
5213 Valid range is 0 to 0.3.
5214
5215 @item 2b
5216 Set threshold B for 3rd plane. Default is 0.04.
5217 Valid range is 0 to 5.
5218
5219 Threshold A is designed to react on abrupt changes in the input signal and
5220 threshold B is designed to react on continuous changes in the input signal.
5221
5222 @item s
5223 Set number of frames filter will use for averaging. Default is 33. Must be odd
5224 number in range [5, 129].
5225
5226 @item p
5227 Set what planes of frame filter will use for averaging. Default is all.
5228 @end table
5229
5230 @section avgblur
5231
5232 Apply average blur filter.
5233
5234 The filter accepts the following options:
5235
5236 @table @option
5237 @item sizeX
5238 Set horizontal kernel size.
5239
5240 @item planes
5241 Set which planes to filter. By default all planes are filtered.
5242
5243 @item sizeY
5244 Set vertical kernel size, if zero it will be same as @code{sizeX}.
5245 Default is @code{0}.
5246 @end table
5247
5248 @section bbox
5249
5250 Compute the bounding box for the non-black pixels in the input frame
5251 luminance plane.
5252
5253 This filter computes the bounding box containing all the pixels with a
5254 luminance value greater than the minimum allowed value.
5255 The parameters describing the bounding box are printed on the filter
5256 log.
5257
5258 The filter accepts the following option:
5259
5260 @table @option
5261 @item min_val
5262 Set the minimal luminance value. Default is @code{16}.
5263 @end table
5264
5265 @section bitplanenoise
5266
5267 Show and measure bit plane noise.
5268
5269 The filter accepts the following options:
5270
5271 @table @option
5272 @item bitplane
5273 Set which plane to analyze. Default is @code{1}.
5274
5275 @item filter
5276 Filter out noisy pixels from @code{bitplane} set above.
5277 Default is disabled.
5278 @end table
5279
5280 @section blackdetect
5281
5282 Detect video intervals that are (almost) completely black. Can be
5283 useful to detect chapter transitions, commercials, or invalid
5284 recordings. Output lines contains the time for the start, end and
5285 duration of the detected black interval expressed in seconds.
5286
5287 In order to display the output lines, you need to set the loglevel at
5288 least to the AV_LOG_INFO value.
5289
5290 The filter accepts the following options:
5291
5292 @table @option
5293 @item black_min_duration, d
5294 Set the minimum detected black duration expressed in seconds. It must
5295 be a non-negative floating point number.
5296
5297 Default value is 2.0.
5298
5299 @item picture_black_ratio_th, pic_th
5300 Set the threshold for considering a picture "black".
5301 Express the minimum value for the ratio:
5302 @example
5303 @var{nb_black_pixels} / @var{nb_pixels}
5304 @end example
5305
5306 for which a picture is considered black.
5307 Default value is 0.98.
5308
5309 @item pixel_black_th, pix_th
5310 Set the threshold for considering a pixel "black".
5311
5312 The threshold expresses the maximum pixel luminance value for which a
5313 pixel is considered "black". The provided value is scaled according to
5314 the following equation:
5315 @example
5316 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
5317 @end example
5318
5319 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
5320 the input video format, the range is [0-255] for YUV full-range
5321 formats and [16-235] for YUV non full-range formats.
5322
5323 Default value is 0.10.
5324 @end table
5325
5326 The following example sets the maximum pixel threshold to the minimum
5327 value, and detects only black intervals of 2 or more seconds:
5328 @example
5329 blackdetect=d=2:pix_th=0.00
5330 @end example
5331
5332 @section blackframe
5333
5334 Detect frames that are (almost) completely black. Can be useful to
5335 detect chapter transitions or commercials. Output lines consist of
5336 the frame number of the detected frame, the percentage of blackness,
5337 the position in the file if known or -1 and the timestamp in seconds.
5338
5339 In order to display the output lines, you need to set the loglevel at
5340 least to the AV_LOG_INFO value.
5341
5342 This filter exports frame metadata @code{lavfi.blackframe.pblack}.
5343 The value represents the percentage of pixels in the picture that
5344 are below the threshold value.
5345
5346 It accepts the following parameters:
5347
5348 @table @option
5349
5350 @item amount
5351 The percentage of the pixels that have to be below the threshold; it defaults to
5352 @code{98}.
5353
5354 @item threshold, thresh
5355 The threshold below which a pixel value is considered black; it defaults to
5356 @code{32}.
5357
5358 @end table
5359
5360 @section blend, tblend
5361
5362 Blend two video frames into each other.
5363
5364 The @code{blend} filter takes two input streams and outputs one
5365 stream, the first input is the "top" layer and second input is
5366 "bottom" layer.  By default, the output terminates when the longest input terminates.
5367
5368 The @code{tblend} (time blend) filter takes two consecutive frames
5369 from one single stream, and outputs the result obtained by blending
5370 the new frame on top of the old frame.
5371
5372 A description of the accepted options follows.
5373
5374 @table @option
5375 @item c0_mode
5376 @item c1_mode
5377 @item c2_mode
5378 @item c3_mode
5379 @item all_mode
5380 Set blend mode for specific pixel component or all pixel components in case
5381 of @var{all_mode}. Default value is @code{normal}.
5382
5383 Available values for component modes are:
5384 @table @samp
5385 @item addition
5386 @item grainmerge
5387 @item and
5388 @item average
5389 @item burn
5390 @item darken
5391 @item difference
5392 @item grainextract
5393 @item divide
5394 @item dodge
5395 @item freeze
5396 @item exclusion
5397 @item extremity
5398 @item glow
5399 @item hardlight
5400 @item hardmix
5401 @item heat
5402 @item lighten
5403 @item linearlight
5404 @item multiply
5405 @item multiply128
5406 @item negation
5407 @item normal
5408 @item or
5409 @item overlay
5410 @item phoenix
5411 @item pinlight
5412 @item reflect
5413 @item screen
5414 @item softlight
5415 @item subtract
5416 @item vividlight
5417 @item xor
5418 @end table
5419
5420 @item c0_opacity
5421 @item c1_opacity
5422 @item c2_opacity
5423 @item c3_opacity
5424 @item all_opacity
5425 Set blend opacity for specific pixel component or all pixel components in case
5426 of @var{all_opacity}. Only used in combination with pixel component blend modes.
5427
5428 @item c0_expr
5429 @item c1_expr
5430 @item c2_expr
5431 @item c3_expr
5432 @item all_expr
5433 Set blend expression for specific pixel component or all pixel components in case
5434 of @var{all_expr}. Note that related mode options will be ignored if those are set.
5435
5436 The expressions can use the following variables:
5437
5438 @table @option
5439 @item N
5440 The sequential number of the filtered frame, starting from @code{0}.
5441
5442 @item X
5443 @item Y
5444 the coordinates of the current sample
5445
5446 @item W
5447 @item H
5448 the width and height of currently filtered plane
5449
5450 @item SW
5451 @item SH
5452 Width and height scale depending on the currently filtered plane. It is the
5453 ratio between the corresponding luma plane number of pixels and the current
5454 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
5455 @code{0.5,0.5} for chroma planes.
5456
5457 @item T
5458 Time of the current frame, expressed in seconds.
5459
5460 @item TOP, A
5461 Value of pixel component at current location for first video frame (top layer).
5462
5463 @item BOTTOM, B
5464 Value of pixel component at current location for second video frame (bottom layer).
5465 @end table
5466 @end table
5467
5468 The @code{blend} filter also supports the @ref{framesync} options.
5469
5470 @subsection Examples
5471
5472 @itemize
5473 @item
5474 Apply transition from bottom layer to top layer in first 10 seconds:
5475 @example
5476 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
5477 @end example
5478
5479 @item
5480 Apply linear horizontal transition from top layer to bottom layer:
5481 @example
5482 blend=all_expr='A*(X/W)+B*(1-X/W)'
5483 @end example
5484
5485 @item
5486 Apply 1x1 checkerboard effect:
5487 @example
5488 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
5489 @end example
5490
5491 @item
5492 Apply uncover left effect:
5493 @example
5494 blend=all_expr='if(gte(N*SW+X,W),A,B)'
5495 @end example
5496
5497 @item
5498 Apply uncover down effect:
5499 @example
5500 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
5501 @end example
5502
5503 @item
5504 Apply uncover up-left effect:
5505 @example
5506 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
5507 @end example
5508
5509 @item
5510 Split diagonally video and shows top and bottom layer on each side:
5511 @example
5512 blend=all_expr='if(gt(X,Y*(W/H)),A,B)'
5513 @end example
5514
5515 @item
5516 Display differences between the current and the previous frame:
5517 @example
5518 tblend=all_mode=grainextract
5519 @end example
5520 @end itemize
5521
5522 @section boxblur
5523
5524 Apply a boxblur algorithm to the input video.
5525
5526 It accepts the following parameters:
5527
5528 @table @option
5529
5530 @item luma_radius, lr
5531 @item luma_power, lp
5532 @item chroma_radius, cr
5533 @item chroma_power, cp
5534 @item alpha_radius, ar
5535 @item alpha_power, ap
5536
5537 @end table
5538
5539 A description of the accepted options follows.
5540
5541 @table @option
5542 @item luma_radius, lr
5543 @item chroma_radius, cr
5544 @item alpha_radius, ar
5545 Set an expression for the box radius in pixels used for blurring the
5546 corresponding input plane.
5547
5548 The radius value must be a non-negative number, and must not be
5549 greater than the value of the expression @code{min(w,h)/2} for the
5550 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
5551 planes.
5552
5553 Default value for @option{luma_radius} is "2". If not specified,
5554 @option{chroma_radius} and @option{alpha_radius} default to the
5555 corresponding value set for @option{luma_radius}.
5556
5557 The expressions can contain the following constants:
5558 @table @option
5559 @item w
5560 @item h
5561 The input width and height in pixels.
5562
5563 @item cw
5564 @item ch
5565 The input chroma image width and height in pixels.
5566
5567 @item hsub
5568 @item vsub
5569 The horizontal and vertical chroma subsample values. For example, for the
5570 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
5571 @end table
5572
5573 @item luma_power, lp
5574 @item chroma_power, cp
5575 @item alpha_power, ap
5576 Specify how many times the boxblur filter is applied to the
5577 corresponding plane.
5578
5579 Default value for @option{luma_power} is 2. If not specified,
5580 @option{chroma_power} and @option{alpha_power} default to the
5581 corresponding value set for @option{luma_power}.
5582
5583 A value of 0 will disable the effect.
5584 @end table
5585
5586 @subsection Examples
5587
5588 @itemize
5589 @item
5590 Apply a boxblur filter with the luma, chroma, and alpha radii
5591 set to 2:
5592 @example
5593 boxblur=luma_radius=2:luma_power=1
5594 boxblur=2:1
5595 @end example
5596
5597 @item
5598 Set the luma radius to 2, and alpha and chroma radius to 0:
5599 @example
5600 boxblur=2:1:cr=0:ar=0
5601 @end example
5602
5603 @item
5604 Set the luma and chroma radii to a fraction of the video dimension:
5605 @example
5606 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
5607 @end example
5608 @end itemize
5609
5610 @section bwdif
5611
5612 Deinterlace the input video ("bwdif" stands for "Bob Weaver
5613 Deinterlacing Filter").
5614
5615 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
5616 interpolation algorithms.
5617 It accepts the following parameters:
5618
5619 @table @option
5620 @item mode
5621 The interlacing mode to adopt. It accepts one of the following values:
5622
5623 @table @option
5624 @item 0, send_frame
5625 Output one frame for each frame.
5626 @item 1, send_field
5627 Output one frame for each field.
5628 @end table
5629
5630 The default value is @code{send_field}.
5631
5632 @item parity
5633 The picture field parity assumed for the input interlaced video. It accepts one
5634 of the following values:
5635
5636 @table @option
5637 @item 0, tff
5638 Assume the top field is first.
5639 @item 1, bff
5640 Assume the bottom field is first.
5641 @item -1, auto
5642 Enable automatic detection of field parity.
5643 @end table
5644
5645 The default value is @code{auto}.
5646 If the interlacing is unknown or the decoder does not export this information,
5647 top field first will be assumed.
5648
5649 @item deint
5650 Specify which frames to deinterlace. Accept one of the following
5651 values:
5652
5653 @table @option
5654 @item 0, all
5655 Deinterlace all frames.
5656 @item 1, interlaced
5657 Only deinterlace frames marked as interlaced.
5658 @end table
5659
5660 The default value is @code{all}.
5661 @end table
5662
5663 @section chromakey
5664 YUV colorspace color/chroma keying.
5665
5666 The filter accepts the following options:
5667
5668 @table @option
5669 @item color
5670 The color which will be replaced with transparency.
5671
5672 @item similarity
5673 Similarity percentage with the key color.
5674
5675 0.01 matches only the exact key color, while 1.0 matches everything.
5676
5677 @item blend
5678 Blend percentage.
5679
5680 0.0 makes pixels either fully transparent, or not transparent at all.
5681
5682 Higher values result in semi-transparent pixels, with a higher transparency
5683 the more similar the pixels color is to the key color.
5684
5685 @item yuv
5686 Signals that the color passed is already in YUV instead of RGB.
5687
5688 Literal colors like "green" or "red" don't make sense with this enabled anymore.
5689 This can be used to pass exact YUV values as hexadecimal numbers.
5690 @end table
5691
5692 @subsection Examples
5693
5694 @itemize
5695 @item
5696 Make every green pixel in the input image transparent:
5697 @example
5698 ffmpeg -i input.png -vf chromakey=green out.png
5699 @end example
5700
5701 @item
5702 Overlay a greenscreen-video on top of a static black background.
5703 @example
5704 ffmpeg -f lavfi -i color=c=black:s=1280x720 -i video.mp4 -shortest -filter_complex "[1:v]chromakey=0x70de77:0.1:0.2[ckout];[0:v][ckout]overlay[out]" -map "[out]" output.mkv
5705 @end example
5706 @end itemize
5707
5708 @section ciescope
5709
5710 Display CIE color diagram with pixels overlaid onto it.
5711
5712 The filter accepts the following options:
5713
5714 @table @option
5715 @item system
5716 Set color system.
5717
5718 @table @samp
5719 @item ntsc, 470m
5720 @item ebu, 470bg
5721 @item smpte
5722 @item 240m
5723 @item apple
5724 @item widergb
5725 @item cie1931
5726 @item rec709, hdtv
5727 @item uhdtv, rec2020
5728 @end table
5729
5730 @item cie
5731 Set CIE system.
5732
5733 @table @samp
5734 @item xyy
5735 @item ucs
5736 @item luv
5737 @end table
5738
5739 @item gamuts
5740 Set what gamuts to draw.
5741
5742 See @code{system} option for available values.
5743
5744 @item size, s
5745 Set ciescope size, by default set to 512.
5746
5747 @item intensity, i
5748 Set intensity used to map input pixel values to CIE diagram.
5749
5750 @item contrast
5751 Set contrast used to draw tongue colors that are out of active color system gamut.
5752
5753 @item corrgamma
5754 Correct gamma displayed on scope, by default enabled.
5755
5756 @item showwhite
5757 Show white point on CIE diagram, by default disabled.
5758
5759 @item gamma
5760 Set input gamma. Used only with XYZ input color space.
5761 @end table
5762
5763 @section codecview
5764
5765 Visualize information exported by some codecs.
5766
5767 Some codecs can export information through frames using side-data or other
5768 means. For example, some MPEG based codecs export motion vectors through the
5769 @var{export_mvs} flag in the codec @option{flags2} option.
5770
5771 The filter accepts the following option:
5772
5773 @table @option
5774 @item mv
5775 Set motion vectors to visualize.
5776
5777 Available flags for @var{mv} are:
5778
5779 @table @samp
5780 @item pf
5781 forward predicted MVs of P-frames
5782 @item bf
5783 forward predicted MVs of B-frames
5784 @item bb
5785 backward predicted MVs of B-frames
5786 @end table
5787
5788 @item qp
5789 Display quantization parameters using the chroma planes.
5790
5791 @item mv_type, mvt
5792 Set motion vectors type to visualize. Includes MVs from all frames unless specified by @var{frame_type} option.
5793
5794 Available flags for @var{mv_type} are:
5795
5796 @table @samp
5797 @item fp
5798 forward predicted MVs
5799 @item bp
5800 backward predicted MVs
5801 @end table
5802
5803 @item frame_type, ft
5804 Set frame type to visualize motion vectors of.
5805
5806 Available flags for @var{frame_type} are:
5807
5808 @table @samp
5809 @item if
5810 intra-coded frames (I-frames)
5811 @item pf
5812 predicted frames (P-frames)
5813 @item bf
5814 bi-directionally predicted frames (B-frames)
5815 @end table
5816 @end table
5817
5818 @subsection Examples
5819
5820 @itemize
5821 @item
5822 Visualize forward predicted MVs of all frames using @command{ffplay}:
5823 @example
5824 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv_type=fp
5825 @end example
5826
5827 @item
5828 Visualize multi-directionals MVs of P and B-Frames using @command{ffplay}:
5829 @example
5830 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv=pf+bf+bb
5831 @end example
5832 @end itemize
5833
5834 @section colorbalance
5835 Modify intensity of primary colors (red, green and blue) of input frames.
5836
5837 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
5838 regions for the red-cyan, green-magenta or blue-yellow balance.
5839
5840 A positive adjustment value shifts the balance towards the primary color, a negative
5841 value towards the complementary color.
5842
5843 The filter accepts the following options:
5844
5845 @table @option
5846 @item rs
5847 @item gs
5848 @item bs
5849 Adjust red, green and blue shadows (darkest pixels).
5850
5851 @item rm
5852 @item gm
5853 @item bm
5854 Adjust red, green and blue midtones (medium pixels).
5855
5856 @item rh
5857 @item gh
5858 @item bh
5859 Adjust red, green and blue highlights (brightest pixels).
5860
5861 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
5862 @end table
5863
5864 @subsection Examples
5865
5866 @itemize
5867 @item
5868 Add red color cast to shadows:
5869 @example
5870 colorbalance=rs=.3
5871 @end example
5872 @end itemize
5873
5874 @section colorkey
5875 RGB colorspace color keying.
5876
5877 The filter accepts the following options:
5878
5879 @table @option
5880 @item color
5881 The color which will be replaced with transparency.
5882
5883 @item similarity
5884 Similarity percentage with the key color.
5885
5886 0.01 matches only the exact key color, while 1.0 matches everything.
5887
5888 @item blend
5889 Blend percentage.
5890
5891 0.0 makes pixels either fully transparent, or not transparent at all.
5892
5893 Higher values result in semi-transparent pixels, with a higher transparency
5894 the more similar the pixels color is to the key color.
5895 @end table
5896
5897 @subsection Examples
5898
5899 @itemize
5900 @item
5901 Make every green pixel in the input image transparent:
5902 @example
5903 ffmpeg -i input.png -vf colorkey=green out.png
5904 @end example
5905
5906 @item
5907 Overlay a greenscreen-video on top of a static background image.
5908 @example
5909 ffmpeg -i background.png -i video.mp4 -filter_complex "[1:v]colorkey=0x3BBD1E:0.3:0.2[ckout];[0:v][ckout]overlay[out]" -map "[out]" output.flv
5910 @end example
5911 @end itemize
5912
5913 @section colorlevels
5914
5915 Adjust video input frames using levels.
5916
5917 The filter accepts the following options:
5918
5919 @table @option
5920 @item rimin
5921 @item gimin
5922 @item bimin
5923 @item aimin
5924 Adjust red, green, blue and alpha input black point.
5925 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
5926
5927 @item rimax
5928 @item gimax
5929 @item bimax
5930 @item aimax
5931 Adjust red, green, blue and alpha input white point.
5932 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
5933
5934 Input levels are used to lighten highlights (bright tones), darken shadows
5935 (dark tones), change the balance of bright and dark tones.
5936
5937 @item romin
5938 @item gomin
5939 @item bomin
5940 @item aomin
5941 Adjust red, green, blue and alpha output black point.
5942 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
5943
5944 @item romax
5945 @item gomax
5946 @item bomax
5947 @item aomax
5948 Adjust red, green, blue and alpha output white point.
5949 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
5950
5951 Output levels allows manual selection of a constrained output level range.
5952 @end table
5953
5954 @subsection Examples
5955
5956 @itemize
5957 @item
5958 Make video output darker:
5959 @example
5960 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
5961 @end example
5962
5963 @item
5964 Increase contrast:
5965 @example
5966 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
5967 @end example
5968
5969 @item
5970 Make video output lighter:
5971 @example
5972 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
5973 @end example
5974
5975 @item
5976 Increase brightness:
5977 @example
5978 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
5979 @end example
5980 @end itemize
5981
5982 @section colorchannelmixer
5983
5984 Adjust video input frames by re-mixing color channels.
5985
5986 This filter modifies a color channel by adding the values associated to
5987 the other channels of the same pixels. For example if the value to
5988 modify is red, the output value will be:
5989 @example
5990 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
5991 @end example
5992
5993 The filter accepts the following options:
5994
5995 @table @option
5996 @item rr
5997 @item rg
5998 @item rb
5999 @item ra
6000 Adjust contribution of input red, green, blue and alpha channels for output red channel.
6001 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
6002
6003 @item gr
6004 @item gg
6005 @item gb
6006 @item ga
6007 Adjust contribution of input red, green, blue and alpha channels for output green channel.
6008 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
6009
6010 @item br
6011 @item bg
6012 @item bb
6013 @item ba
6014 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
6015 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
6016
6017 @item ar
6018 @item ag
6019 @item ab
6020 @item aa
6021 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
6022 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
6023
6024 Allowed ranges for options are @code{[-2.0, 2.0]}.
6025 @end table
6026
6027 @subsection Examples
6028
6029 @itemize
6030 @item
6031 Convert source to grayscale:
6032 @example
6033 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
6034 @end example
6035 @item
6036 Simulate sepia tones:
6037 @example
6038 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
6039 @end example
6040 @end itemize
6041
6042 @section colormatrix
6043
6044 Convert color matrix.
6045
6046 The filter accepts the following options:
6047
6048 @table @option
6049 @item src
6050 @item dst
6051 Specify the source and destination color matrix. Both values must be
6052 specified.
6053
6054 The accepted values are:
6055 @table @samp
6056 @item bt709
6057 BT.709
6058
6059 @item fcc
6060 FCC
6061
6062 @item bt601
6063 BT.601
6064
6065 @item bt470
6066 BT.470
6067
6068 @item bt470bg
6069 BT.470BG
6070
6071 @item smpte170m
6072 SMPTE-170M
6073
6074 @item smpte240m
6075 SMPTE-240M
6076
6077 @item bt2020
6078 BT.2020
6079 @end table
6080 @end table
6081
6082 For example to convert from BT.601 to SMPTE-240M, use the command:
6083 @example
6084 colormatrix=bt601:smpte240m
6085 @end example
6086
6087 @section colorspace
6088
6089 Convert colorspace, transfer characteristics or color primaries.
6090 Input video needs to have an even size.
6091
6092 The filter accepts the following options:
6093
6094 @table @option
6095 @anchor{all}
6096 @item all
6097 Specify all color properties at once.
6098
6099 The accepted values are:
6100 @table @samp
6101 @item bt470m
6102 BT.470M
6103
6104 @item bt470bg
6105 BT.470BG
6106
6107 @item bt601-6-525
6108 BT.601-6 525
6109
6110 @item bt601-6-625
6111 BT.601-6 625
6112
6113 @item bt709
6114 BT.709
6115
6116 @item smpte170m
6117 SMPTE-170M
6118
6119 @item smpte240m
6120 SMPTE-240M
6121
6122 @item bt2020
6123 BT.2020
6124
6125 @end table
6126
6127 @anchor{space}
6128 @item space
6129 Specify output colorspace.
6130
6131 The accepted values are:
6132 @table @samp
6133 @item bt709
6134 BT.709
6135
6136 @item fcc
6137 FCC
6138
6139 @item bt470bg
6140 BT.470BG or BT.601-6 625
6141
6142 @item smpte170m
6143 SMPTE-170M or BT.601-6 525
6144
6145 @item smpte240m
6146 SMPTE-240M
6147
6148 @item ycgco
6149 YCgCo
6150
6151 @item bt2020ncl
6152 BT.2020 with non-constant luminance
6153
6154 @end table
6155
6156 @anchor{trc}
6157 @item trc
6158 Specify output transfer characteristics.
6159
6160 The accepted values are:
6161 @table @samp
6162 @item bt709
6163 BT.709
6164
6165 @item bt470m
6166 BT.470M
6167
6168 @item bt470bg
6169 BT.470BG
6170
6171 @item gamma22
6172 Constant gamma of 2.2
6173
6174 @item gamma28
6175 Constant gamma of 2.8
6176
6177 @item smpte170m
6178 SMPTE-170M, BT.601-6 625 or BT.601-6 525
6179
6180 @item smpte240m
6181 SMPTE-240M
6182
6183 @item srgb
6184 SRGB
6185
6186 @item iec61966-2-1
6187 iec61966-2-1
6188
6189 @item iec61966-2-4
6190 iec61966-2-4
6191
6192 @item xvycc
6193 xvycc
6194
6195 @item bt2020-10
6196 BT.2020 for 10-bits content
6197
6198 @item bt2020-12
6199 BT.2020 for 12-bits content
6200
6201 @end table
6202
6203 @anchor{primaries}
6204 @item primaries
6205 Specify output color primaries.
6206
6207 The accepted values are:
6208 @table @samp
6209 @item bt709
6210 BT.709
6211
6212 @item bt470m
6213 BT.470M
6214
6215 @item bt470bg
6216 BT.470BG or BT.601-6 625
6217
6218 @item smpte170m
6219 SMPTE-170M or BT.601-6 525
6220
6221 @item smpte240m
6222 SMPTE-240M
6223
6224 @item film
6225 film
6226
6227 @item smpte431
6228 SMPTE-431
6229
6230 @item smpte432
6231 SMPTE-432
6232
6233 @item bt2020
6234 BT.2020
6235
6236 @item jedec-p22
6237 JEDEC P22 phosphors
6238
6239 @end table
6240
6241 @anchor{range}
6242 @item range
6243 Specify output color range.
6244
6245 The accepted values are:
6246 @table @samp
6247 @item tv
6248 TV (restricted) range
6249
6250 @item mpeg
6251 MPEG (restricted) range
6252
6253 @item pc
6254 PC (full) range
6255
6256 @item jpeg
6257 JPEG (full) range
6258
6259 @end table
6260
6261 @item format
6262 Specify output color format.
6263
6264 The accepted values are:
6265 @table @samp
6266 @item yuv420p
6267 YUV 4:2:0 planar 8-bits
6268
6269 @item yuv420p10
6270 YUV 4:2:0 planar 10-bits
6271
6272 @item yuv420p12
6273 YUV 4:2:0 planar 12-bits
6274
6275 @item yuv422p
6276 YUV 4:2:2 planar 8-bits
6277
6278 @item yuv422p10
6279 YUV 4:2:2 planar 10-bits
6280
6281 @item yuv422p12
6282 YUV 4:2:2 planar 12-bits
6283
6284 @item yuv444p
6285 YUV 4:4:4 planar 8-bits
6286
6287 @item yuv444p10
6288 YUV 4:4:4 planar 10-bits
6289
6290 @item yuv444p12
6291 YUV 4:4:4 planar 12-bits
6292
6293 @end table
6294
6295 @item fast
6296 Do a fast conversion, which skips gamma/primary correction. This will take
6297 significantly less CPU, but will be mathematically incorrect. To get output
6298 compatible with that produced by the colormatrix filter, use fast=1.
6299
6300 @item dither
6301 Specify dithering mode.
6302
6303 The accepted values are:
6304 @table @samp
6305 @item none
6306 No dithering
6307
6308 @item fsb
6309 Floyd-Steinberg dithering
6310 @end table
6311
6312 @item wpadapt
6313 Whitepoint adaptation mode.
6314
6315 The accepted values are:
6316 @table @samp
6317 @item bradford
6318 Bradford whitepoint adaptation
6319
6320 @item vonkries
6321 von Kries whitepoint adaptation
6322
6323 @item identity
6324 identity whitepoint adaptation (i.e. no whitepoint adaptation)
6325 @end table
6326
6327 @item iall
6328 Override all input properties at once. Same accepted values as @ref{all}.
6329
6330 @item ispace
6331 Override input colorspace. Same accepted values as @ref{space}.
6332
6333 @item iprimaries
6334 Override input color primaries. Same accepted values as @ref{primaries}.
6335
6336 @item itrc
6337 Override input transfer characteristics. Same accepted values as @ref{trc}.
6338
6339 @item irange
6340 Override input color range. Same accepted values as @ref{range}.
6341
6342 @end table
6343
6344 The filter converts the transfer characteristics, color space and color
6345 primaries to the specified user values. The output value, if not specified,
6346 is set to a default value based on the "all" property. If that property is
6347 also not specified, the filter will log an error. The output color range and
6348 format default to the same value as the input color range and format. The
6349 input transfer characteristics, color space, color primaries and color range
6350 should be set on the input data. If any of these are missing, the filter will
6351 log an error and no conversion will take place.
6352
6353 For example to convert the input to SMPTE-240M, use the command:
6354 @example
6355 colorspace=smpte240m
6356 @end example
6357
6358 @section convolution
6359
6360 Apply convolution 3x3, 5x5 or 7x7 filter.
6361
6362 The filter accepts the following options:
6363
6364 @table @option
6365 @item 0m
6366 @item 1m
6367 @item 2m
6368 @item 3m
6369 Set matrix for each plane.
6370 Matrix is sequence of 9, 25 or 49 signed integers.
6371
6372 @item 0rdiv
6373 @item 1rdiv
6374 @item 2rdiv
6375 @item 3rdiv
6376 Set multiplier for calculated value for each plane.
6377
6378 @item 0bias
6379 @item 1bias
6380 @item 2bias
6381 @item 3bias
6382 Set bias for each plane. This value is added to the result of the multiplication.
6383 Useful for making the overall image brighter or darker. Default is 0.0.
6384 @end table
6385
6386 @subsection Examples
6387
6388 @itemize
6389 @item
6390 Apply sharpen:
6391 @example
6392 convolution="0 -1 0 -1 5 -1 0 -1 0:0 -1 0 -1 5 -1 0 -1 0:0 -1 0 -1 5 -1 0 -1 0:0 -1 0 -1 5 -1 0 -1 0"
6393 @end example
6394
6395 @item
6396 Apply blur:
6397 @example
6398 convolution="1 1 1 1 1 1 1 1 1:1 1 1 1 1 1 1 1 1:1 1 1 1 1 1 1 1 1:1 1 1 1 1 1 1 1 1:1/9:1/9:1/9:1/9"
6399 @end example
6400
6401 @item
6402 Apply edge enhance:
6403 @example
6404 convolution="0 0 0 -1 1 0 0 0 0:0 0 0 -1 1 0 0 0 0:0 0 0 -1 1 0 0 0 0:0 0 0 -1 1 0 0 0 0:5:1:1:1:0:128:128:128"
6405 @end example
6406
6407 @item
6408 Apply edge detect:
6409 @example
6410 convolution="0 1 0 1 -4 1 0 1 0:0 1 0 1 -4 1 0 1 0:0 1 0 1 -4 1 0 1 0:0 1 0 1 -4 1 0 1 0:5:5:5:1:0:128:128:128"
6411 @end example
6412
6413 @item
6414 Apply laplacian edge detector which includes diagonals:
6415 @example
6416 convolution="1 1 1 1 -8 1 1 1 1:1 1 1 1 -8 1 1 1 1:1 1 1 1 -8 1 1 1 1:1 1 1 1 -8 1 1 1 1:5:5:5:1:0:128:128:0"
6417 @end example
6418
6419 @item
6420 Apply emboss:
6421 @example
6422 convolution="-2 -1 0 -1 1 1 0 1 2:-2 -1 0 -1 1 1 0 1 2:-2 -1 0 -1 1 1 0 1 2:-2 -1 0 -1 1 1 0 1 2"
6423 @end example
6424 @end itemize
6425
6426 @section convolve
6427
6428 Apply 2D convolution of video stream in frequency domain using second stream
6429 as impulse.
6430
6431 The filter accepts the following options:
6432
6433 @table @option
6434 @item planes
6435 Set which planes to process.
6436
6437 @item impulse
6438 Set which impulse video frames will be processed, can be @var{first}
6439 or @var{all}. Default is @var{all}.
6440 @end table
6441
6442 The @code{convolve} filter also supports the @ref{framesync} options.
6443
6444 @section copy
6445
6446 Copy the input video source unchanged to the output. This is mainly useful for
6447 testing purposes.
6448
6449 @anchor{coreimage}
6450 @section coreimage
6451 Video filtering on GPU using Apple's CoreImage API on OSX.
6452
6453 Hardware acceleration is based on an OpenGL context. Usually, this means it is
6454 processed by video hardware. However, software-based OpenGL implementations
6455 exist which means there is no guarantee for hardware processing. It depends on
6456 the respective OSX.
6457
6458 There are many filters and image generators provided by Apple that come with a
6459 large variety of options. The filter has to be referenced by its name along
6460 with its options.
6461
6462 The coreimage filter accepts the following options:
6463 @table @option
6464 @item list_filters
6465 List all available filters and generators along with all their respective
6466 options as well as possible minimum and maximum values along with the default
6467 values.
6468 @example
6469 list_filters=true
6470 @end example
6471
6472 @item filter
6473 Specify all filters by their respective name and options.
6474 Use @var{list_filters} to determine all valid filter names and options.
6475 Numerical options are specified by a float value and are automatically clamped
6476 to their respective value range.  Vector and color options have to be specified
6477 by a list of space separated float values. Character escaping has to be done.
6478 A special option name @code{default} is available to use default options for a
6479 filter.
6480
6481 It is required to specify either @code{default} or at least one of the filter options.
6482 All omitted options are used with their default values.
6483 The syntax of the filter string is as follows:
6484 @example
6485 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
6486 @end example
6487
6488 @item output_rect
6489 Specify a rectangle where the output of the filter chain is copied into the
6490 input image. It is given by a list of space separated float values:
6491 @example
6492 output_rect=x\ y\ width\ height
6493 @end example
6494 If not given, the output rectangle equals the dimensions of the input image.
6495 The output rectangle is automatically cropped at the borders of the input
6496 image. Negative values are valid for each component.
6497 @example
6498 output_rect=25\ 25\ 100\ 100
6499 @end example
6500 @end table
6501
6502 Several filters can be chained for successive processing without GPU-HOST
6503 transfers allowing for fast processing of complex filter chains.
6504 Currently, only filters with zero (generators) or exactly one (filters) input
6505 image and one output image are supported. Also, transition filters are not yet
6506 usable as intended.
6507
6508 Some filters generate output images with additional padding depending on the
6509 respective filter kernel. The padding is automatically removed to ensure the
6510 filter output has the same size as the input image.
6511
6512 For image generators, the size of the output image is determined by the
6513 previous output image of the filter chain or the input image of the whole
6514 filterchain, respectively. The generators do not use the pixel information of
6515 this image to generate their output. However, the generated output is
6516 blended onto this image, resulting in partial or complete coverage of the
6517 output image.
6518
6519 The @ref{coreimagesrc} video source can be used for generating input images
6520 which are directly fed into the filter chain. By using it, providing input
6521 images by another video source or an input video is not required.
6522
6523 @subsection Examples
6524
6525 @itemize
6526
6527 @item
6528 List all filters available:
6529 @example
6530 coreimage=list_filters=true
6531 @end example
6532
6533 @item
6534 Use the CIBoxBlur filter with default options to blur an image:
6535 @example
6536 coreimage=filter=CIBoxBlur@@default
6537 @end example
6538
6539 @item
6540 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
6541 its center at 100x100 and a radius of 50 pixels:
6542 @example
6543 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
6544 @end example
6545
6546 @item
6547 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
6548 given as complete and escaped command-line for Apple's standard bash shell:
6549 @example
6550 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
6551 @end example
6552 @end itemize
6553
6554 @section crop
6555
6556 Crop the input video to given dimensions.
6557
6558 It accepts the following parameters:
6559
6560 @table @option
6561 @item w, out_w
6562 The width of the output video. It defaults to @code{iw}.
6563 This expression is evaluated only once during the filter
6564 configuration, or when the @samp{w} or @samp{out_w} command is sent.
6565
6566 @item h, out_h
6567 The height of the output video. It defaults to @code{ih}.
6568 This expression is evaluated only once during the filter
6569 configuration, or when the @samp{h} or @samp{out_h} command is sent.
6570
6571 @item x
6572 The horizontal position, in the input video, of the left edge of the output
6573 video. It defaults to @code{(in_w-out_w)/2}.
6574 This expression is evaluated per-frame.
6575
6576 @item y
6577 The vertical position, in the input video, of the top edge of the output video.
6578 It defaults to @code{(in_h-out_h)/2}.
6579 This expression is evaluated per-frame.
6580
6581 @item keep_aspect
6582 If set to 1 will force the output display aspect ratio
6583 to be the same of the input, by changing the output sample aspect
6584 ratio. It defaults to 0.
6585
6586 @item exact
6587 Enable exact cropping. If enabled, subsampled videos will be cropped at exact
6588 width/height/x/y as specified and will not be rounded to nearest smaller value.
6589 It defaults to 0.
6590 @end table
6591
6592 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
6593 expressions containing the following constants:
6594
6595 @table @option
6596 @item x
6597 @item y
6598 The computed values for @var{x} and @var{y}. They are evaluated for
6599 each new frame.
6600
6601 @item in_w
6602 @item in_h
6603 The input width and height.
6604
6605 @item iw
6606 @item ih
6607 These are the same as @var{in_w} and @var{in_h}.
6608
6609 @item out_w
6610 @item out_h
6611 The output (cropped) width and height.
6612
6613 @item ow
6614 @item oh
6615 These are the same as @var{out_w} and @var{out_h}.
6616
6617 @item a
6618 same as @var{iw} / @var{ih}
6619
6620 @item sar
6621 input sample aspect ratio
6622
6623 @item dar
6624 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
6625
6626 @item hsub
6627 @item vsub
6628 horizontal and vertical chroma subsample values. For example for the
6629 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6630
6631 @item n
6632 The number of the input frame, starting from 0.
6633
6634 @item pos
6635 the position in the file of the input frame, NAN if unknown
6636
6637 @item t
6638 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
6639
6640 @end table
6641
6642 The expression for @var{out_w} may depend on the value of @var{out_h},
6643 and the expression for @var{out_h} may depend on @var{out_w}, but they
6644 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
6645 evaluated after @var{out_w} and @var{out_h}.
6646
6647 The @var{x} and @var{y} parameters specify the expressions for the
6648 position of the top-left corner of the output (non-cropped) area. They
6649 are evaluated for each frame. If the evaluated value is not valid, it
6650 is approximated to the nearest valid value.
6651
6652 The expression for @var{x} may depend on @var{y}, and the expression
6653 for @var{y} may depend on @var{x}.
6654
6655 @subsection Examples
6656
6657 @itemize
6658 @item
6659 Crop area with size 100x100 at position (12,34).
6660 @example
6661 crop=100:100:12:34
6662 @end example
6663
6664 Using named options, the example above becomes:
6665 @example
6666 crop=w=100:h=100:x=12:y=34
6667 @end example
6668
6669 @item
6670 Crop the central input area with size 100x100:
6671 @example
6672 crop=100:100
6673 @end example
6674
6675 @item
6676 Crop the central input area with size 2/3 of the input video:
6677 @example
6678 crop=2/3*in_w:2/3*in_h
6679 @end example
6680
6681 @item
6682 Crop the input video central square:
6683 @example
6684 crop=out_w=in_h
6685 crop=in_h
6686 @end example
6687
6688 @item
6689 Delimit the rectangle with the top-left corner placed at position
6690 100:100 and the right-bottom corner corresponding to the right-bottom
6691 corner of the input image.
6692 @example
6693 crop=in_w-100:in_h-100:100:100
6694 @end example
6695
6696 @item
6697 Crop 10 pixels from the left and right borders, and 20 pixels from
6698 the top and bottom borders
6699 @example
6700 crop=in_w-2*10:in_h-2*20
6701 @end example
6702
6703 @item
6704 Keep only the bottom right quarter of the input image:
6705 @example
6706 crop=in_w/2:in_h/2:in_w/2:in_h/2
6707 @end example
6708
6709 @item
6710 Crop height for getting Greek harmony:
6711 @example
6712 crop=in_w:1/PHI*in_w
6713 @end example
6714
6715 @item
6716 Apply trembling effect:
6717 @example
6718 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)
6719 @end example
6720
6721 @item
6722 Apply erratic camera effect depending on timestamp:
6723 @example
6724 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)"
6725 @end example
6726
6727 @item
6728 Set x depending on the value of y:
6729 @example
6730 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
6731 @end example
6732 @end itemize
6733
6734 @subsection Commands
6735
6736 This filter supports the following commands:
6737 @table @option
6738 @item w, out_w
6739 @item h, out_h
6740 @item x
6741 @item y
6742 Set width/height of the output video and the horizontal/vertical position
6743 in the input video.
6744 The command accepts the same syntax of the corresponding option.
6745
6746 If the specified expression is not valid, it is kept at its current
6747 value.
6748 @end table
6749
6750 @section cropdetect
6751
6752 Auto-detect the crop size.
6753
6754 It calculates the necessary cropping parameters and prints the
6755 recommended parameters via the logging system. The detected dimensions
6756 correspond to the non-black area of the input video.
6757
6758 It accepts the following parameters:
6759
6760 @table @option
6761
6762 @item limit
6763 Set higher black value threshold, which can be optionally specified
6764 from nothing (0) to everything (255 for 8-bit based formats). An intensity
6765 value greater to the set value is considered non-black. It defaults to 24.
6766 You can also specify a value between 0.0 and 1.0 which will be scaled depending
6767 on the bitdepth of the pixel format.
6768
6769 @item round
6770 The value which the width/height should be divisible by. It defaults to
6771 16. The offset is automatically adjusted to center the video. Use 2 to
6772 get only even dimensions (needed for 4:2:2 video). 16 is best when
6773 encoding to most video codecs.
6774
6775 @item reset_count, reset
6776 Set the counter that determines after how many frames cropdetect will
6777 reset the previously detected largest video area and start over to
6778 detect the current optimal crop area. Default value is 0.
6779
6780 This can be useful when channel logos distort the video area. 0
6781 indicates 'never reset', and returns the largest area encountered during
6782 playback.
6783 @end table
6784
6785 @anchor{curves}
6786 @section curves
6787
6788 Apply color adjustments using curves.
6789
6790 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
6791 component (red, green and blue) has its values defined by @var{N} key points
6792 tied from each other using a smooth curve. The x-axis represents the pixel
6793 values from the input frame, and the y-axis the new pixel values to be set for
6794 the output frame.
6795
6796 By default, a component curve is defined by the two points @var{(0;0)} and
6797 @var{(1;1)}. This creates a straight line where each original pixel value is
6798 "adjusted" to its own value, which means no change to the image.
6799
6800 The filter allows you to redefine these two points and add some more. A new
6801 curve (using a natural cubic spline interpolation) will be define to pass
6802 smoothly through all these new coordinates. The new defined points needs to be
6803 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
6804 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
6805 the vector spaces, the values will be clipped accordingly.
6806
6807 The filter accepts the following options:
6808
6809 @table @option
6810 @item preset
6811 Select one of the available color presets. This option can be used in addition
6812 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
6813 options takes priority on the preset values.
6814 Available presets are:
6815 @table @samp
6816 @item none
6817 @item color_negative
6818 @item cross_process
6819 @item darker
6820 @item increase_contrast
6821 @item lighter
6822 @item linear_contrast
6823 @item medium_contrast
6824 @item negative
6825 @item strong_contrast
6826 @item vintage
6827 @end table
6828 Default is @code{none}.
6829 @item master, m
6830 Set the master key points. These points will define a second pass mapping. It
6831 is sometimes called a "luminance" or "value" mapping. It can be used with
6832 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
6833 post-processing LUT.
6834 @item red, r
6835 Set the key points for the red component.
6836 @item green, g
6837 Set the key points for the green component.
6838 @item blue, b
6839 Set the key points for the blue component.
6840 @item all
6841 Set the key points for all components (not including master).
6842 Can be used in addition to the other key points component
6843 options. In this case, the unset component(s) will fallback on this
6844 @option{all} setting.
6845 @item psfile
6846 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
6847 @item plot
6848 Save Gnuplot script of the curves in specified file.
6849 @end table
6850
6851 To avoid some filtergraph syntax conflicts, each key points list need to be
6852 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
6853
6854 @subsection Examples
6855
6856 @itemize
6857 @item
6858 Increase slightly the middle level of blue:
6859 @example
6860 curves=blue='0/0 0.5/0.58 1/1'
6861 @end example
6862
6863 @item
6864 Vintage effect:
6865 @example
6866 curves=r='0/0.11 .42/.51 1/0.95':g='0/0 0.50/0.48 1/1':b='0/0.22 .49/.44 1/0.8'
6867 @end example
6868 Here we obtain the following coordinates for each components:
6869 @table @var
6870 @item red
6871 @code{(0;0.11) (0.42;0.51) (1;0.95)}
6872 @item green
6873 @code{(0;0) (0.50;0.48) (1;1)}
6874 @item blue
6875 @code{(0;0.22) (0.49;0.44) (1;0.80)}
6876 @end table
6877
6878 @item
6879 The previous example can also be achieved with the associated built-in preset:
6880 @example
6881 curves=preset=vintage
6882 @end example
6883
6884 @item
6885 Or simply:
6886 @example
6887 curves=vintage
6888 @end example
6889
6890 @item
6891 Use a Photoshop preset and redefine the points of the green component:
6892 @example
6893 curves=psfile='MyCurvesPresets/purple.acv':green='0/0 0.45/0.53 1/1'
6894 @end example
6895
6896 @item
6897 Check out the curves of the @code{cross_process} profile using @command{ffmpeg}
6898 and @command{gnuplot}:
6899 @example
6900 ffmpeg -f lavfi -i color -vf curves=cross_process:plot=/tmp/curves.plt -frames:v 1 -f null -
6901 gnuplot -p /tmp/curves.plt
6902 @end example
6903 @end itemize
6904
6905 @section datascope
6906
6907 Video data analysis filter.
6908
6909 This filter shows hexadecimal pixel values of part of video.
6910
6911 The filter accepts the following options:
6912
6913 @table @option
6914 @item size, s
6915 Set output video size.
6916
6917 @item x
6918 Set x offset from where to pick pixels.
6919
6920 @item y
6921 Set y offset from where to pick pixels.
6922
6923 @item mode
6924 Set scope mode, can be one of the following:
6925 @table @samp
6926 @item mono
6927 Draw hexadecimal pixel values with white color on black background.
6928
6929 @item color
6930 Draw hexadecimal pixel values with input video pixel color on black
6931 background.
6932
6933 @item color2
6934 Draw hexadecimal pixel values on color background picked from input video,
6935 the text color is picked in such way so its always visible.
6936 @end table
6937
6938 @item axis
6939 Draw rows and columns numbers on left and top of video.
6940
6941 @item opacity
6942 Set background opacity.
6943 @end table
6944
6945 @section dctdnoiz
6946
6947 Denoise frames using 2D DCT (frequency domain filtering).
6948
6949 This filter is not designed for real time.
6950
6951 The filter accepts the following options:
6952
6953 @table @option
6954 @item sigma, s
6955 Set the noise sigma constant.
6956
6957 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
6958 coefficient (absolute value) below this threshold with be dropped.
6959
6960 If you need a more advanced filtering, see @option{expr}.
6961
6962 Default is @code{0}.
6963
6964 @item overlap
6965 Set number overlapping pixels for each block. Since the filter can be slow, you
6966 may want to reduce this value, at the cost of a less effective filter and the
6967 risk of various artefacts.
6968
6969 If the overlapping value doesn't permit processing the whole input width or
6970 height, a warning will be displayed and according borders won't be denoised.
6971
6972 Default value is @var{blocksize}-1, which is the best possible setting.
6973
6974 @item expr, e
6975 Set the coefficient factor expression.
6976
6977 For each coefficient of a DCT block, this expression will be evaluated as a
6978 multiplier value for the coefficient.
6979
6980 If this is option is set, the @option{sigma} option will be ignored.
6981
6982 The absolute value of the coefficient can be accessed through the @var{c}
6983 variable.
6984
6985 @item n
6986 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
6987 @var{blocksize}, which is the width and height of the processed blocks.
6988
6989 The default value is @var{3} (8x8) and can be raised to @var{4} for a
6990 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
6991 on the speed processing. Also, a larger block size does not necessarily means a
6992 better de-noising.
6993 @end table
6994
6995 @subsection Examples
6996
6997 Apply a denoise with a @option{sigma} of @code{4.5}:
6998 @example
6999 dctdnoiz=4.5
7000 @end example
7001
7002 The same operation can be achieved using the expression system:
7003 @example
7004 dctdnoiz=e='gte(c, 4.5*3)'
7005 @end example
7006
7007 Violent denoise using a block size of @code{16x16}:
7008 @example
7009 dctdnoiz=15:n=4
7010 @end example
7011
7012 @section deband
7013
7014 Remove banding artifacts from input video.
7015 It works by replacing banded pixels with average value of referenced pixels.
7016
7017 The filter accepts the following options:
7018
7019 @table @option
7020 @item 1thr
7021 @item 2thr
7022 @item 3thr
7023 @item 4thr
7024 Set banding detection threshold for each plane. Default is 0.02.
7025 Valid range is 0.00003 to 0.5.
7026 If difference between current pixel and reference pixel is less than threshold,
7027 it will be considered as banded.
7028
7029 @item range, r
7030 Banding detection range in pixels. Default is 16. If positive, random number
7031 in range 0 to set value will be used. If negative, exact absolute value
7032 will be used.
7033 The range defines square of four pixels around current pixel.
7034
7035 @item direction, d
7036 Set direction in radians from which four pixel will be compared. If positive,
7037 random direction from 0 to set direction will be picked. If negative, exact of
7038 absolute value will be picked. For example direction 0, -PI or -2*PI radians
7039 will pick only pixels on same row and -PI/2 will pick only pixels on same
7040 column.
7041
7042 @item blur, b
7043 If enabled, current pixel is compared with average value of all four
7044 surrounding pixels. The default is enabled. If disabled current pixel is
7045 compared with all four surrounding pixels. The pixel is considered banded
7046 if only all four differences with surrounding pixels are less than threshold.
7047
7048 @item coupling, c
7049 If enabled, current pixel is changed if and only if all pixel components are banded,
7050 e.g. banding detection threshold is triggered for all color components.
7051 The default is disabled.
7052 @end table
7053
7054 @anchor{decimate}
7055 @section decimate
7056
7057 Drop duplicated frames at regular intervals.
7058
7059 The filter accepts the following options:
7060
7061 @table @option
7062 @item cycle
7063 Set the number of frames from which one will be dropped. Setting this to
7064 @var{N} means one frame in every batch of @var{N} frames will be dropped.
7065 Default is @code{5}.
7066
7067 @item dupthresh
7068 Set the threshold for duplicate detection. If the difference metric for a frame
7069 is less than or equal to this value, then it is declared as duplicate. Default
7070 is @code{1.1}
7071
7072 @item scthresh
7073 Set scene change threshold. Default is @code{15}.
7074
7075 @item blockx
7076 @item blocky
7077 Set the size of the x and y-axis blocks used during metric calculations.
7078 Larger blocks give better noise suppression, but also give worse detection of
7079 small movements. Must be a power of two. Default is @code{32}.
7080
7081 @item ppsrc
7082 Mark main input as a pre-processed input and activate clean source input
7083 stream. This allows the input to be pre-processed with various filters to help
7084 the metrics calculation while keeping the frame selection lossless. When set to
7085 @code{1}, the first stream is for the pre-processed input, and the second
7086 stream is the clean source from where the kept frames are chosen. Default is
7087 @code{0}.
7088
7089 @item chroma
7090 Set whether or not chroma is considered in the metric calculations. Default is
7091 @code{1}.
7092 @end table
7093
7094 @section deconvolve
7095
7096 Apply 2D deconvolution of video stream in frequency domain using second stream
7097 as impulse.
7098
7099 The filter accepts the following options:
7100
7101 @table @option
7102 @item planes
7103 Set which planes to process.
7104
7105 @item impulse
7106 Set which impulse video frames will be processed, can be @var{first}
7107 or @var{all}. Default is @var{all}.
7108
7109 @item noise
7110 Set noise when doing divisions. Default is @var{0.0000001}. Useful when width
7111 and height are not same and not power of 2 or if stream prior to convolving
7112 had noise.
7113 @end table
7114
7115 The @code{deconvolve} filter also supports the @ref{framesync} options.
7116
7117 @section deflate
7118
7119 Apply deflate effect to the video.
7120
7121 This filter replaces the pixel by the local(3x3) average by taking into account
7122 only values lower than the pixel.
7123
7124 It accepts the following options:
7125
7126 @table @option
7127 @item threshold0
7128 @item threshold1
7129 @item threshold2
7130 @item threshold3
7131 Limit the maximum change for each plane, default is 65535.
7132 If 0, plane will remain unchanged.
7133 @end table
7134
7135 @section deflicker
7136
7137 Remove temporal frame luminance variations.
7138
7139 It accepts the following options:
7140
7141 @table @option
7142 @item size, s
7143 Set moving-average filter size in frames. Default is 5. Allowed range is 2 - 129.
7144
7145 @item mode, m
7146 Set averaging mode to smooth temporal luminance variations.
7147
7148 Available values are:
7149 @table @samp
7150 @item am
7151 Arithmetic mean
7152
7153 @item gm
7154 Geometric mean
7155
7156 @item hm
7157 Harmonic mean
7158
7159 @item qm
7160 Quadratic mean
7161
7162 @item cm
7163 Cubic mean
7164
7165 @item pm
7166 Power mean
7167
7168 @item median
7169 Median
7170 @end table
7171
7172 @item bypass
7173 Do not actually modify frame. Useful when one only wants metadata.
7174 @end table
7175
7176 @section dejudder
7177
7178 Remove judder produced by partially interlaced telecined content.
7179
7180 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
7181 source was partially telecined content then the output of @code{pullup,dejudder}
7182 will have a variable frame rate. May change the recorded frame rate of the
7183 container. Aside from that change, this filter will not affect constant frame
7184 rate video.
7185
7186 The option available in this filter is:
7187 @table @option
7188
7189 @item cycle
7190 Specify the length of the window over which the judder repeats.
7191
7192 Accepts any integer greater than 1. Useful values are:
7193 @table @samp
7194
7195 @item 4
7196 If the original was telecined from 24 to 30 fps (Film to NTSC).
7197
7198 @item 5
7199 If the original was telecined from 25 to 30 fps (PAL to NTSC).
7200
7201 @item 20
7202 If a mixture of the two.
7203 @end table
7204
7205 The default is @samp{4}.
7206 @end table
7207
7208 @section delogo
7209
7210 Suppress a TV station logo by a simple interpolation of the surrounding
7211 pixels. Just set a rectangle covering the logo and watch it disappear
7212 (and sometimes something even uglier appear - your mileage may vary).
7213
7214 It accepts the following parameters:
7215 @table @option
7216
7217 @item x
7218 @item y
7219 Specify the top left corner coordinates of the logo. They must be
7220 specified.
7221
7222 @item w
7223 @item h
7224 Specify the width and height of the logo to clear. They must be
7225 specified.
7226
7227 @item band, t
7228 Specify the thickness of the fuzzy edge of the rectangle (added to
7229 @var{w} and @var{h}). The default value is 1. This option is
7230 deprecated, setting higher values should no longer be necessary and
7231 is not recommended.
7232
7233 @item show
7234 When set to 1, a green rectangle is drawn on the screen to simplify
7235 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
7236 The default value is 0.
7237
7238 The rectangle is drawn on the outermost pixels which will be (partly)
7239 replaced with interpolated values. The values of the next pixels
7240 immediately outside this rectangle in each direction will be used to
7241 compute the interpolated pixel values inside the rectangle.
7242
7243 @end table
7244
7245 @subsection Examples
7246
7247 @itemize
7248 @item
7249 Set a rectangle covering the area with top left corner coordinates 0,0
7250 and size 100x77, and a band of size 10:
7251 @example
7252 delogo=x=0:y=0:w=100:h=77:band=10
7253 @end example
7254
7255 @end itemize
7256
7257 @section deshake
7258
7259 Attempt to fix small changes in horizontal and/or vertical shift. This
7260 filter helps remove camera shake from hand-holding a camera, bumping a
7261 tripod, moving on a vehicle, etc.
7262
7263 The filter accepts the following options:
7264
7265 @table @option
7266
7267 @item x
7268 @item y
7269 @item w
7270 @item h
7271 Specify a rectangular area where to limit the search for motion
7272 vectors.
7273 If desired the search for motion vectors can be limited to a
7274 rectangular area of the frame defined by its top left corner, width
7275 and height. These parameters have the same meaning as the drawbox
7276 filter which can be used to visualise the position of the bounding
7277 box.
7278
7279 This is useful when simultaneous movement of subjects within the frame
7280 might be confused for camera motion by the motion vector search.
7281
7282 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
7283 then the full frame is used. This allows later options to be set
7284 without specifying the bounding box for the motion vector search.
7285
7286 Default - search the whole frame.
7287
7288 @item rx
7289 @item ry
7290 Specify the maximum extent of movement in x and y directions in the
7291 range 0-64 pixels. Default 16.
7292
7293 @item edge
7294 Specify how to generate pixels to fill blanks at the edge of the
7295 frame. Available values are:
7296 @table @samp
7297 @item blank, 0
7298 Fill zeroes at blank locations
7299 @item original, 1
7300 Original image at blank locations
7301 @item clamp, 2
7302 Extruded edge value at blank locations
7303 @item mirror, 3
7304 Mirrored edge at blank locations
7305 @end table
7306 Default value is @samp{mirror}.
7307
7308 @item blocksize
7309 Specify the blocksize to use for motion search. Range 4-128 pixels,
7310 default 8.
7311
7312 @item contrast
7313 Specify the contrast threshold for blocks. Only blocks with more than
7314 the specified contrast (difference between darkest and lightest
7315 pixels) will be considered. Range 1-255, default 125.
7316
7317 @item search
7318 Specify the search strategy. Available values are:
7319 @table @samp
7320 @item exhaustive, 0
7321 Set exhaustive search
7322 @item less, 1
7323 Set less exhaustive search.
7324 @end table
7325 Default value is @samp{exhaustive}.
7326
7327 @item filename
7328 If set then a detailed log of the motion search is written to the
7329 specified file.
7330
7331 @end table
7332
7333 @section despill
7334
7335 Remove unwanted contamination of foreground colors, caused by reflected color of
7336 greenscreen or bluescreen.
7337
7338 This filter accepts the following options:
7339
7340 @table @option
7341 @item type
7342 Set what type of despill to use.
7343
7344 @item mix
7345 Set how spillmap will be generated.
7346
7347 @item expand
7348 Set how much to get rid of still remaining spill.
7349
7350 @item red
7351 Controls amount of red in spill area.
7352
7353 @item green
7354 Controls amount of green in spill area.
7355 Should be -1 for greenscreen.
7356
7357 @item blue
7358 Controls amount of blue in spill area.
7359 Should be -1 for bluescreen.
7360
7361 @item brightness
7362 Controls brightness of spill area, preserving colors.
7363
7364 @item alpha
7365 Modify alpha from generated spillmap.
7366 @end table
7367
7368 @section detelecine
7369
7370 Apply an exact inverse of the telecine operation. It requires a predefined
7371 pattern specified using the pattern option which must be the same as that passed
7372 to the telecine filter.
7373
7374 This filter accepts the following options:
7375
7376 @table @option
7377 @item first_field
7378 @table @samp
7379 @item top, t
7380 top field first
7381 @item bottom, b
7382 bottom field first
7383 The default value is @code{top}.
7384 @end table
7385
7386 @item pattern
7387 A string of numbers representing the pulldown pattern you wish to apply.
7388 The default value is @code{23}.
7389
7390 @item start_frame
7391 A number representing position of the first frame with respect to the telecine
7392 pattern. This is to be used if the stream is cut. The default value is @code{0}.
7393 @end table
7394
7395 @section dilation
7396
7397 Apply dilation effect to the video.
7398
7399 This filter replaces the pixel by the local(3x3) maximum.
7400
7401 It accepts the following options:
7402
7403 @table @option
7404 @item threshold0
7405 @item threshold1
7406 @item threshold2
7407 @item threshold3
7408 Limit the maximum change for each plane, default is 65535.
7409 If 0, plane will remain unchanged.
7410
7411 @item coordinates
7412 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
7413 pixels are used.
7414
7415 Flags to local 3x3 coordinates maps like this:
7416
7417     1 2 3
7418     4   5
7419     6 7 8
7420 @end table
7421
7422 @section displace
7423
7424 Displace pixels as indicated by second and third input stream.
7425
7426 It takes three input streams and outputs one stream, the first input is the
7427 source, and second and third input are displacement maps.
7428
7429 The second input specifies how much to displace pixels along the
7430 x-axis, while the third input specifies how much to displace pixels
7431 along the y-axis.
7432 If one of displacement map streams terminates, last frame from that
7433 displacement map will be used.
7434
7435 Note that once generated, displacements maps can be reused over and over again.
7436
7437 A description of the accepted options follows.
7438
7439 @table @option
7440 @item edge
7441 Set displace behavior for pixels that are out of range.
7442
7443 Available values are:
7444 @table @samp
7445 @item blank
7446 Missing pixels are replaced by black pixels.
7447
7448 @item smear
7449 Adjacent pixels will spread out to replace missing pixels.
7450
7451 @item wrap
7452 Out of range pixels are wrapped so they point to pixels of other side.
7453
7454 @item mirror
7455 Out of range pixels will be replaced with mirrored pixels.
7456 @end table
7457 Default is @samp{smear}.
7458
7459 @end table
7460
7461 @subsection Examples
7462
7463 @itemize
7464 @item
7465 Add ripple effect to rgb input of video size hd720:
7466 @example
7467 ffmpeg -i INPUT -f lavfi -i nullsrc=s=hd720,lutrgb=128:128:128 -f lavfi -i nullsrc=s=hd720,geq='r=128+30*sin(2*PI*X/400+T):g=128+30*sin(2*PI*X/400+T):b=128+30*sin(2*PI*X/400+T)' -lavfi '[0][1][2]displace' OUTPUT
7468 @end example
7469
7470 @item
7471 Add wave effect to rgb input of video size hd720:
7472 @example
7473 ffmpeg -i INPUT -f lavfi -i nullsrc=hd720,geq='r=128+80*(sin(sqrt((X-W/2)*(X-W/2)+(Y-H/2)*(Y-H/2))/220*2*PI+T)):g=128+80*(sin(sqrt((X-W/2)*(X-W/2)+(Y-H/2)*(Y-H/2))/220*2*PI+T)):b=128+80*(sin(sqrt((X-W/2)*(X-W/2)+(Y-H/2)*(Y-H/2))/220*2*PI+T))' -lavfi '[1]split[x][y],[0][x][y]displace' OUTPUT
7474 @end example
7475 @end itemize
7476
7477 @section drawbox
7478
7479 Draw a colored box on the input image.
7480
7481 It accepts the following parameters:
7482
7483 @table @option
7484 @item x
7485 @item y
7486 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
7487
7488 @item width, w
7489 @item height, h
7490 The expressions which specify the width and height of the box; if 0 they are interpreted as
7491 the input width and height. It defaults to 0.
7492
7493 @item color, c
7494 Specify the color of the box to write. For the general syntax of this option,
7495 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
7496 value @code{invert} is used, the box edge color is the same as the
7497 video with inverted luma.
7498
7499 @item thickness, t
7500 The expression which sets the thickness of the box edge.
7501 A value of @code{fill} will create a filled box. Default value is @code{3}.
7502
7503 See below for the list of accepted constants.
7504
7505 @item replace
7506 Applicable if the input has alpha. With value @code{1}, the pixels of the painted box
7507 will overwrite the video's color and alpha pixels.
7508 Default is @code{0}, which composites the box onto the input, leaving the video's alpha intact.
7509 @end table
7510
7511 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
7512 following constants:
7513
7514 @table @option
7515 @item dar
7516 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
7517
7518 @item hsub
7519 @item vsub
7520 horizontal and vertical chroma subsample values. For example for the
7521 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
7522
7523 @item in_h, ih
7524 @item in_w, iw
7525 The input width and height.
7526
7527 @item sar
7528 The input sample aspect ratio.
7529
7530 @item x
7531 @item y
7532 The x and y offset coordinates where the box is drawn.
7533
7534 @item w
7535 @item h
7536 The width and height of the drawn box.
7537
7538 @item t
7539 The thickness of the drawn box.
7540
7541 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
7542 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
7543
7544 @end table
7545
7546 @subsection Examples
7547
7548 @itemize
7549 @item
7550 Draw a black box around the edge of the input image:
7551 @example
7552 drawbox
7553 @end example
7554
7555 @item
7556 Draw a box with color red and an opacity of 50%:
7557 @example
7558 drawbox=10:20:200:60:red@@0.5
7559 @end example
7560
7561 The previous example can be specified as:
7562 @example
7563 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
7564 @end example
7565
7566 @item
7567 Fill the box with pink color:
7568 @example
7569 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=fill
7570 @end example
7571
7572 @item
7573 Draw a 2-pixel red 2.40:1 mask:
7574 @example
7575 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
7576 @end example
7577 @end itemize
7578
7579 @section drawgrid
7580
7581 Draw a grid on the input image.
7582
7583 It accepts the following parameters:
7584
7585 @table @option
7586 @item x
7587 @item y
7588 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
7589
7590 @item width, w
7591 @item height, h
7592 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
7593 input width and height, respectively, minus @code{thickness}, so image gets
7594 framed. Default to 0.
7595
7596 @item color, c
7597 Specify the color of the grid. For the general syntax of this option,
7598 check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}. If the special
7599 value @code{invert} is used, the grid color is the same as the
7600 video with inverted luma.
7601
7602 @item thickness, t
7603 The expression which sets the thickness of the grid line. Default value is @code{1}.
7604
7605 See below for the list of accepted constants.
7606
7607 @item replace
7608 Applicable if the input has alpha. With @code{1} the pixels of the painted grid
7609 will overwrite the video's color and alpha pixels.
7610 Default is @code{0}, which composites the grid onto the input, leaving the video's alpha intact.
7611 @end table
7612
7613 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
7614 following constants:
7615
7616 @table @option
7617 @item dar
7618 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
7619
7620 @item hsub
7621 @item vsub
7622 horizontal and vertical chroma subsample values. For example for the
7623 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
7624
7625 @item in_h, ih
7626 @item in_w, iw
7627 The input grid cell width and height.
7628
7629 @item sar
7630 The input sample aspect ratio.
7631
7632 @item x
7633 @item y
7634 The x and y coordinates of some point of grid intersection (meant to configure offset).
7635
7636 @item w
7637 @item h
7638 The width and height of the drawn cell.
7639
7640 @item t
7641 The thickness of the drawn cell.
7642
7643 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
7644 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
7645
7646 @end table
7647
7648 @subsection Examples
7649
7650 @itemize
7651 @item
7652 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
7653 @example
7654 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
7655 @end example
7656
7657 @item
7658 Draw a white 3x3 grid with an opacity of 50%:
7659 @example
7660 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
7661 @end example
7662 @end itemize
7663
7664 @anchor{drawtext}
7665 @section drawtext
7666
7667 Draw a text string or text from a specified file on top of a video, using the
7668 libfreetype library.
7669
7670 To enable compilation of this filter, you need to configure FFmpeg with
7671 @code{--enable-libfreetype}.
7672 To enable default font fallback and the @var{font} option you need to
7673 configure FFmpeg with @code{--enable-libfontconfig}.
7674 To enable the @var{text_shaping} option, you need to configure FFmpeg with
7675 @code{--enable-libfribidi}.
7676
7677 @subsection Syntax
7678
7679 It accepts the following parameters:
7680
7681 @table @option
7682
7683 @item box
7684 Used to draw a box around text using the background color.
7685 The value must be either 1 (enable) or 0 (disable).
7686 The default value of @var{box} is 0.
7687
7688 @item boxborderw
7689 Set the width of the border to be drawn around the box using @var{boxcolor}.
7690 The default value of @var{boxborderw} is 0.
7691
7692 @item boxcolor
7693 The color to be used for drawing box around text. For the syntax of this
7694 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
7695
7696 The default value of @var{boxcolor} is "white".
7697
7698 @item line_spacing
7699 Set the line spacing in pixels of the border to be drawn around the box using @var{box}.
7700 The default value of @var{line_spacing} is 0.
7701
7702 @item borderw
7703 Set the width of the border to be drawn around the text using @var{bordercolor}.
7704 The default value of @var{borderw} is 0.
7705
7706 @item bordercolor
7707 Set the color to be used for drawing border around text. For the syntax of this
7708 option, check the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
7709
7710 The default value of @var{bordercolor} is "black".
7711
7712 @item expansion
7713 Select how the @var{text} is expanded. Can be either @code{none},
7714 @code{strftime} (deprecated) or
7715 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
7716 below for details.
7717
7718 @item basetime
7719 Set a start time for the count. Value is in microseconds. Only applied
7720 in the deprecated strftime expansion mode. To emulate in normal expansion
7721 mode use the @code{pts} function, supplying the start time (in seconds)
7722 as the second argument.
7723
7724 @item fix_bounds
7725 If true, check and fix text coords to avoid clipping.
7726
7727 @item fontcolor
7728 The color to be used for drawing fonts. For the syntax of this option, check
7729 the @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
7730
7731 The default value of @var{fontcolor} is "black".
7732
7733 @item fontcolor_expr
7734 String which is expanded the same way as @var{text} to obtain dynamic
7735 @var{fontcolor} value. By default this option has empty value and is not
7736 processed. When this option is set, it overrides @var{fontcolor} option.
7737
7738 @item font
7739 The font family to be used for drawing text. By default Sans.
7740
7741 @item fontfile
7742 The font file to be used for drawing text. The path must be included.
7743 This parameter is mandatory if the fontconfig support is disabled.
7744
7745 @item alpha
7746 Draw the text applying alpha blending. The value can
7747 be a number between 0.0 and 1.0.
7748 The expression accepts the same variables @var{x, y} as well.
7749 The default value is 1.
7750 Please see @var{fontcolor_expr}.
7751
7752 @item fontsize
7753 The font size to be used for drawing text.
7754 The default value of @var{fontsize} is 16.
7755
7756 @item text_shaping
7757 If set to 1, attempt to shape the text (for example, reverse the order of
7758 right-to-left text and join Arabic characters) before drawing it.
7759 Otherwise, just draw the text exactly as given.
7760 By default 1 (if supported).
7761
7762 @item ft_load_flags
7763 The flags to be used for loading the fonts.
7764
7765 The flags map the corresponding flags supported by libfreetype, and are
7766 a combination of the following values:
7767 @table @var
7768 @item default
7769 @item no_scale
7770 @item no_hinting
7771 @item render
7772 @item no_bitmap
7773 @item vertical_layout
7774 @item force_autohint
7775 @item crop_bitmap
7776 @item pedantic
7777 @item ignore_global_advance_width
7778 @item no_recurse
7779 @item ignore_transform
7780 @item monochrome
7781 @item linear_design
7782 @item no_autohint
7783 @end table
7784
7785 Default value is "default".
7786
7787 For more information consult the documentation for the FT_LOAD_*
7788 libfreetype flags.
7789
7790 @item shadowcolor
7791 The color to be used for drawing a shadow behind the drawn text. For the
7792 syntax of this option, check the @ref{color syntax,,"Color" section in the
7793 ffmpeg-utils manual,ffmpeg-utils}.
7794
7795 The default value of @var{shadowcolor} is "black".
7796
7797 @item shadowx
7798 @item shadowy
7799 The x and y offsets for the text shadow position with respect to the
7800 position of the text. They can be either positive or negative
7801 values. The default value for both is "0".
7802
7803 @item start_number
7804 The starting frame number for the n/frame_num variable. The default value
7805 is "0".
7806
7807 @item tabsize
7808 The size in number of spaces to use for rendering the tab.
7809 Default value is 4.
7810
7811 @item timecode
7812 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
7813 format. It can be used with or without text parameter. @var{timecode_rate}
7814 option must be specified.
7815
7816 @item timecode_rate, rate, r
7817 Set the timecode frame rate (timecode only). Value will be rounded to nearest
7818 integer. Minimum value is "1".
7819 Drop-frame timecode is supported for frame rates 30 & 60.
7820
7821 @item tc24hmax
7822 If set to 1, the output of the timecode option will wrap around at 24 hours.
7823 Default is 0 (disabled).
7824
7825 @item text
7826 The text string to be drawn. The text must be a sequence of UTF-8
7827 encoded characters.
7828 This parameter is mandatory if no file is specified with the parameter
7829 @var{textfile}.
7830
7831 @item textfile
7832 A text file containing text to be drawn. The text must be a sequence
7833 of UTF-8 encoded characters.
7834
7835 This parameter is mandatory if no text string is specified with the
7836 parameter @var{text}.
7837
7838 If both @var{text} and @var{textfile} are specified, an error is thrown.
7839
7840 @item reload
7841 If set to 1, the @var{textfile} will be reloaded before each frame.
7842 Be sure to update it atomically, or it may be read partially, or even fail.
7843
7844 @item x
7845 @item y
7846 The expressions which specify the offsets where text will be drawn
7847 within the video frame. They are relative to the top/left border of the
7848 output image.
7849
7850 The default value of @var{x} and @var{y} is "0".
7851
7852 See below for the list of accepted constants and functions.
7853 @end table
7854
7855 The parameters for @var{x} and @var{y} are expressions containing the
7856 following constants and functions:
7857
7858 @table @option
7859 @item dar
7860 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
7861
7862 @item hsub
7863 @item vsub
7864 horizontal and vertical chroma subsample values. For example for the
7865 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
7866
7867 @item line_h, lh
7868 the height of each text line
7869
7870 @item main_h, h, H
7871 the input height
7872
7873 @item main_w, w, W
7874 the input width
7875
7876 @item max_glyph_a, ascent
7877 the maximum distance from the baseline to the highest/upper grid
7878 coordinate used to place a glyph outline point, for all the rendered
7879 glyphs.
7880 It is a positive value, due to the grid's orientation with the Y axis
7881 upwards.
7882
7883 @item max_glyph_d, descent
7884 the maximum distance from the baseline to the lowest grid coordinate
7885 used to place a glyph outline point, for all the rendered glyphs.
7886 This is a negative value, due to the grid's orientation, with the Y axis
7887 upwards.
7888
7889 @item max_glyph_h
7890 maximum glyph height, that is the maximum height for all the glyphs
7891 contained in the rendered text, it is equivalent to @var{ascent} -
7892 @var{descent}.
7893
7894 @item max_glyph_w
7895 maximum glyph width, that is the maximum width for all the glyphs
7896 contained in the rendered text
7897
7898 @item n
7899 the number of input frame, starting from 0
7900
7901 @item rand(min, max)
7902 return a random number included between @var{min} and @var{max}
7903
7904 @item sar
7905 The input sample aspect ratio.
7906
7907 @item t
7908 timestamp expressed in seconds, NAN if the input timestamp is unknown
7909
7910 @item text_h, th
7911 the height of the rendered text
7912
7913 @item text_w, tw
7914 the width of the rendered text
7915
7916 @item x
7917 @item y
7918 the x and y offset coordinates where the text is drawn.
7919
7920 These parameters allow the @var{x} and @var{y} expressions to refer
7921 each other, so you can for example specify @code{y=x/dar}.
7922 @end table
7923
7924 @anchor{drawtext_expansion}
7925 @subsection Text expansion
7926
7927 If @option{expansion} is set to @code{strftime},
7928 the filter recognizes strftime() sequences in the provided text and
7929 expands them accordingly. Check the documentation of strftime(). This
7930 feature is deprecated.
7931
7932 If @option{expansion} is set to @code{none}, the text is printed verbatim.
7933
7934 If @option{expansion} is set to @code{normal} (which is the default),
7935 the following expansion mechanism is used.
7936
7937 The backslash character @samp{\}, followed by any character, always expands to
7938 the second character.
7939
7940 Sequences of the form @code{%@{...@}} are expanded. The text between the
7941 braces is a function name, possibly followed by arguments separated by ':'.
7942 If the arguments contain special characters or delimiters (':' or '@}'),
7943 they should be escaped.
7944
7945 Note that they probably must also be escaped as the value for the
7946 @option{text} option in the filter argument string and as the filter
7947 argument in the filtergraph description, and possibly also for the shell,
7948 that makes up to four levels of escaping; using a text file avoids these
7949 problems.
7950
7951 The following functions are available:
7952
7953 @table @command
7954
7955 @item expr, e
7956 The expression evaluation result.
7957
7958 It must take one argument specifying the expression to be evaluated,
7959 which accepts the same constants and functions as the @var{x} and
7960 @var{y} values. Note that not all constants should be used, for
7961 example the text size is not known when evaluating the expression, so
7962 the constants @var{text_w} and @var{text_h} will have an undefined
7963 value.
7964
7965 @item expr_int_format, eif
7966 Evaluate the expression's value and output as formatted integer.
7967
7968 The first argument is the expression to be evaluated, just as for the @var{expr} function.
7969 The second argument specifies the output format. Allowed values are @samp{x},
7970 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
7971 @code{printf} function.
7972 The third parameter is optional and sets the number of positions taken by the output.
7973 It can be used to add padding with zeros from the left.
7974
7975 @item gmtime
7976 The time at which the filter is running, expressed in UTC.
7977 It can accept an argument: a strftime() format string.
7978
7979 @item localtime
7980 The time at which the filter is running, expressed in the local time zone.
7981 It can accept an argument: a strftime() format string.
7982
7983 @item metadata
7984 Frame metadata. Takes one or two arguments.
7985
7986 The first argument is mandatory and specifies the metadata key.
7987
7988 The second argument is optional and specifies a default value, used when the
7989 metadata key is not found or empty.
7990
7991 @item n, frame_num
7992 The frame number, starting from 0.
7993
7994 @item pict_type
7995 A 1 character description of the current picture type.
7996
7997 @item pts
7998 The timestamp of the current frame.
7999 It can take up to three arguments.
8000
8001 The first argument is the format of the timestamp; it defaults to @code{flt}
8002 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
8003 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
8004 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
8005 @code{localtime} stands for the timestamp of the frame formatted as
8006 local time zone time.
8007
8008 The second argument is an offset added to the timestamp.
8009
8010 If the format is set to @code{localtime} or @code{gmtime},
8011 a third argument may be supplied: a strftime() format string.
8012 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
8013 @end table
8014
8015 @subsection Examples
8016
8017 @itemize
8018 @item
8019 Draw "Test Text" with font FreeSerif, using the default values for the
8020 optional parameters.
8021
8022 @example
8023 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
8024 @end example
8025
8026 @item
8027 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
8028 and y=50 (counting from the top-left corner of the screen), text is
8029 yellow with a red box around it. Both the text and the box have an
8030 opacity of 20%.
8031
8032 @example
8033 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
8034           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
8035 @end example
8036
8037 Note that the double quotes are not necessary if spaces are not used
8038 within the parameter list.
8039
8040 @item
8041 Show the text at the center of the video frame:
8042 @example
8043 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
8044 @end example
8045
8046 @item
8047 Show the text at a random position, switching to a new position every 30 seconds:
8048 @example
8049 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=if(eq(mod(t\,30)\,0)\,rand(0\,(w-text_w))\,x):y=if(eq(mod(t\,30)\,0)\,rand(0\,(h-text_h))\,y)"
8050 @end example
8051
8052 @item
8053 Show a text line sliding from right to left in the last row of the video
8054 frame. The file @file{LONG_LINE} is assumed to contain a single line
8055 with no newlines.
8056 @example
8057 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
8058 @end example
8059
8060 @item
8061 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
8062 @example
8063 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
8064 @end example
8065
8066 @item
8067 Draw a single green letter "g", at the center of the input video.
8068 The glyph baseline is placed at half screen height.
8069 @example
8070 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
8071 @end example
8072
8073 @item
8074 Show text for 1 second every 3 seconds:
8075 @example
8076 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
8077 @end example
8078
8079 @item
8080 Use fontconfig to set the font. Note that the colons need to be escaped.
8081 @example
8082 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
8083 @end example
8084
8085 @item
8086 Print the date of a real-time encoding (see strftime(3)):
8087 @example
8088 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
8089 @end example
8090
8091 @item
8092 Show text fading in and out (appearing/disappearing):
8093 @example
8094 #!/bin/sh
8095 DS=1.0 # display start
8096 DE=10.0 # display end
8097 FID=1.5 # fade in duration
8098 FOD=5 # fade out duration
8099 ffplay -f lavfi "color,drawtext=text=TEST:fontsize=50:fontfile=FreeSerif.ttf:fontcolor_expr=ff0000%@{eif\\\\: clip(255*(1*between(t\\, $DS + $FID\\, $DE - $FOD) + ((t - $DS)/$FID)*between(t\\, $DS\\, $DS + $FID) + (-(t - $DE)/$FOD)*between(t\\, $DE - $FOD\\, $DE) )\\, 0\\, 255) \\\\: x\\\\: 2 @}"
8100 @end example
8101
8102 @item
8103 Horizontally align multiple separate texts. Note that @option{max_glyph_a}
8104 and the @option{fontsize} value are included in the @option{y} offset.
8105 @example
8106 drawtext=fontfile=FreeSans.ttf:text=DOG:fontsize=24:x=10:y=20+24-max_glyph_a,
8107 drawtext=fontfile=FreeSans.ttf:text=cow:fontsize=24:x=80:y=20+24-max_glyph_a
8108 @end example
8109
8110 @end itemize
8111
8112 For more information about libfreetype, check:
8113 @url{http://www.freetype.org/}.
8114
8115 For more information about fontconfig, check:
8116 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
8117
8118 For more information about libfribidi, check:
8119 @url{http://fribidi.org/}.
8120
8121 @section edgedetect
8122
8123 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
8124
8125 The filter accepts the following options:
8126
8127 @table @option
8128 @item low
8129 @item high
8130 Set low and high threshold values used by the Canny thresholding
8131 algorithm.
8132
8133 The high threshold selects the "strong" edge pixels, which are then
8134 connected through 8-connectivity with the "weak" edge pixels selected
8135 by the low threshold.
8136
8137 @var{low} and @var{high} threshold values must be chosen in the range
8138 [0,1], and @var{low} should be lesser or equal to @var{high}.
8139
8140 Default value for @var{low} is @code{20/255}, and default value for @var{high}
8141 is @code{50/255}.
8142
8143 @item mode
8144 Define the drawing mode.
8145
8146 @table @samp
8147 @item wires
8148 Draw white/gray wires on black background.
8149
8150 @item colormix
8151 Mix the colors to create a paint/cartoon effect.
8152 @end table
8153
8154 Default value is @var{wires}.
8155 @end table
8156
8157 @subsection Examples
8158
8159 @itemize
8160 @item
8161 Standard edge detection with custom values for the hysteresis thresholding:
8162 @example
8163 edgedetect=low=0.1:high=0.4
8164 @end example
8165
8166 @item
8167 Painting effect without thresholding:
8168 @example
8169 edgedetect=mode=colormix:high=0
8170 @end example
8171 @end itemize
8172
8173 @section eq
8174 Set brightness, contrast, saturation and approximate gamma adjustment.
8175
8176 The filter accepts the following options:
8177
8178 @table @option
8179 @item contrast
8180 Set the contrast expression. The value must be a float value in range
8181 @code{-2.0} to @code{2.0}. The default value is "1".
8182
8183 @item brightness
8184 Set the brightness expression. The value must be a float value in
8185 range @code{-1.0} to @code{1.0}. The default value is "0".
8186
8187 @item saturation
8188 Set the saturation expression. The value must be a float in
8189 range @code{0.0} to @code{3.0}. The default value is "1".
8190
8191 @item gamma
8192 Set the gamma expression. The value must be a float in range
8193 @code{0.1} to @code{10.0}.  The default value is "1".
8194
8195 @item gamma_r
8196 Set the gamma expression for red. The value must be a float in
8197 range @code{0.1} to @code{10.0}. The default value is "1".
8198
8199 @item gamma_g
8200 Set the gamma expression for green. The value must be a float in range
8201 @code{0.1} to @code{10.0}. The default value is "1".
8202
8203 @item gamma_b
8204 Set the gamma expression for blue. The value must be a float in range
8205 @code{0.1} to @code{10.0}. The default value is "1".
8206
8207 @item gamma_weight
8208 Set the gamma weight expression. It can be used to reduce the effect
8209 of a high gamma value on bright image areas, e.g. keep them from
8210 getting overamplified and just plain white. The value must be a float
8211 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
8212 gamma correction all the way down while @code{1.0} leaves it at its
8213 full strength. Default is "1".
8214
8215 @item eval
8216 Set when the expressions for brightness, contrast, saturation and
8217 gamma expressions are evaluated.
8218
8219 It accepts the following values:
8220 @table @samp
8221 @item init
8222 only evaluate expressions once during the filter initialization or
8223 when a command is processed
8224
8225 @item frame
8226 evaluate expressions for each incoming frame
8227 @end table
8228
8229 Default value is @samp{init}.
8230 @end table
8231
8232 The expressions accept the following parameters:
8233 @table @option
8234 @item n
8235 frame count of the input frame starting from 0
8236
8237 @item pos
8238 byte position of the corresponding packet in the input file, NAN if
8239 unspecified
8240
8241 @item r
8242 frame rate of the input video, NAN if the input frame rate is unknown
8243
8244 @item t
8245 timestamp expressed in seconds, NAN if the input timestamp is unknown
8246 @end table
8247
8248 @subsection Commands
8249 The filter supports the following commands:
8250
8251 @table @option
8252 @item contrast
8253 Set the contrast expression.
8254
8255 @item brightness
8256 Set the brightness expression.
8257
8258 @item saturation
8259 Set the saturation expression.
8260
8261 @item gamma
8262 Set the gamma expression.
8263
8264 @item gamma_r
8265 Set the gamma_r expression.
8266
8267 @item gamma_g
8268 Set gamma_g expression.
8269
8270 @item gamma_b
8271 Set gamma_b expression.
8272
8273 @item gamma_weight
8274 Set gamma_weight expression.
8275
8276 The command accepts the same syntax of the corresponding option.
8277
8278 If the specified expression is not valid, it is kept at its current
8279 value.
8280
8281 @end table
8282
8283 @section erosion
8284
8285 Apply erosion effect to the video.
8286
8287 This filter replaces the pixel by the local(3x3) minimum.
8288
8289 It accepts the following options:
8290
8291 @table @option
8292 @item threshold0
8293 @item threshold1
8294 @item threshold2
8295 @item threshold3
8296 Limit the maximum change for each plane, default is 65535.
8297 If 0, plane will remain unchanged.
8298
8299 @item coordinates
8300 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
8301 pixels are used.
8302
8303 Flags to local 3x3 coordinates maps like this:
8304
8305     1 2 3
8306     4   5
8307     6 7 8
8308 @end table
8309
8310 @section extractplanes
8311
8312 Extract color channel components from input video stream into
8313 separate grayscale video streams.
8314
8315 The filter accepts the following option:
8316
8317 @table @option
8318 @item planes
8319 Set plane(s) to extract.
8320
8321 Available values for planes are:
8322 @table @samp
8323 @item y
8324 @item u
8325 @item v
8326 @item a
8327 @item r
8328 @item g
8329 @item b
8330 @end table
8331
8332 Choosing planes not available in the input will result in an error.
8333 That means you cannot select @code{r}, @code{g}, @code{b} planes
8334 with @code{y}, @code{u}, @code{v} planes at same time.
8335 @end table
8336
8337 @subsection Examples
8338
8339 @itemize
8340 @item
8341 Extract luma, u and v color channel component from input video frame
8342 into 3 grayscale outputs:
8343 @example
8344 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
8345 @end example
8346 @end itemize
8347
8348 @section elbg
8349
8350 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
8351
8352 For each input image, the filter will compute the optimal mapping from
8353 the input to the output given the codebook length, that is the number
8354 of distinct output colors.
8355
8356 This filter accepts the following options.
8357
8358 @table @option
8359 @item codebook_length, l
8360 Set codebook length. The value must be a positive integer, and
8361 represents the number of distinct output colors. Default value is 256.
8362
8363 @item nb_steps, n
8364 Set the maximum number of iterations to apply for computing the optimal
8365 mapping. The higher the value the better the result and the higher the
8366 computation time. Default value is 1.
8367
8368 @item seed, s
8369 Set a random seed, must be an integer included between 0 and
8370 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
8371 will try to use a good random seed on a best effort basis.
8372
8373 @item pal8
8374 Set pal8 output pixel format. This option does not work with codebook
8375 length greater than 256.
8376 @end table
8377
8378 @section entropy
8379
8380 Measure graylevel entropy in histogram of color channels of video frames.
8381
8382 It accepts the following parameters:
8383
8384 @table @option
8385 @item mode
8386 Can be either @var{normal} or @var{diff}. Default is @var{normal}.
8387
8388 @var{diff} mode measures entropy of histogram delta values, absolute differences
8389 between neighbour histogram values.
8390 @end table
8391
8392 @section fade
8393
8394 Apply a fade-in/out effect to the input video.
8395
8396 It accepts the following parameters:
8397
8398 @table @option
8399 @item type, t
8400 The effect type can be either "in" for a fade-in, or "out" for a fade-out
8401 effect.
8402 Default is @code{in}.
8403
8404 @item start_frame, s
8405 Specify the number of the frame to start applying the fade
8406 effect at. Default is 0.
8407
8408 @item nb_frames, n
8409 The number of frames that the fade effect lasts. At the end of the
8410 fade-in effect, the output video will have the same intensity as the input video.
8411 At the end of the fade-out transition, the output video will be filled with the
8412 selected @option{color}.
8413 Default is 25.
8414
8415 @item alpha
8416 If set to 1, fade only alpha channel, if one exists on the input.
8417 Default value is 0.
8418
8419 @item start_time, st
8420 Specify the timestamp (in seconds) of the frame to start to apply the fade
8421 effect. If both start_frame and start_time are specified, the fade will start at
8422 whichever comes last.  Default is 0.
8423
8424 @item duration, d
8425 The number of seconds for which the fade effect has to last. At the end of the
8426 fade-in effect the output video will have the same intensity as the input video,
8427 at the end of the fade-out transition the output video will be filled with the
8428 selected @option{color}.
8429 If both duration and nb_frames are specified, duration is used. Default is 0
8430 (nb_frames is used by default).
8431
8432 @item color, c
8433 Specify the color of the fade. Default is "black".
8434 @end table
8435
8436 @subsection Examples
8437
8438 @itemize
8439 @item
8440 Fade in the first 30 frames of video:
8441 @example
8442 fade=in:0:30
8443 @end example
8444
8445 The command above is equivalent to:
8446 @example
8447 fade=t=in:s=0:n=30
8448 @end example
8449
8450 @item
8451 Fade out the last 45 frames of a 200-frame video:
8452 @example
8453 fade=out:155:45
8454 fade=type=out:start_frame=155:nb_frames=45
8455 @end example
8456
8457 @item
8458 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
8459 @example
8460 fade=in:0:25, fade=out:975:25
8461 @end example
8462
8463 @item
8464 Make the first 5 frames yellow, then fade in from frame 5-24:
8465 @example
8466 fade=in:5:20:color=yellow
8467 @end example
8468
8469 @item
8470 Fade in alpha over first 25 frames of video:
8471 @example
8472 fade=in:0:25:alpha=1
8473 @end example
8474
8475 @item
8476 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
8477 @example
8478 fade=t=in:st=5.5:d=0.5
8479 @end example
8480
8481 @end itemize
8482
8483 @section fftfilt
8484 Apply arbitrary expressions to samples in frequency domain
8485
8486 @table @option
8487 @item dc_Y
8488 Adjust the dc value (gain) of the luma plane of the image. The filter
8489 accepts an integer value in range @code{0} to @code{1000}. The default
8490 value is set to @code{0}.
8491
8492 @item dc_U
8493 Adjust the dc value (gain) of the 1st chroma plane of the image. The
8494 filter accepts an integer value in range @code{0} to @code{1000}. The
8495 default value is set to @code{0}.
8496
8497 @item dc_V
8498 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
8499 filter accepts an integer value in range @code{0} to @code{1000}. The
8500 default value is set to @code{0}.
8501
8502 @item weight_Y
8503 Set the frequency domain weight expression for the luma plane.
8504
8505 @item weight_U
8506 Set the frequency domain weight expression for the 1st chroma plane.
8507
8508 @item weight_V
8509 Set the frequency domain weight expression for the 2nd chroma plane.
8510
8511 @item eval
8512 Set when the expressions are evaluated.
8513
8514 It accepts the following values:
8515 @table @samp
8516 @item init
8517 Only evaluate expressions once during the filter initialization.
8518
8519 @item frame
8520 Evaluate expressions for each incoming frame.
8521 @end table
8522
8523 Default value is @samp{init}.
8524
8525 The filter accepts the following variables:
8526 @item X
8527 @item Y
8528 The coordinates of the current sample.
8529
8530 @item W
8531 @item H
8532 The width and height of the image.
8533
8534 @item N
8535 The number of input frame, starting from 0.
8536 @end table
8537
8538 @subsection Examples
8539
8540 @itemize
8541 @item
8542 High-pass:
8543 @example
8544 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
8545 @end example
8546
8547 @item
8548 Low-pass:
8549 @example
8550 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
8551 @end example
8552
8553 @item
8554 Sharpen:
8555 @example
8556 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
8557 @end example
8558
8559 @item
8560 Blur:
8561 @example
8562 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
8563 @end example
8564
8565 @end itemize
8566
8567 @section field
8568
8569 Extract a single field from an interlaced image using stride
8570 arithmetic to avoid wasting CPU time. The output frames are marked as
8571 non-interlaced.
8572
8573 The filter accepts the following options:
8574
8575 @table @option
8576 @item type
8577 Specify whether to extract the top (if the value is @code{0} or
8578 @code{top}) or the bottom field (if the value is @code{1} or
8579 @code{bottom}).
8580 @end table
8581
8582 @section fieldhint
8583
8584 Create new frames by copying the top and bottom fields from surrounding frames
8585 supplied as numbers by the hint file.
8586
8587 @table @option
8588 @item hint
8589 Set file containing hints: absolute/relative frame numbers.
8590
8591 There must be one line for each frame in a clip. Each line must contain two
8592 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
8593 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
8594 is current frame number for @code{absolute} mode or out of [-1, 1] range
8595 for @code{relative} mode. First number tells from which frame to pick up top
8596 field and second number tells from which frame to pick up bottom field.
8597
8598 If optionally followed by @code{+} output frame will be marked as interlaced,
8599 else if followed by @code{-} output frame will be marked as progressive, else
8600 it will be marked same as input frame.
8601 If line starts with @code{#} or @code{;} that line is skipped.
8602
8603 @item mode
8604 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
8605 @end table
8606
8607 Example of first several lines of @code{hint} file for @code{relative} mode:
8608 @example
8609 0,0 - # first frame
8610 1,0 - # second frame, use third's frame top field and second's frame bottom field
8611 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
8612 1,0 -
8613 0,0 -
8614 0,0 -
8615 1,0 -
8616 1,0 -
8617 1,0 -
8618 0,0 -
8619 0,0 -
8620 1,0 -
8621 1,0 -
8622 1,0 -
8623 0,0 -
8624 @end example
8625
8626 @section fieldmatch
8627
8628 Field matching filter for inverse telecine. It is meant to reconstruct the
8629 progressive frames from a telecined stream. The filter does not drop duplicated
8630 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
8631 followed by a decimation filter such as @ref{decimate} in the filtergraph.
8632
8633 The separation of the field matching and the decimation is notably motivated by
8634 the possibility of inserting a de-interlacing filter fallback between the two.
8635 If the source has mixed telecined and real interlaced content,
8636 @code{fieldmatch} will not be able to match fields for the interlaced parts.
8637 But these remaining combed frames will be marked as interlaced, and thus can be
8638 de-interlaced by a later filter such as @ref{yadif} before decimation.
8639
8640 In addition to the various configuration options, @code{fieldmatch} can take an
8641 optional second stream, activated through the @option{ppsrc} option. If
8642 enabled, the frames reconstruction will be based on the fields and frames from
8643 this second stream. This allows the first input to be pre-processed in order to
8644 help the various algorithms of the filter, while keeping the output lossless
8645 (assuming the fields are matched properly). Typically, a field-aware denoiser,
8646 or brightness/contrast adjustments can help.
8647
8648 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
8649 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
8650 which @code{fieldmatch} is based on. While the semantic and usage are very
8651 close, some behaviour and options names can differ.
8652
8653 The @ref{decimate} filter currently only works for constant frame rate input.
8654 If your input has mixed telecined (30fps) and progressive content with a lower
8655 framerate like 24fps use the following filterchain to produce the necessary cfr
8656 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
8657
8658 The filter accepts the following options:
8659
8660 @table @option
8661 @item order
8662 Specify the assumed field order of the input stream. Available values are:
8663
8664 @table @samp
8665 @item auto
8666 Auto detect parity (use FFmpeg's internal parity value).
8667 @item bff
8668 Assume bottom field first.
8669 @item tff
8670 Assume top field first.
8671 @end table
8672
8673 Note that it is sometimes recommended not to trust the parity announced by the
8674 stream.
8675
8676 Default value is @var{auto}.
8677
8678 @item mode
8679 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
8680 sense that it won't risk creating jerkiness due to duplicate frames when
8681 possible, but if there are bad edits or blended fields it will end up
8682 outputting combed frames when a good match might actually exist. On the other
8683 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
8684 but will almost always find a good frame if there is one. The other values are
8685 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
8686 jerkiness and creating duplicate frames versus finding good matches in sections
8687 with bad edits, orphaned fields, blended fields, etc.
8688
8689 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
8690
8691 Available values are:
8692
8693 @table @samp
8694 @item pc
8695 2-way matching (p/c)
8696 @item pc_n
8697 2-way matching, and trying 3rd match if still combed (p/c + n)
8698 @item pc_u
8699 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
8700 @item pc_n_ub
8701 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
8702 still combed (p/c + n + u/b)
8703 @item pcn
8704 3-way matching (p/c/n)
8705 @item pcn_ub
8706 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
8707 detected as combed (p/c/n + u/b)
8708 @end table
8709
8710 The parenthesis at the end indicate the matches that would be used for that
8711 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
8712 @var{top}).
8713
8714 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
8715 the slowest.
8716
8717 Default value is @var{pc_n}.
8718
8719 @item ppsrc
8720 Mark the main input stream as a pre-processed input, and enable the secondary
8721 input stream as the clean source to pick the fields from. See the filter
8722 introduction for more details. It is similar to the @option{clip2} feature from
8723 VFM/TFM.
8724
8725 Default value is @code{0} (disabled).
8726
8727 @item field
8728 Set the field to match from. It is recommended to set this to the same value as
8729 @option{order} unless you experience matching failures with that setting. In
8730 certain circumstances changing the field that is used to match from can have a
8731 large impact on matching performance. Available values are:
8732
8733 @table @samp
8734 @item auto
8735 Automatic (same value as @option{order}).
8736 @item bottom
8737 Match from the bottom field.
8738 @item top
8739 Match from the top field.
8740 @end table
8741
8742 Default value is @var{auto}.
8743
8744 @item mchroma
8745 Set whether or not chroma is included during the match comparisons. In most
8746 cases it is recommended to leave this enabled. You should set this to @code{0}
8747 only if your clip has bad chroma problems such as heavy rainbowing or other
8748 artifacts. Setting this to @code{0} could also be used to speed things up at
8749 the cost of some accuracy.
8750
8751 Default value is @code{1}.
8752
8753 @item y0
8754 @item y1
8755 These define an exclusion band which excludes the lines between @option{y0} and
8756 @option{y1} from being included in the field matching decision. An exclusion
8757 band can be used to ignore subtitles, a logo, or other things that may
8758 interfere with the matching. @option{y0} sets the starting scan line and
8759 @option{y1} sets the ending line; all lines in between @option{y0} and
8760 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
8761 @option{y0} and @option{y1} to the same value will disable the feature.
8762 @option{y0} and @option{y1} defaults to @code{0}.
8763
8764 @item scthresh
8765 Set the scene change detection threshold as a percentage of maximum change on
8766 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
8767 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
8768 @option{scthresh} is @code{[0.0, 100.0]}.
8769
8770 Default value is @code{12.0}.
8771
8772 @item combmatch
8773 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
8774 account the combed scores of matches when deciding what match to use as the
8775 final match. Available values are:
8776
8777 @table @samp
8778 @item none
8779 No final matching based on combed scores.
8780 @item sc
8781 Combed scores are only used when a scene change is detected.
8782 @item full
8783 Use combed scores all the time.
8784 @end table
8785
8786 Default is @var{sc}.
8787
8788 @item combdbg
8789 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
8790 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
8791 Available values are:
8792
8793 @table @samp
8794 @item none
8795 No forced calculation.
8796 @item pcn
8797 Force p/c/n calculations.
8798 @item pcnub
8799 Force p/c/n/u/b calculations.
8800 @end table
8801
8802 Default value is @var{none}.
8803
8804 @item cthresh
8805 This is the area combing threshold used for combed frame detection. This
8806 essentially controls how "strong" or "visible" combing must be to be detected.
8807 Larger values mean combing must be more visible and smaller values mean combing
8808 can be less visible or strong and still be detected. Valid settings are from
8809 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
8810 be detected as combed). This is basically a pixel difference value. A good
8811 range is @code{[8, 12]}.
8812
8813 Default value is @code{9}.
8814
8815 @item chroma
8816 Sets whether or not chroma is considered in the combed frame decision.  Only
8817 disable this if your source has chroma problems (rainbowing, etc.) that are
8818 causing problems for the combed frame detection with chroma enabled. Actually,
8819 using @option{chroma}=@var{0} is usually more reliable, except for the case
8820 where there is chroma only combing in the source.
8821
8822 Default value is @code{0}.
8823
8824 @item blockx
8825 @item blocky
8826 Respectively set the x-axis and y-axis size of the window used during combed
8827 frame detection. This has to do with the size of the area in which
8828 @option{combpel} pixels are required to be detected as combed for a frame to be
8829 declared combed. See the @option{combpel} parameter description for more info.
8830 Possible values are any number that is a power of 2 starting at 4 and going up
8831 to 512.
8832
8833 Default value is @code{16}.
8834
8835 @item combpel
8836 The number of combed pixels inside any of the @option{blocky} by
8837 @option{blockx} size blocks on the frame for the frame to be detected as
8838 combed. While @option{cthresh} controls how "visible" the combing must be, this
8839 setting controls "how much" combing there must be in any localized area (a
8840 window defined by the @option{blockx} and @option{blocky} settings) on the
8841 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
8842 which point no frames will ever be detected as combed). This setting is known
8843 as @option{MI} in TFM/VFM vocabulary.
8844
8845 Default value is @code{80}.
8846 @end table
8847
8848 @anchor{p/c/n/u/b meaning}
8849 @subsection p/c/n/u/b meaning
8850
8851 @subsubsection p/c/n
8852
8853 We assume the following telecined stream:
8854
8855 @example
8856 Top fields:     1 2 2 3 4
8857 Bottom fields:  1 2 3 4 4
8858 @end example
8859
8860 The numbers correspond to the progressive frame the fields relate to. Here, the
8861 first two frames are progressive, the 3rd and 4th are combed, and so on.
8862
8863 When @code{fieldmatch} is configured to run a matching from bottom
8864 (@option{field}=@var{bottom}) this is how this input stream get transformed:
8865
8866 @example
8867 Input stream:
8868                 T     1 2 2 3 4
8869                 B     1 2 3 4 4   <-- matching reference
8870
8871 Matches:              c c n n c
8872
8873 Output stream:
8874                 T     1 2 3 4 4
8875                 B     1 2 3 4 4
8876 @end example
8877
8878 As a result of the field matching, we can see that some frames get duplicated.
8879 To perform a complete inverse telecine, you need to rely on a decimation filter
8880 after this operation. See for instance the @ref{decimate} filter.
8881
8882 The same operation now matching from top fields (@option{field}=@var{top})
8883 looks like this:
8884
8885 @example
8886 Input stream:
8887                 T     1 2 2 3 4   <-- matching reference
8888                 B     1 2 3 4 4
8889
8890 Matches:              c c p p c
8891
8892 Output stream:
8893                 T     1 2 2 3 4
8894                 B     1 2 2 3 4
8895 @end example
8896
8897 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
8898 basically, they refer to the frame and field of the opposite parity:
8899
8900 @itemize
8901 @item @var{p} matches the field of the opposite parity in the previous frame
8902 @item @var{c} matches the field of the opposite parity in the current frame
8903 @item @var{n} matches the field of the opposite parity in the next frame
8904 @end itemize
8905
8906 @subsubsection u/b
8907
8908 The @var{u} and @var{b} matching are a bit special in the sense that they match
8909 from the opposite parity flag. In the following examples, we assume that we are
8910 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
8911 'x' is placed above and below each matched fields.
8912
8913 With bottom matching (@option{field}=@var{bottom}):
8914 @example
8915 Match:           c         p           n          b          u
8916
8917                  x       x               x        x          x
8918   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
8919   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
8920                  x         x           x        x              x
8921
8922 Output frames:
8923                  2          1          2          2          2
8924                  2          2          2          1          3
8925 @end example
8926
8927 With top matching (@option{field}=@var{top}):
8928 @example
8929 Match:           c         p           n          b          u
8930
8931                  x         x           x        x              x
8932   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
8933   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
8934                  x       x               x        x          x
8935
8936 Output frames:
8937                  2          2          2          1          2
8938                  2          1          3          2          2
8939 @end example
8940
8941 @subsection Examples
8942
8943 Simple IVTC of a top field first telecined stream:
8944 @example
8945 fieldmatch=order=tff:combmatch=none, decimate
8946 @end example
8947
8948 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
8949 @example
8950 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
8951 @end example
8952
8953 @section fieldorder
8954
8955 Transform the field order of the input video.
8956
8957 It accepts the following parameters:
8958
8959 @table @option
8960
8961 @item order
8962 The output field order. Valid values are @var{tff} for top field first or @var{bff}
8963 for bottom field first.
8964 @end table
8965
8966 The default value is @samp{tff}.
8967
8968 The transformation is done by shifting the picture content up or down
8969 by one line, and filling the remaining line with appropriate picture content.
8970 This method is consistent with most broadcast field order converters.
8971
8972 If the input video is not flagged as being interlaced, or it is already
8973 flagged as being of the required output field order, then this filter does
8974 not alter the incoming video.
8975
8976 It is very useful when converting to or from PAL DV material,
8977 which is bottom field first.
8978
8979 For example:
8980 @example
8981 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
8982 @end example
8983
8984 @section fifo, afifo
8985
8986 Buffer input images and send them when they are requested.
8987
8988 It is mainly useful when auto-inserted by the libavfilter
8989 framework.
8990
8991 It does not take parameters.
8992
8993 @section fillborders
8994
8995 Fill borders of the input video, without changing video stream dimensions.
8996 Sometimes video can have garbage at the four edges and you may not want to
8997 crop video input to keep size multiple of some number.
8998
8999 This filter accepts the following options:
9000
9001 @table @option
9002 @item left
9003 Number of pixels to fill from left border.
9004
9005 @item right
9006 Number of pixels to fill from right border.
9007
9008 @item top
9009 Number of pixels to fill from top border.
9010
9011 @item bottom
9012 Number of pixels to fill from bottom border.
9013
9014 @item mode
9015 Set fill mode.
9016
9017 It accepts the following values:
9018 @table @samp
9019 @item smear
9020 fill pixels using outermost pixels
9021
9022 @item mirror
9023 fill pixels using mirroring
9024
9025 @item fixed
9026 fill pixels with constant value
9027 @end table
9028
9029 Default is @var{smear}.
9030
9031 @item color
9032 Set color for pixels in fixed mode. Default is @var{black}.
9033 @end table
9034
9035 @section find_rect
9036
9037 Find a rectangular object
9038
9039 It accepts the following options:
9040
9041 @table @option
9042 @item object
9043 Filepath of the object image, needs to be in gray8.
9044
9045 @item threshold
9046 Detection threshold, default is 0.5.
9047
9048 @item mipmaps
9049 Number of mipmaps, default is 3.
9050
9051 @item xmin, ymin, xmax, ymax
9052 Specifies the rectangle in which to search.
9053 @end table
9054
9055 @subsection Examples
9056
9057 @itemize
9058 @item
9059 Generate a representative palette of a given video using @command{ffmpeg}:
9060 @example
9061 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
9062 @end example
9063 @end itemize
9064
9065 @section cover_rect
9066
9067 Cover a rectangular object
9068
9069 It accepts the following options:
9070
9071 @table @option
9072 @item cover
9073 Filepath of the optional cover image, needs to be in yuv420.
9074
9075 @item mode
9076 Set covering mode.
9077
9078 It accepts the following values:
9079 @table @samp
9080 @item cover
9081 cover it by the supplied image
9082 @item blur
9083 cover it by interpolating the surrounding pixels
9084 @end table
9085
9086 Default value is @var{blur}.
9087 @end table
9088
9089 @subsection Examples
9090
9091 @itemize
9092 @item
9093 Generate a representative palette of a given video using @command{ffmpeg}:
9094 @example
9095 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
9096 @end example
9097 @end itemize
9098
9099 @section floodfill
9100
9101 Flood area with values of same pixel components with another values.
9102
9103 It accepts the following options:
9104 @table @option
9105 @item x
9106 Set pixel x coordinate.
9107
9108 @item y
9109 Set pixel y coordinate.
9110
9111 @item s0
9112 Set source #0 component value.
9113
9114 @item s1
9115 Set source #1 component value.
9116
9117 @item s2
9118 Set source #2 component value.
9119
9120 @item s3
9121 Set source #3 component value.
9122
9123 @item d0
9124 Set destination #0 component value.
9125
9126 @item d1
9127 Set destination #1 component value.
9128
9129 @item d2
9130 Set destination #2 component value.
9131
9132 @item d3
9133 Set destination #3 component value.
9134 @end table
9135
9136 @anchor{format}
9137 @section format
9138
9139 Convert the input video to one of the specified pixel formats.
9140 Libavfilter will try to pick one that is suitable as input to
9141 the next filter.
9142
9143 It accepts the following parameters:
9144 @table @option
9145
9146 @item pix_fmts
9147 A '|'-separated list of pixel format names, such as
9148 "pix_fmts=yuv420p|monow|rgb24".
9149
9150 @end table
9151
9152 @subsection Examples
9153
9154 @itemize
9155 @item
9156 Convert the input video to the @var{yuv420p} format
9157 @example
9158 format=pix_fmts=yuv420p
9159 @end example
9160
9161 Convert the input video to any of the formats in the list
9162 @example
9163 format=pix_fmts=yuv420p|yuv444p|yuv410p
9164 @end example
9165 @end itemize
9166
9167 @anchor{fps}
9168 @section fps
9169
9170 Convert the video to specified constant frame rate by duplicating or dropping
9171 frames as necessary.
9172
9173 It accepts the following parameters:
9174 @table @option
9175
9176 @item fps
9177 The desired output frame rate. The default is @code{25}.
9178
9179 @item start_time
9180 Assume the first PTS should be the given value, in seconds. This allows for
9181 padding/trimming at the start of stream. By default, no assumption is made
9182 about the first frame's expected PTS, so no padding or trimming is done.
9183 For example, this could be set to 0 to pad the beginning with duplicates of
9184 the first frame if a video stream starts after the audio stream or to trim any
9185 frames with a negative PTS.
9186
9187 @item round
9188 Timestamp (PTS) rounding method.
9189
9190 Possible values are:
9191 @table @option
9192 @item zero
9193 round towards 0
9194 @item inf
9195 round away from 0
9196 @item down
9197 round towards -infinity
9198 @item up
9199 round towards +infinity
9200 @item near
9201 round to nearest
9202 @end table
9203 The default is @code{near}.
9204
9205 @item eof_action
9206 Action performed when reading the last frame.
9207
9208 Possible values are:
9209 @table @option
9210 @item round
9211 Use same timestamp rounding method as used for other frames.
9212 @item pass
9213 Pass through last frame if input duration has not been reached yet.
9214 @end table
9215 The default is @code{round}.
9216
9217 @end table
9218
9219 Alternatively, the options can be specified as a flat string:
9220 @var{fps}[:@var{start_time}[:@var{round}]].
9221
9222 See also the @ref{setpts} filter.
9223
9224 @subsection Examples
9225
9226 @itemize
9227 @item
9228 A typical usage in order to set the fps to 25:
9229 @example
9230 fps=fps=25
9231 @end example
9232
9233 @item
9234 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
9235 @example
9236 fps=fps=film:round=near
9237 @end example
9238 @end itemize
9239
9240 @section framepack
9241
9242 Pack two different video streams into a stereoscopic video, setting proper
9243 metadata on supported codecs. The two views should have the same size and
9244 framerate and processing will stop when the shorter video ends. Please note
9245 that you may conveniently adjust view properties with the @ref{scale} and
9246 @ref{fps} filters.
9247
9248 It accepts the following parameters:
9249 @table @option
9250
9251 @item format
9252 The desired packing format. Supported values are:
9253
9254 @table @option
9255
9256 @item sbs
9257 The views are next to each other (default).
9258
9259 @item tab
9260 The views are on top of each other.
9261
9262 @item lines
9263 The views are packed by line.
9264
9265 @item columns
9266 The views are packed by column.
9267
9268 @item frameseq
9269 The views are temporally interleaved.
9270
9271 @end table
9272
9273 @end table
9274
9275 Some examples:
9276
9277 @example
9278 # Convert left and right views into a frame-sequential video
9279 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
9280
9281 # Convert views into a side-by-side video with the same output resolution as the input
9282 ffmpeg -i LEFT -i RIGHT -filter_complex [0:v]scale=w=iw/2[left],[1:v]scale=w=iw/2[right],[left][right]framepack=sbs OUTPUT
9283 @end example
9284
9285 @section framerate
9286
9287 Change the frame rate by interpolating new video output frames from the source
9288 frames.
9289
9290 This filter is not designed to function correctly with interlaced media. If
9291 you wish to change the frame rate of interlaced media then you are required
9292 to deinterlace before this filter and re-interlace after this filter.
9293
9294 A description of the accepted options follows.
9295
9296 @table @option
9297 @item fps
9298 Specify the output frames per second. This option can also be specified
9299 as a value alone. The default is @code{50}.
9300
9301 @item interp_start
9302 Specify the start of a range where the output frame will be created as a
9303 linear interpolation of two frames. The range is [@code{0}-@code{255}],
9304 the default is @code{15}.
9305
9306 @item interp_end
9307 Specify the end of a range where the output frame will be created as a
9308 linear interpolation of two frames. The range is [@code{0}-@code{255}],
9309 the default is @code{240}.
9310
9311 @item scene
9312 Specify the level at which a scene change is detected as a value between
9313 0 and 100 to indicate a new scene; a low value reflects a low
9314 probability for the current frame to introduce a new scene, while a higher
9315 value means the current frame is more likely to be one.
9316 The default is @code{8.2}.
9317
9318 @item flags
9319 Specify flags influencing the filter process.
9320
9321 Available value for @var{flags} is:
9322
9323 @table @option
9324 @item scene_change_detect, scd
9325 Enable scene change detection using the value of the option @var{scene}.
9326 This flag is enabled by default.
9327 @end table
9328 @end table
9329
9330 @section framestep
9331
9332 Select one frame every N-th frame.
9333
9334 This filter accepts the following option:
9335 @table @option
9336 @item step
9337 Select frame after every @code{step} frames.
9338 Allowed values are positive integers higher than 0. Default value is @code{1}.
9339 @end table
9340
9341 @anchor{frei0r}
9342 @section frei0r
9343
9344 Apply a frei0r effect to the input video.
9345
9346 To enable the compilation of this filter, you need to install the frei0r
9347 header and configure FFmpeg with @code{--enable-frei0r}.
9348
9349 It accepts the following parameters:
9350
9351 @table @option
9352
9353 @item filter_name
9354 The name of the frei0r effect to load. If the environment variable
9355 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
9356 directories specified by the colon-separated list in @env{FREI0R_PATH}.
9357 Otherwise, the standard frei0r paths are searched, in this order:
9358 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
9359 @file{/usr/lib/frei0r-1/}.
9360
9361 @item filter_params
9362 A '|'-separated list of parameters to pass to the frei0r effect.
9363
9364 @end table
9365
9366 A frei0r effect parameter can be a boolean (its value is either
9367 "y" or "n"), a double, a color (specified as
9368 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
9369 numbers between 0.0 and 1.0, inclusive) or a color description as specified in the
9370 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils},
9371 a position (specified as @var{X}/@var{Y}, where
9372 @var{X} and @var{Y} are floating point numbers) and/or a string.
9373
9374 The number and types of parameters depend on the loaded effect. If an
9375 effect parameter is not specified, the default value is set.
9376
9377 @subsection Examples
9378
9379 @itemize
9380 @item
9381 Apply the distort0r effect, setting the first two double parameters:
9382 @example
9383 frei0r=filter_name=distort0r:filter_params=0.5|0.01
9384 @end example
9385
9386 @item
9387 Apply the colordistance effect, taking a color as the first parameter:
9388 @example
9389 frei0r=colordistance:0.2/0.3/0.4
9390 frei0r=colordistance:violet
9391 frei0r=colordistance:0x112233
9392 @end example
9393
9394 @item
9395 Apply the perspective effect, specifying the top left and top right image
9396 positions:
9397 @example
9398 frei0r=perspective:0.2/0.2|0.8/0.2
9399 @end example
9400 @end itemize
9401
9402 For more information, see
9403 @url{http://frei0r.dyne.org}
9404
9405 @section fspp
9406
9407 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
9408
9409 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
9410 processing filter, one of them is performed once per block, not per pixel.
9411 This allows for much higher speed.
9412
9413 The filter accepts the following options:
9414
9415 @table @option
9416 @item quality
9417 Set quality. This option defines the number of levels for averaging. It accepts
9418 an integer in the range 4-5. Default value is @code{4}.
9419
9420 @item qp
9421 Force a constant quantization parameter. It accepts an integer in range 0-63.
9422 If not set, the filter will use the QP from the video stream (if available).
9423
9424 @item strength
9425 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
9426 more details but also more artifacts, while higher values make the image smoother
9427 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
9428
9429 @item use_bframe_qp
9430 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
9431 option may cause flicker since the B-Frames have often larger QP. Default is
9432 @code{0} (not enabled).
9433
9434 @end table
9435
9436 @section gblur
9437
9438 Apply Gaussian blur filter.
9439
9440 The filter accepts the following options:
9441
9442 @table @option
9443 @item sigma
9444 Set horizontal sigma, standard deviation of Gaussian blur. Default is @code{0.5}.
9445
9446 @item steps
9447 Set number of steps for Gaussian approximation. Defauls is @code{1}.
9448
9449 @item planes
9450 Set which planes to filter. By default all planes are filtered.
9451
9452 @item sigmaV
9453 Set vertical sigma, if negative it will be same as @code{sigma}.
9454 Default is @code{-1}.
9455 @end table
9456
9457 @section geq
9458
9459 The filter accepts the following options:
9460
9461 @table @option
9462 @item lum_expr, lum
9463 Set the luminance expression.
9464 @item cb_expr, cb
9465 Set the chrominance blue expression.
9466 @item cr_expr, cr
9467 Set the chrominance red expression.
9468 @item alpha_expr, a
9469 Set the alpha expression.
9470 @item red_expr, r
9471 Set the red expression.
9472 @item green_expr, g
9473 Set the green expression.
9474 @item blue_expr, b
9475 Set the blue expression.
9476 @end table
9477
9478 The colorspace is selected according to the specified options. If one
9479 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
9480 options is specified, the filter will automatically select a YCbCr
9481 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
9482 @option{blue_expr} options is specified, it will select an RGB
9483 colorspace.
9484
9485 If one of the chrominance expression is not defined, it falls back on the other
9486 one. If no alpha expression is specified it will evaluate to opaque value.
9487 If none of chrominance expressions are specified, they will evaluate
9488 to the luminance expression.
9489
9490 The expressions can use the following variables and functions:
9491
9492 @table @option
9493 @item N
9494 The sequential number of the filtered frame, starting from @code{0}.
9495
9496 @item X
9497 @item Y
9498 The coordinates of the current sample.
9499
9500 @item W
9501 @item H
9502 The width and height of the image.
9503
9504 @item SW
9505 @item SH
9506 Width and height scale depending on the currently filtered plane. It is the
9507 ratio between the corresponding luma plane number of pixels and the current
9508 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
9509 @code{0.5,0.5} for chroma planes.
9510
9511 @item T
9512 Time of the current frame, expressed in seconds.
9513
9514 @item p(x, y)
9515 Return the value of the pixel at location (@var{x},@var{y}) of the current
9516 plane.
9517
9518 @item lum(x, y)
9519 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
9520 plane.
9521
9522 @item cb(x, y)
9523 Return the value of the pixel at location (@var{x},@var{y}) of the
9524 blue-difference chroma plane. Return 0 if there is no such plane.
9525
9526 @item cr(x, y)
9527 Return the value of the pixel at location (@var{x},@var{y}) of the
9528 red-difference chroma plane. Return 0 if there is no such plane.
9529
9530 @item r(x, y)
9531 @item g(x, y)
9532 @item b(x, y)
9533 Return the value of the pixel at location (@var{x},@var{y}) of the
9534 red/green/blue component. Return 0 if there is no such component.
9535
9536 @item alpha(x, y)
9537 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
9538 plane. Return 0 if there is no such plane.
9539 @end table
9540
9541 For functions, if @var{x} and @var{y} are outside the area, the value will be
9542 automatically clipped to the closer edge.
9543
9544 @subsection Examples
9545
9546 @itemize
9547 @item
9548 Flip the image horizontally:
9549 @example
9550 geq=p(W-X\,Y)
9551 @end example
9552
9553 @item
9554 Generate a bidimensional sine wave, with angle @code{PI/3} and a
9555 wavelength of 100 pixels:
9556 @example
9557 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
9558 @end example
9559
9560 @item
9561 Generate a fancy enigmatic moving light:
9562 @example
9563 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
9564 @end example
9565
9566 @item
9567 Generate a quick emboss effect:
9568 @example
9569 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
9570 @end example
9571
9572 @item
9573 Modify RGB components depending on pixel position:
9574 @example
9575 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
9576 @end example
9577
9578 @item
9579 Create a radial gradient that is the same size as the input (also see
9580 the @ref{vignette} filter):
9581 @example
9582 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
9583 @end example
9584 @end itemize
9585
9586 @section gradfun
9587
9588 Fix the banding artifacts that are sometimes introduced into nearly flat
9589 regions by truncation to 8-bit color depth.
9590 Interpolate the gradients that should go where the bands are, and
9591 dither them.
9592
9593 It is designed for playback only.  Do not use it prior to
9594 lossy compression, because compression tends to lose the dither and
9595 bring back the bands.
9596
9597 It accepts the following parameters:
9598
9599 @table @option
9600
9601 @item strength
9602 The maximum amount by which the filter will change any one pixel. This is also
9603 the threshold for detecting nearly flat regions. Acceptable values range from
9604 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
9605 valid range.
9606
9607 @item radius
9608 The neighborhood to fit the gradient to. A larger radius makes for smoother
9609 gradients, but also prevents the filter from modifying the pixels near detailed
9610 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
9611 values will be clipped to the valid range.
9612
9613 @end table
9614
9615 Alternatively, the options can be specified as a flat string:
9616 @var{strength}[:@var{radius}]
9617
9618 @subsection Examples
9619
9620 @itemize
9621 @item
9622 Apply the filter with a @code{3.5} strength and radius of @code{8}:
9623 @example
9624 gradfun=3.5:8
9625 @end example
9626
9627 @item
9628 Specify radius, omitting the strength (which will fall-back to the default
9629 value):
9630 @example
9631 gradfun=radius=8
9632 @end example
9633
9634 @end itemize
9635
9636 @anchor{haldclut}
9637 @section haldclut
9638
9639 Apply a Hald CLUT to a video stream.
9640
9641 First input is the video stream to process, and second one is the Hald CLUT.
9642 The Hald CLUT input can be a simple picture or a complete video stream.
9643
9644 The filter accepts the following options:
9645
9646 @table @option
9647 @item shortest
9648 Force termination when the shortest input terminates. Default is @code{0}.
9649 @item repeatlast
9650 Continue applying the last CLUT after the end of the stream. A value of
9651 @code{0} disable the filter after the last frame of the CLUT is reached.
9652 Default is @code{1}.
9653 @end table
9654
9655 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
9656 filters share the same internals).
9657
9658 More information about the Hald CLUT can be found on Eskil Steenberg's website
9659 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
9660
9661 @subsection Workflow examples
9662
9663 @subsubsection Hald CLUT video stream
9664
9665 Generate an identity Hald CLUT stream altered with various effects:
9666 @example
9667 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
9668 @end example
9669
9670 Note: make sure you use a lossless codec.
9671
9672 Then use it with @code{haldclut} to apply it on some random stream:
9673 @example
9674 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
9675 @end example
9676
9677 The Hald CLUT will be applied to the 10 first seconds (duration of
9678 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
9679 to the remaining frames of the @code{mandelbrot} stream.
9680
9681 @subsubsection Hald CLUT with preview
9682
9683 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
9684 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
9685 biggest possible square starting at the top left of the picture. The remaining
9686 padding pixels (bottom or right) will be ignored. This area can be used to add
9687 a preview of the Hald CLUT.
9688
9689 Typically, the following generated Hald CLUT will be supported by the
9690 @code{haldclut} filter:
9691
9692 @example
9693 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
9694    pad=iw+320 [padded_clut];
9695    smptebars=s=320x256, split [a][b];
9696    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
9697    [main][b] overlay=W-320" -frames:v 1 clut.png
9698 @end example
9699
9700 It contains the original and a preview of the effect of the CLUT: SMPTE color
9701 bars are displayed on the right-top, and below the same color bars processed by
9702 the color changes.
9703
9704 Then, the effect of this Hald CLUT can be visualized with:
9705 @example
9706 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
9707 @end example
9708
9709 @section hflip
9710
9711 Flip the input video horizontally.
9712
9713 For example, to horizontally flip the input video with @command{ffmpeg}:
9714 @example
9715 ffmpeg -i in.avi -vf "hflip" out.avi
9716 @end example
9717
9718 @section histeq
9719 This filter applies a global color histogram equalization on a
9720 per-frame basis.
9721
9722 It can be used to correct video that has a compressed range of pixel
9723 intensities.  The filter redistributes the pixel intensities to
9724 equalize their distribution across the intensity range. It may be
9725 viewed as an "automatically adjusting contrast filter". This filter is
9726 useful only for correcting degraded or poorly captured source
9727 video.
9728
9729 The filter accepts the following options:
9730
9731 @table @option
9732 @item strength
9733 Determine the amount of equalization to be applied.  As the strength
9734 is reduced, the distribution of pixel intensities more-and-more
9735 approaches that of the input frame. The value must be a float number
9736 in the range [0,1] and defaults to 0.200.
9737
9738 @item intensity
9739 Set the maximum intensity that can generated and scale the output
9740 values appropriately.  The strength should be set as desired and then
9741 the intensity can be limited if needed to avoid washing-out. The value
9742 must be a float number in the range [0,1] and defaults to 0.210.
9743
9744 @item antibanding
9745 Set the antibanding level. If enabled the filter will randomly vary
9746 the luminance of output pixels by a small amount to avoid banding of
9747 the histogram. Possible values are @code{none}, @code{weak} or
9748 @code{strong}. It defaults to @code{none}.
9749 @end table
9750
9751 @section histogram
9752
9753 Compute and draw a color distribution histogram for the input video.
9754
9755 The computed histogram is a representation of the color component
9756 distribution in an image.
9757
9758 Standard histogram displays the color components distribution in an image.
9759 Displays color graph for each color component. Shows distribution of
9760 the Y, U, V, A or R, G, B components, depending on input format, in the
9761 current frame. Below each graph a color component scale meter is shown.
9762
9763 The filter accepts the following options:
9764
9765 @table @option
9766 @item level_height
9767 Set height of level. Default value is @code{200}.
9768 Allowed range is [50, 2048].
9769
9770 @item scale_height
9771 Set height of color scale. Default value is @code{12}.
9772 Allowed range is [0, 40].
9773
9774 @item display_mode
9775 Set display mode.
9776 It accepts the following values:
9777 @table @samp
9778 @item stack
9779 Per color component graphs are placed below each other.
9780
9781 @item parade
9782 Per color component graphs are placed side by side.
9783
9784 @item overlay
9785 Presents information identical to that in the @code{parade}, except
9786 that the graphs representing color components are superimposed directly
9787 over one another.
9788 @end table
9789 Default is @code{stack}.
9790
9791 @item levels_mode
9792 Set mode. Can be either @code{linear}, or @code{logarithmic}.
9793 Default is @code{linear}.
9794
9795 @item components
9796 Set what color components to display.
9797 Default is @code{7}.
9798
9799 @item fgopacity
9800 Set foreground opacity. Default is @code{0.7}.
9801
9802 @item bgopacity
9803 Set background opacity. Default is @code{0.5}.
9804 @end table
9805
9806 @subsection Examples
9807
9808 @itemize
9809
9810 @item
9811 Calculate and draw histogram:
9812 @example
9813 ffplay -i input -vf histogram
9814 @end example
9815
9816 @end itemize
9817
9818 @anchor{hqdn3d}
9819 @section hqdn3d
9820
9821 This is a high precision/quality 3d denoise filter. It aims to reduce
9822 image noise, producing smooth images and making still images really
9823 still. It should enhance compressibility.
9824
9825 It accepts the following optional parameters:
9826
9827 @table @option
9828 @item luma_spatial
9829 A non-negative floating point number which specifies spatial luma strength.
9830 It defaults to 4.0.
9831
9832 @item chroma_spatial
9833 A non-negative floating point number which specifies spatial chroma strength.
9834 It defaults to 3.0*@var{luma_spatial}/4.0.
9835
9836 @item luma_tmp
9837 A floating point number which specifies luma temporal strength. It defaults to
9838 6.0*@var{luma_spatial}/4.0.
9839
9840 @item chroma_tmp
9841 A floating point number which specifies chroma temporal strength. It defaults to
9842 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
9843 @end table
9844
9845 @section hwdownload
9846
9847 Download hardware frames to system memory.
9848
9849 The input must be in hardware frames, and the output a non-hardware format.
9850 Not all formats will be supported on the output - it may be necessary to insert
9851 an additional @option{format} filter immediately following in the graph to get
9852 the output in a supported format.
9853
9854 @section hwmap
9855
9856 Map hardware frames to system memory or to another device.
9857
9858 This filter has several different modes of operation; which one is used depends
9859 on the input and output formats:
9860 @itemize
9861 @item
9862 Hardware frame input, normal frame output
9863
9864 Map the input frames to system memory and pass them to the output.  If the
9865 original hardware frame is later required (for example, after overlaying
9866 something else on part of it), the @option{hwmap} filter can be used again
9867 in the next mode to retrieve it.
9868 @item
9869 Normal frame input, hardware frame output
9870
9871 If the input is actually a software-mapped hardware frame, then unmap it -
9872 that is, return the original hardware frame.
9873
9874 Otherwise, a device must be provided.  Create new hardware surfaces on that
9875 device for the output, then map them back to the software format at the input
9876 and give those frames to the preceding filter.  This will then act like the
9877 @option{hwupload} filter, but may be able to avoid an additional copy when
9878 the input is already in a compatible format.
9879 @item
9880 Hardware frame input and output
9881
9882 A device must be supplied for the output, either directly or with the
9883 @option{derive_device} option.  The input and output devices must be of
9884 different types and compatible - the exact meaning of this is
9885 system-dependent, but typically it means that they must refer to the same
9886 underlying hardware context (for example, refer to the same graphics card).
9887
9888 If the input frames were originally created on the output device, then unmap
9889 to retrieve the original frames.
9890
9891 Otherwise, map the frames to the output device - create new hardware frames
9892 on the output corresponding to the frames on the input.
9893 @end itemize
9894
9895 The following additional parameters are accepted:
9896
9897 @table @option
9898 @item mode
9899 Set the frame mapping mode.  Some combination of:
9900 @table @var
9901 @item read
9902 The mapped frame should be readable.
9903 @item write
9904 The mapped frame should be writeable.
9905 @item overwrite
9906 The mapping will always overwrite the entire frame.
9907
9908 This may improve performance in some cases, as the original contents of the
9909 frame need not be loaded.
9910 @item direct
9911 The mapping must not involve any copying.
9912
9913 Indirect mappings to copies of frames are created in some cases where either
9914 direct mapping is not possible or it would have unexpected properties.
9915 Setting this flag ensures that the mapping is direct and will fail if that is
9916 not possible.
9917 @end table
9918 Defaults to @var{read+write} if not specified.
9919
9920 @item derive_device @var{type}
9921 Rather than using the device supplied at initialisation, instead derive a new
9922 device of type @var{type} from the device the input frames exist on.
9923
9924 @item reverse
9925 In a hardware to hardware mapping, map in reverse - create frames in the sink
9926 and map them back to the source.  This may be necessary in some cases where
9927 a mapping in one direction is required but only the opposite direction is
9928 supported by the devices being used.
9929
9930 This option is dangerous - it may break the preceding filter in undefined
9931 ways if there are any additional constraints on that filter's output.
9932 Do not use it without fully understanding the implications of its use.
9933 @end table
9934
9935 @section hwupload
9936
9937 Upload system memory frames to hardware surfaces.
9938
9939 The device to upload to must be supplied when the filter is initialised.  If
9940 using ffmpeg, select the appropriate device with the @option{-filter_hw_device}
9941 option.
9942
9943 @anchor{hwupload_cuda}
9944 @section hwupload_cuda
9945
9946 Upload system memory frames to a CUDA device.
9947
9948 It accepts the following optional parameters:
9949
9950 @table @option
9951 @item device
9952 The number of the CUDA device to use
9953 @end table
9954
9955 @section hqx
9956
9957 Apply a high-quality magnification filter designed for pixel art. This filter
9958 was originally created by Maxim Stepin.
9959
9960 It accepts the following option:
9961
9962 @table @option
9963 @item n
9964 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
9965 @code{hq3x} and @code{4} for @code{hq4x}.
9966 Default is @code{3}.
9967 @end table
9968
9969 @section hstack
9970 Stack input videos horizontally.
9971
9972 All streams must be of same pixel format and of same height.
9973
9974 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
9975 to create same output.
9976
9977 The filter accept the following option:
9978
9979 @table @option
9980 @item inputs
9981 Set number of input streams. Default is 2.
9982
9983 @item shortest
9984 If set to 1, force the output to terminate when the shortest input
9985 terminates. Default value is 0.
9986 @end table
9987
9988 @section hue
9989
9990 Modify the hue and/or the saturation of the input.
9991
9992 It accepts the following parameters:
9993
9994 @table @option
9995 @item h
9996 Specify the hue angle as a number of degrees. It accepts an expression,
9997 and defaults to "0".
9998
9999 @item s
10000 Specify the saturation in the [-10,10] range. It accepts an expression and
10001 defaults to "1".
10002
10003 @item H
10004 Specify the hue angle as a number of radians. It accepts an
10005 expression, and defaults to "0".
10006
10007 @item b
10008 Specify the brightness in the [-10,10] range. It accepts an expression and
10009 defaults to "0".
10010 @end table
10011
10012 @option{h} and @option{H} are mutually exclusive, and can't be
10013 specified at the same time.
10014
10015 The @option{b}, @option{h}, @option{H} and @option{s} option values are
10016 expressions containing the following constants:
10017
10018 @table @option
10019 @item n
10020 frame count of the input frame starting from 0
10021
10022 @item pts
10023 presentation timestamp of the input frame expressed in time base units
10024
10025 @item r
10026 frame rate of the input video, NAN if the input frame rate is unknown
10027
10028 @item t
10029 timestamp expressed in seconds, NAN if the input timestamp is unknown
10030
10031 @item tb
10032 time base of the input video
10033 @end table
10034
10035 @subsection Examples
10036
10037 @itemize
10038 @item
10039 Set the hue to 90 degrees and the saturation to 1.0:
10040 @example
10041 hue=h=90:s=1
10042 @end example
10043
10044 @item
10045 Same command but expressing the hue in radians:
10046 @example
10047 hue=H=PI/2:s=1
10048 @end example
10049
10050 @item
10051 Rotate hue and make the saturation swing between 0
10052 and 2 over a period of 1 second:
10053 @example
10054 hue="H=2*PI*t: s=sin(2*PI*t)+1"
10055 @end example
10056
10057 @item
10058 Apply a 3 seconds saturation fade-in effect starting at 0:
10059 @example
10060 hue="s=min(t/3\,1)"
10061 @end example
10062
10063 The general fade-in expression can be written as:
10064 @example
10065 hue="s=min(0\, max((t-START)/DURATION\, 1))"
10066 @end example
10067
10068 @item
10069 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
10070 @example
10071 hue="s=max(0\, min(1\, (8-t)/3))"
10072 @end example
10073
10074 The general fade-out expression can be written as:
10075 @example
10076 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
10077 @end example
10078
10079 @end itemize
10080
10081 @subsection Commands
10082
10083 This filter supports the following commands:
10084 @table @option
10085 @item b
10086 @item s
10087 @item h
10088 @item H
10089 Modify the hue and/or the saturation and/or brightness of the input video.
10090 The command accepts the same syntax of the corresponding option.
10091
10092 If the specified expression is not valid, it is kept at its current
10093 value.
10094 @end table
10095
10096 @section hysteresis
10097
10098 Grow first stream into second stream by connecting components.
10099 This makes it possible to build more robust edge masks.
10100
10101 This filter accepts the following options:
10102
10103 @table @option
10104 @item planes
10105 Set which planes will be processed as bitmap, unprocessed planes will be
10106 copied from first stream.
10107 By default value 0xf, all planes will be processed.
10108
10109 @item threshold
10110 Set threshold which is used in filtering. If pixel component value is higher than
10111 this value filter algorithm for connecting components is activated.
10112 By default value is 0.
10113 @end table
10114
10115 @section idet
10116
10117 Detect video interlacing type.
10118
10119 This filter tries to detect if the input frames are interlaced, progressive,
10120 top or bottom field first. It will also try to detect fields that are
10121 repeated between adjacent frames (a sign of telecine).
10122
10123 Single frame detection considers only immediately adjacent frames when classifying each frame.
10124 Multiple frame detection incorporates the classification history of previous frames.
10125
10126 The filter will log these metadata values:
10127
10128 @table @option
10129 @item single.current_frame
10130 Detected type of current frame using single-frame detection. One of:
10131 ``tff'' (top field first), ``bff'' (bottom field first),
10132 ``progressive'', or ``undetermined''
10133
10134 @item single.tff
10135 Cumulative number of frames detected as top field first using single-frame detection.
10136
10137 @item multiple.tff
10138 Cumulative number of frames detected as top field first using multiple-frame detection.
10139
10140 @item single.bff
10141 Cumulative number of frames detected as bottom field first using single-frame detection.
10142
10143 @item multiple.current_frame
10144 Detected type of current frame using multiple-frame detection. One of:
10145 ``tff'' (top field first), ``bff'' (bottom field first),
10146 ``progressive'', or ``undetermined''
10147
10148 @item multiple.bff
10149 Cumulative number of frames detected as bottom field first using multiple-frame detection.
10150
10151 @item single.progressive
10152 Cumulative number of frames detected as progressive using single-frame detection.
10153
10154 @item multiple.progressive
10155 Cumulative number of frames detected as progressive using multiple-frame detection.
10156
10157 @item single.undetermined
10158 Cumulative number of frames that could not be classified using single-frame detection.
10159
10160 @item multiple.undetermined
10161 Cumulative number of frames that could not be classified using multiple-frame detection.
10162
10163 @item repeated.current_frame
10164 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
10165
10166 @item repeated.neither
10167 Cumulative number of frames with no repeated field.
10168
10169 @item repeated.top
10170 Cumulative number of frames with the top field repeated from the previous frame's top field.
10171
10172 @item repeated.bottom
10173 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
10174 @end table
10175
10176 The filter accepts the following options:
10177
10178 @table @option
10179 @item intl_thres
10180 Set interlacing threshold.
10181 @item prog_thres
10182 Set progressive threshold.
10183 @item rep_thres
10184 Threshold for repeated field detection.
10185 @item half_life
10186 Number of frames after which a given frame's contribution to the
10187 statistics is halved (i.e., it contributes only 0.5 to its
10188 classification). The default of 0 means that all frames seen are given
10189 full weight of 1.0 forever.
10190 @item analyze_interlaced_flag
10191 When this is not 0 then idet will use the specified number of frames to determine
10192 if the interlaced flag is accurate, it will not count undetermined frames.
10193 If the flag is found to be accurate it will be used without any further
10194 computations, if it is found to be inaccurate it will be cleared without any
10195 further computations. This allows inserting the idet filter as a low computational
10196 method to clean up the interlaced flag
10197 @end table
10198
10199 @section il
10200
10201 Deinterleave or interleave fields.
10202
10203 This filter allows one to process interlaced images fields without
10204 deinterlacing them. Deinterleaving splits the input frame into 2
10205 fields (so called half pictures). Odd lines are moved to the top
10206 half of the output image, even lines to the bottom half.
10207 You can process (filter) them independently and then re-interleave them.
10208
10209 The filter accepts the following options:
10210
10211 @table @option
10212 @item luma_mode, l
10213 @item chroma_mode, c
10214 @item alpha_mode, a
10215 Available values for @var{luma_mode}, @var{chroma_mode} and
10216 @var{alpha_mode} are:
10217
10218 @table @samp
10219 @item none
10220 Do nothing.
10221
10222 @item deinterleave, d
10223 Deinterleave fields, placing one above the other.
10224
10225 @item interleave, i
10226 Interleave fields. Reverse the effect of deinterleaving.
10227 @end table
10228 Default value is @code{none}.
10229
10230 @item luma_swap, ls
10231 @item chroma_swap, cs
10232 @item alpha_swap, as
10233 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
10234 @end table
10235
10236 @section inflate
10237
10238 Apply inflate effect to the video.
10239
10240 This filter replaces the pixel by the local(3x3) average by taking into account
10241 only values higher than the pixel.
10242
10243 It accepts the following options:
10244
10245 @table @option
10246 @item threshold0
10247 @item threshold1
10248 @item threshold2
10249 @item threshold3
10250 Limit the maximum change for each plane, default is 65535.
10251 If 0, plane will remain unchanged.
10252 @end table
10253
10254 @section interlace
10255
10256 Simple interlacing filter from progressive contents. This interleaves upper (or
10257 lower) lines from odd frames with lower (or upper) lines from even frames,
10258 halving the frame rate and preserving image height.
10259
10260 @example
10261    Original        Original             New Frame
10262    Frame 'j'      Frame 'j+1'             (tff)
10263   ==========      ===========       ==================
10264     Line 0  -------------------->    Frame 'j' Line 0
10265     Line 1          Line 1  ---->   Frame 'j+1' Line 1
10266     Line 2 --------------------->    Frame 'j' Line 2
10267     Line 3          Line 3  ---->   Frame 'j+1' Line 3
10268      ...             ...                   ...
10269 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
10270 @end example
10271
10272 It accepts the following optional parameters:
10273
10274 @table @option
10275 @item scan
10276 This determines whether the interlaced frame is taken from the even
10277 (tff - default) or odd (bff) lines of the progressive frame.
10278
10279 @item lowpass
10280 Vertical lowpass filter to avoid twitter interlacing and
10281 reduce moire patterns.
10282
10283 @table @samp
10284 @item 0, off
10285 Disable vertical lowpass filter
10286
10287 @item 1, linear
10288 Enable linear filter (default)
10289
10290 @item 2, complex
10291 Enable complex filter. This will slightly less reduce twitter and moire
10292 but better retain detail and subjective sharpness impression.
10293
10294 @end table
10295 @end table
10296
10297 @section kerndeint
10298
10299 Deinterlace input video by applying Donald Graft's adaptive kernel
10300 deinterling. Work on interlaced parts of a video to produce
10301 progressive frames.
10302
10303 The description of the accepted parameters follows.
10304
10305 @table @option
10306 @item thresh
10307 Set the threshold which affects the filter's tolerance when
10308 determining if a pixel line must be processed. It must be an integer
10309 in the range [0,255] and defaults to 10. A value of 0 will result in
10310 applying the process on every pixels.
10311
10312 @item map
10313 Paint pixels exceeding the threshold value to white if set to 1.
10314 Default is 0.
10315
10316 @item order
10317 Set the fields order. Swap fields if set to 1, leave fields alone if
10318 0. Default is 0.
10319
10320 @item sharp
10321 Enable additional sharpening if set to 1. Default is 0.
10322
10323 @item twoway
10324 Enable twoway sharpening if set to 1. Default is 0.
10325 @end table
10326
10327 @subsection Examples
10328
10329 @itemize
10330 @item
10331 Apply default values:
10332 @example
10333 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
10334 @end example
10335
10336 @item
10337 Enable additional sharpening:
10338 @example
10339 kerndeint=sharp=1
10340 @end example
10341
10342 @item
10343 Paint processed pixels in white:
10344 @example
10345 kerndeint=map=1
10346 @end example
10347 @end itemize
10348
10349 @section lenscorrection
10350
10351 Correct radial lens distortion
10352
10353 This filter can be used to correct for radial distortion as can result from the use
10354 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
10355 one can use tools available for example as part of opencv or simply trial-and-error.
10356 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
10357 and extract the k1 and k2 coefficients from the resulting matrix.
10358
10359 Note that effectively the same filter is available in the open-source tools Krita and
10360 Digikam from the KDE project.
10361
10362 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
10363 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
10364 brightness distribution, so you may want to use both filters together in certain
10365 cases, though you will have to take care of ordering, i.e. whether vignetting should
10366 be applied before or after lens correction.
10367
10368 @subsection Options
10369
10370 The filter accepts the following options:
10371
10372 @table @option
10373 @item cx
10374 Relative x-coordinate of the focal point of the image, and thereby the center of the
10375 distortion. This value has a range [0,1] and is expressed as fractions of the image
10376 width.
10377 @item cy
10378 Relative y-coordinate of the focal point of the image, and thereby the center of the
10379 distortion. This value has a range [0,1] and is expressed as fractions of the image
10380 height.
10381 @item k1
10382 Coefficient of the quadratic correction term. 0.5 means no correction.
10383 @item k2
10384 Coefficient of the double quadratic correction term. 0.5 means no correction.
10385 @end table
10386
10387 The formula that generates the correction is:
10388
10389 @var{r_src} = @var{r_tgt} * (1 + @var{k1} * (@var{r_tgt} / @var{r_0})^2 + @var{k2} * (@var{r_tgt} / @var{r_0})^4)
10390
10391 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
10392 distances from the focal point in the source and target images, respectively.
10393
10394 @section libvmaf
10395
10396 Obtain the VMAF (Video Multi-Method Assessment Fusion)
10397 score between two input videos.
10398
10399 The obtained VMAF score is printed through the logging system.
10400
10401 It requires Netflix's vmaf library (libvmaf) as a pre-requisite.
10402 After installing the library it can be enabled using:
10403 @code{./configure --enable-libvmaf}.
10404 If no model path is specified it uses the default model: @code{vmaf_v0.6.1.pkl}.
10405
10406 The filter has following options:
10407
10408 @table @option
10409 @item model_path
10410 Set the model path which is to be used for SVM.
10411 Default value: @code{"vmaf_v0.6.1.pkl"}
10412
10413 @item log_path
10414 Set the file path to be used to store logs.
10415
10416 @item log_fmt
10417 Set the format of the log file (xml or json).
10418
10419 @item enable_transform
10420 Enables transform for computing vmaf.
10421
10422 @item phone_model
10423 Invokes the phone model which will generate VMAF scores higher than in the
10424 regular model, which is more suitable for laptop, TV, etc. viewing conditions.
10425
10426 @item psnr
10427 Enables computing psnr along with vmaf.
10428
10429 @item ssim
10430 Enables computing ssim along with vmaf.
10431
10432 @item ms_ssim
10433 Enables computing ms_ssim along with vmaf.
10434
10435 @item pool
10436 Set the pool method (mean, min or harmonic mean) to be used for computing vmaf.
10437 @end table
10438
10439 This filter also supports the @ref{framesync} options.
10440
10441 On the below examples the input file @file{main.mpg} being processed is
10442 compared with the reference file @file{ref.mpg}.
10443
10444 @example
10445 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf -f null -
10446 @end example
10447
10448 Example with options:
10449 @example
10450 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf="psnr=1:enable-transform=1" -f null -
10451 @end example
10452
10453 @section limiter
10454
10455 Limits the pixel components values to the specified range [min, max].
10456
10457 The filter accepts the following options:
10458
10459 @table @option
10460 @item min
10461 Lower bound. Defaults to the lowest allowed value for the input.
10462
10463 @item max
10464 Upper bound. Defaults to the highest allowed value for the input.
10465
10466 @item planes
10467 Specify which planes will be processed. Defaults to all available.
10468 @end table
10469
10470 @section loop
10471
10472 Loop video frames.
10473
10474 The filter accepts the following options:
10475
10476 @table @option
10477 @item loop
10478 Set the number of loops. Setting this value to -1 will result in infinite loops.
10479 Default is 0.
10480
10481 @item size
10482 Set maximal size in number of frames. Default is 0.
10483
10484 @item start
10485 Set first frame of loop. Default is 0.
10486 @end table
10487
10488 @anchor{lut3d}
10489 @section lut3d
10490
10491 Apply a 3D LUT to an input video.
10492
10493 The filter accepts the following options:
10494
10495 @table @option
10496 @item file
10497 Set the 3D LUT file name.
10498
10499 Currently supported formats:
10500 @table @samp
10501 @item 3dl
10502 AfterEffects
10503 @item cube
10504 Iridas
10505 @item dat
10506 DaVinci
10507 @item m3d
10508 Pandora
10509 @end table
10510 @item interp
10511 Select interpolation mode.
10512
10513 Available values are:
10514
10515 @table @samp
10516 @item nearest
10517 Use values from the nearest defined point.
10518 @item trilinear
10519 Interpolate values using the 8 points defining a cube.
10520 @item tetrahedral
10521 Interpolate values using a tetrahedron.
10522 @end table
10523 @end table
10524
10525 This filter also supports the @ref{framesync} options.
10526
10527 @section lumakey
10528
10529 Turn certain luma values into transparency.
10530
10531 The filter accepts the following options:
10532
10533 @table @option
10534 @item threshold
10535 Set the luma which will be used as base for transparency.
10536 Default value is @code{0}.
10537
10538 @item tolerance
10539 Set the range of luma values to be keyed out.
10540 Default value is @code{0}.
10541
10542 @item softness
10543 Set the range of softness. Default value is @code{0}.
10544 Use this to control gradual transition from zero to full transparency.
10545 @end table
10546
10547 @section lut, lutrgb, lutyuv
10548
10549 Compute a look-up table for binding each pixel component input value
10550 to an output value, and apply it to the input video.
10551
10552 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
10553 to an RGB input video.
10554
10555 These filters accept the following parameters:
10556 @table @option
10557 @item c0
10558 set first pixel component expression
10559 @item c1
10560 set second pixel component expression
10561 @item c2
10562 set third pixel component expression
10563 @item c3
10564 set fourth pixel component expression, corresponds to the alpha component
10565
10566 @item r
10567 set red component expression
10568 @item g
10569 set green component expression
10570 @item b
10571 set blue component expression
10572 @item a
10573 alpha component expression
10574
10575 @item y
10576 set Y/luminance component expression
10577 @item u
10578 set U/Cb component expression
10579 @item v
10580 set V/Cr component expression
10581 @end table
10582
10583 Each of them specifies the expression to use for computing the lookup table for
10584 the corresponding pixel component values.
10585
10586 The exact component associated to each of the @var{c*} options depends on the
10587 format in input.
10588
10589 The @var{lut} filter requires either YUV or RGB pixel formats in input,
10590 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
10591
10592 The expressions can contain the following constants and functions:
10593
10594 @table @option
10595 @item w
10596 @item h
10597 The input width and height.
10598
10599 @item val
10600 The input value for the pixel component.
10601
10602 @item clipval
10603 The input value, clipped to the @var{minval}-@var{maxval} range.
10604
10605 @item maxval
10606 The maximum value for the pixel component.
10607
10608 @item minval
10609 The minimum value for the pixel component.
10610
10611 @item negval
10612 The negated value for the pixel component value, clipped to the
10613 @var{minval}-@var{maxval} range; it corresponds to the expression
10614 "maxval-clipval+minval".
10615
10616 @item clip(val)
10617 The computed value in @var{val}, clipped to the
10618 @var{minval}-@var{maxval} range.
10619
10620 @item gammaval(gamma)
10621 The computed gamma correction value of the pixel component value,
10622 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
10623 expression
10624 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
10625
10626 @end table
10627
10628 All expressions default to "val".
10629
10630 @subsection Examples
10631
10632 @itemize
10633 @item
10634 Negate input video:
10635 @example
10636 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
10637 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
10638 @end example
10639
10640 The above is the same as:
10641 @example
10642 lutrgb="r=negval:g=negval:b=negval"
10643 lutyuv="y=negval:u=negval:v=negval"
10644 @end example
10645
10646 @item
10647 Negate luminance:
10648 @example
10649 lutyuv=y=negval
10650 @end example
10651
10652 @item
10653 Remove chroma components, turning the video into a graytone image:
10654 @example
10655 lutyuv="u=128:v=128"
10656 @end example
10657
10658 @item
10659 Apply a luma burning effect:
10660 @example
10661 lutyuv="y=2*val"
10662 @end example
10663
10664 @item
10665 Remove green and blue components:
10666 @example
10667 lutrgb="g=0:b=0"
10668 @end example
10669
10670 @item
10671 Set a constant alpha channel value on input:
10672 @example
10673 format=rgba,lutrgb=a="maxval-minval/2"
10674 @end example
10675
10676 @item
10677 Correct luminance gamma by a factor of 0.5:
10678 @example
10679 lutyuv=y=gammaval(0.5)
10680 @end example
10681
10682 @item
10683 Discard least significant bits of luma:
10684 @example
10685 lutyuv=y='bitand(val, 128+64+32)'
10686 @end example
10687
10688 @item
10689 Technicolor like effect:
10690 @example
10691 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
10692 @end example
10693 @end itemize
10694
10695 @section lut2, tlut2
10696
10697 The @code{lut2} filter takes two input streams and outputs one
10698 stream.
10699
10700 The @code{tlut2} (time lut2) filter takes two consecutive frames
10701 from one single stream.
10702
10703 This filter accepts the following parameters:
10704 @table @option
10705 @item c0
10706 set first pixel component expression
10707 @item c1
10708 set second pixel component expression
10709 @item c2
10710 set third pixel component expression
10711 @item c3
10712 set fourth pixel component expression, corresponds to the alpha component
10713 @end table
10714
10715 Each of them specifies the expression to use for computing the lookup table for
10716 the corresponding pixel component values.
10717
10718 The exact component associated to each of the @var{c*} options depends on the
10719 format in inputs.
10720
10721 The expressions can contain the following constants:
10722
10723 @table @option
10724 @item w
10725 @item h
10726 The input width and height.
10727
10728 @item x
10729 The first input value for the pixel component.
10730
10731 @item y
10732 The second input value for the pixel component.
10733
10734 @item bdx
10735 The first input video bit depth.
10736
10737 @item bdy
10738 The second input video bit depth.
10739 @end table
10740
10741 All expressions default to "x".
10742
10743 @subsection Examples
10744
10745 @itemize
10746 @item
10747 Highlight differences between two RGB video streams:
10748 @example
10749 lut2='ifnot(x-y,0,pow(2,bdx)-1):ifnot(x-y,0,pow(2,bdx)-1):ifnot(x-y,0,pow(2,bdx)-1)'
10750 @end example
10751
10752 @item
10753 Highlight differences between two YUV video streams:
10754 @example
10755 lut2='ifnot(x-y,0,pow(2,bdx)-1):ifnot(x-y,pow(2,bdx-1),pow(2,bdx)-1):ifnot(x-y,pow(2,bdx-1),pow(2,bdx)-1)'
10756 @end example
10757
10758 @item
10759 Show max difference between two video streams:
10760 @example
10761 lut2='if(lt(x,y),0,if(gt(x,y),pow(2,bdx)-1,pow(2,bdx-1))):if(lt(x,y),0,if(gt(x,y),pow(2,bdx)-1,pow(2,bdx-1))):if(lt(x,y),0,if(gt(x,y),pow(2,bdx)-1,pow(2,bdx-1)))'
10762 @end example
10763 @end itemize
10764
10765 @section maskedclamp
10766
10767 Clamp the first input stream with the second input and third input stream.
10768
10769 Returns the value of first stream to be between second input
10770 stream - @code{undershoot} and third input stream + @code{overshoot}.
10771
10772 This filter accepts the following options:
10773 @table @option
10774 @item undershoot
10775 Default value is @code{0}.
10776
10777 @item overshoot
10778 Default value is @code{0}.
10779
10780 @item planes
10781 Set which planes will be processed as bitmap, unprocessed planes will be
10782 copied from first stream.
10783 By default value 0xf, all planes will be processed.
10784 @end table
10785
10786 @section maskedmerge
10787
10788 Merge the first input stream with the second input stream using per pixel
10789 weights in the third input stream.
10790
10791 A value of 0 in the third stream pixel component means that pixel component
10792 from first stream is returned unchanged, while maximum value (eg. 255 for
10793 8-bit videos) means that pixel component from second stream is returned
10794 unchanged. Intermediate values define the amount of merging between both
10795 input stream's pixel components.
10796
10797 This filter accepts the following options:
10798 @table @option
10799 @item planes
10800 Set which planes will be processed as bitmap, unprocessed planes will be
10801 copied from first stream.
10802 By default value 0xf, all planes will be processed.
10803 @end table
10804
10805 @section mcdeint
10806
10807 Apply motion-compensation deinterlacing.
10808
10809 It needs one field per frame as input and must thus be used together
10810 with yadif=1/3 or equivalent.
10811
10812 This filter accepts the following options:
10813 @table @option
10814 @item mode
10815 Set the deinterlacing mode.
10816
10817 It accepts one of the following values:
10818 @table @samp
10819 @item fast
10820 @item medium
10821 @item slow
10822 use iterative motion estimation
10823 @item extra_slow
10824 like @samp{slow}, but use multiple reference frames.
10825 @end table
10826 Default value is @samp{fast}.
10827
10828 @item parity
10829 Set the picture field parity assumed for the input video. It must be
10830 one of the following values:
10831
10832 @table @samp
10833 @item 0, tff
10834 assume top field first
10835 @item 1, bff
10836 assume bottom field first
10837 @end table
10838
10839 Default value is @samp{bff}.
10840
10841 @item qp
10842 Set per-block quantization parameter (QP) used by the internal
10843 encoder.
10844
10845 Higher values should result in a smoother motion vector field but less
10846 optimal individual vectors. Default value is 1.
10847 @end table
10848
10849 @section mergeplanes
10850
10851 Merge color channel components from several video streams.
10852
10853 The filter accepts up to 4 input streams, and merge selected input
10854 planes to the output video.
10855
10856 This filter accepts the following options:
10857 @table @option
10858 @item mapping
10859 Set input to output plane mapping. Default is @code{0}.
10860
10861 The mappings is specified as a bitmap. It should be specified as a
10862 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
10863 mapping for the first plane of the output stream. 'A' sets the number of
10864 the input stream to use (from 0 to 3), and 'a' the plane number of the
10865 corresponding input to use (from 0 to 3). The rest of the mappings is
10866 similar, 'Bb' describes the mapping for the output stream second
10867 plane, 'Cc' describes the mapping for the output stream third plane and
10868 'Dd' describes the mapping for the output stream fourth plane.
10869
10870 @item format
10871 Set output pixel format. Default is @code{yuva444p}.
10872 @end table
10873
10874 @subsection Examples
10875
10876 @itemize
10877 @item
10878 Merge three gray video streams of same width and height into single video stream:
10879 @example
10880 [a0][a1][a2]mergeplanes=0x001020:yuv444p
10881 @end example
10882
10883 @item
10884 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
10885 @example
10886 [a0][a1]mergeplanes=0x00010210:yuva444p
10887 @end example
10888
10889 @item
10890 Swap Y and A plane in yuva444p stream:
10891 @example
10892 format=yuva444p,mergeplanes=0x03010200:yuva444p
10893 @end example
10894
10895 @item
10896 Swap U and V plane in yuv420p stream:
10897 @example
10898 format=yuv420p,mergeplanes=0x000201:yuv420p
10899 @end example
10900
10901 @item
10902 Cast a rgb24 clip to yuv444p:
10903 @example
10904 format=rgb24,mergeplanes=0x000102:yuv444p
10905 @end example
10906 @end itemize
10907
10908 @section mestimate
10909
10910 Estimate and export motion vectors using block matching algorithms.
10911 Motion vectors are stored in frame side data to be used by other filters.
10912
10913 This filter accepts the following options:
10914 @table @option
10915 @item method
10916 Specify the motion estimation method. Accepts one of the following values:
10917
10918 @table @samp
10919 @item esa
10920 Exhaustive search algorithm.
10921 @item tss
10922 Three step search algorithm.
10923 @item tdls
10924 Two dimensional logarithmic search algorithm.
10925 @item ntss
10926 New three step search algorithm.
10927 @item fss
10928 Four step search algorithm.
10929 @item ds
10930 Diamond search algorithm.
10931 @item hexbs
10932 Hexagon-based search algorithm.
10933 @item epzs
10934 Enhanced predictive zonal search algorithm.
10935 @item umh
10936 Uneven multi-hexagon search algorithm.
10937 @end table
10938 Default value is @samp{esa}.
10939
10940 @item mb_size
10941 Macroblock size. Default @code{16}.
10942
10943 @item search_param
10944 Search parameter. Default @code{7}.
10945 @end table
10946
10947 @section midequalizer
10948
10949 Apply Midway Image Equalization effect using two video streams.
10950
10951 Midway Image Equalization adjusts a pair of images to have the same
10952 histogram, while maintaining their dynamics as much as possible. It's
10953 useful for e.g. matching exposures from a pair of stereo cameras.
10954
10955 This filter has two inputs and one output, which must be of same pixel format, but
10956 may be of different sizes. The output of filter is first input adjusted with
10957 midway histogram of both inputs.
10958
10959 This filter accepts the following option:
10960
10961 @table @option
10962 @item planes
10963 Set which planes to process. Default is @code{15}, which is all available planes.
10964 @end table
10965
10966 @section minterpolate
10967
10968 Convert the video to specified frame rate using motion interpolation.
10969
10970 This filter accepts the following options:
10971 @table @option
10972 @item fps
10973 Specify the output frame rate. This can be rational e.g. @code{60000/1001}. Frames are dropped if @var{fps} is lower than source fps. Default @code{60}.
10974
10975 @item mi_mode
10976 Motion interpolation mode. Following values are accepted:
10977 @table @samp
10978 @item dup
10979 Duplicate previous or next frame for interpolating new ones.
10980 @item blend
10981 Blend source frames. Interpolated frame is mean of previous and next frames.
10982 @item mci
10983 Motion compensated interpolation. Following options are effective when this mode is selected:
10984
10985 @table @samp
10986 @item mc_mode
10987 Motion compensation mode. Following values are accepted:
10988 @table @samp
10989 @item obmc
10990 Overlapped block motion compensation.
10991 @item aobmc
10992 Adaptive overlapped block motion compensation. Window weighting coefficients are controlled adaptively according to the reliabilities of the neighboring motion vectors to reduce oversmoothing.
10993 @end table
10994 Default mode is @samp{obmc}.
10995
10996 @item me_mode
10997 Motion estimation mode. Following values are accepted:
10998 @table @samp
10999 @item bidir
11000 Bidirectional motion estimation. Motion vectors are estimated for each source frame in both forward and backward directions.
11001 @item bilat
11002 Bilateral motion estimation. Motion vectors are estimated directly for interpolated frame.
11003 @end table
11004 Default mode is @samp{bilat}.
11005
11006 @item me
11007 The algorithm to be used for motion estimation. Following values are accepted:
11008 @table @samp
11009 @item esa
11010 Exhaustive search algorithm.
11011 @item tss
11012 Three step search algorithm.
11013 @item tdls
11014 Two dimensional logarithmic search algorithm.
11015 @item ntss
11016 New three step search algorithm.
11017 @item fss
11018 Four step search algorithm.
11019 @item ds
11020 Diamond search algorithm.
11021 @item hexbs
11022 Hexagon-based search algorithm.
11023 @item epzs
11024 Enhanced predictive zonal search algorithm.
11025 @item umh
11026 Uneven multi-hexagon search algorithm.
11027 @end table
11028 Default algorithm is @samp{epzs}.
11029
11030 @item mb_size
11031 Macroblock size. Default @code{16}.
11032
11033 @item search_param
11034 Motion estimation search parameter. Default @code{32}.
11035
11036 @item vsbmc
11037 Enable variable-size block motion compensation. Motion estimation is applied with smaller block sizes at object boundaries in order to make the them less blur. Default is @code{0} (disabled).
11038 @end table
11039 @end table
11040
11041 @item scd
11042 Scene change detection method. Scene change leads motion vectors to be in random direction. Scene change detection replace interpolated frames by duplicate ones. May not be needed for other modes. Following values are accepted:
11043 @table @samp
11044 @item none
11045 Disable scene change detection.
11046 @item fdiff
11047 Frame difference. Corresponding pixel values are compared and if it satisfies @var{scd_threshold} scene change is detected.
11048 @end table
11049 Default method is @samp{fdiff}.
11050
11051 @item scd_threshold
11052 Scene change detection threshold. Default is @code{5.0}.
11053 @end table
11054
11055 @section mix
11056
11057 Mix several video input streams into one video stream.
11058
11059 A description of the accepted options follows.
11060
11061 @table @option
11062 @item nb_inputs
11063 The number of inputs. If unspecified, it defaults to 2.
11064
11065 @item weights
11066 Specify weight of each input video stream as sequence.
11067 Each weight is separated by space.
11068
11069 @item duration
11070 Specify how end of stream is determined.
11071 @table @samp
11072 @item longest
11073 The duration of the longest input. (default)
11074
11075 @item shortest
11076 The duration of the shortest input.
11077
11078 @item first
11079 The duration of the first input.
11080 @end table
11081 @end table
11082
11083 @section mpdecimate
11084
11085 Drop frames that do not differ greatly from the previous frame in
11086 order to reduce frame rate.
11087
11088 The main use of this filter is for very-low-bitrate encoding
11089 (e.g. streaming over dialup modem), but it could in theory be used for
11090 fixing movies that were inverse-telecined incorrectly.
11091
11092 A description of the accepted options follows.
11093
11094 @table @option
11095 @item max
11096 Set the maximum number of consecutive frames which can be dropped (if
11097 positive), or the minimum interval between dropped frames (if
11098 negative). If the value is 0, the frame is dropped disregarding the
11099 number of previous sequentially dropped frames.
11100
11101 Default value is 0.
11102
11103 @item hi
11104 @item lo
11105 @item frac
11106 Set the dropping threshold values.
11107
11108 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
11109 represent actual pixel value differences, so a threshold of 64
11110 corresponds to 1 unit of difference for each pixel, or the same spread
11111 out differently over the block.
11112
11113 A frame is a candidate for dropping if no 8x8 blocks differ by more
11114 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
11115 meaning the whole image) differ by more than a threshold of @option{lo}.
11116
11117 Default value for @option{hi} is 64*12, default value for @option{lo} is
11118 64*5, and default value for @option{frac} is 0.33.
11119 @end table
11120
11121
11122 @section negate
11123
11124 Negate input video.
11125
11126 It accepts an integer in input; if non-zero it negates the
11127 alpha component (if available). The default value in input is 0.
11128
11129 @section nlmeans
11130
11131 Denoise frames using Non-Local Means algorithm.
11132
11133 Each pixel is adjusted by looking for other pixels with similar contexts. This
11134 context similarity is defined by comparing their surrounding patches of size
11135 @option{p}x@option{p}. Patches are searched in an area of @option{r}x@option{r}
11136 around the pixel.
11137
11138 Note that the research area defines centers for patches, which means some
11139 patches will be made of pixels outside that research area.
11140
11141 The filter accepts the following options.
11142
11143 @table @option
11144 @item s
11145 Set denoising strength.
11146
11147 @item p
11148 Set patch size.
11149
11150 @item pc
11151 Same as @option{p} but for chroma planes.
11152
11153 The default value is @var{0} and means automatic.
11154
11155 @item r
11156 Set research size.
11157
11158 @item rc
11159 Same as @option{r} but for chroma planes.
11160
11161 The default value is @var{0} and means automatic.
11162 @end table
11163
11164 @section nnedi
11165
11166 Deinterlace video using neural network edge directed interpolation.
11167
11168 This filter accepts the following options:
11169
11170 @table @option
11171 @item weights
11172 Mandatory option, without binary file filter can not work.
11173 Currently file can be found here:
11174 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
11175
11176 @item deint
11177 Set which frames to deinterlace, by default it is @code{all}.
11178 Can be @code{all} or @code{interlaced}.
11179
11180 @item field
11181 Set mode of operation.
11182
11183 Can be one of the following:
11184
11185 @table @samp
11186 @item af
11187 Use frame flags, both fields.
11188 @item a
11189 Use frame flags, single field.
11190 @item t
11191 Use top field only.
11192 @item b
11193 Use bottom field only.
11194 @item tf
11195 Use both fields, top first.
11196 @item bf
11197 Use both fields, bottom first.
11198 @end table
11199
11200 @item planes
11201 Set which planes to process, by default filter process all frames.
11202
11203 @item nsize
11204 Set size of local neighborhood around each pixel, used by the predictor neural
11205 network.
11206
11207 Can be one of the following:
11208
11209 @table @samp
11210 @item s8x6
11211 @item s16x6
11212 @item s32x6
11213 @item s48x6
11214 @item s8x4
11215 @item s16x4
11216 @item s32x4
11217 @end table
11218
11219 @item nns
11220 Set the number of neurons in predictor neural network.
11221 Can be one of the following:
11222
11223 @table @samp
11224 @item n16
11225 @item n32
11226 @item n64
11227 @item n128
11228 @item n256
11229 @end table
11230
11231 @item qual
11232 Controls the number of different neural network predictions that are blended
11233 together to compute the final output value. Can be @code{fast}, default or
11234 @code{slow}.
11235
11236 @item etype
11237 Set which set of weights to use in the predictor.
11238 Can be one of the following:
11239
11240 @table @samp
11241 @item a
11242 weights trained to minimize absolute error
11243 @item s
11244 weights trained to minimize squared error
11245 @end table
11246
11247 @item pscrn
11248 Controls whether or not the prescreener neural network is used to decide
11249 which pixels should be processed by the predictor neural network and which
11250 can be handled by simple cubic interpolation.
11251 The prescreener is trained to know whether cubic interpolation will be
11252 sufficient for a pixel or whether it should be predicted by the predictor nn.
11253 The computational complexity of the prescreener nn is much less than that of
11254 the predictor nn. Since most pixels can be handled by cubic interpolation,
11255 using the prescreener generally results in much faster processing.
11256 The prescreener is pretty accurate, so the difference between using it and not
11257 using it is almost always unnoticeable.
11258
11259 Can be one of the following:
11260
11261 @table @samp
11262 @item none
11263 @item original
11264 @item new
11265 @end table
11266
11267 Default is @code{new}.
11268
11269 @item fapprox
11270 Set various debugging flags.
11271 @end table
11272
11273 @section noformat
11274
11275 Force libavfilter not to use any of the specified pixel formats for the
11276 input to the next filter.
11277
11278 It accepts the following parameters:
11279 @table @option
11280
11281 @item pix_fmts
11282 A '|'-separated list of pixel format names, such as
11283 pix_fmts=yuv420p|monow|rgb24".
11284
11285 @end table
11286
11287 @subsection Examples
11288
11289 @itemize
11290 @item
11291 Force libavfilter to use a format different from @var{yuv420p} for the
11292 input to the vflip filter:
11293 @example
11294 noformat=pix_fmts=yuv420p,vflip
11295 @end example
11296
11297 @item
11298 Convert the input video to any of the formats not contained in the list:
11299 @example
11300 noformat=yuv420p|yuv444p|yuv410p
11301 @end example
11302 @end itemize
11303
11304 @section noise
11305
11306 Add noise on video input frame.
11307
11308 The filter accepts the following options:
11309
11310 @table @option
11311 @item all_seed
11312 @item c0_seed
11313 @item c1_seed
11314 @item c2_seed
11315 @item c3_seed
11316 Set noise seed for specific pixel component or all pixel components in case
11317 of @var{all_seed}. Default value is @code{123457}.
11318
11319 @item all_strength, alls
11320 @item c0_strength, c0s
11321 @item c1_strength, c1s
11322 @item c2_strength, c2s
11323 @item c3_strength, c3s
11324 Set noise strength for specific pixel component or all pixel components in case
11325 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
11326
11327 @item all_flags, allf
11328 @item c0_flags, c0f
11329 @item c1_flags, c1f
11330 @item c2_flags, c2f
11331 @item c3_flags, c3f
11332 Set pixel component flags or set flags for all components if @var{all_flags}.
11333 Available values for component flags are:
11334 @table @samp
11335 @item a
11336 averaged temporal noise (smoother)
11337 @item p
11338 mix random noise with a (semi)regular pattern
11339 @item t
11340 temporal noise (noise pattern changes between frames)
11341 @item u
11342 uniform noise (gaussian otherwise)
11343 @end table
11344 @end table
11345
11346 @subsection Examples
11347
11348 Add temporal and uniform noise to input video:
11349 @example
11350 noise=alls=20:allf=t+u
11351 @end example
11352
11353 @section normalize
11354
11355 Normalize RGB video (aka histogram stretching, contrast stretching).
11356 See: https://en.wikipedia.org/wiki/Normalization_(image_processing)
11357
11358 For each channel of each frame, the filter computes the input range and maps
11359 it linearly to the user-specified output range. The output range defaults
11360 to the full dynamic range from pure black to pure white.
11361
11362 Temporal smoothing can be used on the input range to reduce flickering (rapid
11363 changes in brightness) caused when small dark or bright objects enter or leave
11364 the scene. This is similar to the auto-exposure (automatic gain control) on a
11365 video camera, and, like a video camera, it may cause a period of over- or
11366 under-exposure of the video.
11367
11368 The R,G,B channels can be normalized independently, which may cause some
11369 color shifting, or linked together as a single channel, which prevents
11370 color shifting. Linked normalization preserves hue. Independent normalization
11371 does not, so it can be used to remove some color casts. Independent and linked
11372 normalization can be combined in any ratio.
11373
11374 The normalize filter accepts the following options:
11375
11376 @table @option
11377 @item blackpt
11378 @item whitept
11379 Colors which define the output range. The minimum input value is mapped to
11380 the @var{blackpt}. The maximum input value is mapped to the @var{whitept}.
11381 The defaults are black and white respectively. Specifying white for
11382 @var{blackpt} and black for @var{whitept} will give color-inverted,
11383 normalized video. Shades of grey can be used to reduce the dynamic range
11384 (contrast). Specifying saturated colors here can create some interesting
11385 effects.
11386
11387 @item smoothing
11388 The number of previous frames to use for temporal smoothing. The input range
11389 of each channel is smoothed using a rolling average over the current frame
11390 and the @var{smoothing} previous frames. The default is 0 (no temporal
11391 smoothing).
11392
11393 @item independence
11394 Controls the ratio of independent (color shifting) channel normalization to
11395 linked (color preserving) normalization. 0.0 is fully linked, 1.0 is fully
11396 independent. Defaults to 1.0 (fully independent).
11397
11398 @item strength
11399 Overall strength of the filter. 1.0 is full strength. 0.0 is a rather
11400 expensive no-op. Defaults to 1.0 (full strength).
11401
11402 @end table
11403
11404 @subsection Examples
11405
11406 Stretch video contrast to use the full dynamic range, with no temporal
11407 smoothing; may flicker depending on the source content:
11408 @example
11409 normalize=blackpt=black:whitept=white:smoothing=0
11410 @end example
11411
11412 As above, but with 50 frames of temporal smoothing; flicker should be
11413 reduced, depending on the source content:
11414 @example
11415 normalize=blackpt=black:whitept=white:smoothing=50
11416 @end example
11417
11418 As above, but with hue-preserving linked channel normalization:
11419 @example
11420 normalize=blackpt=black:whitept=white:smoothing=50:independence=0
11421 @end example
11422
11423 As above, but with half strength:
11424 @example
11425 normalize=blackpt=black:whitept=white:smoothing=50:independence=0:strength=0.5
11426 @end example
11427
11428 Map the darkest input color to red, the brightest input color to cyan:
11429 @example
11430 normalize=blackpt=red:whitept=cyan
11431 @end example
11432
11433 @section null
11434
11435 Pass the video source unchanged to the output.
11436
11437 @section ocr
11438 Optical Character Recognition
11439
11440 This filter uses Tesseract for optical character recognition.
11441
11442 It accepts the following options:
11443
11444 @table @option
11445 @item datapath
11446 Set datapath to tesseract data. Default is to use whatever was
11447 set at installation.
11448
11449 @item language
11450 Set language, default is "eng".
11451
11452 @item whitelist
11453 Set character whitelist.
11454
11455 @item blacklist
11456 Set character blacklist.
11457 @end table
11458
11459 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
11460
11461 @section ocv
11462
11463 Apply a video transform using libopencv.
11464
11465 To enable this filter, install the libopencv library and headers and
11466 configure FFmpeg with @code{--enable-libopencv}.
11467
11468 It accepts the following parameters:
11469
11470 @table @option
11471
11472 @item filter_name
11473 The name of the libopencv filter to apply.
11474
11475 @item filter_params
11476 The parameters to pass to the libopencv filter. If not specified, the default
11477 values are assumed.
11478
11479 @end table
11480
11481 Refer to the official libopencv documentation for more precise
11482 information:
11483 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
11484
11485 Several libopencv filters are supported; see the following subsections.
11486
11487 @anchor{dilate}
11488 @subsection dilate
11489
11490 Dilate an image by using a specific structuring element.
11491 It corresponds to the libopencv function @code{cvDilate}.
11492
11493 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
11494
11495 @var{struct_el} represents a structuring element, and has the syntax:
11496 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
11497
11498 @var{cols} and @var{rows} represent the number of columns and rows of
11499 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
11500 point, and @var{shape} the shape for the structuring element. @var{shape}
11501 must be "rect", "cross", "ellipse", or "custom".
11502
11503 If the value for @var{shape} is "custom", it must be followed by a
11504 string of the form "=@var{filename}". The file with name
11505 @var{filename} is assumed to represent a binary image, with each
11506 printable character corresponding to a bright pixel. When a custom
11507 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
11508 or columns and rows of the read file are assumed instead.
11509
11510 The default value for @var{struct_el} is "3x3+0x0/rect".
11511
11512 @var{nb_iterations} specifies the number of times the transform is
11513 applied to the image, and defaults to 1.
11514
11515 Some examples:
11516 @example
11517 # Use the default values
11518 ocv=dilate
11519
11520 # Dilate using a structuring element with a 5x5 cross, iterating two times
11521 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
11522
11523 # Read the shape from the file diamond.shape, iterating two times.
11524 # The file diamond.shape may contain a pattern of characters like this
11525 #   *
11526 #  ***
11527 # *****
11528 #  ***
11529 #   *
11530 # The specified columns and rows are ignored
11531 # but the anchor point coordinates are not
11532 ocv=dilate:0x0+2x2/custom=diamond.shape|2
11533 @end example
11534
11535 @subsection erode
11536
11537 Erode an image by using a specific structuring element.
11538 It corresponds to the libopencv function @code{cvErode}.
11539
11540 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
11541 with the same syntax and semantics as the @ref{dilate} filter.
11542
11543 @subsection smooth
11544
11545 Smooth the input video.
11546
11547 The filter takes the following parameters:
11548 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
11549
11550 @var{type} is the type of smooth filter to apply, and must be one of
11551 the following values: "blur", "blur_no_scale", "median", "gaussian",
11552 or "bilateral". The default value is "gaussian".
11553
11554 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
11555 depend on the smooth type. @var{param1} and
11556 @var{param2} accept integer positive values or 0. @var{param3} and
11557 @var{param4} accept floating point values.
11558
11559 The default value for @var{param1} is 3. The default value for the
11560 other parameters is 0.
11561
11562 These parameters correspond to the parameters assigned to the
11563 libopencv function @code{cvSmooth}.
11564
11565 @section oscilloscope
11566
11567 2D Video Oscilloscope.
11568
11569 Useful to measure spatial impulse, step responses, chroma delays, etc.
11570
11571 It accepts the following parameters:
11572
11573 @table @option
11574 @item x
11575 Set scope center x position.
11576
11577 @item y
11578 Set scope center y position.
11579
11580 @item s
11581 Set scope size, relative to frame diagonal.
11582
11583 @item t
11584 Set scope tilt/rotation.
11585
11586 @item o
11587 Set trace opacity.
11588
11589 @item tx
11590 Set trace center x position.
11591
11592 @item ty
11593 Set trace center y position.
11594
11595 @item tw
11596 Set trace width, relative to width of frame.
11597
11598 @item th
11599 Set trace height, relative to height of frame.
11600
11601 @item c
11602 Set which components to trace. By default it traces first three components.
11603
11604 @item g
11605 Draw trace grid. By default is enabled.
11606
11607 @item st
11608 Draw some statistics. By default is enabled.
11609
11610 @item sc
11611 Draw scope. By default is enabled.
11612 @end table
11613
11614 @subsection Examples
11615
11616 @itemize
11617 @item
11618 Inspect full first row of video frame.
11619 @example
11620 oscilloscope=x=0.5:y=0:s=1
11621 @end example
11622
11623 @item
11624 Inspect full last row of video frame.
11625 @example
11626 oscilloscope=x=0.5:y=1:s=1
11627 @end example
11628
11629 @item
11630 Inspect full 5th line of video frame of height 1080.
11631 @example
11632 oscilloscope=x=0.5:y=5/1080:s=1
11633 @end example
11634
11635 @item
11636 Inspect full last column of video frame.
11637 @example
11638 oscilloscope=x=1:y=0.5:s=1:t=1
11639 @end example
11640
11641 @end itemize
11642
11643 @anchor{overlay}
11644 @section overlay
11645
11646 Overlay one video on top of another.
11647
11648 It takes two inputs and has one output. The first input is the "main"
11649 video on which the second input is overlaid.
11650
11651 It accepts the following parameters:
11652
11653 A description of the accepted options follows.
11654
11655 @table @option
11656 @item x
11657 @item y
11658 Set the expression for the x and y coordinates of the overlaid video
11659 on the main video. Default value is "0" for both expressions. In case
11660 the expression is invalid, it is set to a huge value (meaning that the
11661 overlay will not be displayed within the output visible area).
11662
11663 @item eof_action
11664 See @ref{framesync}.
11665
11666 @item eval
11667 Set when the expressions for @option{x}, and @option{y} are evaluated.
11668
11669 It accepts the following values:
11670 @table @samp
11671 @item init
11672 only evaluate expressions once during the filter initialization or
11673 when a command is processed
11674
11675 @item frame
11676 evaluate expressions for each incoming frame
11677 @end table
11678
11679 Default value is @samp{frame}.
11680
11681 @item shortest
11682 See @ref{framesync}.
11683
11684 @item format
11685 Set the format for the output video.
11686
11687 It accepts the following values:
11688 @table @samp
11689 @item yuv420
11690 force YUV420 output
11691
11692 @item yuv422
11693 force YUV422 output
11694
11695 @item yuv444
11696 force YUV444 output
11697
11698 @item rgb
11699 force packed RGB output
11700
11701 @item gbrp
11702 force planar RGB output
11703
11704 @item auto
11705 automatically pick format
11706 @end table
11707
11708 Default value is @samp{yuv420}.
11709
11710 @item repeatlast
11711 See @ref{framesync}.
11712
11713 @item alpha
11714 Set format of alpha of the overlaid video, it can be @var{straight} or
11715 @var{premultiplied}. Default is @var{straight}.
11716 @end table
11717
11718 The @option{x}, and @option{y} expressions can contain the following
11719 parameters.
11720
11721 @table @option
11722 @item main_w, W
11723 @item main_h, H
11724 The main input width and height.
11725
11726 @item overlay_w, w
11727 @item overlay_h, h
11728 The overlay input width and height.
11729
11730 @item x
11731 @item y
11732 The computed values for @var{x} and @var{y}. They are evaluated for
11733 each new frame.
11734
11735 @item hsub
11736 @item vsub
11737 horizontal and vertical chroma subsample values of the output
11738 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
11739 @var{vsub} is 1.
11740
11741 @item n
11742 the number of input frame, starting from 0
11743
11744 @item pos
11745 the position in the file of the input frame, NAN if unknown
11746
11747 @item t
11748 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
11749
11750 @end table
11751
11752 This filter also supports the @ref{framesync} options.
11753
11754 Note that the @var{n}, @var{pos}, @var{t} variables are available only
11755 when evaluation is done @emph{per frame}, and will evaluate to NAN
11756 when @option{eval} is set to @samp{init}.
11757
11758 Be aware that frames are taken from each input video in timestamp
11759 order, hence, if their initial timestamps differ, it is a good idea
11760 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
11761 have them begin in the same zero timestamp, as the example for
11762 the @var{movie} filter does.
11763
11764 You can chain together more overlays but you should test the
11765 efficiency of such approach.
11766
11767 @subsection Commands
11768
11769 This filter supports the following commands:
11770 @table @option
11771 @item x
11772 @item y
11773 Modify the x and y of the overlay input.
11774 The command accepts the same syntax of the corresponding option.
11775
11776 If the specified expression is not valid, it is kept at its current
11777 value.
11778 @end table
11779
11780 @subsection Examples
11781
11782 @itemize
11783 @item
11784 Draw the overlay at 10 pixels from the bottom right corner of the main
11785 video:
11786 @example
11787 overlay=main_w-overlay_w-10:main_h-overlay_h-10
11788 @end example
11789
11790 Using named options the example above becomes:
11791 @example
11792 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
11793 @end example
11794
11795 @item
11796 Insert a transparent PNG logo in the bottom left corner of the input,
11797 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
11798 @example
11799 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
11800 @end example
11801
11802 @item
11803 Insert 2 different transparent PNG logos (second logo on bottom
11804 right corner) using the @command{ffmpeg} tool:
11805 @example
11806 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
11807 @end example
11808
11809 @item
11810 Add a transparent color layer on top of the main video; @code{WxH}
11811 must specify the size of the main input to the overlay filter:
11812 @example
11813 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
11814 @end example
11815
11816 @item
11817 Play an original video and a filtered version (here with the deshake
11818 filter) side by side using the @command{ffplay} tool:
11819 @example
11820 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
11821 @end example
11822
11823 The above command is the same as:
11824 @example
11825 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
11826 @end example
11827
11828 @item
11829 Make a sliding overlay appearing from the left to the right top part of the
11830 screen starting since time 2:
11831 @example
11832 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
11833 @end example
11834
11835 @item
11836 Compose output by putting two input videos side to side:
11837 @example
11838 ffmpeg -i left.avi -i right.avi -filter_complex "
11839 nullsrc=size=200x100 [background];
11840 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
11841 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
11842 [background][left]       overlay=shortest=1       [background+left];
11843 [background+left][right] overlay=shortest=1:x=100 [left+right]
11844 "
11845 @end example
11846
11847 @item
11848 Mask 10-20 seconds of a video by applying the delogo filter to a section
11849 @example
11850 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
11851 -vf '[in]split[split_main][split_delogo];[split_delogo]trim=start=360:end=371,delogo=0:0:640:480[delogoed];[split_main][delogoed]overlay=eof_action=pass[out]'
11852 masked.avi
11853 @end example
11854
11855 @item
11856 Chain several overlays in cascade:
11857 @example
11858 nullsrc=s=200x200 [bg];
11859 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
11860 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
11861 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
11862 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
11863 [in3] null,       [mid2] overlay=100:100 [out0]
11864 @end example
11865
11866 @end itemize
11867
11868 @section owdenoise
11869
11870 Apply Overcomplete Wavelet denoiser.
11871
11872 The filter accepts the following options:
11873
11874 @table @option
11875 @item depth
11876 Set depth.
11877
11878 Larger depth values will denoise lower frequency components more, but
11879 slow down filtering.
11880
11881 Must be an int in the range 8-16, default is @code{8}.
11882
11883 @item luma_strength, ls
11884 Set luma strength.
11885
11886 Must be a double value in the range 0-1000, default is @code{1.0}.
11887
11888 @item chroma_strength, cs
11889 Set chroma strength.
11890
11891 Must be a double value in the range 0-1000, default is @code{1.0}.
11892 @end table
11893
11894 @anchor{pad}
11895 @section pad
11896
11897 Add paddings to the input image, and place the original input at the
11898 provided @var{x}, @var{y} coordinates.
11899
11900 It accepts the following parameters:
11901
11902 @table @option
11903 @item width, w
11904 @item height, h
11905 Specify an expression for the size of the output image with the
11906 paddings added. If the value for @var{width} or @var{height} is 0, the
11907 corresponding input size is used for the output.
11908
11909 The @var{width} expression can reference the value set by the
11910 @var{height} expression, and vice versa.
11911
11912 The default value of @var{width} and @var{height} is 0.
11913
11914 @item x
11915 @item y
11916 Specify the offsets to place the input image at within the padded area,
11917 with respect to the top/left border of the output image.
11918
11919 The @var{x} expression can reference the value set by the @var{y}
11920 expression, and vice versa.
11921
11922 The default value of @var{x} and @var{y} is 0.
11923
11924 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
11925 so the input image is centered on the padded area.
11926
11927 @item color
11928 Specify the color of the padded area. For the syntax of this option,
11929 check the @ref{color syntax,,"Color" section in the ffmpeg-utils
11930 manual,ffmpeg-utils}.
11931
11932 The default value of @var{color} is "black".
11933
11934 @item eval
11935 Specify when to evaluate  @var{width}, @var{height}, @var{x} and @var{y} expression.
11936
11937 It accepts the following values:
11938
11939 @table @samp
11940 @item init
11941 Only evaluate expressions once during the filter initialization or when
11942 a command is processed.
11943
11944 @item frame
11945 Evaluate expressions for each incoming frame.
11946
11947 @end table
11948
11949 Default value is @samp{init}.
11950
11951 @item aspect
11952 Pad to aspect instead to a resolution.
11953
11954 @end table
11955
11956 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
11957 options are expressions containing the following constants:
11958
11959 @table @option
11960 @item in_w
11961 @item in_h
11962 The input video width and height.
11963
11964 @item iw
11965 @item ih
11966 These are the same as @var{in_w} and @var{in_h}.
11967
11968 @item out_w
11969 @item out_h
11970 The output width and height (the size of the padded area), as
11971 specified by the @var{width} and @var{height} expressions.
11972
11973 @item ow
11974 @item oh
11975 These are the same as @var{out_w} and @var{out_h}.
11976
11977 @item x
11978 @item y
11979 The x and y offsets as specified by the @var{x} and @var{y}
11980 expressions, or NAN if not yet specified.
11981
11982 @item a
11983 same as @var{iw} / @var{ih}
11984
11985 @item sar
11986 input sample aspect ratio
11987
11988 @item dar
11989 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
11990
11991 @item hsub
11992 @item vsub
11993 The horizontal and vertical chroma subsample values. For example for the
11994 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11995 @end table
11996
11997 @subsection Examples
11998
11999 @itemize
12000 @item
12001 Add paddings with the color "violet" to the input video. The output video
12002 size is 640x480, and the top-left corner of the input video is placed at
12003 column 0, row 40
12004 @example
12005 pad=640:480:0:40:violet
12006 @end example
12007
12008 The example above is equivalent to the following command:
12009 @example
12010 pad=width=640:height=480:x=0:y=40:color=violet
12011 @end example
12012
12013 @item
12014 Pad the input to get an output with dimensions increased by 3/2,
12015 and put the input video at the center of the padded area:
12016 @example
12017 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
12018 @end example
12019
12020 @item
12021 Pad the input to get a squared output with size equal to the maximum
12022 value between the input width and height, and put the input video at
12023 the center of the padded area:
12024 @example
12025 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
12026 @end example
12027
12028 @item
12029 Pad the input to get a final w/h ratio of 16:9:
12030 @example
12031 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
12032 @end example
12033
12034 @item
12035 In case of anamorphic video, in order to set the output display aspect
12036 correctly, it is necessary to use @var{sar} in the expression,
12037 according to the relation:
12038 @example
12039 (ih * X / ih) * sar = output_dar
12040 X = output_dar / sar
12041 @end example
12042
12043 Thus the previous example needs to be modified to:
12044 @example
12045 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
12046 @end example
12047
12048 @item
12049 Double the output size and put the input video in the bottom-right
12050 corner of the output padded area:
12051 @example
12052 pad="2*iw:2*ih:ow-iw:oh-ih"
12053 @end example
12054 @end itemize
12055
12056 @anchor{palettegen}
12057 @section palettegen
12058
12059 Generate one palette for a whole video stream.
12060
12061 It accepts the following options:
12062
12063 @table @option
12064 @item max_colors
12065 Set the maximum number of colors to quantize in the palette.
12066 Note: the palette will still contain 256 colors; the unused palette entries
12067 will be black.
12068
12069 @item reserve_transparent
12070 Create a palette of 255 colors maximum and reserve the last one for
12071 transparency. Reserving the transparency color is useful for GIF optimization.
12072 If not set, the maximum of colors in the palette will be 256. You probably want
12073 to disable this option for a standalone image.
12074 Set by default.
12075
12076 @item transparency_color
12077 Set the color that will be used as background for transparency.
12078
12079 @item stats_mode
12080 Set statistics mode.
12081
12082 It accepts the following values:
12083 @table @samp
12084 @item full
12085 Compute full frame histograms.
12086 @item diff
12087 Compute histograms only for the part that differs from previous frame. This
12088 might be relevant to give more importance to the moving part of your input if
12089 the background is static.
12090 @item single
12091 Compute new histogram for each frame.
12092 @end table
12093
12094 Default value is @var{full}.
12095 @end table
12096
12097 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
12098 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
12099 color quantization of the palette. This information is also visible at
12100 @var{info} logging level.
12101
12102 @subsection Examples
12103
12104 @itemize
12105 @item
12106 Generate a representative palette of a given video using @command{ffmpeg}:
12107 @example
12108 ffmpeg -i input.mkv -vf palettegen palette.png
12109 @end example
12110 @end itemize
12111
12112 @section paletteuse
12113
12114 Use a palette to downsample an input video stream.
12115
12116 The filter takes two inputs: one video stream and a palette. The palette must
12117 be a 256 pixels image.
12118
12119 It accepts the following options:
12120
12121 @table @option
12122 @item dither
12123 Select dithering mode. Available algorithms are:
12124 @table @samp
12125 @item bayer
12126 Ordered 8x8 bayer dithering (deterministic)
12127 @item heckbert
12128 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
12129 Note: this dithering is sometimes considered "wrong" and is included as a
12130 reference.
12131 @item floyd_steinberg
12132 Floyd and Steingberg dithering (error diffusion)
12133 @item sierra2
12134 Frankie Sierra dithering v2 (error diffusion)
12135 @item sierra2_4a
12136 Frankie Sierra dithering v2 "Lite" (error diffusion)
12137 @end table
12138
12139 Default is @var{sierra2_4a}.
12140
12141 @item bayer_scale
12142 When @var{bayer} dithering is selected, this option defines the scale of the
12143 pattern (how much the crosshatch pattern is visible). A low value means more
12144 visible pattern for less banding, and higher value means less visible pattern
12145 at the cost of more banding.
12146
12147 The option must be an integer value in the range [0,5]. Default is @var{2}.
12148
12149 @item diff_mode
12150 If set, define the zone to process
12151
12152 @table @samp
12153 @item rectangle
12154 Only the changing rectangle will be reprocessed. This is similar to GIF
12155 cropping/offsetting compression mechanism. This option can be useful for speed
12156 if only a part of the image is changing, and has use cases such as limiting the
12157 scope of the error diffusal @option{dither} to the rectangle that bounds the
12158 moving scene (it leads to more deterministic output if the scene doesn't change
12159 much, and as a result less moving noise and better GIF compression).
12160 @end table
12161
12162 Default is @var{none}.
12163
12164 @item new
12165 Take new palette for each output frame.
12166
12167 @item alpha_threshold
12168 Sets the alpha threshold for transparency. Alpha values above this threshold
12169 will be treated as completely opaque, and values below this threshold will be
12170 treated as completely transparent.
12171
12172 The option must be an integer value in the range [0,255]. Default is @var{128}.
12173 @end table
12174
12175 @subsection Examples
12176
12177 @itemize
12178 @item
12179 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
12180 using @command{ffmpeg}:
12181 @example
12182 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
12183 @end example
12184 @end itemize
12185
12186 @section perspective
12187
12188 Correct perspective of video not recorded perpendicular to the screen.
12189
12190 A description of the accepted parameters follows.
12191
12192 @table @option
12193 @item x0
12194 @item y0
12195 @item x1
12196 @item y1
12197 @item x2
12198 @item y2
12199 @item x3
12200 @item y3
12201 Set coordinates expression for top left, top right, bottom left and bottom right corners.
12202 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
12203 If the @code{sense} option is set to @code{source}, then the specified points will be sent
12204 to the corners of the destination. If the @code{sense} option is set to @code{destination},
12205 then the corners of the source will be sent to the specified coordinates.
12206
12207 The expressions can use the following variables:
12208
12209 @table @option
12210 @item W
12211 @item H
12212 the width and height of video frame.
12213 @item in
12214 Input frame count.
12215 @item on
12216 Output frame count.
12217 @end table
12218
12219 @item interpolation
12220 Set interpolation for perspective correction.
12221
12222 It accepts the following values:
12223 @table @samp
12224 @item linear
12225 @item cubic
12226 @end table
12227
12228 Default value is @samp{linear}.
12229
12230 @item sense
12231 Set interpretation of coordinate options.
12232
12233 It accepts the following values:
12234 @table @samp
12235 @item 0, source
12236
12237 Send point in the source specified by the given coordinates to
12238 the corners of the destination.
12239
12240 @item 1, destination
12241
12242 Send the corners of the source to the point in the destination specified
12243 by the given coordinates.
12244
12245 Default value is @samp{source}.
12246 @end table
12247
12248 @item eval
12249 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
12250
12251 It accepts the following values:
12252 @table @samp
12253 @item init
12254 only evaluate expressions once during the filter initialization or
12255 when a command is processed
12256
12257 @item frame
12258 evaluate expressions for each incoming frame
12259 @end table
12260
12261 Default value is @samp{init}.
12262 @end table
12263
12264 @section phase
12265
12266 Delay interlaced video by one field time so that the field order changes.
12267
12268 The intended use is to fix PAL movies that have been captured with the
12269 opposite field order to the film-to-video transfer.
12270
12271 A description of the accepted parameters follows.
12272
12273 @table @option
12274 @item mode
12275 Set phase mode.
12276
12277 It accepts the following values:
12278 @table @samp
12279 @item t
12280 Capture field order top-first, transfer bottom-first.
12281 Filter will delay the bottom field.
12282
12283 @item b
12284 Capture field order bottom-first, transfer top-first.
12285 Filter will delay the top field.
12286
12287 @item p
12288 Capture and transfer with the same field order. This mode only exists
12289 for the documentation of the other options to refer to, but if you
12290 actually select it, the filter will faithfully do nothing.
12291
12292 @item a
12293 Capture field order determined automatically by field flags, transfer
12294 opposite.
12295 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
12296 basis using field flags. If no field information is available,
12297 then this works just like @samp{u}.
12298
12299 @item u
12300 Capture unknown or varying, transfer opposite.
12301 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
12302 analyzing the images and selecting the alternative that produces best
12303 match between the fields.
12304
12305 @item T
12306 Capture top-first, transfer unknown or varying.
12307 Filter selects among @samp{t} and @samp{p} using image analysis.
12308
12309 @item B
12310 Capture bottom-first, transfer unknown or varying.
12311 Filter selects among @samp{b} and @samp{p} using image analysis.
12312
12313 @item A
12314 Capture determined by field flags, transfer unknown or varying.
12315 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
12316 image analysis. If no field information is available, then this works just
12317 like @samp{U}. This is the default mode.
12318
12319 @item U
12320 Both capture and transfer unknown or varying.
12321 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
12322 @end table
12323 @end table
12324
12325 @section pixdesctest
12326
12327 Pixel format descriptor test filter, mainly useful for internal
12328 testing. The output video should be equal to the input video.
12329
12330 For example:
12331 @example
12332 format=monow, pixdesctest
12333 @end example
12334
12335 can be used to test the monowhite pixel format descriptor definition.
12336
12337 @section pixscope
12338
12339 Display sample values of color channels. Mainly useful for checking color
12340 and levels. Minimum supported resolution is 640x480.
12341
12342 The filters accept the following options:
12343
12344 @table @option
12345 @item x
12346 Set scope X position, relative offset on X axis.
12347
12348 @item y
12349 Set scope Y position, relative offset on Y axis.
12350
12351 @item w
12352 Set scope width.
12353
12354 @item h
12355 Set scope height.
12356
12357 @item o
12358 Set window opacity. This window also holds statistics about pixel area.
12359
12360 @item wx
12361 Set window X position, relative offset on X axis.
12362
12363 @item wy
12364 Set window Y position, relative offset on Y axis.
12365 @end table
12366
12367 @section pp
12368
12369 Enable the specified chain of postprocessing subfilters using libpostproc. This
12370 library should be automatically selected with a GPL build (@code{--enable-gpl}).
12371 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
12372 Each subfilter and some options have a short and a long name that can be used
12373 interchangeably, i.e. dr/dering are the same.
12374
12375 The filters accept the following options:
12376
12377 @table @option
12378 @item subfilters
12379 Set postprocessing subfilters string.
12380 @end table
12381
12382 All subfilters share common options to determine their scope:
12383
12384 @table @option
12385 @item a/autoq
12386 Honor the quality commands for this subfilter.
12387
12388 @item c/chrom
12389 Do chrominance filtering, too (default).
12390
12391 @item y/nochrom
12392 Do luminance filtering only (no chrominance).
12393
12394 @item n/noluma
12395 Do chrominance filtering only (no luminance).
12396 @end table
12397
12398 These options can be appended after the subfilter name, separated by a '|'.
12399
12400 Available subfilters are:
12401
12402 @table @option
12403 @item hb/hdeblock[|difference[|flatness]]
12404 Horizontal deblocking filter
12405 @table @option
12406 @item difference
12407 Difference factor where higher values mean more deblocking (default: @code{32}).
12408 @item flatness
12409 Flatness threshold where lower values mean more deblocking (default: @code{39}).
12410 @end table
12411
12412 @item vb/vdeblock[|difference[|flatness]]
12413 Vertical deblocking filter
12414 @table @option
12415 @item difference
12416 Difference factor where higher values mean more deblocking (default: @code{32}).
12417 @item flatness
12418 Flatness threshold where lower values mean more deblocking (default: @code{39}).
12419 @end table
12420
12421 @item ha/hadeblock[|difference[|flatness]]
12422 Accurate horizontal deblocking filter
12423 @table @option
12424 @item difference
12425 Difference factor where higher values mean more deblocking (default: @code{32}).
12426 @item flatness
12427 Flatness threshold where lower values mean more deblocking (default: @code{39}).
12428 @end table
12429
12430 @item va/vadeblock[|difference[|flatness]]
12431 Accurate vertical deblocking filter
12432 @table @option
12433 @item difference
12434 Difference factor where higher values mean more deblocking (default: @code{32}).
12435 @item flatness
12436 Flatness threshold where lower values mean more deblocking (default: @code{39}).
12437 @end table
12438 @end table
12439
12440 The horizontal and vertical deblocking filters share the difference and
12441 flatness values so you cannot set different horizontal and vertical
12442 thresholds.
12443
12444 @table @option
12445 @item h1/x1hdeblock
12446 Experimental horizontal deblocking filter
12447
12448 @item v1/x1vdeblock
12449 Experimental vertical deblocking filter
12450
12451 @item dr/dering
12452 Deringing filter
12453
12454 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
12455 @table @option
12456 @item threshold1
12457 larger -> stronger filtering
12458 @item threshold2
12459 larger -> stronger filtering
12460 @item threshold3
12461 larger -> stronger filtering
12462 @end table
12463
12464 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
12465 @table @option
12466 @item f/fullyrange
12467 Stretch luminance to @code{0-255}.
12468 @end table
12469
12470 @item lb/linblenddeint
12471 Linear blend deinterlacing filter that deinterlaces the given block by
12472 filtering all lines with a @code{(1 2 1)} filter.
12473
12474 @item li/linipoldeint
12475 Linear interpolating deinterlacing filter that deinterlaces the given block by
12476 linearly interpolating every second line.
12477
12478 @item ci/cubicipoldeint
12479 Cubic interpolating deinterlacing filter deinterlaces the given block by
12480 cubically interpolating every second line.
12481
12482 @item md/mediandeint
12483 Median deinterlacing filter that deinterlaces the given block by applying a
12484 median filter to every second line.
12485
12486 @item fd/ffmpegdeint
12487 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
12488 second line with a @code{(-1 4 2 4 -1)} filter.
12489
12490 @item l5/lowpass5
12491 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
12492 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
12493
12494 @item fq/forceQuant[|quantizer]
12495 Overrides the quantizer table from the input with the constant quantizer you
12496 specify.
12497 @table @option
12498 @item quantizer
12499 Quantizer to use
12500 @end table
12501
12502 @item de/default
12503 Default pp filter combination (@code{hb|a,vb|a,dr|a})
12504
12505 @item fa/fast
12506 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
12507
12508 @item ac
12509 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
12510 @end table
12511
12512 @subsection Examples
12513
12514 @itemize
12515 @item
12516 Apply horizontal and vertical deblocking, deringing and automatic
12517 brightness/contrast:
12518 @example
12519 pp=hb/vb/dr/al
12520 @end example
12521
12522 @item
12523 Apply default filters without brightness/contrast correction:
12524 @example
12525 pp=de/-al
12526 @end example
12527
12528 @item
12529 Apply default filters and temporal denoiser:
12530 @example
12531 pp=default/tmpnoise|1|2|3
12532 @end example
12533
12534 @item
12535 Apply deblocking on luminance only, and switch vertical deblocking on or off
12536 automatically depending on available CPU time:
12537 @example
12538 pp=hb|y/vb|a
12539 @end example
12540 @end itemize
12541
12542 @section pp7
12543 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
12544 similar to spp = 6 with 7 point DCT, where only the center sample is
12545 used after IDCT.
12546
12547 The filter accepts the following options:
12548
12549 @table @option
12550 @item qp
12551 Force a constant quantization parameter. It accepts an integer in range
12552 0 to 63. If not set, the filter will use the QP from the video stream
12553 (if available).
12554
12555 @item mode
12556 Set thresholding mode. Available modes are:
12557
12558 @table @samp
12559 @item hard
12560 Set hard thresholding.
12561 @item soft
12562 Set soft thresholding (better de-ringing effect, but likely blurrier).
12563 @item medium
12564 Set medium thresholding (good results, default).
12565 @end table
12566 @end table
12567
12568 @section premultiply
12569 Apply alpha premultiply effect to input video stream using first plane
12570 of second stream as alpha.
12571
12572 Both streams must have same dimensions and same pixel format.
12573
12574 The filter accepts the following option:
12575
12576 @table @option
12577 @item planes
12578 Set which planes will be processed, unprocessed planes will be copied.
12579 By default value 0xf, all planes will be processed.
12580
12581 @item inplace
12582 Do not require 2nd input for processing, instead use alpha plane from input stream.
12583 @end table
12584
12585 @section prewitt
12586 Apply prewitt operator to input video stream.
12587
12588 The filter accepts the following option:
12589
12590 @table @option
12591 @item planes
12592 Set which planes will be processed, unprocessed planes will be copied.
12593 By default value 0xf, all planes will be processed.
12594
12595 @item scale
12596 Set value which will be multiplied with filtered result.
12597
12598 @item delta
12599 Set value which will be added to filtered result.
12600 @end table
12601
12602 @anchor{program_opencl}
12603 @section program_opencl
12604
12605 Filter video using an OpenCL program.
12606
12607 @table @option
12608
12609 @item source
12610 OpenCL program source file.
12611
12612 @item kernel
12613 Kernel name in program.
12614
12615 @item inputs
12616 Number of inputs to the filter.  Defaults to 1.
12617
12618 @item size, s
12619 Size of output frames.  Defaults to the same as the first input.
12620
12621 @end table
12622
12623 The program source file must contain a kernel function with the given name,
12624 which will be run once for each plane of the output.  Each run on a plane
12625 gets enqueued as a separate 2D global NDRange with one work-item for each
12626 pixel to be generated.  The global ID offset for each work-item is therefore
12627 the coordinates of a pixel in the destination image.
12628
12629 The kernel function needs to take the following arguments:
12630 @itemize
12631 @item
12632 Destination image, @var{__write_only image2d_t}.
12633
12634 This image will become the output; the kernel should write all of it.
12635 @item
12636 Frame index, @var{unsigned int}.
12637
12638 This is a counter starting from zero and increasing by one for each frame.
12639 @item
12640 Source images, @var{__read_only image2d_t}.
12641
12642 These are the most recent images on each input.  The kernel may read from
12643 them to generate the output, but they can't be written to.
12644 @end itemize
12645
12646 Example programs:
12647
12648 @itemize
12649 @item
12650 Copy the input to the output (output must be the same size as the input).
12651 @verbatim
12652 __kernel void copy(__write_only image2d_t destination,
12653                    unsigned int index,
12654                    __read_only  image2d_t source)
12655 {
12656     const sampler_t sampler = CLK_NORMALIZED_COORDS_FALSE;
12657
12658     int2 location = (int2)(get_global_id(0), get_global_id(1));
12659
12660     float4 value = read_imagef(source, sampler, location);
12661
12662     write_imagef(destination, location, value);
12663 }
12664 @end verbatim
12665
12666 @item
12667 Apply a simple transformation, rotating the input by an amount increasing
12668 with the index counter.  Pixel values are linearly interpolated by the
12669 sampler, and the output need not have the same dimensions as the input.
12670 @verbatim
12671 __kernel void rotate_image(__write_only image2d_t dst,
12672                            unsigned int index,
12673                            __read_only  image2d_t src)
12674 {
12675     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
12676                                CLK_FILTER_LINEAR);
12677
12678     float angle = (float)index / 100.0f;
12679
12680     float2 dst_dim = convert_float2(get_image_dim(dst));
12681     float2 src_dim = convert_float2(get_image_dim(src));
12682
12683     float2 dst_cen = dst_dim / 2.0f;
12684     float2 src_cen = src_dim / 2.0f;
12685
12686     int2   dst_loc = (int2)(get_global_id(0), get_global_id(1));
12687
12688     float2 dst_pos = convert_float2(dst_loc) - dst_cen;
12689     float2 src_pos = {
12690         cos(angle) * dst_pos.x - sin(angle) * dst_pos.y,
12691         sin(angle) * dst_pos.x + cos(angle) * dst_pos.y
12692     };
12693     src_pos = src_pos * src_dim / dst_dim;
12694
12695     float2 src_loc = src_pos + src_cen;
12696
12697     if (src_loc.x < 0.0f      || src_loc.y < 0.0f ||
12698         src_loc.x > src_dim.x || src_loc.y > src_dim.y)
12699         write_imagef(dst, dst_loc, 0.5f);
12700     else
12701         write_imagef(dst, dst_loc, read_imagef(src, sampler, src_loc));
12702 }
12703 @end verbatim
12704
12705 @item
12706 Blend two inputs together, with the amount of each input used varying
12707 with the index counter.
12708 @verbatim
12709 __kernel void blend_images(__write_only image2d_t dst,
12710                            unsigned int index,
12711                            __read_only  image2d_t src1,
12712                            __read_only  image2d_t src2)
12713 {
12714     const sampler_t sampler = (CLK_NORMALIZED_COORDS_FALSE |
12715                                CLK_FILTER_LINEAR);
12716
12717     float blend = (cos((float)index / 50.0f) + 1.0f) / 2.0f;
12718
12719     int2  dst_loc = (int2)(get_global_id(0), get_global_id(1));
12720     int2 src1_loc = dst_loc * get_image_dim(src1) / get_image_dim(dst);
12721     int2 src2_loc = dst_loc * get_image_dim(src2) / get_image_dim(dst);
12722
12723     float4 val1 = read_imagef(src1, sampler, src1_loc);
12724     float4 val2 = read_imagef(src2, sampler, src2_loc);
12725
12726     write_imagef(dst, dst_loc, val1 * blend + val2 * (1.0f - blend));
12727 }
12728 @end verbatim
12729
12730 @end itemize
12731
12732 @section pseudocolor
12733
12734 Alter frame colors in video with pseudocolors.
12735
12736 This filter accept the following options:
12737
12738 @table @option
12739 @item c0
12740 set pixel first component expression
12741
12742 @item c1
12743 set pixel second component expression
12744
12745 @item c2
12746 set pixel third component expression
12747
12748 @item c3
12749 set pixel fourth component expression, corresponds to the alpha component
12750
12751 @item i
12752 set component to use as base for altering colors
12753 @end table
12754
12755 Each of them specifies the expression to use for computing the lookup table for
12756 the corresponding pixel component values.
12757
12758 The expressions can contain the following constants and functions:
12759
12760 @table @option
12761 @item w
12762 @item h
12763 The input width and height.
12764
12765 @item val
12766 The input value for the pixel component.
12767
12768 @item ymin, umin, vmin, amin
12769 The minimum allowed component value.
12770
12771 @item ymax, umax, vmax, amax
12772 The maximum allowed component value.
12773 @end table
12774
12775 All expressions default to "val".
12776
12777 @subsection Examples
12778
12779 @itemize
12780 @item
12781 Change too high luma values to gradient:
12782 @example
12783 pseudocolor="'if(between(val,ymax,amax),lerp(ymin,ymax,(val-ymax)/(amax-ymax)),-1):if(between(val,ymax,amax),lerp(umax,umin,(val-ymax)/(amax-ymax)),-1):if(between(val,ymax,amax),lerp(vmin,vmax,(val-ymax)/(amax-ymax)),-1):-1'"
12784 @end example
12785 @end itemize
12786
12787 @section psnr
12788
12789 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
12790 Ratio) between two input videos.
12791
12792 This filter takes in input two input videos, the first input is
12793 considered the "main" source and is passed unchanged to the
12794 output. The second input is used as a "reference" video for computing
12795 the PSNR.
12796
12797 Both video inputs must have the same resolution and pixel format for
12798 this filter to work correctly. Also it assumes that both inputs
12799 have the same number of frames, which are compared one by one.
12800
12801 The obtained average PSNR is printed through the logging system.
12802
12803 The filter stores the accumulated MSE (mean squared error) of each
12804 frame, and at the end of the processing it is averaged across all frames
12805 equally, and the following formula is applied to obtain the PSNR:
12806
12807 @example
12808 PSNR = 10*log10(MAX^2/MSE)
12809 @end example
12810
12811 Where MAX is the average of the maximum values of each component of the
12812 image.
12813
12814 The description of the accepted parameters follows.
12815
12816 @table @option
12817 @item stats_file, f
12818 If specified the filter will use the named file to save the PSNR of
12819 each individual frame. When filename equals "-" the data is sent to
12820 standard output.
12821
12822 @item stats_version
12823 Specifies which version of the stats file format to use. Details of
12824 each format are written below.
12825 Default value is 1.
12826
12827 @item stats_add_max
12828 Determines whether the max value is output to the stats log.
12829 Default value is 0.
12830 Requires stats_version >= 2. If this is set and stats_version < 2,
12831 the filter will return an error.
12832 @end table
12833
12834 This filter also supports the @ref{framesync} options.
12835
12836 The file printed if @var{stats_file} is selected, contains a sequence of
12837 key/value pairs of the form @var{key}:@var{value} for each compared
12838 couple of frames.
12839
12840 If a @var{stats_version} greater than 1 is specified, a header line precedes
12841 the list of per-frame-pair stats, with key value pairs following the frame
12842 format with the following parameters:
12843
12844 @table @option
12845 @item psnr_log_version
12846 The version of the log file format. Will match @var{stats_version}.
12847
12848 @item fields
12849 A comma separated list of the per-frame-pair parameters included in
12850 the log.
12851 @end table
12852
12853 A description of each shown per-frame-pair parameter follows:
12854
12855 @table @option
12856 @item n
12857 sequential number of the input frame, starting from 1
12858
12859 @item mse_avg
12860 Mean Square Error pixel-by-pixel average difference of the compared
12861 frames, averaged over all the image components.
12862
12863 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_b, mse_a
12864 Mean Square Error pixel-by-pixel average difference of the compared
12865 frames for the component specified by the suffix.
12866
12867 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
12868 Peak Signal to Noise ratio of the compared frames for the component
12869 specified by the suffix.
12870
12871 @item max_avg, max_y, max_u, max_v
12872 Maximum allowed value for each channel, and average over all
12873 channels.
12874 @end table
12875
12876 For example:
12877 @example
12878 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
12879 [main][ref] psnr="stats_file=stats.log" [out]
12880 @end example
12881
12882 On this example the input file being processed is compared with the
12883 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
12884 is stored in @file{stats.log}.
12885
12886 @anchor{pullup}
12887 @section pullup
12888
12889 Pulldown reversal (inverse telecine) filter, capable of handling mixed
12890 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
12891 content.
12892
12893 The pullup filter is designed to take advantage of future context in making
12894 its decisions. This filter is stateless in the sense that it does not lock
12895 onto a pattern to follow, but it instead looks forward to the following
12896 fields in order to identify matches and rebuild progressive frames.
12897
12898 To produce content with an even framerate, insert the fps filter after
12899 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
12900 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
12901
12902 The filter accepts the following options:
12903
12904 @table @option
12905 @item jl
12906 @item jr
12907 @item jt
12908 @item jb
12909 These options set the amount of "junk" to ignore at the left, right, top, and
12910 bottom of the image, respectively. Left and right are in units of 8 pixels,
12911 while top and bottom are in units of 2 lines.
12912 The default is 8 pixels on each side.
12913
12914 @item sb
12915 Set the strict breaks. Setting this option to 1 will reduce the chances of
12916 filter generating an occasional mismatched frame, but it may also cause an
12917 excessive number of frames to be dropped during high motion sequences.
12918 Conversely, setting it to -1 will make filter match fields more easily.
12919 This may help processing of video where there is slight blurring between
12920 the fields, but may also cause there to be interlaced frames in the output.
12921 Default value is @code{0}.
12922
12923 @item mp
12924 Set the metric plane to use. It accepts the following values:
12925 @table @samp
12926 @item l
12927 Use luma plane.
12928
12929 @item u
12930 Use chroma blue plane.
12931
12932 @item v
12933 Use chroma red plane.
12934 @end table
12935
12936 This option may be set to use chroma plane instead of the default luma plane
12937 for doing filter's computations. This may improve accuracy on very clean
12938 source material, but more likely will decrease accuracy, especially if there
12939 is chroma noise (rainbow effect) or any grayscale video.
12940 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
12941 load and make pullup usable in realtime on slow machines.
12942 @end table
12943
12944 For best results (without duplicated frames in the output file) it is
12945 necessary to change the output frame rate. For example, to inverse
12946 telecine NTSC input:
12947 @example
12948 ffmpeg -i input -vf pullup -r 24000/1001 ...
12949 @end example
12950
12951 @section qp
12952
12953 Change video quantization parameters (QP).
12954
12955 The filter accepts the following option:
12956
12957 @table @option
12958 @item qp
12959 Set expression for quantization parameter.
12960 @end table
12961
12962 The expression is evaluated through the eval API and can contain, among others,
12963 the following constants:
12964
12965 @table @var
12966 @item known
12967 1 if index is not 129, 0 otherwise.
12968
12969 @item qp
12970 Sequential index starting from -129 to 128.
12971 @end table
12972
12973 @subsection Examples
12974
12975 @itemize
12976 @item
12977 Some equation like:
12978 @example
12979 qp=2+2*sin(PI*qp)
12980 @end example
12981 @end itemize
12982
12983 @section random
12984
12985 Flush video frames from internal cache of frames into a random order.
12986 No frame is discarded.
12987 Inspired by @ref{frei0r} nervous filter.
12988
12989 @table @option
12990 @item frames
12991 Set size in number of frames of internal cache, in range from @code{2} to
12992 @code{512}. Default is @code{30}.
12993
12994 @item seed
12995 Set seed for random number generator, must be an integer included between
12996 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
12997 less than @code{0}, the filter will try to use a good random seed on a
12998 best effort basis.
12999 @end table
13000
13001 @section readeia608
13002
13003 Read closed captioning (EIA-608) information from the top lines of a video frame.
13004
13005 This filter adds frame metadata for @code{lavfi.readeia608.X.cc} and
13006 @code{lavfi.readeia608.X.line}, where @code{X} is the number of the identified line
13007 with EIA-608 data (starting from 0). A description of each metadata value follows:
13008
13009 @table @option
13010 @item lavfi.readeia608.X.cc
13011 The two bytes stored as EIA-608 data (printed in hexadecimal).
13012
13013 @item lavfi.readeia608.X.line
13014 The number of the line on which the EIA-608 data was identified and read.
13015 @end table
13016
13017 This filter accepts the following options:
13018
13019 @table @option
13020 @item scan_min
13021 Set the line to start scanning for EIA-608 data. Default is @code{0}.
13022
13023 @item scan_max
13024 Set the line to end scanning for EIA-608 data. Default is @code{29}.
13025
13026 @item mac
13027 Set minimal acceptable amplitude change for sync codes detection.
13028 Default is @code{0.2}. Allowed range is @code{[0.001 - 1]}.
13029
13030 @item spw
13031 Set the ratio of width reserved for sync code detection.
13032 Default is @code{0.27}. Allowed range is @code{[0.01 - 0.7]}.
13033
13034 @item mhd
13035 Set the max peaks height difference for sync code detection.
13036 Default is @code{0.1}. Allowed range is @code{[0.0 - 0.5]}.
13037
13038 @item mpd
13039 Set max peaks period difference for sync code detection.
13040 Default is @code{0.1}. Allowed range is @code{[0.0 - 0.5]}.
13041
13042 @item msd
13043 Set the first two max start code bits differences.
13044 Default is @code{0.02}. Allowed range is @code{[0.0 - 0.5]}.
13045
13046 @item bhd
13047 Set the minimum ratio of bits height compared to 3rd start code bit.
13048 Default is @code{0.75}. Allowed range is @code{[0.01 - 1]}.
13049
13050 @item th_w
13051 Set the white color threshold. Default is @code{0.35}. Allowed range is @code{[0.1 - 1]}.
13052
13053 @item th_b
13054 Set the black color threshold. Default is @code{0.15}. Allowed range is @code{[0.0 - 0.5]}.
13055
13056 @item chp
13057 Enable checking the parity bit. In the event of a parity error, the filter will output
13058 @code{0x00} for that character. Default is false.
13059 @end table
13060
13061 @subsection Examples
13062
13063 @itemize
13064 @item
13065 Output a csv with presentation time and the first two lines of identified EIA-608 captioning data.
13066 @example
13067 ffprobe -f lavfi -i movie=captioned_video.mov,readeia608 -show_entries frame=pkt_pts_time:frame_tags=lavfi.readeia608.0.cc,lavfi.readeia608.1.cc -of csv
13068 @end example
13069 @end itemize
13070
13071 @section readvitc
13072
13073 Read vertical interval timecode (VITC) information from the top lines of a
13074 video frame.
13075
13076 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
13077 timecode value, if a valid timecode has been detected. Further metadata key
13078 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
13079 timecode data has been found or not.
13080
13081 This filter accepts the following options:
13082
13083 @table @option
13084 @item scan_max
13085 Set the maximum number of lines to scan for VITC data. If the value is set to
13086 @code{-1} the full video frame is scanned. Default is @code{45}.
13087
13088 @item thr_b
13089 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
13090 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
13091
13092 @item thr_w
13093 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
13094 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
13095 @end table
13096
13097 @subsection Examples
13098
13099 @itemize
13100 @item
13101 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
13102 draw @code{--:--:--:--} as a placeholder:
13103 @example
13104 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
13105 @end example
13106 @end itemize
13107
13108 @section remap
13109
13110 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
13111
13112 Destination pixel at position (X, Y) will be picked from source (x, y) position
13113 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
13114 value for pixel will be used for destination pixel.
13115
13116 Xmap and Ymap input video streams must be of same dimensions. Output video stream
13117 will have Xmap/Ymap video stream dimensions.
13118 Xmap and Ymap input video streams are 16bit depth, single channel.
13119
13120 @section removegrain
13121
13122 The removegrain filter is a spatial denoiser for progressive video.
13123
13124 @table @option
13125 @item m0
13126 Set mode for the first plane.
13127
13128 @item m1
13129 Set mode for the second plane.
13130
13131 @item m2
13132 Set mode for the third plane.
13133
13134 @item m3
13135 Set mode for the fourth plane.
13136 @end table
13137
13138 Range of mode is from 0 to 24. Description of each mode follows:
13139
13140 @table @var
13141 @item 0
13142 Leave input plane unchanged. Default.
13143
13144 @item 1
13145 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
13146
13147 @item 2
13148 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
13149
13150 @item 3
13151 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
13152
13153 @item 4
13154 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
13155 This is equivalent to a median filter.
13156
13157 @item 5
13158 Line-sensitive clipping giving the minimal change.
13159
13160 @item 6
13161 Line-sensitive clipping, intermediate.
13162
13163 @item 7
13164 Line-sensitive clipping, intermediate.
13165
13166 @item 8
13167 Line-sensitive clipping, intermediate.
13168
13169 @item 9
13170 Line-sensitive clipping on a line where the neighbours pixels are the closest.
13171
13172 @item 10
13173 Replaces the target pixel with the closest neighbour.
13174
13175 @item 11
13176 [1 2 1] horizontal and vertical kernel blur.
13177
13178 @item 12
13179 Same as mode 11.
13180
13181 @item 13
13182 Bob mode, interpolates top field from the line where the neighbours
13183 pixels are the closest.
13184
13185 @item 14
13186 Bob mode, interpolates bottom field from the line where the neighbours
13187 pixels are the closest.
13188
13189 @item 15
13190 Bob mode, interpolates top field. Same as 13 but with a more complicated
13191 interpolation formula.
13192
13193 @item 16
13194 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
13195 interpolation formula.
13196
13197 @item 17
13198 Clips the pixel with the minimum and maximum of respectively the maximum and
13199 minimum of each pair of opposite neighbour pixels.
13200
13201 @item 18
13202 Line-sensitive clipping using opposite neighbours whose greatest distance from
13203 the current pixel is minimal.
13204
13205 @item 19
13206 Replaces the pixel with the average of its 8 neighbours.
13207
13208 @item 20
13209 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
13210
13211 @item 21
13212 Clips pixels using the averages of opposite neighbour.
13213
13214 @item 22
13215 Same as mode 21 but simpler and faster.
13216
13217 @item 23
13218 Small edge and halo removal, but reputed useless.
13219
13220 @item 24
13221 Similar as 23.
13222 @end table
13223
13224 @section removelogo
13225
13226 Suppress a TV station logo, using an image file to determine which
13227 pixels comprise the logo. It works by filling in the pixels that
13228 comprise the logo with neighboring pixels.
13229
13230 The filter accepts the following options:
13231
13232 @table @option
13233 @item filename, f
13234 Set the filter bitmap file, which can be any image format supported by
13235 libavformat. The width and height of the image file must match those of the
13236 video stream being processed.
13237 @end table
13238
13239 Pixels in the provided bitmap image with a value of zero are not
13240 considered part of the logo, non-zero pixels are considered part of
13241 the logo. If you use white (255) for the logo and black (0) for the
13242 rest, you will be safe. For making the filter bitmap, it is
13243 recommended to take a screen capture of a black frame with the logo
13244 visible, and then using a threshold filter followed by the erode
13245 filter once or twice.
13246
13247 If needed, little splotches can be fixed manually. Remember that if
13248 logo pixels are not covered, the filter quality will be much
13249 reduced. Marking too many pixels as part of the logo does not hurt as
13250 much, but it will increase the amount of blurring needed to cover over
13251 the image and will destroy more information than necessary, and extra
13252 pixels will slow things down on a large logo.
13253
13254 @section repeatfields
13255
13256 This filter uses the repeat_field flag from the Video ES headers and hard repeats
13257 fields based on its value.
13258
13259 @section reverse
13260
13261 Reverse a video clip.
13262
13263 Warning: This filter requires memory to buffer the entire clip, so trimming
13264 is suggested.
13265
13266 @subsection Examples
13267
13268 @itemize
13269 @item
13270 Take the first 5 seconds of a clip, and reverse it.
13271 @example
13272 trim=end=5,reverse
13273 @end example
13274 @end itemize
13275
13276 @section roberts
13277 Apply roberts cross operator to input video stream.
13278
13279 The filter accepts the following option:
13280
13281 @table @option
13282 @item planes
13283 Set which planes will be processed, unprocessed planes will be copied.
13284 By default value 0xf, all planes will be processed.
13285
13286 @item scale
13287 Set value which will be multiplied with filtered result.
13288
13289 @item delta
13290 Set value which will be added to filtered result.
13291 @end table
13292
13293 @section rotate
13294
13295 Rotate video by an arbitrary angle expressed in radians.
13296
13297 The filter accepts the following options:
13298
13299 A description of the optional parameters follows.
13300 @table @option
13301 @item angle, a
13302 Set an expression for the angle by which to rotate the input video
13303 clockwise, expressed as a number of radians. A negative value will
13304 result in a counter-clockwise rotation. By default it is set to "0".
13305
13306 This expression is evaluated for each frame.
13307
13308 @item out_w, ow
13309 Set the output width expression, default value is "iw".
13310 This expression is evaluated just once during configuration.
13311
13312 @item out_h, oh
13313 Set the output height expression, default value is "ih".
13314 This expression is evaluated just once during configuration.
13315
13316 @item bilinear
13317 Enable bilinear interpolation if set to 1, a value of 0 disables
13318 it. Default value is 1.
13319
13320 @item fillcolor, c
13321 Set the color used to fill the output area not covered by the rotated
13322 image. For the general syntax of this option, check the
13323 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
13324 If the special value "none" is selected then no
13325 background is printed (useful for example if the background is never shown).
13326
13327 Default value is "black".
13328 @end table
13329
13330 The expressions for the angle and the output size can contain the
13331 following constants and functions:
13332
13333 @table @option
13334 @item n
13335 sequential number of the input frame, starting from 0. It is always NAN
13336 before the first frame is filtered.
13337
13338 @item t
13339 time in seconds of the input frame, it is set to 0 when the filter is
13340 configured. It is always NAN before the first frame is filtered.
13341
13342 @item hsub
13343 @item vsub
13344 horizontal and vertical chroma subsample values. For example for the
13345 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
13346
13347 @item in_w, iw
13348 @item in_h, ih
13349 the input video width and height
13350
13351 @item out_w, ow
13352 @item out_h, oh
13353 the output width and height, that is the size of the padded area as
13354 specified by the @var{width} and @var{height} expressions
13355
13356 @item rotw(a)
13357 @item roth(a)
13358 the minimal width/height required for completely containing the input
13359 video rotated by @var{a} radians.
13360
13361 These are only available when computing the @option{out_w} and
13362 @option{out_h} expressions.
13363 @end table
13364
13365 @subsection Examples
13366
13367 @itemize
13368 @item
13369 Rotate the input by PI/6 radians clockwise:
13370 @example
13371 rotate=PI/6
13372 @end example
13373
13374 @item
13375 Rotate the input by PI/6 radians counter-clockwise:
13376 @example
13377 rotate=-PI/6
13378 @end example
13379
13380 @item
13381 Rotate the input by 45 degrees clockwise:
13382 @example
13383 rotate=45*PI/180
13384 @end example
13385
13386 @item
13387 Apply a constant rotation with period T, starting from an angle of PI/3:
13388 @example
13389 rotate=PI/3+2*PI*t/T
13390 @end example
13391
13392 @item
13393 Make the input video rotation oscillating with a period of T
13394 seconds and an amplitude of A radians:
13395 @example
13396 rotate=A*sin(2*PI/T*t)
13397 @end example
13398
13399 @item
13400 Rotate the video, output size is chosen so that the whole rotating
13401 input video is always completely contained in the output:
13402 @example
13403 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
13404 @end example
13405
13406 @item
13407 Rotate the video, reduce the output size so that no background is ever
13408 shown:
13409 @example
13410 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
13411 @end example
13412 @end itemize
13413
13414 @subsection Commands
13415
13416 The filter supports the following commands:
13417
13418 @table @option
13419 @item a, angle
13420 Set the angle expression.
13421 The command accepts the same syntax of the corresponding option.
13422
13423 If the specified expression is not valid, it is kept at its current
13424 value.
13425 @end table
13426
13427 @section sab
13428
13429 Apply Shape Adaptive Blur.
13430
13431 The filter accepts the following options:
13432
13433 @table @option
13434 @item luma_radius, lr
13435 Set luma blur filter strength, must be a value in range 0.1-4.0, default
13436 value is 1.0. A greater value will result in a more blurred image, and
13437 in slower processing.
13438
13439 @item luma_pre_filter_radius, lpfr
13440 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
13441 value is 1.0.
13442
13443 @item luma_strength, ls
13444 Set luma maximum difference between pixels to still be considered, must
13445 be a value in the 0.1-100.0 range, default value is 1.0.
13446
13447 @item chroma_radius, cr
13448 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
13449 greater value will result in a more blurred image, and in slower
13450 processing.
13451
13452 @item chroma_pre_filter_radius, cpfr
13453 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
13454
13455 @item chroma_strength, cs
13456 Set chroma maximum difference between pixels to still be considered,
13457 must be a value in the -0.9-100.0 range.
13458 @end table
13459
13460 Each chroma option value, if not explicitly specified, is set to the
13461 corresponding luma option value.
13462
13463 @anchor{scale}
13464 @section scale
13465
13466 Scale (resize) the input video, using the libswscale library.
13467
13468 The scale filter forces the output display aspect ratio to be the same
13469 of the input, by changing the output sample aspect ratio.
13470
13471 If the input image format is different from the format requested by
13472 the next filter, the scale filter will convert the input to the
13473 requested format.
13474
13475 @subsection Options
13476 The filter accepts the following options, or any of the options
13477 supported by the libswscale scaler.
13478
13479 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
13480 the complete list of scaler options.
13481
13482 @table @option
13483 @item width, w
13484 @item height, h
13485 Set the output video dimension expression. Default value is the input
13486 dimension.
13487
13488 If the @var{width} or @var{w} value is 0, the input width is used for
13489 the output. If the @var{height} or @var{h} value is 0, the input height
13490 is used for the output.
13491
13492 If one and only one of the values is -n with n >= 1, the scale filter
13493 will use a value that maintains the aspect ratio of the input image,
13494 calculated from the other specified dimension. After that it will,
13495 however, make sure that the calculated dimension is divisible by n and
13496 adjust the value if necessary.
13497
13498 If both values are -n with n >= 1, the behavior will be identical to
13499 both values being set to 0 as previously detailed.
13500
13501 See below for the list of accepted constants for use in the dimension
13502 expression.
13503
13504 @item eval
13505 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
13506
13507 @table @samp
13508 @item init
13509 Only evaluate expressions once during the filter initialization or when a command is processed.
13510
13511 @item frame
13512 Evaluate expressions for each incoming frame.
13513
13514 @end table
13515
13516 Default value is @samp{init}.
13517
13518
13519 @item interl
13520 Set the interlacing mode. It accepts the following values:
13521
13522 @table @samp
13523 @item 1
13524 Force interlaced aware scaling.
13525
13526 @item 0
13527 Do not apply interlaced scaling.
13528
13529 @item -1
13530 Select interlaced aware scaling depending on whether the source frames
13531 are flagged as interlaced or not.
13532 @end table
13533
13534 Default value is @samp{0}.
13535
13536 @item flags
13537 Set libswscale scaling flags. See
13538 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
13539 complete list of values. If not explicitly specified the filter applies
13540 the default flags.
13541
13542
13543 @item param0, param1
13544 Set libswscale input parameters for scaling algorithms that need them. See
13545 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
13546 complete documentation. If not explicitly specified the filter applies
13547 empty parameters.
13548
13549
13550
13551 @item size, s
13552 Set the video size. For the syntax of this option, check the
13553 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13554
13555 @item in_color_matrix
13556 @item out_color_matrix
13557 Set in/output YCbCr color space type.
13558
13559 This allows the autodetected value to be overridden as well as allows forcing
13560 a specific value used for the output and encoder.
13561
13562 If not specified, the color space type depends on the pixel format.
13563
13564 Possible values:
13565
13566 @table @samp
13567 @item auto
13568 Choose automatically.
13569
13570 @item bt709
13571 Format conforming to International Telecommunication Union (ITU)
13572 Recommendation BT.709.
13573
13574 @item fcc
13575 Set color space conforming to the United States Federal Communications
13576 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
13577
13578 @item bt601
13579 Set color space conforming to:
13580
13581 @itemize
13582 @item
13583 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
13584
13585 @item
13586 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
13587
13588 @item
13589 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
13590
13591 @end itemize
13592
13593 @item smpte240m
13594 Set color space conforming to SMPTE ST 240:1999.
13595 @end table
13596
13597 @item in_range
13598 @item out_range
13599 Set in/output YCbCr sample range.
13600
13601 This allows the autodetected value to be overridden as well as allows forcing
13602 a specific value used for the output and encoder. If not specified, the
13603 range depends on the pixel format. Possible values:
13604
13605 @table @samp
13606 @item auto/unknown
13607 Choose automatically.
13608
13609 @item jpeg/full/pc
13610 Set full range (0-255 in case of 8-bit luma).
13611
13612 @item mpeg/limited/tv
13613 Set "MPEG" range (16-235 in case of 8-bit luma).
13614 @end table
13615
13616 @item force_original_aspect_ratio
13617 Enable decreasing or increasing output video width or height if necessary to
13618 keep the original aspect ratio. Possible values:
13619
13620 @table @samp
13621 @item disable
13622 Scale the video as specified and disable this feature.
13623
13624 @item decrease
13625 The output video dimensions will automatically be decreased if needed.
13626
13627 @item increase
13628 The output video dimensions will automatically be increased if needed.
13629
13630 @end table
13631
13632 One useful instance of this option is that when you know a specific device's
13633 maximum allowed resolution, you can use this to limit the output video to
13634 that, while retaining the aspect ratio. For example, device A allows
13635 1280x720 playback, and your video is 1920x800. Using this option (set it to
13636 decrease) and specifying 1280x720 to the command line makes the output
13637 1280x533.
13638
13639 Please note that this is a different thing than specifying -1 for @option{w}
13640 or @option{h}, you still need to specify the output resolution for this option
13641 to work.
13642
13643 @end table
13644
13645 The values of the @option{w} and @option{h} options are expressions
13646 containing the following constants:
13647
13648 @table @var
13649 @item in_w
13650 @item in_h
13651 The input width and height
13652
13653 @item iw
13654 @item ih
13655 These are the same as @var{in_w} and @var{in_h}.
13656
13657 @item out_w
13658 @item out_h
13659 The output (scaled) width and height
13660
13661 @item ow
13662 @item oh
13663 These are the same as @var{out_w} and @var{out_h}
13664
13665 @item a
13666 The same as @var{iw} / @var{ih}
13667
13668 @item sar
13669 input sample aspect ratio
13670
13671 @item dar
13672 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
13673
13674 @item hsub
13675 @item vsub
13676 horizontal and vertical input chroma subsample values. For example for the
13677 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
13678
13679 @item ohsub
13680 @item ovsub
13681 horizontal and vertical output chroma subsample values. For example for the
13682 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
13683 @end table
13684
13685 @subsection Examples
13686
13687 @itemize
13688 @item
13689 Scale the input video to a size of 200x100
13690 @example
13691 scale=w=200:h=100
13692 @end example
13693
13694 This is equivalent to:
13695 @example
13696 scale=200:100
13697 @end example
13698
13699 or:
13700 @example
13701 scale=200x100
13702 @end example
13703
13704 @item
13705 Specify a size abbreviation for the output size:
13706 @example
13707 scale=qcif
13708 @end example
13709
13710 which can also be written as:
13711 @example
13712 scale=size=qcif
13713 @end example
13714
13715 @item
13716 Scale the input to 2x:
13717 @example
13718 scale=w=2*iw:h=2*ih
13719 @end example
13720
13721 @item
13722 The above is the same as:
13723 @example
13724 scale=2*in_w:2*in_h
13725 @end example
13726
13727 @item
13728 Scale the input to 2x with forced interlaced scaling:
13729 @example
13730 scale=2*iw:2*ih:interl=1
13731 @end example
13732
13733 @item
13734 Scale the input to half size:
13735 @example
13736 scale=w=iw/2:h=ih/2
13737 @end example
13738
13739 @item
13740 Increase the width, and set the height to the same size:
13741 @example
13742 scale=3/2*iw:ow
13743 @end example
13744
13745 @item
13746 Seek Greek harmony:
13747 @example
13748 scale=iw:1/PHI*iw
13749 scale=ih*PHI:ih
13750 @end example
13751
13752 @item
13753 Increase the height, and set the width to 3/2 of the height:
13754 @example
13755 scale=w=3/2*oh:h=3/5*ih
13756 @end example
13757
13758 @item
13759 Increase the size, making the size a multiple of the chroma
13760 subsample values:
13761 @example
13762 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
13763 @end example
13764
13765 @item
13766 Increase the width to a maximum of 500 pixels,
13767 keeping the same aspect ratio as the input:
13768 @example
13769 scale=w='min(500\, iw*3/2):h=-1'
13770 @end example
13771
13772 @item
13773 Make pixels square by combining scale and setsar:
13774 @example
13775 scale='trunc(ih*dar):ih',setsar=1/1
13776 @end example
13777
13778 @item
13779 Make pixels square by combining scale and setsar,
13780 making sure the resulting resolution is even (required by some codecs):
13781 @example
13782 scale='trunc(ih*dar/2)*2:trunc(ih/2)*2',setsar=1/1
13783 @end example
13784 @end itemize
13785
13786 @subsection Commands
13787
13788 This filter supports the following commands:
13789 @table @option
13790 @item width, w
13791 @item height, h
13792 Set the output video dimension expression.
13793 The command accepts the same syntax of the corresponding option.
13794
13795 If the specified expression is not valid, it is kept at its current
13796 value.
13797 @end table
13798
13799 @section scale_npp
13800
13801 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
13802 format conversion on CUDA video frames. Setting the output width and height
13803 works in the same way as for the @var{scale} filter.
13804
13805 The following additional options are accepted:
13806 @table @option
13807 @item format
13808 The pixel format of the output CUDA frames. If set to the string "same" (the
13809 default), the input format will be kept. Note that automatic format negotiation
13810 and conversion is not yet supported for hardware frames
13811
13812 @item interp_algo
13813 The interpolation algorithm used for resizing. One of the following:
13814 @table @option
13815 @item nn
13816 Nearest neighbour.
13817
13818 @item linear
13819 @item cubic
13820 @item cubic2p_bspline
13821 2-parameter cubic (B=1, C=0)
13822
13823 @item cubic2p_catmullrom
13824 2-parameter cubic (B=0, C=1/2)
13825
13826 @item cubic2p_b05c03
13827 2-parameter cubic (B=1/2, C=3/10)
13828
13829 @item super
13830 Supersampling
13831
13832 @item lanczos
13833 @end table
13834
13835 @end table
13836
13837 @section scale2ref
13838
13839 Scale (resize) the input video, based on a reference video.
13840
13841 See the scale filter for available options, scale2ref supports the same but
13842 uses the reference video instead of the main input as basis. scale2ref also
13843 supports the following additional constants for the @option{w} and
13844 @option{h} options:
13845
13846 @table @var
13847 @item main_w
13848 @item main_h
13849 The main input video's width and height
13850
13851 @item main_a
13852 The same as @var{main_w} / @var{main_h}
13853
13854 @item main_sar
13855 The main input video's sample aspect ratio
13856
13857 @item main_dar, mdar
13858 The main input video's display aspect ratio. Calculated from
13859 @code{(main_w / main_h) * main_sar}.
13860
13861 @item main_hsub
13862 @item main_vsub
13863 The main input video's horizontal and vertical chroma subsample values.
13864 For example for the pixel format "yuv422p" @var{hsub} is 2 and @var{vsub}
13865 is 1.
13866 @end table
13867
13868 @subsection Examples
13869
13870 @itemize
13871 @item
13872 Scale a subtitle stream (b) to match the main video (a) in size before overlaying
13873 @example
13874 'scale2ref[b][a];[a][b]overlay'
13875 @end example
13876 @end itemize
13877
13878 @anchor{selectivecolor}
13879 @section selectivecolor
13880
13881 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
13882 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
13883 by the "purity" of the color (that is, how saturated it already is).
13884
13885 This filter is similar to the Adobe Photoshop Selective Color tool.
13886
13887 The filter accepts the following options:
13888
13889 @table @option
13890 @item correction_method
13891 Select color correction method.
13892
13893 Available values are:
13894 @table @samp
13895 @item absolute
13896 Specified adjustments are applied "as-is" (added/subtracted to original pixel
13897 component value).
13898 @item relative
13899 Specified adjustments are relative to the original component value.
13900 @end table
13901 Default is @code{absolute}.
13902 @item reds
13903 Adjustments for red pixels (pixels where the red component is the maximum)
13904 @item yellows
13905 Adjustments for yellow pixels (pixels where the blue component is the minimum)
13906 @item greens
13907 Adjustments for green pixels (pixels where the green component is the maximum)
13908 @item cyans
13909 Adjustments for cyan pixels (pixels where the red component is the minimum)
13910 @item blues
13911 Adjustments for blue pixels (pixels where the blue component is the maximum)
13912 @item magentas
13913 Adjustments for magenta pixels (pixels where the green component is the minimum)
13914 @item whites
13915 Adjustments for white pixels (pixels where all components are greater than 128)
13916 @item neutrals
13917 Adjustments for all pixels except pure black and pure white
13918 @item blacks
13919 Adjustments for black pixels (pixels where all components are lesser than 128)
13920 @item psfile
13921 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
13922 @end table
13923
13924 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
13925 4 space separated floating point adjustment values in the [-1,1] range,
13926 respectively to adjust the amount of cyan, magenta, yellow and black for the
13927 pixels of its range.
13928
13929 @subsection Examples
13930
13931 @itemize
13932 @item
13933 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
13934 increase magenta by 27% in blue areas:
13935 @example
13936 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
13937 @end example
13938
13939 @item
13940 Use a Photoshop selective color preset:
13941 @example
13942 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
13943 @end example
13944 @end itemize
13945
13946 @anchor{separatefields}
13947 @section separatefields
13948
13949 The @code{separatefields} takes a frame-based video input and splits
13950 each frame into its components fields, producing a new half height clip
13951 with twice the frame rate and twice the frame count.
13952
13953 This filter use field-dominance information in frame to decide which
13954 of each pair of fields to place first in the output.
13955 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
13956
13957 @section setdar, setsar
13958
13959 The @code{setdar} filter sets the Display Aspect Ratio for the filter
13960 output video.
13961
13962 This is done by changing the specified Sample (aka Pixel) Aspect
13963 Ratio, according to the following equation:
13964 @example
13965 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
13966 @end example
13967
13968 Keep in mind that the @code{setdar} filter does not modify the pixel
13969 dimensions of the video frame. Also, the display aspect ratio set by
13970 this filter may be changed by later filters in the filterchain,
13971 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
13972 applied.
13973
13974 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
13975 the filter output video.
13976
13977 Note that as a consequence of the application of this filter, the
13978 output display aspect ratio will change according to the equation
13979 above.
13980
13981 Keep in mind that the sample aspect ratio set by the @code{setsar}
13982 filter may be changed by later filters in the filterchain, e.g. if
13983 another "setsar" or a "setdar" filter is applied.
13984
13985 It accepts the following parameters:
13986
13987 @table @option
13988 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
13989 Set the aspect ratio used by the filter.
13990
13991 The parameter can be a floating point number string, an expression, or
13992 a string of the form @var{num}:@var{den}, where @var{num} and
13993 @var{den} are the numerator and denominator of the aspect ratio. If
13994 the parameter is not specified, it is assumed the value "0".
13995 In case the form "@var{num}:@var{den}" is used, the @code{:} character
13996 should be escaped.
13997
13998 @item max
13999 Set the maximum integer value to use for expressing numerator and
14000 denominator when reducing the expressed aspect ratio to a rational.
14001 Default value is @code{100}.
14002
14003 @end table
14004
14005 The parameter @var{sar} is an expression containing
14006 the following constants:
14007
14008 @table @option
14009 @item E, PI, PHI
14010 These are approximated values for the mathematical constants e
14011 (Euler's number), pi (Greek pi), and phi (the golden ratio).
14012
14013 @item w, h
14014 The input width and height.
14015
14016 @item a
14017 These are the same as @var{w} / @var{h}.
14018
14019 @item sar
14020 The input sample aspect ratio.
14021
14022 @item dar
14023 The input display aspect ratio. It is the same as
14024 (@var{w} / @var{h}) * @var{sar}.
14025
14026 @item hsub, vsub
14027 Horizontal and vertical chroma subsample values. For example, for the
14028 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
14029 @end table
14030
14031 @subsection Examples
14032
14033 @itemize
14034
14035 @item
14036 To change the display aspect ratio to 16:9, specify one of the following:
14037 @example
14038 setdar=dar=1.77777
14039 setdar=dar=16/9
14040 @end example
14041
14042 @item
14043 To change the sample aspect ratio to 10:11, specify:
14044 @example
14045 setsar=sar=10/11
14046 @end example
14047
14048 @item
14049 To set a display aspect ratio of 16:9, and specify a maximum integer value of
14050 1000 in the aspect ratio reduction, use the command:
14051 @example
14052 setdar=ratio=16/9:max=1000
14053 @end example
14054
14055 @end itemize
14056
14057 @anchor{setfield}
14058 @section setfield
14059
14060 Force field for the output video frame.
14061
14062 The @code{setfield} filter marks the interlace type field for the
14063 output frames. It does not change the input frame, but only sets the
14064 corresponding property, which affects how the frame is treated by
14065 following filters (e.g. @code{fieldorder} or @code{yadif}).
14066
14067 The filter accepts the following options:
14068
14069 @table @option
14070
14071 @item mode
14072 Available values are:
14073
14074 @table @samp
14075 @item auto
14076 Keep the same field property.
14077
14078 @item bff
14079 Mark the frame as bottom-field-first.
14080
14081 @item tff
14082 Mark the frame as top-field-first.
14083
14084 @item prog
14085 Mark the frame as progressive.
14086 @end table
14087 @end table
14088
14089 @section showinfo
14090
14091 Show a line containing various information for each input video frame.
14092 The input video is not modified.
14093
14094 The shown line contains a sequence of key/value pairs of the form
14095 @var{key}:@var{value}.
14096
14097 The following values are shown in the output:
14098
14099 @table @option
14100 @item n
14101 The (sequential) number of the input frame, starting from 0.
14102
14103 @item pts
14104 The Presentation TimeStamp of the input frame, expressed as a number of
14105 time base units. The time base unit depends on the filter input pad.
14106
14107 @item pts_time
14108 The Presentation TimeStamp of the input frame, expressed as a number of
14109 seconds.
14110
14111 @item pos
14112 The position of the frame in the input stream, or -1 if this information is
14113 unavailable and/or meaningless (for example in case of synthetic video).
14114
14115 @item fmt
14116 The pixel format name.
14117
14118 @item sar
14119 The sample aspect ratio of the input frame, expressed in the form
14120 @var{num}/@var{den}.
14121
14122 @item s
14123 The size of the input frame. For the syntax of this option, check the
14124 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14125
14126 @item i
14127 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
14128 for bottom field first).
14129
14130 @item iskey
14131 This is 1 if the frame is a key frame, 0 otherwise.
14132
14133 @item type
14134 The picture type of the input frame ("I" for an I-frame, "P" for a
14135 P-frame, "B" for a B-frame, or "?" for an unknown type).
14136 Also refer to the documentation of the @code{AVPictureType} enum and of
14137 the @code{av_get_picture_type_char} function defined in
14138 @file{libavutil/avutil.h}.
14139
14140 @item checksum
14141 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
14142
14143 @item plane_checksum
14144 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
14145 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
14146 @end table
14147
14148 @section showpalette
14149
14150 Displays the 256 colors palette of each frame. This filter is only relevant for
14151 @var{pal8} pixel format frames.
14152
14153 It accepts the following option:
14154
14155 @table @option
14156 @item s
14157 Set the size of the box used to represent one palette color entry. Default is
14158 @code{30} (for a @code{30x30} pixel box).
14159 @end table
14160
14161 @section shuffleframes
14162
14163 Reorder and/or duplicate and/or drop video frames.
14164
14165 It accepts the following parameters:
14166
14167 @table @option
14168 @item mapping
14169 Set the destination indexes of input frames.
14170 This is space or '|' separated list of indexes that maps input frames to output
14171 frames. Number of indexes also sets maximal value that each index may have.
14172 '-1' index have special meaning and that is to drop frame.
14173 @end table
14174
14175 The first frame has the index 0. The default is to keep the input unchanged.
14176
14177 @subsection Examples
14178
14179 @itemize
14180 @item
14181 Swap second and third frame of every three frames of the input:
14182 @example
14183 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
14184 @end example
14185
14186 @item
14187 Swap 10th and 1st frame of every ten frames of the input:
14188 @example
14189 ffmpeg -i INPUT -vf "shuffleframes=9 1 2 3 4 5 6 7 8 0" OUTPUT
14190 @end example
14191 @end itemize
14192
14193 @section shuffleplanes
14194
14195 Reorder and/or duplicate video planes.
14196
14197 It accepts the following parameters:
14198
14199 @table @option
14200
14201 @item map0
14202 The index of the input plane to be used as the first output plane.
14203
14204 @item map1
14205 The index of the input plane to be used as the second output plane.
14206
14207 @item map2
14208 The index of the input plane to be used as the third output plane.
14209
14210 @item map3
14211 The index of the input plane to be used as the fourth output plane.
14212
14213 @end table
14214
14215 The first plane has the index 0. The default is to keep the input unchanged.
14216
14217 @subsection Examples
14218
14219 @itemize
14220 @item
14221 Swap the second and third planes of the input:
14222 @example
14223 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
14224 @end example
14225 @end itemize
14226
14227 @anchor{signalstats}
14228 @section signalstats
14229 Evaluate various visual metrics that assist in determining issues associated
14230 with the digitization of analog video media.
14231
14232 By default the filter will log these metadata values:
14233
14234 @table @option
14235 @item YMIN
14236 Display the minimal Y value contained within the input frame. Expressed in
14237 range of [0-255].
14238
14239 @item YLOW
14240 Display the Y value at the 10% percentile within the input frame. Expressed in
14241 range of [0-255].
14242
14243 @item YAVG
14244 Display the average Y value within the input frame. Expressed in range of
14245 [0-255].
14246
14247 @item YHIGH
14248 Display the Y value at the 90% percentile within the input frame. Expressed in
14249 range of [0-255].
14250
14251 @item YMAX
14252 Display the maximum Y value contained within the input frame. Expressed in
14253 range of [0-255].
14254
14255 @item UMIN
14256 Display the minimal U value contained within the input frame. Expressed in
14257 range of [0-255].
14258
14259 @item ULOW
14260 Display the U value at the 10% percentile within the input frame. Expressed in
14261 range of [0-255].
14262
14263 @item UAVG
14264 Display the average U value within the input frame. Expressed in range of
14265 [0-255].
14266
14267 @item UHIGH
14268 Display the U value at the 90% percentile within the input frame. Expressed in
14269 range of [0-255].
14270
14271 @item UMAX
14272 Display the maximum U value contained within the input frame. Expressed in
14273 range of [0-255].
14274
14275 @item VMIN
14276 Display the minimal V value contained within the input frame. Expressed in
14277 range of [0-255].
14278
14279 @item VLOW
14280 Display the V value at the 10% percentile within the input frame. Expressed in
14281 range of [0-255].
14282
14283 @item VAVG
14284 Display the average V value within the input frame. Expressed in range of
14285 [0-255].
14286
14287 @item VHIGH
14288 Display the V value at the 90% percentile within the input frame. Expressed in
14289 range of [0-255].
14290
14291 @item VMAX
14292 Display the maximum V value contained within the input frame. Expressed in
14293 range of [0-255].
14294
14295 @item SATMIN
14296 Display the minimal saturation value contained within the input frame.
14297 Expressed in range of [0-~181.02].
14298
14299 @item SATLOW
14300 Display the saturation value at the 10% percentile within the input frame.
14301 Expressed in range of [0-~181.02].
14302
14303 @item SATAVG
14304 Display the average saturation value within the input frame. Expressed in range
14305 of [0-~181.02].
14306
14307 @item SATHIGH
14308 Display the saturation value at the 90% percentile within the input frame.
14309 Expressed in range of [0-~181.02].
14310
14311 @item SATMAX
14312 Display the maximum saturation value contained within the input frame.
14313 Expressed in range of [0-~181.02].
14314
14315 @item HUEMED
14316 Display the median value for hue within the input frame. Expressed in range of
14317 [0-360].
14318
14319 @item HUEAVG
14320 Display the average value for hue within the input frame. Expressed in range of
14321 [0-360].
14322
14323 @item YDIF
14324 Display the average of sample value difference between all values of the Y
14325 plane in the current frame and corresponding values of the previous input frame.
14326 Expressed in range of [0-255].
14327
14328 @item UDIF
14329 Display the average of sample value difference between all values of the U
14330 plane in the current frame and corresponding values of the previous input frame.
14331 Expressed in range of [0-255].
14332
14333 @item VDIF
14334 Display the average of sample value difference between all values of the V
14335 plane in the current frame and corresponding values of the previous input frame.
14336 Expressed in range of [0-255].
14337
14338 @item YBITDEPTH
14339 Display bit depth of Y plane in current frame.
14340 Expressed in range of [0-16].
14341
14342 @item UBITDEPTH
14343 Display bit depth of U plane in current frame.
14344 Expressed in range of [0-16].
14345
14346 @item VBITDEPTH
14347 Display bit depth of V plane in current frame.
14348 Expressed in range of [0-16].
14349 @end table
14350
14351 The filter accepts the following options:
14352
14353 @table @option
14354 @item stat
14355 @item out
14356
14357 @option{stat} specify an additional form of image analysis.
14358 @option{out} output video with the specified type of pixel highlighted.
14359
14360 Both options accept the following values:
14361
14362 @table @samp
14363 @item tout
14364 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
14365 unlike the neighboring pixels of the same field. Examples of temporal outliers
14366 include the results of video dropouts, head clogs, or tape tracking issues.
14367
14368 @item vrep
14369 Identify @var{vertical line repetition}. Vertical line repetition includes
14370 similar rows of pixels within a frame. In born-digital video vertical line
14371 repetition is common, but this pattern is uncommon in video digitized from an
14372 analog source. When it occurs in video that results from the digitization of an
14373 analog source it can indicate concealment from a dropout compensator.
14374
14375 @item brng
14376 Identify pixels that fall outside of legal broadcast range.
14377 @end table
14378
14379 @item color, c
14380 Set the highlight color for the @option{out} option. The default color is
14381 yellow.
14382 @end table
14383
14384 @subsection Examples
14385
14386 @itemize
14387 @item
14388 Output data of various video metrics:
14389 @example
14390 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
14391 @end example
14392
14393 @item
14394 Output specific data about the minimum and maximum values of the Y plane per frame:
14395 @example
14396 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
14397 @end example
14398
14399 @item
14400 Playback video while highlighting pixels that are outside of broadcast range in red.
14401 @example
14402 ffplay example.mov -vf signalstats="out=brng:color=red"
14403 @end example
14404
14405 @item
14406 Playback video with signalstats metadata drawn over the frame.
14407 @example
14408 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
14409 @end example
14410
14411 The contents of signalstat_drawtext.txt used in the command are:
14412 @example
14413 time %@{pts:hms@}
14414 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
14415 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
14416 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
14417 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
14418
14419 @end example
14420 @end itemize
14421
14422 @anchor{signature}
14423 @section signature
14424
14425 Calculates the MPEG-7 Video Signature. The filter can handle more than one
14426 input. In this case the matching between the inputs can be calculated additionally.
14427 The filter always passes through the first input. The signature of each stream can
14428 be written into a file.
14429
14430 It accepts the following options:
14431
14432 @table @option
14433 @item detectmode
14434 Enable or disable the matching process.
14435
14436 Available values are:
14437
14438 @table @samp
14439 @item off
14440 Disable the calculation of a matching (default).
14441 @item full
14442 Calculate the matching for the whole video and output whether the whole video
14443 matches or only parts.
14444 @item fast
14445 Calculate only until a matching is found or the video ends. Should be faster in
14446 some cases.
14447 @end table
14448
14449 @item nb_inputs
14450 Set the number of inputs. The option value must be a non negative integer.
14451 Default value is 1.
14452
14453 @item filename
14454 Set the path to which the output is written. If there is more than one input,
14455 the path must be a prototype, i.e. must contain %d or %0nd (where n is a positive
14456 integer), that will be replaced with the input number. If no filename is
14457 specified, no output will be written. This is the default.
14458
14459 @item format
14460 Choose the output format.
14461
14462 Available values are:
14463
14464 @table @samp
14465 @item binary
14466 Use the specified binary representation (default).
14467 @item xml
14468 Use the specified xml representation.
14469 @end table
14470
14471 @item th_d
14472 Set threshold to detect one word as similar. The option value must be an integer
14473 greater than zero. The default value is 9000.
14474
14475 @item th_dc
14476 Set threshold to detect all words as similar. The option value must be an integer
14477 greater than zero. The default value is 60000.
14478
14479 @item th_xh
14480 Set threshold to detect frames as similar. The option value must be an integer
14481 greater than zero. The default value is 116.
14482
14483 @item th_di
14484 Set the minimum length of a sequence in frames to recognize it as matching
14485 sequence. The option value must be a non negative integer value.
14486 The default value is 0.
14487
14488 @item th_it
14489 Set the minimum relation, that matching frames to all frames must have.
14490 The option value must be a double value between 0 and 1. The default value is 0.5.
14491 @end table
14492
14493 @subsection Examples
14494
14495 @itemize
14496 @item
14497 To calculate the signature of an input video and store it in signature.bin:
14498 @example
14499 ffmpeg -i input.mkv -vf signature=filename=signature.bin -map 0:v -f null -
14500 @end example
14501
14502 @item
14503 To detect whether two videos match and store the signatures in XML format in
14504 signature0.xml and signature1.xml:
14505 @example
14506 ffmpeg -i input1.mkv -i input2.mkv -filter_complex "[0:v][1:v] signature=nb_inputs=2:detectmode=full:format=xml:filename=signature%d.xml" -map :v -f null -
14507 @end example
14508
14509 @end itemize
14510
14511 @anchor{smartblur}
14512 @section smartblur
14513
14514 Blur the input video without impacting the outlines.
14515
14516 It accepts the following options:
14517
14518 @table @option
14519 @item luma_radius, lr
14520 Set the luma radius. The option value must be a float number in
14521 the range [0.1,5.0] that specifies the variance of the gaussian filter
14522 used to blur the image (slower if larger). Default value is 1.0.
14523
14524 @item luma_strength, ls
14525 Set the luma strength. The option value must be a float number
14526 in the range [-1.0,1.0] that configures the blurring. A value included
14527 in [0.0,1.0] will blur the image whereas a value included in
14528 [-1.0,0.0] will sharpen the image. Default value is 1.0.
14529
14530 @item luma_threshold, lt
14531 Set the luma threshold used as a coefficient to determine
14532 whether a pixel should be blurred or not. The option value must be an
14533 integer in the range [-30,30]. A value of 0 will filter all the image,
14534 a value included in [0,30] will filter flat areas and a value included
14535 in [-30,0] will filter edges. Default value is 0.
14536
14537 @item chroma_radius, cr
14538 Set the chroma radius. The option value must be a float number in
14539 the range [0.1,5.0] that specifies the variance of the gaussian filter
14540 used to blur the image (slower if larger). Default value is @option{luma_radius}.
14541
14542 @item chroma_strength, cs
14543 Set the chroma strength. The option value must be a float number
14544 in the range [-1.0,1.0] that configures the blurring. A value included
14545 in [0.0,1.0] will blur the image whereas a value included in
14546 [-1.0,0.0] will sharpen the image. Default value is @option{luma_strength}.
14547
14548 @item chroma_threshold, ct
14549 Set the chroma threshold used as a coefficient to determine
14550 whether a pixel should be blurred or not. The option value must be an
14551 integer in the range [-30,30]. A value of 0 will filter all the image,
14552 a value included in [0,30] will filter flat areas and a value included
14553 in [-30,0] will filter edges. Default value is @option{luma_threshold}.
14554 @end table
14555
14556 If a chroma option is not explicitly set, the corresponding luma value
14557 is set.
14558
14559 @section ssim
14560
14561 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
14562
14563 This filter takes in input two input videos, the first input is
14564 considered the "main" source and is passed unchanged to the
14565 output. The second input is used as a "reference" video for computing
14566 the SSIM.
14567
14568 Both video inputs must have the same resolution and pixel format for
14569 this filter to work correctly. Also it assumes that both inputs
14570 have the same number of frames, which are compared one by one.
14571
14572 The filter stores the calculated SSIM of each frame.
14573
14574 The description of the accepted parameters follows.
14575
14576 @table @option
14577 @item stats_file, f
14578 If specified the filter will use the named file to save the SSIM of
14579 each individual frame. When filename equals "-" the data is sent to
14580 standard output.
14581 @end table
14582
14583 The file printed if @var{stats_file} is selected, contains a sequence of
14584 key/value pairs of the form @var{key}:@var{value} for each compared
14585 couple of frames.
14586
14587 A description of each shown parameter follows:
14588
14589 @table @option
14590 @item n
14591 sequential number of the input frame, starting from 1
14592
14593 @item Y, U, V, R, G, B
14594 SSIM of the compared frames for the component specified by the suffix.
14595
14596 @item All
14597 SSIM of the compared frames for the whole frame.
14598
14599 @item dB
14600 Same as above but in dB representation.
14601 @end table
14602
14603 This filter also supports the @ref{framesync} options.
14604
14605 For example:
14606 @example
14607 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
14608 [main][ref] ssim="stats_file=stats.log" [out]
14609 @end example
14610
14611 On this example the input file being processed is compared with the
14612 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
14613 is stored in @file{stats.log}.
14614
14615 Another example with both psnr and ssim at same time:
14616 @example
14617 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
14618 @end example
14619
14620 @section stereo3d
14621
14622 Convert between different stereoscopic image formats.
14623
14624 The filters accept the following options:
14625
14626 @table @option
14627 @item in
14628 Set stereoscopic image format of input.
14629
14630 Available values for input image formats are:
14631 @table @samp
14632 @item sbsl
14633 side by side parallel (left eye left, right eye right)
14634
14635 @item sbsr
14636 side by side crosseye (right eye left, left eye right)
14637
14638 @item sbs2l
14639 side by side parallel with half width resolution
14640 (left eye left, right eye right)
14641
14642 @item sbs2r
14643 side by side crosseye with half width resolution
14644 (right eye left, left eye right)
14645
14646 @item abl
14647 above-below (left eye above, right eye below)
14648
14649 @item abr
14650 above-below (right eye above, left eye below)
14651
14652 @item ab2l
14653 above-below with half height resolution
14654 (left eye above, right eye below)
14655
14656 @item ab2r
14657 above-below with half height resolution
14658 (right eye above, left eye below)
14659
14660 @item al
14661 alternating frames (left eye first, right eye second)
14662
14663 @item ar
14664 alternating frames (right eye first, left eye second)
14665
14666 @item irl
14667 interleaved rows (left eye has top row, right eye starts on next row)
14668
14669 @item irr
14670 interleaved rows (right eye has top row, left eye starts on next row)
14671
14672 @item icl
14673 interleaved columns, left eye first
14674
14675 @item icr
14676 interleaved columns, right eye first
14677
14678 Default value is @samp{sbsl}.
14679 @end table
14680
14681 @item out
14682 Set stereoscopic image format of output.
14683
14684 @table @samp
14685 @item sbsl
14686 side by side parallel (left eye left, right eye right)
14687
14688 @item sbsr
14689 side by side crosseye (right eye left, left eye right)
14690
14691 @item sbs2l
14692 side by side parallel with half width resolution
14693 (left eye left, right eye right)
14694
14695 @item sbs2r
14696 side by side crosseye with half width resolution
14697 (right eye left, left eye right)
14698
14699 @item abl
14700 above-below (left eye above, right eye below)
14701
14702 @item abr
14703 above-below (right eye above, left eye below)
14704
14705 @item ab2l
14706 above-below with half height resolution
14707 (left eye above, right eye below)
14708
14709 @item ab2r
14710 above-below with half height resolution
14711 (right eye above, left eye below)
14712
14713 @item al
14714 alternating frames (left eye first, right eye second)
14715
14716 @item ar
14717 alternating frames (right eye first, left eye second)
14718
14719 @item irl
14720 interleaved rows (left eye has top row, right eye starts on next row)
14721
14722 @item irr
14723 interleaved rows (right eye has top row, left eye starts on next row)
14724
14725 @item arbg
14726 anaglyph red/blue gray
14727 (red filter on left eye, blue filter on right eye)
14728
14729 @item argg
14730 anaglyph red/green gray
14731 (red filter on left eye, green filter on right eye)
14732
14733 @item arcg
14734 anaglyph red/cyan gray
14735 (red filter on left eye, cyan filter on right eye)
14736
14737 @item arch
14738 anaglyph red/cyan half colored
14739 (red filter on left eye, cyan filter on right eye)
14740
14741 @item arcc
14742 anaglyph red/cyan color
14743 (red filter on left eye, cyan filter on right eye)
14744
14745 @item arcd
14746 anaglyph red/cyan color optimized with the least squares projection of dubois
14747 (red filter on left eye, cyan filter on right eye)
14748
14749 @item agmg
14750 anaglyph green/magenta gray
14751 (green filter on left eye, magenta filter on right eye)
14752
14753 @item agmh
14754 anaglyph green/magenta half colored
14755 (green filter on left eye, magenta filter on right eye)
14756
14757 @item agmc
14758 anaglyph green/magenta colored
14759 (green filter on left eye, magenta filter on right eye)
14760
14761 @item agmd
14762 anaglyph green/magenta color optimized with the least squares projection of dubois
14763 (green filter on left eye, magenta filter on right eye)
14764
14765 @item aybg
14766 anaglyph yellow/blue gray
14767 (yellow filter on left eye, blue filter on right eye)
14768
14769 @item aybh
14770 anaglyph yellow/blue half colored
14771 (yellow filter on left eye, blue filter on right eye)
14772
14773 @item aybc
14774 anaglyph yellow/blue colored
14775 (yellow filter on left eye, blue filter on right eye)
14776
14777 @item aybd
14778 anaglyph yellow/blue color optimized with the least squares projection of dubois
14779 (yellow filter on left eye, blue filter on right eye)
14780
14781 @item ml
14782 mono output (left eye only)
14783
14784 @item mr
14785 mono output (right eye only)
14786
14787 @item chl
14788 checkerboard, left eye first
14789
14790 @item chr
14791 checkerboard, right eye first
14792
14793 @item icl
14794 interleaved columns, left eye first
14795
14796 @item icr
14797 interleaved columns, right eye first
14798
14799 @item hdmi
14800 HDMI frame pack
14801 @end table
14802
14803 Default value is @samp{arcd}.
14804 @end table
14805
14806 @subsection Examples
14807
14808 @itemize
14809 @item
14810 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
14811 @example
14812 stereo3d=sbsl:aybd
14813 @end example
14814
14815 @item
14816 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
14817 @example
14818 stereo3d=abl:sbsr
14819 @end example
14820 @end itemize
14821
14822 @section streamselect, astreamselect
14823 Select video or audio streams.
14824
14825 The filter accepts the following options:
14826
14827 @table @option
14828 @item inputs
14829 Set number of inputs. Default is 2.
14830
14831 @item map
14832 Set input indexes to remap to outputs.
14833 @end table
14834
14835 @subsection Commands
14836
14837 The @code{streamselect} and @code{astreamselect} filter supports the following
14838 commands:
14839
14840 @table @option
14841 @item map
14842 Set input indexes to remap to outputs.
14843 @end table
14844
14845 @subsection Examples
14846
14847 @itemize
14848 @item
14849 Select first 5 seconds 1st stream and rest of time 2nd stream:
14850 @example
14851 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
14852 @end example
14853
14854 @item
14855 Same as above, but for audio:
14856 @example
14857 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
14858 @end example
14859 @end itemize
14860
14861 @section sobel
14862 Apply sobel operator to input video stream.
14863
14864 The filter accepts the following option:
14865
14866 @table @option
14867 @item planes
14868 Set which planes will be processed, unprocessed planes will be copied.
14869 By default value 0xf, all planes will be processed.
14870
14871 @item scale
14872 Set value which will be multiplied with filtered result.
14873
14874 @item delta
14875 Set value which will be added to filtered result.
14876 @end table
14877
14878 @anchor{spp}
14879 @section spp
14880
14881 Apply a simple postprocessing filter that compresses and decompresses the image
14882 at several (or - in the case of @option{quality} level @code{6} - all) shifts
14883 and average the results.
14884
14885 The filter accepts the following options:
14886
14887 @table @option
14888 @item quality
14889 Set quality. This option defines the number of levels for averaging. It accepts
14890 an integer in the range 0-6. If set to @code{0}, the filter will have no
14891 effect. A value of @code{6} means the higher quality. For each increment of
14892 that value the speed drops by a factor of approximately 2.  Default value is
14893 @code{3}.
14894
14895 @item qp
14896 Force a constant quantization parameter. If not set, the filter will use the QP
14897 from the video stream (if available).
14898
14899 @item mode
14900 Set thresholding mode. Available modes are:
14901
14902 @table @samp
14903 @item hard
14904 Set hard thresholding (default).
14905 @item soft
14906 Set soft thresholding (better de-ringing effect, but likely blurrier).
14907 @end table
14908
14909 @item use_bframe_qp
14910 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
14911 option may cause flicker since the B-Frames have often larger QP. Default is
14912 @code{0} (not enabled).
14913 @end table
14914
14915 @anchor{subtitles}
14916 @section subtitles
14917
14918 Draw subtitles on top of input video using the libass library.
14919
14920 To enable compilation of this filter you need to configure FFmpeg with
14921 @code{--enable-libass}. This filter also requires a build with libavcodec and
14922 libavformat to convert the passed subtitles file to ASS (Advanced Substation
14923 Alpha) subtitles format.
14924
14925 The filter accepts the following options:
14926
14927 @table @option
14928 @item filename, f
14929 Set the filename of the subtitle file to read. It must be specified.
14930
14931 @item original_size
14932 Specify the size of the original video, the video for which the ASS file
14933 was composed. For the syntax of this option, check the
14934 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14935 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
14936 correctly scale the fonts if the aspect ratio has been changed.
14937
14938 @item fontsdir
14939 Set a directory path containing fonts that can be used by the filter.
14940 These fonts will be used in addition to whatever the font provider uses.
14941
14942 @item alpha
14943 Process alpha channel, by default alpha channel is untouched.
14944
14945 @item charenc
14946 Set subtitles input character encoding. @code{subtitles} filter only. Only
14947 useful if not UTF-8.
14948
14949 @item stream_index, si
14950 Set subtitles stream index. @code{subtitles} filter only.
14951
14952 @item force_style
14953 Override default style or script info parameters of the subtitles. It accepts a
14954 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
14955 @end table
14956
14957 If the first key is not specified, it is assumed that the first value
14958 specifies the @option{filename}.
14959
14960 For example, to render the file @file{sub.srt} on top of the input
14961 video, use the command:
14962 @example
14963 subtitles=sub.srt
14964 @end example
14965
14966 which is equivalent to:
14967 @example
14968 subtitles=filename=sub.srt
14969 @end example
14970
14971 To render the default subtitles stream from file @file{video.mkv}, use:
14972 @example
14973 subtitles=video.mkv
14974 @end example
14975
14976 To render the second subtitles stream from that file, use:
14977 @example
14978 subtitles=video.mkv:si=1
14979 @end example
14980
14981 To make the subtitles stream from @file{sub.srt} appear in transparent green
14982 @code{DejaVu Serif}, use:
14983 @example
14984 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HAA00FF00'
14985 @end example
14986
14987 @section super2xsai
14988
14989 Scale the input by 2x and smooth using the Super2xSaI (Scale and
14990 Interpolate) pixel art scaling algorithm.
14991
14992 Useful for enlarging pixel art images without reducing sharpness.
14993
14994 @section swaprect
14995
14996 Swap two rectangular objects in video.
14997
14998 This filter accepts the following options:
14999
15000 @table @option
15001 @item w
15002 Set object width.
15003
15004 @item h
15005 Set object height.
15006
15007 @item x1
15008 Set 1st rect x coordinate.
15009
15010 @item y1
15011 Set 1st rect y coordinate.
15012
15013 @item x2
15014 Set 2nd rect x coordinate.
15015
15016 @item y2
15017 Set 2nd rect y coordinate.
15018
15019 All expressions are evaluated once for each frame.
15020 @end table
15021
15022 The all options are expressions containing the following constants:
15023
15024 @table @option
15025 @item w
15026 @item h
15027 The input width and height.
15028
15029 @item a
15030 same as @var{w} / @var{h}
15031
15032 @item sar
15033 input sample aspect ratio
15034
15035 @item dar
15036 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
15037
15038 @item n
15039 The number of the input frame, starting from 0.
15040
15041 @item t
15042 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
15043
15044 @item pos
15045 the position in the file of the input frame, NAN if unknown
15046 @end table
15047
15048 @section swapuv
15049 Swap U & V plane.
15050
15051 @section telecine
15052
15053 Apply telecine process to the video.
15054
15055 This filter accepts the following options:
15056
15057 @table @option
15058 @item first_field
15059 @table @samp
15060 @item top, t
15061 top field first
15062 @item bottom, b
15063 bottom field first
15064 The default value is @code{top}.
15065 @end table
15066
15067 @item pattern
15068 A string of numbers representing the pulldown pattern you wish to apply.
15069 The default value is @code{23}.
15070 @end table
15071
15072 @example
15073 Some typical patterns:
15074
15075 NTSC output (30i):
15076 27.5p: 32222
15077 24p: 23 (classic)
15078 24p: 2332 (preferred)
15079 20p: 33
15080 18p: 334
15081 16p: 3444
15082
15083 PAL output (25i):
15084 27.5p: 12222
15085 24p: 222222222223 ("Euro pulldown")
15086 16.67p: 33
15087 16p: 33333334
15088 @end example
15089
15090 @section threshold
15091
15092 Apply threshold effect to video stream.
15093
15094 This filter needs four video streams to perform thresholding.
15095 First stream is stream we are filtering.
15096 Second stream is holding threshold values, third stream is holding min values,
15097 and last, fourth stream is holding max values.
15098
15099 The filter accepts the following option:
15100
15101 @table @option
15102 @item planes
15103 Set which planes will be processed, unprocessed planes will be copied.
15104 By default value 0xf, all planes will be processed.
15105 @end table
15106
15107 For example if first stream pixel's component value is less then threshold value
15108 of pixel component from 2nd threshold stream, third stream value will picked,
15109 otherwise fourth stream pixel component value will be picked.
15110
15111 Using color source filter one can perform various types of thresholding:
15112
15113 @subsection Examples
15114
15115 @itemize
15116 @item
15117 Binary threshold, using gray color as threshold:
15118 @example
15119 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=black -f lavfi -i color=white -lavfi threshold output.avi
15120 @end example
15121
15122 @item
15123 Inverted binary threshold, using gray color as threshold:
15124 @example
15125 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -f lavfi -i color=black -lavfi threshold output.avi
15126 @end example
15127
15128 @item
15129 Truncate binary threshold, using gray color as threshold:
15130 @example
15131 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=gray -lavfi threshold output.avi
15132 @end example
15133
15134 @item
15135 Threshold to zero, using gray color as threshold:
15136 @example
15137 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -i 320x240.avi -lavfi threshold output.avi
15138 @end example
15139
15140 @item
15141 Inverted threshold to zero, using gray color as threshold:
15142 @example
15143 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=white -lavfi threshold output.avi
15144 @end example
15145 @end itemize
15146
15147 @section thumbnail
15148 Select the most representative frame in a given sequence of consecutive frames.
15149
15150 The filter accepts the following options:
15151
15152 @table @option
15153 @item n
15154 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
15155 will pick one of them, and then handle the next batch of @var{n} frames until
15156 the end. Default is @code{100}.
15157 @end table
15158
15159 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
15160 value will result in a higher memory usage, so a high value is not recommended.
15161
15162 @subsection Examples
15163
15164 @itemize
15165 @item
15166 Extract one picture each 50 frames:
15167 @example
15168 thumbnail=50
15169 @end example
15170
15171 @item
15172 Complete example of a thumbnail creation with @command{ffmpeg}:
15173 @example
15174 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
15175 @end example
15176 @end itemize
15177
15178 @section tile
15179
15180 Tile several successive frames together.
15181
15182 The filter accepts the following options:
15183
15184 @table @option
15185
15186 @item layout
15187 Set the grid size (i.e. the number of lines and columns). For the syntax of
15188 this option, check the
15189 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15190
15191 @item nb_frames
15192 Set the maximum number of frames to render in the given area. It must be less
15193 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
15194 the area will be used.
15195
15196 @item margin
15197 Set the outer border margin in pixels.
15198
15199 @item padding
15200 Set the inner border thickness (i.e. the number of pixels between frames). For
15201 more advanced padding options (such as having different values for the edges),
15202 refer to the pad video filter.
15203
15204 @item color
15205 Specify the color of the unused area. For the syntax of this option, check the
15206 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
15207 The default value of @var{color} is "black".
15208
15209 @item overlap
15210 Set the number of frames to overlap when tiling several successive frames together.
15211 The value must be between @code{0} and @var{nb_frames - 1}.
15212
15213 @item init_padding
15214 Set the number of frames to initially be empty before displaying first output frame.
15215 This controls how soon will one get first output frame.
15216 The value must be between @code{0} and @var{nb_frames - 1}.
15217 @end table
15218
15219 @subsection Examples
15220
15221 @itemize
15222 @item
15223 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
15224 @example
15225 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
15226 @end example
15227 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
15228 duplicating each output frame to accommodate the originally detected frame
15229 rate.
15230
15231 @item
15232 Display @code{5} pictures in an area of @code{3x2} frames,
15233 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
15234 mixed flat and named options:
15235 @example
15236 tile=3x2:nb_frames=5:padding=7:margin=2
15237 @end example
15238 @end itemize
15239
15240 @section tinterlace
15241
15242 Perform various types of temporal field interlacing.
15243
15244 Frames are counted starting from 1, so the first input frame is
15245 considered odd.
15246
15247 The filter accepts the following options:
15248
15249 @table @option
15250
15251 @item mode
15252 Specify the mode of the interlacing. This option can also be specified
15253 as a value alone. See below for a list of values for this option.
15254
15255 Available values are:
15256
15257 @table @samp
15258 @item merge, 0
15259 Move odd frames into the upper field, even into the lower field,
15260 generating a double height frame at half frame rate.
15261 @example
15262  ------> time
15263 Input:
15264 Frame 1         Frame 2         Frame 3         Frame 4
15265
15266 11111           22222           33333           44444
15267 11111           22222           33333           44444
15268 11111           22222           33333           44444
15269 11111           22222           33333           44444
15270
15271 Output:
15272 11111                           33333
15273 22222                           44444
15274 11111                           33333
15275 22222                           44444
15276 11111                           33333
15277 22222                           44444
15278 11111                           33333
15279 22222                           44444
15280 @end example
15281
15282 @item drop_even, 1
15283 Only output odd frames, even frames are dropped, generating a frame with
15284 unchanged height at half frame rate.
15285
15286 @example
15287  ------> time
15288 Input:
15289 Frame 1         Frame 2         Frame 3         Frame 4
15290
15291 11111           22222           33333           44444
15292 11111           22222           33333           44444
15293 11111           22222           33333           44444
15294 11111           22222           33333           44444
15295
15296 Output:
15297 11111                           33333
15298 11111                           33333
15299 11111                           33333
15300 11111                           33333
15301 @end example
15302
15303 @item drop_odd, 2
15304 Only output even frames, odd frames are dropped, generating a frame with
15305 unchanged height at half frame rate.
15306
15307 @example
15308  ------> time
15309 Input:
15310 Frame 1         Frame 2         Frame 3         Frame 4
15311
15312 11111           22222           33333           44444
15313 11111           22222           33333           44444
15314 11111           22222           33333           44444
15315 11111           22222           33333           44444
15316
15317 Output:
15318                 22222                           44444
15319                 22222                           44444
15320                 22222                           44444
15321                 22222                           44444
15322 @end example
15323
15324 @item pad, 3
15325 Expand each frame to full height, but pad alternate lines with black,
15326 generating a frame with double height at the same input frame rate.
15327
15328 @example
15329  ------> time
15330 Input:
15331 Frame 1         Frame 2         Frame 3         Frame 4
15332
15333 11111           22222           33333           44444
15334 11111           22222           33333           44444
15335 11111           22222           33333           44444
15336 11111           22222           33333           44444
15337
15338 Output:
15339 11111           .....           33333           .....
15340 .....           22222           .....           44444
15341 11111           .....           33333           .....
15342 .....           22222           .....           44444
15343 11111           .....           33333           .....
15344 .....           22222           .....           44444
15345 11111           .....           33333           .....
15346 .....           22222           .....           44444
15347 @end example
15348
15349
15350 @item interleave_top, 4
15351 Interleave the upper field from odd frames with the lower field from
15352 even frames, generating a frame with unchanged height at half frame rate.
15353
15354 @example
15355  ------> time
15356 Input:
15357 Frame 1         Frame 2         Frame 3         Frame 4
15358
15359 11111<-         22222           33333<-         44444
15360 11111           22222<-         33333           44444<-
15361 11111<-         22222           33333<-         44444
15362 11111           22222<-         33333           44444<-
15363
15364 Output:
15365 11111                           33333
15366 22222                           44444
15367 11111                           33333
15368 22222                           44444
15369 @end example
15370
15371
15372 @item interleave_bottom, 5
15373 Interleave the lower field from odd frames with the upper field from
15374 even frames, generating a frame with unchanged height at half frame rate.
15375
15376 @example
15377  ------> time
15378 Input:
15379 Frame 1         Frame 2         Frame 3         Frame 4
15380
15381 11111           22222<-         33333           44444<-
15382 11111<-         22222           33333<-         44444
15383 11111           22222<-         33333           44444<-
15384 11111<-         22222           33333<-         44444
15385
15386 Output:
15387 22222                           44444
15388 11111                           33333
15389 22222                           44444
15390 11111                           33333
15391 @end example
15392
15393
15394 @item interlacex2, 6
15395 Double frame rate with unchanged height. Frames are inserted each
15396 containing the second temporal field from the previous input frame and
15397 the first temporal field from the next input frame. This mode relies on
15398 the top_field_first flag. Useful for interlaced video displays with no
15399 field synchronisation.
15400
15401 @example
15402  ------> time
15403 Input:
15404 Frame 1         Frame 2         Frame 3         Frame 4
15405
15406 11111           22222           33333           44444
15407  11111           22222           33333           44444
15408 11111           22222           33333           44444
15409  11111           22222           33333           44444
15410
15411 Output:
15412 11111   22222   22222   33333   33333   44444   44444
15413  11111   11111   22222   22222   33333   33333   44444
15414 11111   22222   22222   33333   33333   44444   44444
15415  11111   11111   22222   22222   33333   33333   44444
15416 @end example
15417
15418
15419 @item mergex2, 7
15420 Move odd frames into the upper field, even into the lower field,
15421 generating a double height frame at same frame rate.
15422
15423 @example
15424  ------> time
15425 Input:
15426 Frame 1         Frame 2         Frame 3         Frame 4
15427
15428 11111           22222           33333           44444
15429 11111           22222           33333           44444
15430 11111           22222           33333           44444
15431 11111           22222           33333           44444
15432
15433 Output:
15434 11111           33333           33333           55555
15435 22222           22222           44444           44444
15436 11111           33333           33333           55555
15437 22222           22222           44444           44444
15438 11111           33333           33333           55555
15439 22222           22222           44444           44444
15440 11111           33333           33333           55555
15441 22222           22222           44444           44444
15442 @end example
15443
15444 @end table
15445
15446 Numeric values are deprecated but are accepted for backward
15447 compatibility reasons.
15448
15449 Default mode is @code{merge}.
15450
15451 @item flags
15452 Specify flags influencing the filter process.
15453
15454 Available value for @var{flags} is:
15455
15456 @table @option
15457 @item low_pass_filter, vlfp
15458 Enable linear vertical low-pass filtering in the filter.
15459 Vertical low-pass filtering is required when creating an interlaced
15460 destination from a progressive source which contains high-frequency
15461 vertical detail. Filtering will reduce interlace 'twitter' and Moire
15462 patterning.
15463
15464 @item complex_filter, cvlfp
15465 Enable complex vertical low-pass filtering.
15466 This will slightly less reduce interlace 'twitter' and Moire
15467 patterning but better retain detail and subjective sharpness impression.
15468
15469 @end table
15470
15471 Vertical low-pass filtering can only be enabled for @option{mode}
15472 @var{interleave_top} and @var{interleave_bottom}.
15473
15474 @end table
15475
15476 @section tonemap
15477 Tone map colors from different dynamic ranges.
15478
15479 This filter expects data in single precision floating point, as it needs to
15480 operate on (and can output) out-of-range values. Another filter, such as
15481 @ref{zscale}, is needed to convert the resulting frame to a usable format.
15482
15483 The tonemapping algorithms implemented only work on linear light, so input
15484 data should be linearized beforehand (and possibly correctly tagged).
15485
15486 @example
15487 ffmpeg -i INPUT -vf zscale=transfer=linear,tonemap=clip,zscale=transfer=bt709,format=yuv420p OUTPUT
15488 @end example
15489
15490 @subsection Options
15491 The filter accepts the following options.
15492
15493 @table @option
15494 @item tonemap
15495 Set the tone map algorithm to use.
15496
15497 Possible values are:
15498 @table @var
15499 @item none
15500 Do not apply any tone map, only desaturate overbright pixels.
15501
15502 @item clip
15503 Hard-clip any out-of-range values. Use it for perfect color accuracy for
15504 in-range values, while distorting out-of-range values.
15505
15506 @item linear
15507 Stretch the entire reference gamut to a linear multiple of the display.
15508
15509 @item gamma
15510 Fit a logarithmic transfer between the tone curves.
15511
15512 @item reinhard
15513 Preserve overall image brightness with a simple curve, using nonlinear
15514 contrast, which results in flattening details and degrading color accuracy.
15515
15516 @item hable
15517 Preserve both dark and bright details better than @var{reinhard}, at the cost
15518 of slightly darkening everything. Use it when detail preservation is more
15519 important than color and brightness accuracy.
15520
15521 @item mobius
15522 Smoothly map out-of-range values, while retaining contrast and colors for
15523 in-range material as much as possible. Use it when color accuracy is more
15524 important than detail preservation.
15525 @end table
15526
15527 Default is none.
15528
15529 @item param
15530 Tune the tone mapping algorithm.
15531
15532 This affects the following algorithms:
15533 @table @var
15534 @item none
15535 Ignored.
15536
15537 @item linear
15538 Specifies the scale factor to use while stretching.
15539 Default to 1.0.
15540
15541 @item gamma
15542 Specifies the exponent of the function.
15543 Default to 1.8.
15544
15545 @item clip
15546 Specify an extra linear coefficient to multiply into the signal before clipping.
15547 Default to 1.0.
15548
15549 @item reinhard
15550 Specify the local contrast coefficient at the display peak.
15551 Default to 0.5, which means that in-gamut values will be about half as bright
15552 as when clipping.
15553
15554 @item hable
15555 Ignored.
15556
15557 @item mobius
15558 Specify the transition point from linear to mobius transform. Every value
15559 below this point is guaranteed to be mapped 1:1. The higher the value, the
15560 more accurate the result will be, at the cost of losing bright details.
15561 Default to 0.3, which due to the steep initial slope still preserves in-range
15562 colors fairly accurately.
15563 @end table
15564
15565 @item desat
15566 Apply desaturation for highlights that exceed this level of brightness. The
15567 higher the parameter, the more color information will be preserved. This
15568 setting helps prevent unnaturally blown-out colors for super-highlights, by
15569 (smoothly) turning into white instead. This makes images feel more natural,
15570 at the cost of reducing information about out-of-range colors.
15571
15572 The default of 2.0 is somewhat conservative and will mostly just apply to
15573 skies or directly sunlit surfaces. A setting of 0.0 disables this option.
15574
15575 This option works only if the input frame has a supported color tag.
15576
15577 @item peak
15578 Override signal/nominal/reference peak with this value. Useful when the
15579 embedded peak information in display metadata is not reliable or when tone
15580 mapping from a lower range to a higher range.
15581 @end table
15582
15583 @section transpose
15584
15585 Transpose rows with columns in the input video and optionally flip it.
15586
15587 It accepts the following parameters:
15588
15589 @table @option
15590
15591 @item dir
15592 Specify the transposition direction.
15593
15594 Can assume the following values:
15595 @table @samp
15596 @item 0, 4, cclock_flip
15597 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
15598 @example
15599 L.R     L.l
15600 . . ->  . .
15601 l.r     R.r
15602 @end example
15603
15604 @item 1, 5, clock
15605 Rotate by 90 degrees clockwise, that is:
15606 @example
15607 L.R     l.L
15608 . . ->  . .
15609 l.r     r.R
15610 @end example
15611
15612 @item 2, 6, cclock
15613 Rotate by 90 degrees counterclockwise, that is:
15614 @example
15615 L.R     R.r
15616 . . ->  . .
15617 l.r     L.l
15618 @end example
15619
15620 @item 3, 7, clock_flip
15621 Rotate by 90 degrees clockwise and vertically flip, that is:
15622 @example
15623 L.R     r.R
15624 . . ->  . .
15625 l.r     l.L
15626 @end example
15627 @end table
15628
15629 For values between 4-7, the transposition is only done if the input
15630 video geometry is portrait and not landscape. These values are
15631 deprecated, the @code{passthrough} option should be used instead.
15632
15633 Numerical values are deprecated, and should be dropped in favor of
15634 symbolic constants.
15635
15636 @item passthrough
15637 Do not apply the transposition if the input geometry matches the one
15638 specified by the specified value. It accepts the following values:
15639 @table @samp
15640 @item none
15641 Always apply transposition.
15642 @item portrait
15643 Preserve portrait geometry (when @var{height} >= @var{width}).
15644 @item landscape
15645 Preserve landscape geometry (when @var{width} >= @var{height}).
15646 @end table
15647
15648 Default value is @code{none}.
15649 @end table
15650
15651 For example to rotate by 90 degrees clockwise and preserve portrait
15652 layout:
15653 @example
15654 transpose=dir=1:passthrough=portrait
15655 @end example
15656
15657 The command above can also be specified as:
15658 @example
15659 transpose=1:portrait
15660 @end example
15661
15662 @section trim
15663 Trim the input so that the output contains one continuous subpart of the input.
15664
15665 It accepts the following parameters:
15666 @table @option
15667 @item start
15668 Specify the time of the start of the kept section, i.e. the frame with the
15669 timestamp @var{start} will be the first frame in the output.
15670
15671 @item end
15672 Specify the time of the first frame that will be dropped, i.e. the frame
15673 immediately preceding the one with the timestamp @var{end} will be the last
15674 frame in the output.
15675
15676 @item start_pts
15677 This is the same as @var{start}, except this option sets the start timestamp
15678 in timebase units instead of seconds.
15679
15680 @item end_pts
15681 This is the same as @var{end}, except this option sets the end timestamp
15682 in timebase units instead of seconds.
15683
15684 @item duration
15685 The maximum duration of the output in seconds.
15686
15687 @item start_frame
15688 The number of the first frame that should be passed to the output.
15689
15690 @item end_frame
15691 The number of the first frame that should be dropped.
15692 @end table
15693
15694 @option{start}, @option{end}, and @option{duration} are expressed as time
15695 duration specifications; see
15696 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
15697 for the accepted syntax.
15698
15699 Note that the first two sets of the start/end options and the @option{duration}
15700 option look at the frame timestamp, while the _frame variants simply count the
15701 frames that pass through the filter. Also note that this filter does not modify
15702 the timestamps. If you wish for the output timestamps to start at zero, insert a
15703 setpts filter after the trim filter.
15704
15705 If multiple start or end options are set, this filter tries to be greedy and
15706 keep all the frames that match at least one of the specified constraints. To keep
15707 only the part that matches all the constraints at once, chain multiple trim
15708 filters.
15709
15710 The defaults are such that all the input is kept. So it is possible to set e.g.
15711 just the end values to keep everything before the specified time.
15712
15713 Examples:
15714 @itemize
15715 @item
15716 Drop everything except the second minute of input:
15717 @example
15718 ffmpeg -i INPUT -vf trim=60:120
15719 @end example
15720
15721 @item
15722 Keep only the first second:
15723 @example
15724 ffmpeg -i INPUT -vf trim=duration=1
15725 @end example
15726
15727 @end itemize
15728
15729 @section unpremultiply
15730 Apply alpha unpremultiply effect to input video stream using first plane
15731 of second stream as alpha.
15732
15733 Both streams must have same dimensions and same pixel format.
15734
15735 The filter accepts the following option:
15736
15737 @table @option
15738 @item planes
15739 Set which planes will be processed, unprocessed planes will be copied.
15740 By default value 0xf, all planes will be processed.
15741
15742 If the format has 1 or 2 components, then luma is bit 0.
15743 If the format has 3 or 4 components:
15744 for RGB formats bit 0 is green, bit 1 is blue and bit 2 is red;
15745 for YUV formats bit 0 is luma, bit 1 is chroma-U and bit 2 is chroma-V.
15746 If present, the alpha channel is always the last bit.
15747
15748 @item inplace
15749 Do not require 2nd input for processing, instead use alpha plane from input stream.
15750 @end table
15751
15752 @anchor{unsharp}
15753 @section unsharp
15754
15755 Sharpen or blur the input video.
15756
15757 It accepts the following parameters:
15758
15759 @table @option
15760 @item luma_msize_x, lx
15761 Set the luma matrix horizontal size. It must be an odd integer between
15762 3 and 23. The default value is 5.
15763
15764 @item luma_msize_y, ly
15765 Set the luma matrix vertical size. It must be an odd integer between 3
15766 and 23. The default value is 5.
15767
15768 @item luma_amount, la
15769 Set the luma effect strength. It must be a floating point number, reasonable
15770 values lay between -1.5 and 1.5.
15771
15772 Negative values will blur the input video, while positive values will
15773 sharpen it, a value of zero will disable the effect.
15774
15775 Default value is 1.0.
15776
15777 @item chroma_msize_x, cx
15778 Set the chroma matrix horizontal size. It must be an odd integer
15779 between 3 and 23. The default value is 5.
15780
15781 @item chroma_msize_y, cy
15782 Set the chroma matrix vertical size. It must be an odd integer
15783 between 3 and 23. The default value is 5.
15784
15785 @item chroma_amount, ca
15786 Set the chroma effect strength. It must be a floating point number, reasonable
15787 values lay between -1.5 and 1.5.
15788
15789 Negative values will blur the input video, while positive values will
15790 sharpen it, a value of zero will disable the effect.
15791
15792 Default value is 0.0.
15793
15794 @end table
15795
15796 All parameters are optional and default to the equivalent of the
15797 string '5:5:1.0:5:5:0.0'.
15798
15799 @subsection Examples
15800
15801 @itemize
15802 @item
15803 Apply strong luma sharpen effect:
15804 @example
15805 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
15806 @end example
15807
15808 @item
15809 Apply a strong blur of both luma and chroma parameters:
15810 @example
15811 unsharp=7:7:-2:7:7:-2
15812 @end example
15813 @end itemize
15814
15815 @section uspp
15816
15817 Apply ultra slow/simple postprocessing filter that compresses and decompresses
15818 the image at several (or - in the case of @option{quality} level @code{8} - all)
15819 shifts and average the results.
15820
15821 The way this differs from the behavior of spp is that uspp actually encodes &
15822 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
15823 DCT similar to MJPEG.
15824
15825 The filter accepts the following options:
15826
15827 @table @option
15828 @item quality
15829 Set quality. This option defines the number of levels for averaging. It accepts
15830 an integer in the range 0-8. If set to @code{0}, the filter will have no
15831 effect. A value of @code{8} means the higher quality. For each increment of
15832 that value the speed drops by a factor of approximately 2.  Default value is
15833 @code{3}.
15834
15835 @item qp
15836 Force a constant quantization parameter. If not set, the filter will use the QP
15837 from the video stream (if available).
15838 @end table
15839
15840 @section vaguedenoiser
15841
15842 Apply a wavelet based denoiser.
15843
15844 It transforms each frame from the video input into the wavelet domain,
15845 using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
15846 the obtained coefficients. It does an inverse wavelet transform after.
15847 Due to wavelet properties, it should give a nice smoothed result, and
15848 reduced noise, without blurring picture features.
15849
15850 This filter accepts the following options:
15851
15852 @table @option
15853 @item threshold
15854 The filtering strength. The higher, the more filtered the video will be.
15855 Hard thresholding can use a higher threshold than soft thresholding
15856 before the video looks overfiltered. Default value is 2.
15857
15858 @item method
15859 The filtering method the filter will use.
15860
15861 It accepts the following values:
15862 @table @samp
15863 @item hard
15864 All values under the threshold will be zeroed.
15865
15866 @item soft
15867 All values under the threshold will be zeroed. All values above will be
15868 reduced by the threshold.
15869
15870 @item garrote
15871 Scales or nullifies coefficients - intermediary between (more) soft and
15872 (less) hard thresholding.
15873 @end table
15874
15875 Default is garrote.
15876
15877 @item nsteps
15878 Number of times, the wavelet will decompose the picture. Picture can't
15879 be decomposed beyond a particular point (typically, 8 for a 640x480
15880 frame - as 2^9 = 512 > 480). Valid values are integers between 1 and 32. Default value is 6.
15881
15882 @item percent
15883 Partial of full denoising (limited coefficients shrinking), from 0 to 100. Default value is 85.
15884
15885 @item planes
15886 A list of the planes to process. By default all planes are processed.
15887 @end table
15888
15889 @section vectorscope
15890
15891 Display 2 color component values in the two dimensional graph (which is called
15892 a vectorscope).
15893
15894 This filter accepts the following options:
15895
15896 @table @option
15897 @item mode, m
15898 Set vectorscope mode.
15899
15900 It accepts the following values:
15901 @table @samp
15902 @item gray
15903 Gray values are displayed on graph, higher brightness means more pixels have
15904 same component color value on location in graph. This is the default mode.
15905
15906 @item color
15907 Gray values are displayed on graph. Surrounding pixels values which are not
15908 present in video frame are drawn in gradient of 2 color components which are
15909 set by option @code{x} and @code{y}. The 3rd color component is static.
15910
15911 @item color2
15912 Actual color components values present in video frame are displayed on graph.
15913
15914 @item color3
15915 Similar as color2 but higher frequency of same values @code{x} and @code{y}
15916 on graph increases value of another color component, which is luminance by
15917 default values of @code{x} and @code{y}.
15918
15919 @item color4
15920 Actual colors present in video frame are displayed on graph. If two different
15921 colors map to same position on graph then color with higher value of component
15922 not present in graph is picked.
15923
15924 @item color5
15925 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
15926 component picked from radial gradient.
15927 @end table
15928
15929 @item x
15930 Set which color component will be represented on X-axis. Default is @code{1}.
15931
15932 @item y
15933 Set which color component will be represented on Y-axis. Default is @code{2}.
15934
15935 @item intensity, i
15936 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
15937 of color component which represents frequency of (X, Y) location in graph.
15938
15939 @item envelope, e
15940 @table @samp
15941 @item none
15942 No envelope, this is default.
15943
15944 @item instant
15945 Instant envelope, even darkest single pixel will be clearly highlighted.
15946
15947 @item peak
15948 Hold maximum and minimum values presented in graph over time. This way you
15949 can still spot out of range values without constantly looking at vectorscope.
15950
15951 @item peak+instant
15952 Peak and instant envelope combined together.
15953 @end table
15954
15955 @item graticule, g
15956 Set what kind of graticule to draw.
15957 @table @samp
15958 @item none
15959 @item green
15960 @item color
15961 @end table
15962
15963 @item opacity, o
15964 Set graticule opacity.
15965
15966 @item flags, f
15967 Set graticule flags.
15968
15969 @table @samp
15970 @item white
15971 Draw graticule for white point.
15972
15973 @item black
15974 Draw graticule for black point.
15975
15976 @item name
15977 Draw color points short names.
15978 @end table
15979
15980 @item bgopacity, b
15981 Set background opacity.
15982
15983 @item lthreshold, l
15984 Set low threshold for color component not represented on X or Y axis.
15985 Values lower than this value will be ignored. Default is 0.
15986 Note this value is multiplied with actual max possible value one pixel component
15987 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
15988 is 0.1 * 255 = 25.
15989
15990 @item hthreshold, h
15991 Set high threshold for color component not represented on X or Y axis.
15992 Values higher than this value will be ignored. Default is 1.
15993 Note this value is multiplied with actual max possible value one pixel component
15994 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
15995 is 0.9 * 255 = 230.
15996
15997 @item colorspace, c
15998 Set what kind of colorspace to use when drawing graticule.
15999 @table @samp
16000 @item auto
16001 @item 601
16002 @item 709
16003 @end table
16004 Default is auto.
16005 @end table
16006
16007 @anchor{vidstabdetect}
16008 @section vidstabdetect
16009
16010 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
16011 @ref{vidstabtransform} for pass 2.
16012
16013 This filter generates a file with relative translation and rotation
16014 transform information about subsequent frames, which is then used by
16015 the @ref{vidstabtransform} filter.
16016
16017 To enable compilation of this filter you need to configure FFmpeg with
16018 @code{--enable-libvidstab}.
16019
16020 This filter accepts the following options:
16021
16022 @table @option
16023 @item result
16024 Set the path to the file used to write the transforms information.
16025 Default value is @file{transforms.trf}.
16026
16027 @item shakiness
16028 Set how shaky the video is and how quick the camera is. It accepts an
16029 integer in the range 1-10, a value of 1 means little shakiness, a
16030 value of 10 means strong shakiness. Default value is 5.
16031
16032 @item accuracy
16033 Set the accuracy of the detection process. It must be a value in the
16034 range 1-15. A value of 1 means low accuracy, a value of 15 means high
16035 accuracy. Default value is 15.
16036
16037 @item stepsize
16038 Set stepsize of the search process. The region around minimum is
16039 scanned with 1 pixel resolution. Default value is 6.
16040
16041 @item mincontrast
16042 Set minimum contrast. Below this value a local measurement field is
16043 discarded. Must be a floating point value in the range 0-1. Default
16044 value is 0.3.
16045
16046 @item tripod
16047 Set reference frame number for tripod mode.
16048
16049 If enabled, the motion of the frames is compared to a reference frame
16050 in the filtered stream, identified by the specified number. The idea
16051 is to compensate all movements in a more-or-less static scene and keep
16052 the camera view absolutely still.
16053
16054 If set to 0, it is disabled. The frames are counted starting from 1.
16055
16056 @item show
16057 Show fields and transforms in the resulting frames. It accepts an
16058 integer in the range 0-2. Default value is 0, which disables any
16059 visualization.
16060 @end table
16061
16062 @subsection Examples
16063
16064 @itemize
16065 @item
16066 Use default values:
16067 @example
16068 vidstabdetect
16069 @end example
16070
16071 @item
16072 Analyze strongly shaky movie and put the results in file
16073 @file{mytransforms.trf}:
16074 @example
16075 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
16076 @end example
16077
16078 @item
16079 Visualize the result of internal transformations in the resulting
16080 video:
16081 @example
16082 vidstabdetect=show=1
16083 @end example
16084
16085 @item
16086 Analyze a video with medium shakiness using @command{ffmpeg}:
16087 @example
16088 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
16089 @end example
16090 @end itemize
16091
16092 @anchor{vidstabtransform}
16093 @section vidstabtransform
16094
16095 Video stabilization/deshaking: pass 2 of 2,
16096 see @ref{vidstabdetect} for pass 1.
16097
16098 Read a file with transform information for each frame and
16099 apply/compensate them. Together with the @ref{vidstabdetect}
16100 filter this can be used to deshake videos. See also
16101 @url{http://public.hronopik.de/vid.stab}. It is important to also use
16102 the @ref{unsharp} filter, see below.
16103
16104 To enable compilation of this filter you need to configure FFmpeg with
16105 @code{--enable-libvidstab}.
16106
16107 @subsection Options
16108
16109 @table @option
16110 @item input
16111 Set path to the file used to read the transforms. Default value is
16112 @file{transforms.trf}.
16113
16114 @item smoothing
16115 Set the number of frames (value*2 + 1) used for lowpass filtering the
16116 camera movements. Default value is 10.
16117
16118 For example a number of 10 means that 21 frames are used (10 in the
16119 past and 10 in the future) to smoothen the motion in the video. A
16120 larger value leads to a smoother video, but limits the acceleration of
16121 the camera (pan/tilt movements). 0 is a special case where a static
16122 camera is simulated.
16123
16124 @item optalgo
16125 Set the camera path optimization algorithm.
16126
16127 Accepted values are:
16128 @table @samp
16129 @item gauss
16130 gaussian kernel low-pass filter on camera motion (default)
16131 @item avg
16132 averaging on transformations
16133 @end table
16134
16135 @item maxshift
16136 Set maximal number of pixels to translate frames. Default value is -1,
16137 meaning no limit.
16138
16139 @item maxangle
16140 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
16141 value is -1, meaning no limit.
16142
16143 @item crop
16144 Specify how to deal with borders that may be visible due to movement
16145 compensation.
16146
16147 Available values are:
16148 @table @samp
16149 @item keep
16150 keep image information from previous frame (default)
16151 @item black
16152 fill the border black
16153 @end table
16154
16155 @item invert
16156 Invert transforms if set to 1. Default value is 0.
16157
16158 @item relative
16159 Consider transforms as relative to previous frame if set to 1,
16160 absolute if set to 0. Default value is 0.
16161
16162 @item zoom
16163 Set percentage to zoom. A positive value will result in a zoom-in
16164 effect, a negative value in a zoom-out effect. Default value is 0 (no
16165 zoom).
16166
16167 @item optzoom
16168 Set optimal zooming to avoid borders.
16169
16170 Accepted values are:
16171 @table @samp
16172 @item 0
16173 disabled
16174 @item 1
16175 optimal static zoom value is determined (only very strong movements
16176 will lead to visible borders) (default)
16177 @item 2
16178 optimal adaptive zoom value is determined (no borders will be
16179 visible), see @option{zoomspeed}
16180 @end table
16181
16182 Note that the value given at zoom is added to the one calculated here.
16183
16184 @item zoomspeed
16185 Set percent to zoom maximally each frame (enabled when
16186 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
16187 0.25.
16188
16189 @item interpol
16190 Specify type of interpolation.
16191
16192 Available values are:
16193 @table @samp
16194 @item no
16195 no interpolation
16196 @item linear
16197 linear only horizontal
16198 @item bilinear
16199 linear in both directions (default)
16200 @item bicubic
16201 cubic in both directions (slow)
16202 @end table
16203
16204 @item tripod
16205 Enable virtual tripod mode if set to 1, which is equivalent to
16206 @code{relative=0:smoothing=0}. Default value is 0.
16207
16208 Use also @code{tripod} option of @ref{vidstabdetect}.
16209
16210 @item debug
16211 Increase log verbosity if set to 1. Also the detected global motions
16212 are written to the temporary file @file{global_motions.trf}. Default
16213 value is 0.
16214 @end table
16215
16216 @subsection Examples
16217
16218 @itemize
16219 @item
16220 Use @command{ffmpeg} for a typical stabilization with default values:
16221 @example
16222 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
16223 @end example
16224
16225 Note the use of the @ref{unsharp} filter which is always recommended.
16226
16227 @item
16228 Zoom in a bit more and load transform data from a given file:
16229 @example
16230 vidstabtransform=zoom=5:input="mytransforms.trf"
16231 @end example
16232
16233 @item
16234 Smoothen the video even more:
16235 @example
16236 vidstabtransform=smoothing=30
16237 @end example
16238 @end itemize
16239
16240 @section vflip
16241
16242 Flip the input video vertically.
16243
16244 For example, to vertically flip a video with @command{ffmpeg}:
16245 @example
16246 ffmpeg -i in.avi -vf "vflip" out.avi
16247 @end example
16248
16249 @anchor{vignette}
16250 @section vignette
16251
16252 Make or reverse a natural vignetting effect.
16253
16254 The filter accepts the following options:
16255
16256 @table @option
16257 @item angle, a
16258 Set lens angle expression as a number of radians.
16259
16260 The value is clipped in the @code{[0,PI/2]} range.
16261
16262 Default value: @code{"PI/5"}
16263
16264 @item x0
16265 @item y0
16266 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
16267 by default.
16268
16269 @item mode
16270 Set forward/backward mode.
16271
16272 Available modes are:
16273 @table @samp
16274 @item forward
16275 The larger the distance from the central point, the darker the image becomes.
16276
16277 @item backward
16278 The larger the distance from the central point, the brighter the image becomes.
16279 This can be used to reverse a vignette effect, though there is no automatic
16280 detection to extract the lens @option{angle} and other settings (yet). It can
16281 also be used to create a burning effect.
16282 @end table
16283
16284 Default value is @samp{forward}.
16285
16286 @item eval
16287 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
16288
16289 It accepts the following values:
16290 @table @samp
16291 @item init
16292 Evaluate expressions only once during the filter initialization.
16293
16294 @item frame
16295 Evaluate expressions for each incoming frame. This is way slower than the
16296 @samp{init} mode since it requires all the scalers to be re-computed, but it
16297 allows advanced dynamic expressions.
16298 @end table
16299
16300 Default value is @samp{init}.
16301
16302 @item dither
16303 Set dithering to reduce the circular banding effects. Default is @code{1}
16304 (enabled).
16305
16306 @item aspect
16307 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
16308 Setting this value to the SAR of the input will make a rectangular vignetting
16309 following the dimensions of the video.
16310
16311 Default is @code{1/1}.
16312 @end table
16313
16314 @subsection Expressions
16315
16316 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
16317 following parameters.
16318
16319 @table @option
16320 @item w
16321 @item h
16322 input width and height
16323
16324 @item n
16325 the number of input frame, starting from 0
16326
16327 @item pts
16328 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
16329 @var{TB} units, NAN if undefined
16330
16331 @item r
16332 frame rate of the input video, NAN if the input frame rate is unknown
16333
16334 @item t
16335 the PTS (Presentation TimeStamp) of the filtered video frame,
16336 expressed in seconds, NAN if undefined
16337
16338 @item tb
16339 time base of the input video
16340 @end table
16341
16342
16343 @subsection Examples
16344
16345 @itemize
16346 @item
16347 Apply simple strong vignetting effect:
16348 @example
16349 vignette=PI/4
16350 @end example
16351
16352 @item
16353 Make a flickering vignetting:
16354 @example
16355 vignette='PI/4+random(1)*PI/50':eval=frame
16356 @end example
16357
16358 @end itemize
16359
16360 @section vmafmotion
16361
16362 Obtain the average vmaf motion score of a video.
16363 It is one of the component filters of VMAF.
16364
16365 The obtained average motion score is printed through the logging system.
16366
16367 In the below example the input file @file{ref.mpg} is being processed and score
16368 is computed.
16369
16370 @example
16371 ffmpeg -i ref.mpg -lavfi vmafmotion -f null -
16372 @end example
16373
16374 @section vstack
16375 Stack input videos vertically.
16376
16377 All streams must be of same pixel format and of same width.
16378
16379 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
16380 to create same output.
16381
16382 The filter accept the following option:
16383
16384 @table @option
16385 @item inputs
16386 Set number of input streams. Default is 2.
16387
16388 @item shortest
16389 If set to 1, force the output to terminate when the shortest input
16390 terminates. Default value is 0.
16391 @end table
16392
16393 @section w3fdif
16394
16395 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
16396 Deinterlacing Filter").
16397
16398 Based on the process described by Martin Weston for BBC R&D, and
16399 implemented based on the de-interlace algorithm written by Jim
16400 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
16401 uses filter coefficients calculated by BBC R&D.
16402
16403 There are two sets of filter coefficients, so called "simple":
16404 and "complex". Which set of filter coefficients is used can
16405 be set by passing an optional parameter:
16406
16407 @table @option
16408 @item filter
16409 Set the interlacing filter coefficients. Accepts one of the following values:
16410
16411 @table @samp
16412 @item simple
16413 Simple filter coefficient set.
16414 @item complex
16415 More-complex filter coefficient set.
16416 @end table
16417 Default value is @samp{complex}.
16418
16419 @item deint
16420 Specify which frames to deinterlace. Accept one of the following values:
16421
16422 @table @samp
16423 @item all
16424 Deinterlace all frames,
16425 @item interlaced
16426 Only deinterlace frames marked as interlaced.
16427 @end table
16428
16429 Default value is @samp{all}.
16430 @end table
16431
16432 @section waveform
16433 Video waveform monitor.
16434
16435 The waveform monitor plots color component intensity. By default luminance
16436 only. Each column of the waveform corresponds to a column of pixels in the
16437 source video.
16438
16439 It accepts the following options:
16440
16441 @table @option
16442 @item mode, m
16443 Can be either @code{row}, or @code{column}. Default is @code{column}.
16444 In row mode, the graph on the left side represents color component value 0 and
16445 the right side represents value = 255. In column mode, the top side represents
16446 color component value = 0 and bottom side represents value = 255.
16447
16448 @item intensity, i
16449 Set intensity. Smaller values are useful to find out how many values of the same
16450 luminance are distributed across input rows/columns.
16451 Default value is @code{0.04}. Allowed range is [0, 1].
16452
16453 @item mirror, r
16454 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
16455 In mirrored mode, higher values will be represented on the left
16456 side for @code{row} mode and at the top for @code{column} mode. Default is
16457 @code{1} (mirrored).
16458
16459 @item display, d
16460 Set display mode.
16461 It accepts the following values:
16462 @table @samp
16463 @item overlay
16464 Presents information identical to that in the @code{parade}, except
16465 that the graphs representing color components are superimposed directly
16466 over one another.
16467
16468 This display mode makes it easier to spot relative differences or similarities
16469 in overlapping areas of the color components that are supposed to be identical,
16470 such as neutral whites, grays, or blacks.
16471
16472 @item stack
16473 Display separate graph for the color components side by side in
16474 @code{row} mode or one below the other in @code{column} mode.
16475
16476 @item parade
16477 Display separate graph for the color components side by side in
16478 @code{column} mode or one below the other in @code{row} mode.
16479
16480 Using this display mode makes it easy to spot color casts in the highlights
16481 and shadows of an image, by comparing the contours of the top and the bottom
16482 graphs of each waveform. Since whites, grays, and blacks are characterized
16483 by exactly equal amounts of red, green, and blue, neutral areas of the picture
16484 should display three waveforms of roughly equal width/height. If not, the
16485 correction is easy to perform by making level adjustments the three waveforms.
16486 @end table
16487 Default is @code{stack}.
16488
16489 @item components, c
16490 Set which color components to display. Default is 1, which means only luminance
16491 or red color component if input is in RGB colorspace. If is set for example to
16492 7 it will display all 3 (if) available color components.
16493
16494 @item envelope, e
16495 @table @samp
16496 @item none
16497 No envelope, this is default.
16498
16499 @item instant
16500 Instant envelope, minimum and maximum values presented in graph will be easily
16501 visible even with small @code{step} value.
16502
16503 @item peak
16504 Hold minimum and maximum values presented in graph across time. This way you
16505 can still spot out of range values without constantly looking at waveforms.
16506
16507 @item peak+instant
16508 Peak and instant envelope combined together.
16509 @end table
16510
16511 @item filter, f
16512 @table @samp
16513 @item lowpass
16514 No filtering, this is default.
16515
16516 @item flat
16517 Luma and chroma combined together.
16518
16519 @item aflat
16520 Similar as above, but shows difference between blue and red chroma.
16521
16522 @item xflat
16523 Similar as above, but use different colors.
16524
16525 @item chroma
16526 Displays only chroma.
16527
16528 @item color
16529 Displays actual color value on waveform.
16530
16531 @item acolor
16532 Similar as above, but with luma showing frequency of chroma values.
16533 @end table
16534
16535 @item graticule, g
16536 Set which graticule to display.
16537
16538 @table @samp
16539 @item none
16540 Do not display graticule.
16541
16542 @item green
16543 Display green graticule showing legal broadcast ranges.
16544
16545 @item orange
16546 Display orange graticule showing legal broadcast ranges.
16547 @end table
16548
16549 @item opacity, o
16550 Set graticule opacity.
16551
16552 @item flags, fl
16553 Set graticule flags.
16554
16555 @table @samp
16556 @item numbers
16557 Draw numbers above lines. By default enabled.
16558
16559 @item dots
16560 Draw dots instead of lines.
16561 @end table
16562
16563 @item scale, s
16564 Set scale used for displaying graticule.
16565
16566 @table @samp
16567 @item digital
16568 @item millivolts
16569 @item ire
16570 @end table
16571 Default is digital.
16572
16573 @item bgopacity, b
16574 Set background opacity.
16575 @end table
16576
16577 @section weave, doubleweave
16578
16579 The @code{weave} takes a field-based video input and join
16580 each two sequential fields into single frame, producing a new double
16581 height clip with half the frame rate and half the frame count.
16582
16583 The @code{doubleweave} works same as @code{weave} but without
16584 halving frame rate and frame count.
16585
16586 It accepts the following option:
16587
16588 @table @option
16589 @item first_field
16590 Set first field. Available values are:
16591
16592 @table @samp
16593 @item top, t
16594 Set the frame as top-field-first.
16595
16596 @item bottom, b
16597 Set the frame as bottom-field-first.
16598 @end table
16599 @end table
16600
16601 @subsection Examples
16602
16603 @itemize
16604 @item
16605 Interlace video using @ref{select} and @ref{separatefields} filter:
16606 @example
16607 separatefields,select=eq(mod(n,4),0)+eq(mod(n,4),3),weave
16608 @end example
16609 @end itemize
16610
16611 @section xbr
16612 Apply the xBR high-quality magnification filter which is designed for pixel
16613 art. It follows a set of edge-detection rules, see
16614 @url{http://www.libretro.com/forums/viewtopic.php?f=6&t=134}.
16615
16616 It accepts the following option:
16617
16618 @table @option
16619 @item n
16620 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
16621 @code{3xBR} and @code{4} for @code{4xBR}.
16622 Default is @code{3}.
16623 @end table
16624
16625 @anchor{yadif}
16626 @section yadif
16627
16628 Deinterlace the input video ("yadif" means "yet another deinterlacing
16629 filter").
16630
16631 It accepts the following parameters:
16632
16633
16634 @table @option
16635
16636 @item mode
16637 The interlacing mode to adopt. It accepts one of the following values:
16638
16639 @table @option
16640 @item 0, send_frame
16641 Output one frame for each frame.
16642 @item 1, send_field
16643 Output one frame for each field.
16644 @item 2, send_frame_nospatial
16645 Like @code{send_frame}, but it skips the spatial interlacing check.
16646 @item 3, send_field_nospatial
16647 Like @code{send_field}, but it skips the spatial interlacing check.
16648 @end table
16649
16650 The default value is @code{send_frame}.
16651
16652 @item parity
16653 The picture field parity assumed for the input interlaced video. It accepts one
16654 of the following values:
16655
16656 @table @option
16657 @item 0, tff
16658 Assume the top field is first.
16659 @item 1, bff
16660 Assume the bottom field is first.
16661 @item -1, auto
16662 Enable automatic detection of field parity.
16663 @end table
16664
16665 The default value is @code{auto}.
16666 If the interlacing is unknown or the decoder does not export this information,
16667 top field first will be assumed.
16668
16669 @item deint
16670 Specify which frames to deinterlace. Accept one of the following
16671 values:
16672
16673 @table @option
16674 @item 0, all
16675 Deinterlace all frames.
16676 @item 1, interlaced
16677 Only deinterlace frames marked as interlaced.
16678 @end table
16679
16680 The default value is @code{all}.
16681 @end table
16682
16683 @section zoompan
16684
16685 Apply Zoom & Pan effect.
16686
16687 This filter accepts the following options:
16688
16689 @table @option
16690 @item zoom, z
16691 Set the zoom expression. Default is 1.
16692
16693 @item x
16694 @item y
16695 Set the x and y expression. Default is 0.
16696
16697 @item d
16698 Set the duration expression in number of frames.
16699 This sets for how many number of frames effect will last for
16700 single input image.
16701
16702 @item s
16703 Set the output image size, default is 'hd720'.
16704
16705 @item fps
16706 Set the output frame rate, default is '25'.
16707 @end table
16708
16709 Each expression can contain the following constants:
16710
16711 @table @option
16712 @item in_w, iw
16713 Input width.
16714
16715 @item in_h, ih
16716 Input height.
16717
16718 @item out_w, ow
16719 Output width.
16720
16721 @item out_h, oh
16722 Output height.
16723
16724 @item in
16725 Input frame count.
16726
16727 @item on
16728 Output frame count.
16729
16730 @item x
16731 @item y
16732 Last calculated 'x' and 'y' position from 'x' and 'y' expression
16733 for current input frame.
16734
16735 @item px
16736 @item py
16737 'x' and 'y' of last output frame of previous input frame or 0 when there was
16738 not yet such frame (first input frame).
16739
16740 @item zoom
16741 Last calculated zoom from 'z' expression for current input frame.
16742
16743 @item pzoom
16744 Last calculated zoom of last output frame of previous input frame.
16745
16746 @item duration
16747 Number of output frames for current input frame. Calculated from 'd' expression
16748 for each input frame.
16749
16750 @item pduration
16751 number of output frames created for previous input frame
16752
16753 @item a
16754 Rational number: input width / input height
16755
16756 @item sar
16757 sample aspect ratio
16758
16759 @item dar
16760 display aspect ratio
16761
16762 @end table
16763
16764 @subsection Examples
16765
16766 @itemize
16767 @item
16768 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
16769 @example
16770 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='if(gte(zoom,1.5),x,x+1/a)':y='if(gte(zoom,1.5),y,y+1)':s=640x360
16771 @end example
16772
16773 @item
16774 Zoom-in up to 1.5 and pan always at center of picture:
16775 @example
16776 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
16777 @end example
16778
16779 @item
16780 Same as above but without pausing:
16781 @example
16782 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
16783 @end example
16784 @end itemize
16785
16786 @anchor{zscale}
16787 @section zscale
16788 Scale (resize) the input video, using the z.lib library:
16789 https://github.com/sekrit-twc/zimg.
16790
16791 The zscale filter forces the output display aspect ratio to be the same
16792 as the input, by changing the output sample aspect ratio.
16793
16794 If the input image format is different from the format requested by
16795 the next filter, the zscale filter will convert the input to the
16796 requested format.
16797
16798 @subsection Options
16799 The filter accepts the following options.
16800
16801 @table @option
16802 @item width, w
16803 @item height, h
16804 Set the output video dimension expression. Default value is the input
16805 dimension.
16806
16807 If the @var{width} or @var{w} value is 0, the input width is used for
16808 the output. If the @var{height} or @var{h} value is 0, the input height
16809 is used for the output.
16810
16811 If one and only one of the values is -n with n >= 1, the zscale filter
16812 will use a value that maintains the aspect ratio of the input image,
16813 calculated from the other specified dimension. After that it will,
16814 however, make sure that the calculated dimension is divisible by n and
16815 adjust the value if necessary.
16816
16817 If both values are -n with n >= 1, the behavior will be identical to
16818 both values being set to 0 as previously detailed.
16819
16820 See below for the list of accepted constants for use in the dimension
16821 expression.
16822
16823 @item size, s
16824 Set the video size. For the syntax of this option, check the
16825 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16826
16827 @item dither, d
16828 Set the dither type.
16829
16830 Possible values are:
16831 @table @var
16832 @item none
16833 @item ordered
16834 @item random
16835 @item error_diffusion
16836 @end table
16837
16838 Default is none.
16839
16840 @item filter, f
16841 Set the resize filter type.
16842
16843 Possible values are:
16844 @table @var
16845 @item point
16846 @item bilinear
16847 @item bicubic
16848 @item spline16
16849 @item spline36
16850 @item lanczos
16851 @end table
16852
16853 Default is bilinear.
16854
16855 @item range, r
16856 Set the color range.
16857
16858 Possible values are:
16859 @table @var
16860 @item input
16861 @item limited
16862 @item full
16863 @end table
16864
16865 Default is same as input.
16866
16867 @item primaries, p
16868 Set the color primaries.
16869
16870 Possible values are:
16871 @table @var
16872 @item input
16873 @item 709
16874 @item unspecified
16875 @item 170m
16876 @item 240m
16877 @item 2020
16878 @end table
16879
16880 Default is same as input.
16881
16882 @item transfer, t
16883 Set the transfer characteristics.
16884
16885 Possible values are:
16886 @table @var
16887 @item input
16888 @item 709
16889 @item unspecified
16890 @item 601
16891 @item linear
16892 @item 2020_10
16893 @item 2020_12
16894 @item smpte2084
16895 @item iec61966-2-1
16896 @item arib-std-b67
16897 @end table
16898
16899 Default is same as input.
16900
16901 @item matrix, m
16902 Set the colorspace matrix.
16903
16904 Possible value are:
16905 @table @var
16906 @item input
16907 @item 709
16908 @item unspecified
16909 @item 470bg
16910 @item 170m
16911 @item 2020_ncl
16912 @item 2020_cl
16913 @end table
16914
16915 Default is same as input.
16916
16917 @item rangein, rin
16918 Set the input color range.
16919
16920 Possible values are:
16921 @table @var
16922 @item input
16923 @item limited
16924 @item full
16925 @end table
16926
16927 Default is same as input.
16928
16929 @item primariesin, pin
16930 Set the input color primaries.
16931
16932 Possible values are:
16933 @table @var
16934 @item input
16935 @item 709
16936 @item unspecified
16937 @item 170m
16938 @item 240m
16939 @item 2020
16940 @end table
16941
16942 Default is same as input.
16943
16944 @item transferin, tin
16945 Set the input transfer characteristics.
16946
16947 Possible values are:
16948 @table @var
16949 @item input
16950 @item 709
16951 @item unspecified
16952 @item 601
16953 @item linear
16954 @item 2020_10
16955 @item 2020_12
16956 @end table
16957
16958 Default is same as input.
16959
16960 @item matrixin, min
16961 Set the input colorspace matrix.
16962
16963 Possible value are:
16964 @table @var
16965 @item input
16966 @item 709
16967 @item unspecified
16968 @item 470bg
16969 @item 170m
16970 @item 2020_ncl
16971 @item 2020_cl
16972 @end table
16973
16974 @item chromal, c
16975 Set the output chroma location.
16976
16977 Possible values are:
16978 @table @var
16979 @item input
16980 @item left
16981 @item center
16982 @item topleft
16983 @item top
16984 @item bottomleft
16985 @item bottom
16986 @end table
16987
16988 @item chromalin, cin
16989 Set the input chroma location.
16990
16991 Possible values are:
16992 @table @var
16993 @item input
16994 @item left
16995 @item center
16996 @item topleft
16997 @item top
16998 @item bottomleft
16999 @item bottom
17000 @end table
17001
17002 @item npl
17003 Set the nominal peak luminance.
17004 @end table
17005
17006 The values of the @option{w} and @option{h} options are expressions
17007 containing the following constants:
17008
17009 @table @var
17010 @item in_w
17011 @item in_h
17012 The input width and height
17013
17014 @item iw
17015 @item ih
17016 These are the same as @var{in_w} and @var{in_h}.
17017
17018 @item out_w
17019 @item out_h
17020 The output (scaled) width and height
17021
17022 @item ow
17023 @item oh
17024 These are the same as @var{out_w} and @var{out_h}
17025
17026 @item a
17027 The same as @var{iw} / @var{ih}
17028
17029 @item sar
17030 input sample aspect ratio
17031
17032 @item dar
17033 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
17034
17035 @item hsub
17036 @item vsub
17037 horizontal and vertical input chroma subsample values. For example for the
17038 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
17039
17040 @item ohsub
17041 @item ovsub
17042 horizontal and vertical output chroma subsample values. For example for the
17043 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
17044 @end table
17045
17046 @table @option
17047 @end table
17048
17049 @c man end VIDEO FILTERS
17050
17051 @chapter Video Sources
17052 @c man begin VIDEO SOURCES
17053
17054 Below is a description of the currently available video sources.
17055
17056 @section buffer
17057
17058 Buffer video frames, and make them available to the filter chain.
17059
17060 This source is mainly intended for a programmatic use, in particular
17061 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
17062
17063 It accepts the following parameters:
17064
17065 @table @option
17066
17067 @item video_size
17068 Specify the size (width and height) of the buffered video frames. For the
17069 syntax of this option, check the
17070 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17071
17072 @item width
17073 The input video width.
17074
17075 @item height
17076 The input video height.
17077
17078 @item pix_fmt
17079 A string representing the pixel format of the buffered video frames.
17080 It may be a number corresponding to a pixel format, or a pixel format
17081 name.
17082
17083 @item time_base
17084 Specify the timebase assumed by the timestamps of the buffered frames.
17085
17086 @item frame_rate
17087 Specify the frame rate expected for the video stream.
17088
17089 @item pixel_aspect, sar
17090 The sample (pixel) aspect ratio of the input video.
17091
17092 @item sws_param
17093 Specify the optional parameters to be used for the scale filter which
17094 is automatically inserted when an input change is detected in the
17095 input size or format.
17096
17097 @item hw_frames_ctx
17098 When using a hardware pixel format, this should be a reference to an
17099 AVHWFramesContext describing input frames.
17100 @end table
17101
17102 For example:
17103 @example
17104 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
17105 @end example
17106
17107 will instruct the source to accept video frames with size 320x240 and
17108 with format "yuv410p", assuming 1/24 as the timestamps timebase and
17109 square pixels (1:1 sample aspect ratio).
17110 Since the pixel format with name "yuv410p" corresponds to the number 6
17111 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
17112 this example corresponds to:
17113 @example
17114 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
17115 @end example
17116
17117 Alternatively, the options can be specified as a flat string, but this
17118 syntax is deprecated:
17119
17120 @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}]
17121
17122 @section cellauto
17123
17124 Create a pattern generated by an elementary cellular automaton.
17125
17126 The initial state of the cellular automaton can be defined through the
17127 @option{filename} and @option{pattern} options. If such options are
17128 not specified an initial state is created randomly.
17129
17130 At each new frame a new row in the video is filled with the result of
17131 the cellular automaton next generation. The behavior when the whole
17132 frame is filled is defined by the @option{scroll} option.
17133
17134 This source accepts the following options:
17135
17136 @table @option
17137 @item filename, f
17138 Read the initial cellular automaton state, i.e. the starting row, from
17139 the specified file.
17140 In the file, each non-whitespace character is considered an alive
17141 cell, a newline will terminate the row, and further characters in the
17142 file will be ignored.
17143
17144 @item pattern, p
17145 Read the initial cellular automaton state, i.e. the starting row, from
17146 the specified string.
17147
17148 Each non-whitespace character in the string is considered an alive
17149 cell, a newline will terminate the row, and further characters in the
17150 string will be ignored.
17151
17152 @item rate, r
17153 Set the video rate, that is the number of frames generated per second.
17154 Default is 25.
17155
17156 @item random_fill_ratio, ratio
17157 Set the random fill ratio for the initial cellular automaton row. It
17158 is a floating point number value ranging from 0 to 1, defaults to
17159 1/PHI.
17160
17161 This option is ignored when a file or a pattern is specified.
17162
17163 @item random_seed, seed
17164 Set the seed for filling randomly the initial row, must be an integer
17165 included between 0 and UINT32_MAX. If not specified, or if explicitly
17166 set to -1, the filter will try to use a good random seed on a best
17167 effort basis.
17168
17169 @item rule
17170 Set the cellular automaton rule, it is a number ranging from 0 to 255.
17171 Default value is 110.
17172
17173 @item size, s
17174 Set the size of the output video. For the syntax of this option, check the
17175 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17176
17177 If @option{filename} or @option{pattern} is specified, the size is set
17178 by default to the width of the specified initial state row, and the
17179 height is set to @var{width} * PHI.
17180
17181 If @option{size} is set, it must contain the width of the specified
17182 pattern string, and the specified pattern will be centered in the
17183 larger row.
17184
17185 If a filename or a pattern string is not specified, the size value
17186 defaults to "320x518" (used for a randomly generated initial state).
17187
17188 @item scroll
17189 If set to 1, scroll the output upward when all the rows in the output
17190 have been already filled. If set to 0, the new generated row will be
17191 written over the top row just after the bottom row is filled.
17192 Defaults to 1.
17193
17194 @item start_full, full
17195 If set to 1, completely fill the output with generated rows before
17196 outputting the first frame.
17197 This is the default behavior, for disabling set the value to 0.
17198
17199 @item stitch
17200 If set to 1, stitch the left and right row edges together.
17201 This is the default behavior, for disabling set the value to 0.
17202 @end table
17203
17204 @subsection Examples
17205
17206 @itemize
17207 @item
17208 Read the initial state from @file{pattern}, and specify an output of
17209 size 200x400.
17210 @example
17211 cellauto=f=pattern:s=200x400
17212 @end example
17213
17214 @item
17215 Generate a random initial row with a width of 200 cells, with a fill
17216 ratio of 2/3:
17217 @example
17218 cellauto=ratio=2/3:s=200x200
17219 @end example
17220
17221 @item
17222 Create a pattern generated by rule 18 starting by a single alive cell
17223 centered on an initial row with width 100:
17224 @example
17225 cellauto=p=@@:s=100x400:full=0:rule=18
17226 @end example
17227
17228 @item
17229 Specify a more elaborated initial pattern:
17230 @example
17231 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
17232 @end example
17233
17234 @end itemize
17235
17236 @anchor{coreimagesrc}
17237 @section coreimagesrc
17238 Video source generated on GPU using Apple's CoreImage API on OSX.
17239
17240 This video source is a specialized version of the @ref{coreimage} video filter.
17241 Use a core image generator at the beginning of the applied filterchain to
17242 generate the content.
17243
17244 The coreimagesrc video source accepts the following options:
17245 @table @option
17246 @item list_generators
17247 List all available generators along with all their respective options as well as
17248 possible minimum and maximum values along with the default values.
17249 @example
17250 list_generators=true
17251 @end example
17252
17253 @item size, s
17254 Specify the size of the sourced video. For the syntax of this option, check the
17255 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17256 The default value is @code{320x240}.
17257
17258 @item rate, r
17259 Specify the frame rate of the sourced video, as the number of frames
17260 generated per second. It has to be a string in the format
17261 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
17262 number or a valid video frame rate abbreviation. The default value is
17263 "25".
17264
17265 @item sar
17266 Set the sample aspect ratio of the sourced video.
17267
17268 @item duration, d
17269 Set the duration of the sourced video. See
17270 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
17271 for the accepted syntax.
17272
17273 If not specified, or the expressed duration is negative, the video is
17274 supposed to be generated forever.
17275 @end table
17276
17277 Additionally, all options of the @ref{coreimage} video filter are accepted.
17278 A complete filterchain can be used for further processing of the
17279 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
17280 and examples for details.
17281
17282 @subsection Examples
17283
17284 @itemize
17285
17286 @item
17287 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
17288 given as complete and escaped command-line for Apple's standard bash shell:
17289 @example
17290 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
17291 @end example
17292 This example is equivalent to the QRCode example of @ref{coreimage} without the
17293 need for a nullsrc video source.
17294 @end itemize
17295
17296
17297 @section mandelbrot
17298
17299 Generate a Mandelbrot set fractal, and progressively zoom towards the
17300 point specified with @var{start_x} and @var{start_y}.
17301
17302 This source accepts the following options:
17303
17304 @table @option
17305
17306 @item end_pts
17307 Set the terminal pts value. Default value is 400.
17308
17309 @item end_scale
17310 Set the terminal scale value.
17311 Must be a floating point value. Default value is 0.3.
17312
17313 @item inner
17314 Set the inner coloring mode, that is the algorithm used to draw the
17315 Mandelbrot fractal internal region.
17316
17317 It shall assume one of the following values:
17318 @table @option
17319 @item black
17320 Set black mode.
17321 @item convergence
17322 Show time until convergence.
17323 @item mincol
17324 Set color based on point closest to the origin of the iterations.
17325 @item period
17326 Set period mode.
17327 @end table
17328
17329 Default value is @var{mincol}.
17330
17331 @item bailout
17332 Set the bailout value. Default value is 10.0.
17333
17334 @item maxiter
17335 Set the maximum of iterations performed by the rendering
17336 algorithm. Default value is 7189.
17337
17338 @item outer
17339 Set outer coloring mode.
17340 It shall assume one of following values:
17341 @table @option
17342 @item iteration_count
17343 Set iteration cound mode.
17344 @item normalized_iteration_count
17345 set normalized iteration count mode.
17346 @end table
17347 Default value is @var{normalized_iteration_count}.
17348
17349 @item rate, r
17350 Set frame rate, expressed as number of frames per second. Default
17351 value is "25".
17352
17353 @item size, s
17354 Set frame size. For the syntax of this option, check the @ref{video size syntax,,"Video
17355 size" section in the ffmpeg-utils manual,ffmpeg-utils}. Default value is "640x480".
17356
17357 @item start_scale
17358 Set the initial scale value. Default value is 3.0.
17359
17360 @item start_x
17361 Set the initial x position. Must be a floating point value between
17362 -100 and 100. Default value is -0.743643887037158704752191506114774.
17363
17364 @item start_y
17365 Set the initial y position. Must be a floating point value between
17366 -100 and 100. Default value is -0.131825904205311970493132056385139.
17367 @end table
17368
17369 @section mptestsrc
17370
17371 Generate various test patterns, as generated by the MPlayer test filter.
17372
17373 The size of the generated video is fixed, and is 256x256.
17374 This source is useful in particular for testing encoding features.
17375
17376 This source accepts the following options:
17377
17378 @table @option
17379
17380 @item rate, r
17381 Specify the frame rate of the sourced video, as the number of frames
17382 generated per second. It has to be a string in the format
17383 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
17384 number or a valid video frame rate abbreviation. The default value is
17385 "25".
17386
17387 @item duration, d
17388 Set the duration of the sourced video. See
17389 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
17390 for the accepted syntax.
17391
17392 If not specified, or the expressed duration is negative, the video is
17393 supposed to be generated forever.
17394
17395 @item test, t
17396
17397 Set the number or the name of the test to perform. Supported tests are:
17398 @table @option
17399 @item dc_luma
17400 @item dc_chroma
17401 @item freq_luma
17402 @item freq_chroma
17403 @item amp_luma
17404 @item amp_chroma
17405 @item cbp
17406 @item mv
17407 @item ring1
17408 @item ring2
17409 @item all
17410
17411 @end table
17412
17413 Default value is "all", which will cycle through the list of all tests.
17414 @end table
17415
17416 Some examples:
17417 @example
17418 mptestsrc=t=dc_luma
17419 @end example
17420
17421 will generate a "dc_luma" test pattern.
17422
17423 @section frei0r_src
17424
17425 Provide a frei0r source.
17426
17427 To enable compilation of this filter you need to install the frei0r
17428 header and configure FFmpeg with @code{--enable-frei0r}.
17429
17430 This source accepts the following parameters:
17431
17432 @table @option
17433
17434 @item size
17435 The size of the video to generate. For the syntax of this option, check the
17436 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17437
17438 @item framerate
17439 The framerate of the generated video. It may be a string of the form
17440 @var{num}/@var{den} or a frame rate abbreviation.
17441
17442 @item filter_name
17443 The name to the frei0r source to load. For more information regarding frei0r and
17444 how to set the parameters, read the @ref{frei0r} section in the video filters
17445 documentation.
17446
17447 @item filter_params
17448 A '|'-separated list of parameters to pass to the frei0r source.
17449
17450 @end table
17451
17452 For example, to generate a frei0r partik0l source with size 200x200
17453 and frame rate 10 which is overlaid on the overlay filter main input:
17454 @example
17455 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
17456 @end example
17457
17458 @section life
17459
17460 Generate a life pattern.
17461
17462 This source is based on a generalization of John Conway's life game.
17463
17464 The sourced input represents a life grid, each pixel represents a cell
17465 which can be in one of two possible states, alive or dead. Every cell
17466 interacts with its eight neighbours, which are the cells that are
17467 horizontally, vertically, or diagonally adjacent.
17468
17469 At each interaction the grid evolves according to the adopted rule,
17470 which specifies the number of neighbor alive cells which will make a
17471 cell stay alive or born. The @option{rule} option allows one to specify
17472 the rule to adopt.
17473
17474 This source accepts the following options:
17475
17476 @table @option
17477 @item filename, f
17478 Set the file from which to read the initial grid state. In the file,
17479 each non-whitespace character is considered an alive cell, and newline
17480 is used to delimit the end of each row.
17481
17482 If this option is not specified, the initial grid is generated
17483 randomly.
17484
17485 @item rate, r
17486 Set the video rate, that is the number of frames generated per second.
17487 Default is 25.
17488
17489 @item random_fill_ratio, ratio
17490 Set the random fill ratio for the initial random grid. It is a
17491 floating point number value ranging from 0 to 1, defaults to 1/PHI.
17492 It is ignored when a file is specified.
17493
17494 @item random_seed, seed
17495 Set the seed for filling the initial random grid, must be an integer
17496 included between 0 and UINT32_MAX. If not specified, or if explicitly
17497 set to -1, the filter will try to use a good random seed on a best
17498 effort basis.
17499
17500 @item rule
17501 Set the life rule.
17502
17503 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
17504 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
17505 @var{NS} specifies the number of alive neighbor cells which make a
17506 live cell stay alive, and @var{NB} the number of alive neighbor cells
17507 which make a dead cell to become alive (i.e. to "born").
17508 "s" and "b" can be used in place of "S" and "B", respectively.
17509
17510 Alternatively a rule can be specified by an 18-bits integer. The 9
17511 high order bits are used to encode the next cell state if it is alive
17512 for each number of neighbor alive cells, the low order bits specify
17513 the rule for "borning" new cells. Higher order bits encode for an
17514 higher number of neighbor cells.
17515 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
17516 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
17517
17518 Default value is "S23/B3", which is the original Conway's game of life
17519 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
17520 cells, and will born a new cell if there are three alive cells around
17521 a dead cell.
17522
17523 @item size, s
17524 Set the size of the output video. For the syntax of this option, check the
17525 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17526
17527 If @option{filename} is specified, the size is set by default to the
17528 same size of the input file. If @option{size} is set, it must contain
17529 the size specified in the input file, and the initial grid defined in
17530 that file is centered in the larger resulting area.
17531
17532 If a filename is not specified, the size value defaults to "320x240"
17533 (used for a randomly generated initial grid).
17534
17535 @item stitch
17536 If set to 1, stitch the left and right grid edges together, and the
17537 top and bottom edges also. Defaults to 1.
17538
17539 @item mold
17540 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
17541 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
17542 value from 0 to 255.
17543
17544 @item life_color
17545 Set the color of living (or new born) cells.
17546
17547 @item death_color
17548 Set the color of dead cells. If @option{mold} is set, this is the first color
17549 used to represent a dead cell.
17550
17551 @item mold_color
17552 Set mold color, for definitely dead and moldy cells.
17553
17554 For the syntax of these 3 color options, check the @ref{color syntax,,"Color" section in the
17555 ffmpeg-utils manual,ffmpeg-utils}.
17556 @end table
17557
17558 @subsection Examples
17559
17560 @itemize
17561 @item
17562 Read a grid from @file{pattern}, and center it on a grid of size
17563 300x300 pixels:
17564 @example
17565 life=f=pattern:s=300x300
17566 @end example
17567
17568 @item
17569 Generate a random grid of size 200x200, with a fill ratio of 2/3:
17570 @example
17571 life=ratio=2/3:s=200x200
17572 @end example
17573
17574 @item
17575 Specify a custom rule for evolving a randomly generated grid:
17576 @example
17577 life=rule=S14/B34
17578 @end example
17579
17580 @item
17581 Full example with slow death effect (mold) using @command{ffplay}:
17582 @example
17583 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
17584 @end example
17585 @end itemize
17586
17587 @anchor{allrgb}
17588 @anchor{allyuv}
17589 @anchor{color}
17590 @anchor{haldclutsrc}
17591 @anchor{nullsrc}
17592 @anchor{rgbtestsrc}
17593 @anchor{smptebars}
17594 @anchor{smptehdbars}
17595 @anchor{testsrc}
17596 @anchor{testsrc2}
17597 @anchor{yuvtestsrc}
17598 @section allrgb, allyuv, color, haldclutsrc, nullsrc, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
17599
17600 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
17601
17602 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
17603
17604 The @code{color} source provides an uniformly colored input.
17605
17606 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
17607 @ref{haldclut} filter.
17608
17609 The @code{nullsrc} source returns unprocessed video frames. It is
17610 mainly useful to be employed in analysis / debugging tools, or as the
17611 source for filters which ignore the input data.
17612
17613 The @code{rgbtestsrc} source generates an RGB test pattern useful for
17614 detecting RGB vs BGR issues. You should see a red, green and blue
17615 stripe from top to bottom.
17616
17617 The @code{smptebars} source generates a color bars pattern, based on
17618 the SMPTE Engineering Guideline EG 1-1990.
17619
17620 The @code{smptehdbars} source generates a color bars pattern, based on
17621 the SMPTE RP 219-2002.
17622
17623 The @code{testsrc} source generates a test video pattern, showing a
17624 color pattern, a scrolling gradient and a timestamp. This is mainly
17625 intended for testing purposes.
17626
17627 The @code{testsrc2} source is similar to testsrc, but supports more
17628 pixel formats instead of just @code{rgb24}. This allows using it as an
17629 input for other tests without requiring a format conversion.
17630
17631 The @code{yuvtestsrc} source generates an YUV test pattern. You should
17632 see a y, cb and cr stripe from top to bottom.
17633
17634 The sources accept the following parameters:
17635
17636 @table @option
17637
17638 @item level
17639 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
17640 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
17641 pixels to be used as identity matrix for 3D lookup tables. Each component is
17642 coded on a @code{1/(N*N)} scale.
17643
17644 @item color, c
17645 Specify the color of the source, only available in the @code{color}
17646 source. For the syntax of this option, check the
17647 @ref{color syntax,,"Color" section in the ffmpeg-utils manual,ffmpeg-utils}.
17648
17649 @item size, s
17650 Specify the size of the sourced video. For the syntax of this option, check the
17651 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17652 The default value is @code{320x240}.
17653
17654 This option is not available with the @code{allrgb}, @code{allyuv}, and
17655 @code{haldclutsrc} filters.
17656
17657 @item rate, r
17658 Specify the frame rate of the sourced video, as the number of frames
17659 generated per second. It has to be a string in the format
17660 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
17661 number or a valid video frame rate abbreviation. The default value is
17662 "25".
17663
17664 @item duration, d
17665 Set the duration of the sourced video. See
17666 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
17667 for the accepted syntax.
17668
17669 If not specified, or the expressed duration is negative, the video is
17670 supposed to be generated forever.
17671
17672 @item sar
17673 Set the sample aspect ratio of the sourced video.
17674
17675 @item alpha
17676 Specify the alpha (opacity) of the background, only available in the
17677 @code{testsrc2} source. The value must be between 0 (fully transparent) and
17678 255 (fully opaque, the default).
17679
17680 @item decimals, n
17681 Set the number of decimals to show in the timestamp, only available in the
17682 @code{testsrc} source.
17683
17684 The displayed timestamp value will correspond to the original
17685 timestamp value multiplied by the power of 10 of the specified
17686 value. Default value is 0.
17687 @end table
17688
17689 @subsection Examples
17690
17691 @itemize
17692 @item
17693 Generate a video with a duration of 5.3 seconds, with size
17694 176x144 and a frame rate of 10 frames per second:
17695 @example
17696 testsrc=duration=5.3:size=qcif:rate=10
17697 @end example
17698
17699 @item
17700 The following graph description will generate a red source
17701 with an opacity of 0.2, with size "qcif" and a frame rate of 10
17702 frames per second:
17703 @example
17704 color=c=red@@0.2:s=qcif:r=10
17705 @end example
17706
17707 @item
17708 If the input content is to be ignored, @code{nullsrc} can be used. The
17709 following command generates noise in the luminance plane by employing
17710 the @code{geq} filter:
17711 @example
17712 nullsrc=s=256x256, geq=random(1)*255:128:128
17713 @end example
17714 @end itemize
17715
17716 @subsection Commands
17717
17718 The @code{color} source supports the following commands:
17719
17720 @table @option
17721 @item c, color
17722 Set the color of the created image. Accepts the same syntax of the
17723 corresponding @option{color} option.
17724 @end table
17725
17726 @section openclsrc
17727
17728 Generate video using an OpenCL program.
17729
17730 @table @option
17731
17732 @item source
17733 OpenCL program source file.
17734
17735 @item kernel
17736 Kernel name in program.
17737
17738 @item size, s
17739 Size of frames to generate.  This must be set.
17740
17741 @item format
17742 Pixel format to use for the generated frames.  This must be set.
17743
17744 @item rate, r
17745 Number of frames generated every second.  Default value is '25'.
17746
17747 @end table
17748
17749 For details of how the program loading works, see the @ref{program_opencl}
17750 filter.
17751
17752 Example programs:
17753
17754 @itemize
17755 @item
17756 Generate a colour ramp by setting pixel values from the position of the pixel
17757 in the output image.  (Note that this will work with all pixel formats, but
17758 the generated output will not be the same.)
17759 @verbatim
17760 __kernel void ramp(__write_only image2d_t dst,
17761                    unsigned int index)
17762 {
17763     int2 loc = (int2)(get_global_id(0), get_global_id(1));
17764
17765     float4 val;
17766     val.xy = val.zw = convert_float2(loc) / convert_float2(get_image_dim(dst));
17767
17768     write_imagef(dst, loc, val);
17769 }
17770 @end verbatim
17771
17772 @item
17773 Generate a Sierpinski carpet pattern, panning by a single pixel each frame.
17774 @verbatim
17775 __kernel void sierpinski_carpet(__write_only image2d_t dst,
17776                                 unsigned int index)
17777 {
17778     int2 loc = (int2)(get_global_id(0), get_global_id(1));
17779
17780     float4 value = 0.0f;
17781     int x = loc.x + index;
17782     int y = loc.y + index;
17783     while (x > 0 || y > 0) {
17784         if (x % 3 == 1 && y % 3 == 1) {
17785             value = 1.0f;
17786             break;
17787         }
17788         x /= 3;
17789         y /= 3;
17790     }
17791
17792     write_imagef(dst, loc, value);
17793 }
17794 @end verbatim
17795
17796 @end itemize
17797
17798 @c man end VIDEO SOURCES
17799
17800 @chapter Video Sinks
17801 @c man begin VIDEO SINKS
17802
17803 Below is a description of the currently available video sinks.
17804
17805 @section buffersink
17806
17807 Buffer video frames, and make them available to the end of the filter
17808 graph.
17809
17810 This sink is mainly intended for programmatic use, in particular
17811 through the interface defined in @file{libavfilter/buffersink.h}
17812 or the options system.
17813
17814 It accepts a pointer to an AVBufferSinkContext structure, which
17815 defines the incoming buffers' formats, to be passed as the opaque
17816 parameter to @code{avfilter_init_filter} for initialization.
17817
17818 @section nullsink
17819
17820 Null video sink: do absolutely nothing with the input video. It is
17821 mainly useful as a template and for use in analysis / debugging
17822 tools.
17823
17824 @c man end VIDEO SINKS
17825
17826 @chapter Multimedia Filters
17827 @c man begin MULTIMEDIA FILTERS
17828
17829 Below is a description of the currently available multimedia filters.
17830
17831 @section abitscope
17832
17833 Convert input audio to a video output, displaying the audio bit scope.
17834
17835 The filter accepts the following options:
17836
17837 @table @option
17838 @item rate, r
17839 Set frame rate, expressed as number of frames per second. Default
17840 value is "25".
17841
17842 @item size, s
17843 Specify the video size for the output. For the syntax of this option, check the
17844 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17845 Default value is @code{1024x256}.
17846
17847 @item colors
17848 Specify list of colors separated by space or by '|' which will be used to
17849 draw channels. Unrecognized or missing colors will be replaced
17850 by white color.
17851 @end table
17852
17853 @section ahistogram
17854
17855 Convert input audio to a video output, displaying the volume histogram.
17856
17857 The filter accepts the following options:
17858
17859 @table @option
17860 @item dmode
17861 Specify how histogram is calculated.
17862
17863 It accepts the following values:
17864 @table @samp
17865 @item single
17866 Use single histogram for all channels.
17867 @item separate
17868 Use separate histogram for each channel.
17869 @end table
17870 Default is @code{single}.
17871
17872 @item rate, r
17873 Set frame rate, expressed as number of frames per second. Default
17874 value is "25".
17875
17876 @item size, s
17877 Specify the video size for the output. For the syntax of this option, check the
17878 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17879 Default value is @code{hd720}.
17880
17881 @item scale
17882 Set display scale.
17883
17884 It accepts the following values:
17885 @table @samp
17886 @item log
17887 logarithmic
17888 @item sqrt
17889 square root
17890 @item cbrt
17891 cubic root
17892 @item lin
17893 linear
17894 @item rlog
17895 reverse logarithmic
17896 @end table
17897 Default is @code{log}.
17898
17899 @item ascale
17900 Set amplitude scale.
17901
17902 It accepts the following values:
17903 @table @samp
17904 @item log
17905 logarithmic
17906 @item lin
17907 linear
17908 @end table
17909 Default is @code{log}.
17910
17911 @item acount
17912 Set how much frames to accumulate in histogram.
17913 Defauls is 1. Setting this to -1 accumulates all frames.
17914
17915 @item rheight
17916 Set histogram ratio of window height.
17917
17918 @item slide
17919 Set sonogram sliding.
17920
17921 It accepts the following values:
17922 @table @samp
17923 @item replace
17924 replace old rows with new ones.
17925 @item scroll
17926 scroll from top to bottom.
17927 @end table
17928 Default is @code{replace}.
17929 @end table
17930
17931 @section aphasemeter
17932
17933 Convert input audio to a video output, displaying the audio phase.
17934
17935 The filter accepts the following options:
17936
17937 @table @option
17938 @item rate, r
17939 Set the output frame rate. Default value is @code{25}.
17940
17941 @item size, s
17942 Set the video size for the output. For the syntax of this option, check the
17943 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17944 Default value is @code{800x400}.
17945
17946 @item rc
17947 @item gc
17948 @item bc
17949 Specify the red, green, blue contrast. Default values are @code{2},
17950 @code{7} and @code{1}.
17951 Allowed range is @code{[0, 255]}.
17952
17953 @item mpc
17954 Set color which will be used for drawing median phase. If color is
17955 @code{none} which is default, no median phase value will be drawn.
17956
17957 @item video
17958 Enable video output. Default is enabled.
17959 @end table
17960
17961 The filter also exports the frame metadata @code{lavfi.aphasemeter.phase} which
17962 represents mean phase of current audio frame. Value is in range @code{[-1, 1]}.
17963 The @code{-1} means left and right channels are completely out of phase and
17964 @code{1} means channels are in phase.
17965
17966 @section avectorscope
17967
17968 Convert input audio to a video output, representing the audio vector
17969 scope.
17970
17971 The filter is used to measure the difference between channels of stereo
17972 audio stream. A monoaural signal, consisting of identical left and right
17973 signal, results in straight vertical line. Any stereo separation is visible
17974 as a deviation from this line, creating a Lissajous figure.
17975 If the straight (or deviation from it) but horizontal line appears this
17976 indicates that the left and right channels are out of phase.
17977
17978 The filter accepts the following options:
17979
17980 @table @option
17981 @item mode, m
17982 Set the vectorscope mode.
17983
17984 Available values are:
17985 @table @samp
17986 @item lissajous
17987 Lissajous rotated by 45 degrees.
17988
17989 @item lissajous_xy
17990 Same as above but not rotated.
17991
17992 @item polar
17993 Shape resembling half of circle.
17994 @end table
17995
17996 Default value is @samp{lissajous}.
17997
17998 @item size, s
17999 Set the video size for the output. For the syntax of this option, check the
18000 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18001 Default value is @code{400x400}.
18002
18003 @item rate, r
18004 Set the output frame rate. Default value is @code{25}.
18005
18006 @item rc
18007 @item gc
18008 @item bc
18009 @item ac
18010 Specify the red, green, blue and alpha contrast. Default values are @code{40},
18011 @code{160}, @code{80} and @code{255}.
18012 Allowed range is @code{[0, 255]}.
18013
18014 @item rf
18015 @item gf
18016 @item bf
18017 @item af
18018 Specify the red, green, blue and alpha fade. Default values are @code{15},
18019 @code{10}, @code{5} and @code{5}.
18020 Allowed range is @code{[0, 255]}.
18021
18022 @item zoom
18023 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[0, 10]}.
18024 Values lower than @var{1} will auto adjust zoom factor to maximal possible value.
18025
18026 @item draw
18027 Set the vectorscope drawing mode.
18028
18029 Available values are:
18030 @table @samp
18031 @item dot
18032 Draw dot for each sample.
18033
18034 @item line
18035 Draw line between previous and current sample.
18036 @end table
18037
18038 Default value is @samp{dot}.
18039
18040 @item scale
18041 Specify amplitude scale of audio samples.
18042
18043 Available values are:
18044 @table @samp
18045 @item lin
18046 Linear.
18047
18048 @item sqrt
18049 Square root.
18050
18051 @item cbrt
18052 Cubic root.
18053
18054 @item log
18055 Logarithmic.
18056 @end table
18057
18058 @item swap
18059 Swap left channel axis with right channel axis.
18060
18061 @item mirror
18062 Mirror axis.
18063
18064 @table @samp
18065 @item none
18066 No mirror.
18067
18068 @item x
18069 Mirror only x axis.
18070
18071 @item y
18072 Mirror only y axis.
18073
18074 @item xy
18075 Mirror both axis.
18076 @end table
18077
18078 @end table
18079
18080 @subsection Examples
18081
18082 @itemize
18083 @item
18084 Complete example using @command{ffplay}:
18085 @example
18086 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
18087              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
18088 @end example
18089 @end itemize
18090
18091 @section bench, abench
18092
18093 Benchmark part of a filtergraph.
18094
18095 The filter accepts the following options:
18096
18097 @table @option
18098 @item action
18099 Start or stop a timer.
18100
18101 Available values are:
18102 @table @samp
18103 @item start
18104 Get the current time, set it as frame metadata (using the key
18105 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
18106
18107 @item stop
18108 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
18109 the input frame metadata to get the time difference. Time difference, average,
18110 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
18111 @code{min}) are then printed. The timestamps are expressed in seconds.
18112 @end table
18113 @end table
18114
18115 @subsection Examples
18116
18117 @itemize
18118 @item
18119 Benchmark @ref{selectivecolor} filter:
18120 @example
18121 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
18122 @end example
18123 @end itemize
18124
18125 @section concat
18126
18127 Concatenate audio and video streams, joining them together one after the
18128 other.
18129
18130 The filter works on segments of synchronized video and audio streams. All
18131 segments must have the same number of streams of each type, and that will
18132 also be the number of streams at output.
18133
18134 The filter accepts the following options:
18135
18136 @table @option
18137
18138 @item n
18139 Set the number of segments. Default is 2.
18140
18141 @item v
18142 Set the number of output video streams, that is also the number of video
18143 streams in each segment. Default is 1.
18144
18145 @item a
18146 Set the number of output audio streams, that is also the number of audio
18147 streams in each segment. Default is 0.
18148
18149 @item unsafe
18150 Activate unsafe mode: do not fail if segments have a different format.
18151
18152 @end table
18153
18154 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
18155 @var{a} audio outputs.
18156
18157 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
18158 segment, in the same order as the outputs, then the inputs for the second
18159 segment, etc.
18160
18161 Related streams do not always have exactly the same duration, for various
18162 reasons including codec frame size or sloppy authoring. For that reason,
18163 related synchronized streams (e.g. a video and its audio track) should be
18164 concatenated at once. The concat filter will use the duration of the longest
18165 stream in each segment (except the last one), and if necessary pad shorter
18166 audio streams with silence.
18167
18168 For this filter to work correctly, all segments must start at timestamp 0.
18169
18170 All corresponding streams must have the same parameters in all segments; the
18171 filtering system will automatically select a common pixel format for video
18172 streams, and a common sample format, sample rate and channel layout for
18173 audio streams, but other settings, such as resolution, must be converted
18174 explicitly by the user.
18175
18176 Different frame rates are acceptable but will result in variable frame rate
18177 at output; be sure to configure the output file to handle it.
18178
18179 @subsection Examples
18180
18181 @itemize
18182 @item
18183 Concatenate an opening, an episode and an ending, all in bilingual version
18184 (video in stream 0, audio in streams 1 and 2):
18185 @example
18186 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
18187   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
18188    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
18189   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
18190 @end example
18191
18192 @item
18193 Concatenate two parts, handling audio and video separately, using the
18194 (a)movie sources, and adjusting the resolution:
18195 @example
18196 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
18197 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
18198 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
18199 @end example
18200 Note that a desync will happen at the stitch if the audio and video streams
18201 do not have exactly the same duration in the first file.
18202
18203 @end itemize
18204
18205 @subsection Commands
18206
18207 This filter supports the following commands:
18208 @table @option
18209 @item next
18210 Close the current segment and step to the next one
18211 @end table
18212
18213 @section drawgraph, adrawgraph
18214
18215 Draw a graph using input video or audio metadata.
18216
18217 It accepts the following parameters:
18218
18219 @table @option
18220 @item m1
18221 Set 1st frame metadata key from which metadata values will be used to draw a graph.
18222
18223 @item fg1
18224 Set 1st foreground color expression.
18225
18226 @item m2
18227 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
18228
18229 @item fg2
18230 Set 2nd foreground color expression.
18231
18232 @item m3
18233 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
18234
18235 @item fg3
18236 Set 3rd foreground color expression.
18237
18238 @item m4
18239 Set 4th frame metadata key from which metadata values will be used to draw a graph.
18240
18241 @item fg4
18242 Set 4th foreground color expression.
18243
18244 @item min
18245 Set minimal value of metadata value.
18246
18247 @item max
18248 Set maximal value of metadata value.
18249
18250 @item bg
18251 Set graph background color. Default is white.
18252
18253 @item mode
18254 Set graph mode.
18255
18256 Available values for mode is:
18257 @table @samp
18258 @item bar
18259 @item dot
18260 @item line
18261 @end table
18262
18263 Default is @code{line}.
18264
18265 @item slide
18266 Set slide mode.
18267
18268 Available values for slide is:
18269 @table @samp
18270 @item frame
18271 Draw new frame when right border is reached.
18272
18273 @item replace
18274 Replace old columns with new ones.
18275
18276 @item scroll
18277 Scroll from right to left.
18278
18279 @item rscroll
18280 Scroll from left to right.
18281
18282 @item picture
18283 Draw single picture.
18284 @end table
18285
18286 Default is @code{frame}.
18287
18288 @item size
18289 Set size of graph video. For the syntax of this option, check the
18290 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18291 The default value is @code{900x256}.
18292
18293 The foreground color expressions can use the following variables:
18294 @table @option
18295 @item MIN
18296 Minimal value of metadata value.
18297
18298 @item MAX
18299 Maximal value of metadata value.
18300
18301 @item VAL
18302 Current metadata key value.
18303 @end table
18304
18305 The color is defined as 0xAABBGGRR.
18306 @end table
18307
18308 Example using metadata from @ref{signalstats} filter:
18309 @example
18310 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
18311 @end example
18312
18313 Example using metadata from @ref{ebur128} filter:
18314 @example
18315 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
18316 @end example
18317
18318 @anchor{ebur128}
18319 @section ebur128
18320
18321 EBU R128 scanner filter. This filter takes an audio stream as input and outputs
18322 it unchanged. By default, it logs a message at a frequency of 10Hz with the
18323 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
18324 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
18325
18326 The filter also has a video output (see the @var{video} option) with a real
18327 time graph to observe the loudness evolution. The graphic contains the logged
18328 message mentioned above, so it is not printed anymore when this option is set,
18329 unless the verbose logging is set. The main graphing area contains the
18330 short-term loudness (3 seconds of analysis), and the gauge on the right is for
18331 the momentary loudness (400 milliseconds).
18332
18333 More information about the Loudness Recommendation EBU R128 on
18334 @url{http://tech.ebu.ch/loudness}.
18335
18336 The filter accepts the following options:
18337
18338 @table @option
18339
18340 @item video
18341 Activate the video output. The audio stream is passed unchanged whether this
18342 option is set or no. The video stream will be the first output stream if
18343 activated. Default is @code{0}.
18344
18345 @item size
18346 Set the video size. This option is for video only. For the syntax of this
18347 option, check the
18348 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18349 Default and minimum resolution is @code{640x480}.
18350
18351 @item meter
18352 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
18353 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
18354 other integer value between this range is allowed.
18355
18356 @item metadata
18357 Set metadata injection. If set to @code{1}, the audio input will be segmented
18358 into 100ms output frames, each of them containing various loudness information
18359 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
18360
18361 Default is @code{0}.
18362
18363 @item framelog
18364 Force the frame logging level.
18365
18366 Available values are:
18367 @table @samp
18368 @item info
18369 information logging level
18370 @item verbose
18371 verbose logging level
18372 @end table
18373
18374 By default, the logging level is set to @var{info}. If the @option{video} or
18375 the @option{metadata} options are set, it switches to @var{verbose}.
18376
18377 @item peak
18378 Set peak mode(s).
18379
18380 Available modes can be cumulated (the option is a @code{flag} type). Possible
18381 values are:
18382 @table @samp
18383 @item none
18384 Disable any peak mode (default).
18385 @item sample
18386 Enable sample-peak mode.
18387
18388 Simple peak mode looking for the higher sample value. It logs a message
18389 for sample-peak (identified by @code{SPK}).
18390 @item true
18391 Enable true-peak mode.
18392
18393 If enabled, the peak lookup is done on an over-sampled version of the input
18394 stream for better peak accuracy. It logs a message for true-peak.
18395 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
18396 This mode requires a build with @code{libswresample}.
18397 @end table
18398
18399 @item dualmono
18400 Treat mono input files as "dual mono". If a mono file is intended for playback
18401 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
18402 If set to @code{true}, this option will compensate for this effect.
18403 Multi-channel input files are not affected by this option.
18404
18405 @item panlaw
18406 Set a specific pan law to be used for the measurement of dual mono files.
18407 This parameter is optional, and has a default value of -3.01dB.
18408 @end table
18409
18410 @subsection Examples
18411
18412 @itemize
18413 @item
18414 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
18415 @example
18416 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
18417 @end example
18418
18419 @item
18420 Run an analysis with @command{ffmpeg}:
18421 @example
18422 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
18423 @end example
18424 @end itemize
18425
18426 @section interleave, ainterleave
18427
18428 Temporally interleave frames from several inputs.
18429
18430 @code{interleave} works with video inputs, @code{ainterleave} with audio.
18431
18432 These filters read frames from several inputs and send the oldest
18433 queued frame to the output.
18434
18435 Input streams must have well defined, monotonically increasing frame
18436 timestamp values.
18437
18438 In order to submit one frame to output, these filters need to enqueue
18439 at least one frame for each input, so they cannot work in case one
18440 input is not yet terminated and will not receive incoming frames.
18441
18442 For example consider the case when one input is a @code{select} filter
18443 which always drops input frames. The @code{interleave} filter will keep
18444 reading from that input, but it will never be able to send new frames
18445 to output until the input sends an end-of-stream signal.
18446
18447 Also, depending on inputs synchronization, the filters will drop
18448 frames in case one input receives more frames than the other ones, and
18449 the queue is already filled.
18450
18451 These filters accept the following options:
18452
18453 @table @option
18454 @item nb_inputs, n
18455 Set the number of different inputs, it is 2 by default.
18456 @end table
18457
18458 @subsection Examples
18459
18460 @itemize
18461 @item
18462 Interleave frames belonging to different streams using @command{ffmpeg}:
18463 @example
18464 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
18465 @end example
18466
18467 @item
18468 Add flickering blur effect:
18469 @example
18470 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
18471 @end example
18472 @end itemize
18473
18474 @section metadata, ametadata
18475
18476 Manipulate frame metadata.
18477
18478 This filter accepts the following options:
18479
18480 @table @option
18481 @item mode
18482 Set mode of operation of the filter.
18483
18484 Can be one of the following:
18485
18486 @table @samp
18487 @item select
18488 If both @code{value} and @code{key} is set, select frames
18489 which have such metadata. If only @code{key} is set, select
18490 every frame that has such key in metadata.
18491
18492 @item add
18493 Add new metadata @code{key} and @code{value}. If key is already available
18494 do nothing.
18495
18496 @item modify
18497 Modify value of already present key.
18498
18499 @item delete
18500 If @code{value} is set, delete only keys that have such value.
18501 Otherwise, delete key. If @code{key} is not set, delete all metadata values in
18502 the frame.
18503
18504 @item print
18505 Print key and its value if metadata was found. If @code{key} is not set print all
18506 metadata values available in frame.
18507 @end table
18508
18509 @item key
18510 Set key used with all modes. Must be set for all modes except @code{print} and @code{delete}.
18511
18512 @item value
18513 Set metadata value which will be used. This option is mandatory for
18514 @code{modify} and @code{add} mode.
18515
18516 @item function
18517 Which function to use when comparing metadata value and @code{value}.
18518
18519 Can be one of following:
18520
18521 @table @samp
18522 @item same_str
18523 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
18524
18525 @item starts_with
18526 Values are interpreted as strings, returns true if metadata value starts with
18527 the @code{value} option string.
18528
18529 @item less
18530 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
18531
18532 @item equal
18533 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
18534
18535 @item greater
18536 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
18537
18538 @item expr
18539 Values are interpreted as floats, returns true if expression from option @code{expr}
18540 evaluates to true.
18541 @end table
18542
18543 @item expr
18544 Set expression which is used when @code{function} is set to @code{expr}.
18545 The expression is evaluated through the eval API and can contain the following
18546 constants:
18547
18548 @table @option
18549 @item VALUE1
18550 Float representation of @code{value} from metadata key.
18551
18552 @item VALUE2
18553 Float representation of @code{value} as supplied by user in @code{value} option.
18554 @end table
18555
18556 @item file
18557 If specified in @code{print} mode, output is written to the named file. Instead of
18558 plain filename any writable url can be specified. Filename ``-'' is a shorthand
18559 for standard output. If @code{file} option is not set, output is written to the log
18560 with AV_LOG_INFO loglevel.
18561
18562 @end table
18563
18564 @subsection Examples
18565
18566 @itemize
18567 @item
18568 Print all metadata values for frames with key @code{lavfi.signalstats.YDIF} with values
18569 between 0 and 1.
18570 @example
18571 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
18572 @end example
18573 @item
18574 Print silencedetect output to file @file{metadata.txt}.
18575 @example
18576 silencedetect,ametadata=mode=print:file=metadata.txt
18577 @end example
18578 @item
18579 Direct all metadata to a pipe with file descriptor 4.
18580 @example
18581 metadata=mode=print:file='pipe\:4'
18582 @end example
18583 @end itemize
18584
18585 @section perms, aperms
18586
18587 Set read/write permissions for the output frames.
18588
18589 These filters are mainly aimed at developers to test direct path in the
18590 following filter in the filtergraph.
18591
18592 The filters accept the following options:
18593
18594 @table @option
18595 @item mode
18596 Select the permissions mode.
18597
18598 It accepts the following values:
18599 @table @samp
18600 @item none
18601 Do nothing. This is the default.
18602 @item ro
18603 Set all the output frames read-only.
18604 @item rw
18605 Set all the output frames directly writable.
18606 @item toggle
18607 Make the frame read-only if writable, and writable if read-only.
18608 @item random
18609 Set each output frame read-only or writable randomly.
18610 @end table
18611
18612 @item seed
18613 Set the seed for the @var{random} mode, must be an integer included between
18614 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
18615 @code{-1}, the filter will try to use a good random seed on a best effort
18616 basis.
18617 @end table
18618
18619 Note: in case of auto-inserted filter between the permission filter and the
18620 following one, the permission might not be received as expected in that
18621 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
18622 perms/aperms filter can avoid this problem.
18623
18624 @section realtime, arealtime
18625
18626 Slow down filtering to match real time approximately.
18627
18628 These filters will pause the filtering for a variable amount of time to
18629 match the output rate with the input timestamps.
18630 They are similar to the @option{re} option to @code{ffmpeg}.
18631
18632 They accept the following options:
18633
18634 @table @option
18635 @item limit
18636 Time limit for the pauses. Any pause longer than that will be considered
18637 a timestamp discontinuity and reset the timer. Default is 2 seconds.
18638 @end table
18639
18640 @anchor{select}
18641 @section select, aselect
18642
18643 Select frames to pass in output.
18644
18645 This filter accepts the following options:
18646
18647 @table @option
18648
18649 @item expr, e
18650 Set expression, which is evaluated for each input frame.
18651
18652 If the expression is evaluated to zero, the frame is discarded.
18653
18654 If the evaluation result is negative or NaN, the frame is sent to the
18655 first output; otherwise it is sent to the output with index
18656 @code{ceil(val)-1}, assuming that the input index starts from 0.
18657
18658 For example a value of @code{1.2} corresponds to the output with index
18659 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
18660
18661 @item outputs, n
18662 Set the number of outputs. The output to which to send the selected
18663 frame is based on the result of the evaluation. Default value is 1.
18664 @end table
18665
18666 The expression can contain the following constants:
18667
18668 @table @option
18669 @item n
18670 The (sequential) number of the filtered frame, starting from 0.
18671
18672 @item selected_n
18673 The (sequential) number of the selected frame, starting from 0.
18674
18675 @item prev_selected_n
18676 The sequential number of the last selected frame. It's NAN if undefined.
18677
18678 @item TB
18679 The timebase of the input timestamps.
18680
18681 @item pts
18682 The PTS (Presentation TimeStamp) of the filtered video frame,
18683 expressed in @var{TB} units. It's NAN if undefined.
18684
18685 @item t
18686 The PTS of the filtered video frame,
18687 expressed in seconds. It's NAN if undefined.
18688
18689 @item prev_pts
18690 The PTS of the previously filtered video frame. It's NAN if undefined.
18691
18692 @item prev_selected_pts
18693 The PTS of the last previously filtered video frame. It's NAN if undefined.
18694
18695 @item prev_selected_t
18696 The PTS of the last previously selected video frame, expressed in seconds. It's NAN if undefined.
18697
18698 @item start_pts
18699 The PTS of the first video frame in the video. It's NAN if undefined.
18700
18701 @item start_t
18702 The time of the first video frame in the video. It's NAN if undefined.
18703
18704 @item pict_type @emph{(video only)}
18705 The type of the filtered frame. It can assume one of the following
18706 values:
18707 @table @option
18708 @item I
18709 @item P
18710 @item B
18711 @item S
18712 @item SI
18713 @item SP
18714 @item BI
18715 @end table
18716
18717 @item interlace_type @emph{(video only)}
18718 The frame interlace type. It can assume one of the following values:
18719 @table @option
18720 @item PROGRESSIVE
18721 The frame is progressive (not interlaced).
18722 @item TOPFIRST
18723 The frame is top-field-first.
18724 @item BOTTOMFIRST
18725 The frame is bottom-field-first.
18726 @end table
18727
18728 @item consumed_sample_n @emph{(audio only)}
18729 the number of selected samples before the current frame
18730
18731 @item samples_n @emph{(audio only)}
18732 the number of samples in the current frame
18733
18734 @item sample_rate @emph{(audio only)}
18735 the input sample rate
18736
18737 @item key
18738 This is 1 if the filtered frame is a key-frame, 0 otherwise.
18739
18740 @item pos
18741 the position in the file of the filtered frame, -1 if the information
18742 is not available (e.g. for synthetic video)
18743
18744 @item scene @emph{(video only)}
18745 value between 0 and 1 to indicate a new scene; a low value reflects a low
18746 probability for the current frame to introduce a new scene, while a higher
18747 value means the current frame is more likely to be one (see the example below)
18748
18749 @item concatdec_select
18750 The concat demuxer can select only part of a concat input file by setting an
18751 inpoint and an outpoint, but the output packets may not be entirely contained
18752 in the selected interval. By using this variable, it is possible to skip frames
18753 generated by the concat demuxer which are not exactly contained in the selected
18754 interval.
18755
18756 This works by comparing the frame pts against the @var{lavf.concat.start_time}
18757 and the @var{lavf.concat.duration} packet metadata values which are also
18758 present in the decoded frames.
18759
18760 The @var{concatdec_select} variable is -1 if the frame pts is at least
18761 start_time and either the duration metadata is missing or the frame pts is less
18762 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
18763 missing.
18764
18765 That basically means that an input frame is selected if its pts is within the
18766 interval set by the concat demuxer.
18767
18768 @end table
18769
18770 The default value of the select expression is "1".
18771
18772 @subsection Examples
18773
18774 @itemize
18775 @item
18776 Select all frames in input:
18777 @example
18778 select
18779 @end example
18780
18781 The example above is the same as:
18782 @example
18783 select=1
18784 @end example
18785
18786 @item
18787 Skip all frames:
18788 @example
18789 select=0
18790 @end example
18791
18792 @item
18793 Select only I-frames:
18794 @example
18795 select='eq(pict_type\,I)'
18796 @end example
18797
18798 @item
18799 Select one frame every 100:
18800 @example
18801 select='not(mod(n\,100))'
18802 @end example
18803
18804 @item
18805 Select only frames contained in the 10-20 time interval:
18806 @example
18807 select=between(t\,10\,20)
18808 @end example
18809
18810 @item
18811 Select only I-frames contained in the 10-20 time interval:
18812 @example
18813 select=between(t\,10\,20)*eq(pict_type\,I)
18814 @end example
18815
18816 @item
18817 Select frames with a minimum distance of 10 seconds:
18818 @example
18819 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
18820 @end example
18821
18822 @item
18823 Use aselect to select only audio frames with samples number > 100:
18824 @example
18825 aselect='gt(samples_n\,100)'
18826 @end example
18827
18828 @item
18829 Create a mosaic of the first scenes:
18830 @example
18831 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
18832 @end example
18833
18834 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
18835 choice.
18836
18837 @item
18838 Send even and odd frames to separate outputs, and compose them:
18839 @example
18840 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
18841 @end example
18842
18843 @item
18844 Select useful frames from an ffconcat file which is using inpoints and
18845 outpoints but where the source files are not intra frame only.
18846 @example
18847 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
18848 @end example
18849 @end itemize
18850
18851 @section sendcmd, asendcmd
18852
18853 Send commands to filters in the filtergraph.
18854
18855 These filters read commands to be sent to other filters in the
18856 filtergraph.
18857
18858 @code{sendcmd} must be inserted between two video filters,
18859 @code{asendcmd} must be inserted between two audio filters, but apart
18860 from that they act the same way.
18861
18862 The specification of commands can be provided in the filter arguments
18863 with the @var{commands} option, or in a file specified by the
18864 @var{filename} option.
18865
18866 These filters accept the following options:
18867 @table @option
18868 @item commands, c
18869 Set the commands to be read and sent to the other filters.
18870 @item filename, f
18871 Set the filename of the commands to be read and sent to the other
18872 filters.
18873 @end table
18874
18875 @subsection Commands syntax
18876
18877 A commands description consists of a sequence of interval
18878 specifications, comprising a list of commands to be executed when a
18879 particular event related to that interval occurs. The occurring event
18880 is typically the current frame time entering or leaving a given time
18881 interval.
18882
18883 An interval is specified by the following syntax:
18884 @example
18885 @var{START}[-@var{END}] @var{COMMANDS};
18886 @end example
18887
18888 The time interval is specified by the @var{START} and @var{END} times.
18889 @var{END} is optional and defaults to the maximum time.
18890
18891 The current frame time is considered within the specified interval if
18892 it is included in the interval [@var{START}, @var{END}), that is when
18893 the time is greater or equal to @var{START} and is lesser than
18894 @var{END}.
18895
18896 @var{COMMANDS} consists of a sequence of one or more command
18897 specifications, separated by ",", relating to that interval.  The
18898 syntax of a command specification is given by:
18899 @example
18900 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
18901 @end example
18902
18903 @var{FLAGS} is optional and specifies the type of events relating to
18904 the time interval which enable sending the specified command, and must
18905 be a non-null sequence of identifier flags separated by "+" or "|" and
18906 enclosed between "[" and "]".
18907
18908 The following flags are recognized:
18909 @table @option
18910 @item enter
18911 The command is sent when the current frame timestamp enters the
18912 specified interval. In other words, the command is sent when the
18913 previous frame timestamp was not in the given interval, and the
18914 current is.
18915
18916 @item leave
18917 The command is sent when the current frame timestamp leaves the
18918 specified interval. In other words, the command is sent when the
18919 previous frame timestamp was in the given interval, and the
18920 current is not.
18921 @end table
18922
18923 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
18924 assumed.
18925
18926 @var{TARGET} specifies the target of the command, usually the name of
18927 the filter class or a specific filter instance name.
18928
18929 @var{COMMAND} specifies the name of the command for the target filter.
18930
18931 @var{ARG} is optional and specifies the optional list of argument for
18932 the given @var{COMMAND}.
18933
18934 Between one interval specification and another, whitespaces, or
18935 sequences of characters starting with @code{#} until the end of line,
18936 are ignored and can be used to annotate comments.
18937
18938 A simplified BNF description of the commands specification syntax
18939 follows:
18940 @example
18941 @var{COMMAND_FLAG}  ::= "enter" | "leave"
18942 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
18943 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
18944 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
18945 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
18946 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
18947 @end example
18948
18949 @subsection Examples
18950
18951 @itemize
18952 @item
18953 Specify audio tempo change at second 4:
18954 @example
18955 asendcmd=c='4.0 atempo tempo 1.5',atempo
18956 @end example
18957
18958 @item
18959 Target a specific filter instance:
18960 @example
18961 asendcmd=c='4.0 atempo@@my tempo 1.5',atempo@@my
18962 @end example
18963
18964 @item
18965 Specify a list of drawtext and hue commands in a file.
18966 @example
18967 # show text in the interval 5-10
18968 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
18969          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
18970
18971 # desaturate the image in the interval 15-20
18972 15.0-20.0 [enter] hue s 0,
18973           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
18974           [leave] hue s 1,
18975           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
18976
18977 # apply an exponential saturation fade-out effect, starting from time 25
18978 25 [enter] hue s exp(25-t)
18979 @end example
18980
18981 A filtergraph allowing to read and process the above command list
18982 stored in a file @file{test.cmd}, can be specified with:
18983 @example
18984 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
18985 @end example
18986 @end itemize
18987
18988 @anchor{setpts}
18989 @section setpts, asetpts
18990
18991 Change the PTS (presentation timestamp) of the input frames.
18992
18993 @code{setpts} works on video frames, @code{asetpts} on audio frames.
18994
18995 This filter accepts the following options:
18996
18997 @table @option
18998
18999 @item expr
19000 The expression which is evaluated for each frame to construct its timestamp.
19001
19002 @end table
19003
19004 The expression is evaluated through the eval API and can contain the following
19005 constants:
19006
19007 @table @option
19008 @item FRAME_RATE
19009 frame rate, only defined for constant frame-rate video
19010
19011 @item PTS
19012 The presentation timestamp in input
19013
19014 @item N
19015 The count of the input frame for video or the number of consumed samples,
19016 not including the current frame for audio, starting from 0.
19017
19018 @item NB_CONSUMED_SAMPLES
19019 The number of consumed samples, not including the current frame (only
19020 audio)
19021
19022 @item NB_SAMPLES, S
19023 The number of samples in the current frame (only audio)
19024
19025 @item SAMPLE_RATE, SR
19026 The audio sample rate.
19027
19028 @item STARTPTS
19029 The PTS of the first frame.
19030
19031 @item STARTT
19032 the time in seconds of the first frame
19033
19034 @item INTERLACED
19035 State whether the current frame is interlaced.
19036
19037 @item T
19038 the time in seconds of the current frame
19039
19040 @item POS
19041 original position in the file of the frame, or undefined if undefined
19042 for the current frame
19043
19044 @item PREV_INPTS
19045 The previous input PTS.
19046
19047 @item PREV_INT
19048 previous input time in seconds
19049
19050 @item PREV_OUTPTS
19051 The previous output PTS.
19052
19053 @item PREV_OUTT
19054 previous output time in seconds
19055
19056 @item RTCTIME
19057 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
19058 instead.
19059
19060 @item RTCSTART
19061 The wallclock (RTC) time at the start of the movie in microseconds.
19062
19063 @item TB
19064 The timebase of the input timestamps.
19065
19066 @end table
19067
19068 @subsection Examples
19069
19070 @itemize
19071 @item
19072 Start counting PTS from zero
19073 @example
19074 setpts=PTS-STARTPTS
19075 @end example
19076
19077 @item
19078 Apply fast motion effect:
19079 @example
19080 setpts=0.5*PTS
19081 @end example
19082
19083 @item
19084 Apply slow motion effect:
19085 @example
19086 setpts=2.0*PTS
19087 @end example
19088
19089 @item
19090 Set fixed rate of 25 frames per second:
19091 @example
19092 setpts=N/(25*TB)
19093 @end example
19094
19095 @item
19096 Set fixed rate 25 fps with some jitter:
19097 @example
19098 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
19099 @end example
19100
19101 @item
19102 Apply an offset of 10 seconds to the input PTS:
19103 @example
19104 setpts=PTS+10/TB
19105 @end example
19106
19107 @item
19108 Generate timestamps from a "live source" and rebase onto the current timebase:
19109 @example
19110 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
19111 @end example
19112
19113 @item
19114 Generate timestamps by counting samples:
19115 @example
19116 asetpts=N/SR/TB
19117 @end example
19118
19119 @end itemize
19120
19121 @section setrange
19122
19123 Force color range for the output video frame.
19124
19125 The @code{setrange} filter marks the color range property for the
19126 output frames. It does not change the input frame, but only sets the
19127 corresponding property, which affects how the frame is treated by
19128 following filters.
19129
19130 The filter accepts the following options:
19131
19132 @table @option
19133
19134 @item range
19135 Available values are:
19136
19137 @table @samp
19138 @item auto
19139 Keep the same color range property.
19140
19141 @item unspecified, unknown
19142 Set the color range as unspecified.
19143
19144 @item limited, tv, mpeg
19145 Set the color range as limited.
19146
19147 @item full, pc, jpeg
19148 Set the color range as full.
19149 @end table
19150 @end table
19151
19152 @section settb, asettb
19153
19154 Set the timebase to use for the output frames timestamps.
19155 It is mainly useful for testing timebase configuration.
19156
19157 It accepts the following parameters:
19158
19159 @table @option
19160
19161 @item expr, tb
19162 The expression which is evaluated into the output timebase.
19163
19164 @end table
19165
19166 The value for @option{tb} is an arithmetic expression representing a
19167 rational. The expression can contain the constants "AVTB" (the default
19168 timebase), "intb" (the input timebase) and "sr" (the sample rate,
19169 audio only). Default value is "intb".
19170
19171 @subsection Examples
19172
19173 @itemize
19174 @item
19175 Set the timebase to 1/25:
19176 @example
19177 settb=expr=1/25
19178 @end example
19179
19180 @item
19181 Set the timebase to 1/10:
19182 @example
19183 settb=expr=0.1
19184 @end example
19185
19186 @item
19187 Set the timebase to 1001/1000:
19188 @example
19189 settb=1+0.001
19190 @end example
19191
19192 @item
19193 Set the timebase to 2*intb:
19194 @example
19195 settb=2*intb
19196 @end example
19197
19198 @item
19199 Set the default timebase value:
19200 @example
19201 settb=AVTB
19202 @end example
19203 @end itemize
19204
19205 @section showcqt
19206 Convert input audio to a video output representing frequency spectrum
19207 logarithmically using Brown-Puckette constant Q transform algorithm with
19208 direct frequency domain coefficient calculation (but the transform itself
19209 is not really constant Q, instead the Q factor is actually variable/clamped),
19210 with musical tone scale, from E0 to D#10.
19211
19212 The filter accepts the following options:
19213
19214 @table @option
19215 @item size, s
19216 Specify the video size for the output. It must be even. For the syntax of this option,
19217 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19218 Default value is @code{1920x1080}.
19219
19220 @item fps, rate, r
19221 Set the output frame rate. Default value is @code{25}.
19222
19223 @item bar_h
19224 Set the bargraph height. It must be even. Default value is @code{-1} which
19225 computes the bargraph height automatically.
19226
19227 @item axis_h
19228 Set the axis height. It must be even. Default value is @code{-1} which computes
19229 the axis height automatically.
19230
19231 @item sono_h
19232 Set the sonogram height. It must be even. Default value is @code{-1} which
19233 computes the sonogram height automatically.
19234
19235 @item fullhd
19236 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
19237 instead. Default value is @code{1}.
19238
19239 @item sono_v, volume
19240 Specify the sonogram volume expression. It can contain variables:
19241 @table @option
19242 @item bar_v
19243 the @var{bar_v} evaluated expression
19244 @item frequency, freq, f
19245 the frequency where it is evaluated
19246 @item timeclamp, tc
19247 the value of @var{timeclamp} option
19248 @end table
19249 and functions:
19250 @table @option
19251 @item a_weighting(f)
19252 A-weighting of equal loudness
19253 @item b_weighting(f)
19254 B-weighting of equal loudness
19255 @item c_weighting(f)
19256 C-weighting of equal loudness.
19257 @end table
19258 Default value is @code{16}.
19259
19260 @item bar_v, volume2
19261 Specify the bargraph volume expression. It can contain variables:
19262 @table @option
19263 @item sono_v
19264 the @var{sono_v} evaluated expression
19265 @item frequency, freq, f
19266 the frequency where it is evaluated
19267 @item timeclamp, tc
19268 the value of @var{timeclamp} option
19269 @end table
19270 and functions:
19271 @table @option
19272 @item a_weighting(f)
19273 A-weighting of equal loudness
19274 @item b_weighting(f)
19275 B-weighting of equal loudness
19276 @item c_weighting(f)
19277 C-weighting of equal loudness.
19278 @end table
19279 Default value is @code{sono_v}.
19280
19281 @item sono_g, gamma
19282 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
19283 higher gamma makes the spectrum having more range. Default value is @code{3}.
19284 Acceptable range is @code{[1, 7]}.
19285
19286 @item bar_g, gamma2
19287 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
19288 @code{[1, 7]}.
19289
19290 @item bar_t
19291 Specify the bargraph transparency level. Lower value makes the bargraph sharper.
19292 Default value is @code{1}. Acceptable range is @code{[0, 1]}.
19293
19294 @item timeclamp, tc
19295 Specify the transform timeclamp. At low frequency, there is trade-off between
19296 accuracy in time domain and frequency domain. If timeclamp is lower,
19297 event in time domain is represented more accurately (such as fast bass drum),
19298 otherwise event in frequency domain is represented more accurately
19299 (such as bass guitar). Acceptable range is @code{[0.002, 1]}. Default value is @code{0.17}.
19300
19301 @item attack
19302 Set attack time in seconds. The default is @code{0} (disabled). Otherwise, it
19303 limits future samples by applying asymmetric windowing in time domain, useful
19304 when low latency is required. Accepted range is @code{[0, 1]}.
19305
19306 @item basefreq
19307 Specify the transform base frequency. Default value is @code{20.01523126408007475},
19308 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
19309
19310 @item endfreq
19311 Specify the transform end frequency. Default value is @code{20495.59681441799654},
19312 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
19313
19314 @item coeffclamp
19315 This option is deprecated and ignored.
19316
19317 @item tlength
19318 Specify the transform length in time domain. Use this option to control accuracy
19319 trade-off between time domain and frequency domain at every frequency sample.
19320 It can contain variables:
19321 @table @option
19322 @item frequency, freq, f
19323 the frequency where it is evaluated
19324 @item timeclamp, tc
19325 the value of @var{timeclamp} option.
19326 @end table
19327 Default value is @code{384*tc/(384+tc*f)}.
19328
19329 @item count
19330 Specify the transform count for every video frame. Default value is @code{6}.
19331 Acceptable range is @code{[1, 30]}.
19332
19333 @item fcount
19334 Specify the transform count for every single pixel. Default value is @code{0},
19335 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
19336
19337 @item fontfile
19338 Specify font file for use with freetype to draw the axis. If not specified,
19339 use embedded font. Note that drawing with font file or embedded font is not
19340 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
19341 option instead.
19342
19343 @item font
19344 Specify fontconfig pattern. This has lower priority than @var{fontfile}.
19345 The : in the pattern may be replaced by | to avoid unnecessary escaping.
19346
19347 @item fontcolor
19348 Specify font color expression. This is arithmetic expression that should return
19349 integer value 0xRRGGBB. It can contain variables:
19350 @table @option
19351 @item frequency, freq, f
19352 the frequency where it is evaluated
19353 @item timeclamp, tc
19354 the value of @var{timeclamp} option
19355 @end table
19356 and functions:
19357 @table @option
19358 @item midi(f)
19359 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
19360 @item r(x), g(x), b(x)
19361 red, green, and blue value of intensity x.
19362 @end table
19363 Default value is @code{st(0, (midi(f)-59.5)/12);
19364 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
19365 r(1-ld(1)) + b(ld(1))}.
19366
19367 @item axisfile
19368 Specify image file to draw the axis. This option override @var{fontfile} and
19369 @var{fontcolor} option.
19370
19371 @item axis, text
19372 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
19373 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
19374 Default value is @code{1}.
19375
19376 @item csp
19377 Set colorspace. The accepted values are:
19378 @table @samp
19379 @item unspecified
19380 Unspecified (default)
19381
19382 @item bt709
19383 BT.709
19384
19385 @item fcc
19386 FCC
19387
19388 @item bt470bg
19389 BT.470BG or BT.601-6 625
19390
19391 @item smpte170m
19392 SMPTE-170M or BT.601-6 525
19393
19394 @item smpte240m
19395 SMPTE-240M
19396
19397 @item bt2020ncl
19398 BT.2020 with non-constant luminance
19399
19400 @end table
19401
19402 @item cscheme
19403 Set spectrogram color scheme. This is list of floating point values with format
19404 @code{left_r|left_g|left_b|right_r|right_g|right_b}.
19405 The default is @code{1|0.5|0|0|0.5|1}.
19406
19407 @end table
19408
19409 @subsection Examples
19410
19411 @itemize
19412 @item
19413 Playing audio while showing the spectrum:
19414 @example
19415 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
19416 @end example
19417
19418 @item
19419 Same as above, but with frame rate 30 fps:
19420 @example
19421 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
19422 @end example
19423
19424 @item
19425 Playing at 1280x720:
19426 @example
19427 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
19428 @end example
19429
19430 @item
19431 Disable sonogram display:
19432 @example
19433 sono_h=0
19434 @end example
19435
19436 @item
19437 A1 and its harmonics: A1, A2, (near)E3, A3:
19438 @example
19439 ffplay -f lavfi 'aevalsrc=0.1*sin(2*PI*55*t)+0.1*sin(4*PI*55*t)+0.1*sin(6*PI*55*t)+0.1*sin(8*PI*55*t),
19440                  asplit[a][out1]; [a] showcqt [out0]'
19441 @end example
19442
19443 @item
19444 Same as above, but with more accuracy in frequency domain:
19445 @example
19446 ffplay -f lavfi 'aevalsrc=0.1*sin(2*PI*55*t)+0.1*sin(4*PI*55*t)+0.1*sin(6*PI*55*t)+0.1*sin(8*PI*55*t),
19447                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
19448 @end example
19449
19450 @item
19451 Custom volume:
19452 @example
19453 bar_v=10:sono_v=bar_v*a_weighting(f)
19454 @end example
19455
19456 @item
19457 Custom gamma, now spectrum is linear to the amplitude.
19458 @example
19459 bar_g=2:sono_g=2
19460 @end example
19461
19462 @item
19463 Custom tlength equation:
19464 @example
19465 tc=0.33:tlength='st(0,0.17); 384*tc / (384 / ld(0) + tc*f /(1-ld(0))) + 384*tc / (tc*f / ld(0) + 384 /(1-ld(0)))'
19466 @end example
19467
19468 @item
19469 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
19470 @example
19471 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
19472 @end example
19473
19474 @item
19475 Custom font using fontconfig:
19476 @example
19477 font='Courier New,Monospace,mono|bold'
19478 @end example
19479
19480 @item
19481 Custom frequency range with custom axis using image file:
19482 @example
19483 axisfile=myaxis.png:basefreq=40:endfreq=10000
19484 @end example
19485 @end itemize
19486
19487 @section showfreqs
19488
19489 Convert input audio to video output representing the audio power spectrum.
19490 Audio amplitude is on Y-axis while frequency is on X-axis.
19491
19492 The filter accepts the following options:
19493
19494 @table @option
19495 @item size, s
19496 Specify size of video. For the syntax of this option, check the
19497 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19498 Default is @code{1024x512}.
19499
19500 @item mode
19501 Set display mode.
19502 This set how each frequency bin will be represented.
19503
19504 It accepts the following values:
19505 @table @samp
19506 @item line
19507 @item bar
19508 @item dot
19509 @end table
19510 Default is @code{bar}.
19511
19512 @item ascale
19513 Set amplitude scale.
19514
19515 It accepts the following values:
19516 @table @samp
19517 @item lin
19518 Linear scale.
19519
19520 @item sqrt
19521 Square root scale.
19522
19523 @item cbrt
19524 Cubic root scale.
19525
19526 @item log
19527 Logarithmic scale.
19528 @end table
19529 Default is @code{log}.
19530
19531 @item fscale
19532 Set frequency scale.
19533
19534 It accepts the following values:
19535 @table @samp
19536 @item lin
19537 Linear scale.
19538
19539 @item log
19540 Logarithmic scale.
19541
19542 @item rlog
19543 Reverse logarithmic scale.
19544 @end table
19545 Default is @code{lin}.
19546
19547 @item win_size
19548 Set window size.
19549
19550 It accepts the following values:
19551 @table @samp
19552 @item w16
19553 @item w32
19554 @item w64
19555 @item w128
19556 @item w256
19557 @item w512
19558 @item w1024
19559 @item w2048
19560 @item w4096
19561 @item w8192
19562 @item w16384
19563 @item w32768
19564 @item w65536
19565 @end table
19566 Default is @code{w2048}
19567
19568 @item win_func
19569 Set windowing function.
19570
19571 It accepts the following values:
19572 @table @samp
19573 @item rect
19574 @item bartlett
19575 @item hanning
19576 @item hamming
19577 @item blackman
19578 @item welch
19579 @item flattop
19580 @item bharris
19581 @item bnuttall
19582 @item bhann
19583 @item sine
19584 @item nuttall
19585 @item lanczos
19586 @item gauss
19587 @item tukey
19588 @item dolph
19589 @item cauchy
19590 @item parzen
19591 @item poisson
19592 @end table
19593 Default is @code{hanning}.
19594
19595 @item overlap
19596 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
19597 which means optimal overlap for selected window function will be picked.
19598
19599 @item averaging
19600 Set time averaging. Setting this to 0 will display current maximal peaks.
19601 Default is @code{1}, which means time averaging is disabled.
19602
19603 @item colors
19604 Specify list of colors separated by space or by '|' which will be used to
19605 draw channel frequencies. Unrecognized or missing colors will be replaced
19606 by white color.
19607
19608 @item cmode
19609 Set channel display mode.
19610
19611 It accepts the following values:
19612 @table @samp
19613 @item combined
19614 @item separate
19615 @end table
19616 Default is @code{combined}.
19617
19618 @item minamp
19619 Set minimum amplitude used in @code{log} amplitude scaler.
19620
19621 @end table
19622
19623 @anchor{showspectrum}
19624 @section showspectrum
19625
19626 Convert input audio to a video output, representing the audio frequency
19627 spectrum.
19628
19629 The filter accepts the following options:
19630
19631 @table @option
19632 @item size, s
19633 Specify the video size for the output. For the syntax of this option, check the
19634 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19635 Default value is @code{640x512}.
19636
19637 @item slide
19638 Specify how the spectrum should slide along the window.
19639
19640 It accepts the following values:
19641 @table @samp
19642 @item replace
19643 the samples start again on the left when they reach the right
19644 @item scroll
19645 the samples scroll from right to left
19646 @item fullframe
19647 frames are only produced when the samples reach the right
19648 @item rscroll
19649 the samples scroll from left to right
19650 @end table
19651
19652 Default value is @code{replace}.
19653
19654 @item mode
19655 Specify display mode.
19656
19657 It accepts the following values:
19658 @table @samp
19659 @item combined
19660 all channels are displayed in the same row
19661 @item separate
19662 all channels are displayed in separate rows
19663 @end table
19664
19665 Default value is @samp{combined}.
19666
19667 @item color
19668 Specify display color mode.
19669
19670 It accepts the following values:
19671 @table @samp
19672 @item channel
19673 each channel is displayed in a separate color
19674 @item intensity
19675 each channel is displayed using the same color scheme
19676 @item rainbow
19677 each channel is displayed using the rainbow color scheme
19678 @item moreland
19679 each channel is displayed using the moreland color scheme
19680 @item nebulae
19681 each channel is displayed using the nebulae color scheme
19682 @item fire
19683 each channel is displayed using the fire color scheme
19684 @item fiery
19685 each channel is displayed using the fiery color scheme
19686 @item fruit
19687 each channel is displayed using the fruit color scheme
19688 @item cool
19689 each channel is displayed using the cool color scheme
19690 @end table
19691
19692 Default value is @samp{channel}.
19693
19694 @item scale
19695 Specify scale used for calculating intensity color values.
19696
19697 It accepts the following values:
19698 @table @samp
19699 @item lin
19700 linear
19701 @item sqrt
19702 square root, default
19703 @item cbrt
19704 cubic root
19705 @item log
19706 logarithmic
19707 @item 4thrt
19708 4th root
19709 @item 5thrt
19710 5th root
19711 @end table
19712
19713 Default value is @samp{sqrt}.
19714
19715 @item saturation
19716 Set saturation modifier for displayed colors. Negative values provide
19717 alternative color scheme. @code{0} is no saturation at all.
19718 Saturation must be in [-10.0, 10.0] range.
19719 Default value is @code{1}.
19720
19721 @item win_func
19722 Set window function.
19723
19724 It accepts the following values:
19725 @table @samp
19726 @item rect
19727 @item bartlett
19728 @item hann
19729 @item hanning
19730 @item hamming
19731 @item blackman
19732 @item welch
19733 @item flattop
19734 @item bharris
19735 @item bnuttall
19736 @item bhann
19737 @item sine
19738 @item nuttall
19739 @item lanczos
19740 @item gauss
19741 @item tukey
19742 @item dolph
19743 @item cauchy
19744 @item parzen
19745 @item poisson
19746 @end table
19747
19748 Default value is @code{hann}.
19749
19750 @item orientation
19751 Set orientation of time vs frequency axis. Can be @code{vertical} or
19752 @code{horizontal}. Default is @code{vertical}.
19753
19754 @item overlap
19755 Set ratio of overlap window. Default value is @code{0}.
19756 When value is @code{1} overlap is set to recommended size for specific
19757 window function currently used.
19758
19759 @item gain
19760 Set scale gain for calculating intensity color values.
19761 Default value is @code{1}.
19762
19763 @item data
19764 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
19765
19766 @item rotation
19767 Set color rotation, must be in [-1.0, 1.0] range.
19768 Default value is @code{0}.
19769 @end table
19770
19771 The usage is very similar to the showwaves filter; see the examples in that
19772 section.
19773
19774 @subsection Examples
19775
19776 @itemize
19777 @item
19778 Large window with logarithmic color scaling:
19779 @example
19780 showspectrum=s=1280x480:scale=log
19781 @end example
19782
19783 @item
19784 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
19785 @example
19786 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
19787              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
19788 @end example
19789 @end itemize
19790
19791 @section showspectrumpic
19792
19793 Convert input audio to a single video frame, representing the audio frequency
19794 spectrum.
19795
19796 The filter accepts the following options:
19797
19798 @table @option
19799 @item size, s
19800 Specify the video size for the output. For the syntax of this option, check the
19801 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19802 Default value is @code{4096x2048}.
19803
19804 @item mode
19805 Specify display mode.
19806
19807 It accepts the following values:
19808 @table @samp
19809 @item combined
19810 all channels are displayed in the same row
19811 @item separate
19812 all channels are displayed in separate rows
19813 @end table
19814 Default value is @samp{combined}.
19815
19816 @item color
19817 Specify display color mode.
19818
19819 It accepts the following values:
19820 @table @samp
19821 @item channel
19822 each channel is displayed in a separate color
19823 @item intensity
19824 each channel is displayed using the same color scheme
19825 @item rainbow
19826 each channel is displayed using the rainbow color scheme
19827 @item moreland
19828 each channel is displayed using the moreland color scheme
19829 @item nebulae
19830 each channel is displayed using the nebulae color scheme
19831 @item fire
19832 each channel is displayed using the fire color scheme
19833 @item fiery
19834 each channel is displayed using the fiery color scheme
19835 @item fruit
19836 each channel is displayed using the fruit color scheme
19837 @item cool
19838 each channel is displayed using the cool color scheme
19839 @end table
19840 Default value is @samp{intensity}.
19841
19842 @item scale
19843 Specify scale used for calculating intensity color values.
19844
19845 It accepts the following values:
19846 @table @samp
19847 @item lin
19848 linear
19849 @item sqrt
19850 square root, default
19851 @item cbrt
19852 cubic root
19853 @item log
19854 logarithmic
19855 @item 4thrt
19856 4th root
19857 @item 5thrt
19858 5th root
19859 @end table
19860 Default value is @samp{log}.
19861
19862 @item saturation
19863 Set saturation modifier for displayed colors. Negative values provide
19864 alternative color scheme. @code{0} is no saturation at all.
19865 Saturation must be in [-10.0, 10.0] range.
19866 Default value is @code{1}.
19867
19868 @item win_func
19869 Set window function.
19870
19871 It accepts the following values:
19872 @table @samp
19873 @item rect
19874 @item bartlett
19875 @item hann
19876 @item hanning
19877 @item hamming
19878 @item blackman
19879 @item welch
19880 @item flattop
19881 @item bharris
19882 @item bnuttall
19883 @item bhann
19884 @item sine
19885 @item nuttall
19886 @item lanczos
19887 @item gauss
19888 @item tukey
19889 @item dolph
19890 @item cauchy
19891 @item parzen
19892 @item poisson
19893 @end table
19894 Default value is @code{hann}.
19895
19896 @item orientation
19897 Set orientation of time vs frequency axis. Can be @code{vertical} or
19898 @code{horizontal}. Default is @code{vertical}.
19899
19900 @item gain
19901 Set scale gain for calculating intensity color values.
19902 Default value is @code{1}.
19903
19904 @item legend
19905 Draw time and frequency axes and legends. Default is enabled.
19906
19907 @item rotation
19908 Set color rotation, must be in [-1.0, 1.0] range.
19909 Default value is @code{0}.
19910 @end table
19911
19912 @subsection Examples
19913
19914 @itemize
19915 @item
19916 Extract an audio spectrogram of a whole audio track
19917 in a 1024x1024 picture using @command{ffmpeg}:
19918 @example
19919 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
19920 @end example
19921 @end itemize
19922
19923 @section showvolume
19924
19925 Convert input audio volume to a video output.
19926
19927 The filter accepts the following options:
19928
19929 @table @option
19930 @item rate, r
19931 Set video rate.
19932
19933 @item b
19934 Set border width, allowed range is [0, 5]. Default is 1.
19935
19936 @item w
19937 Set channel width, allowed range is [80, 8192]. Default is 400.
19938
19939 @item h
19940 Set channel height, allowed range is [1, 900]. Default is 20.
19941
19942 @item f
19943 Set fade, allowed range is [0, 1]. Default is 0.95.
19944
19945 @item c
19946 Set volume color expression.
19947
19948 The expression can use the following variables:
19949
19950 @table @option
19951 @item VOLUME
19952 Current max volume of channel in dB.
19953
19954 @item PEAK
19955 Current peak.
19956
19957 @item CHANNEL
19958 Current channel number, starting from 0.
19959 @end table
19960
19961 @item t
19962 If set, displays channel names. Default is enabled.
19963
19964 @item v
19965 If set, displays volume values. Default is enabled.
19966
19967 @item o
19968 Set orientation, can be horizontal: @code{h} or vertical: @code{v},
19969 default is @code{h}.
19970
19971 @item s
19972 Set step size, allowed range is [0, 5]. Default is 0, which means
19973 step is disabled.
19974
19975 @item p
19976 Set background opacity, allowed range is [0, 1]. Default is 0.
19977
19978 @item m
19979 Set metering mode, can be peak: @code{p} or rms: @code{r},
19980 default is @code{p}.
19981 @end table
19982
19983 @section showwaves
19984
19985 Convert input audio to a video output, representing the samples waves.
19986
19987 The filter accepts the following options:
19988
19989 @table @option
19990 @item size, s
19991 Specify the video size for the output. For the syntax of this option, check the
19992 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19993 Default value is @code{600x240}.
19994
19995 @item mode
19996 Set display mode.
19997
19998 Available values are:
19999 @table @samp
20000 @item point
20001 Draw a point for each sample.
20002
20003 @item line
20004 Draw a vertical line for each sample.
20005
20006 @item p2p
20007 Draw a point for each sample and a line between them.
20008
20009 @item cline
20010 Draw a centered vertical line for each sample.
20011 @end table
20012
20013 Default value is @code{point}.
20014
20015 @item n
20016 Set the number of samples which are printed on the same column. A
20017 larger value will decrease the frame rate. Must be a positive
20018 integer. This option can be set only if the value for @var{rate}
20019 is not explicitly specified.
20020
20021 @item rate, r
20022 Set the (approximate) output frame rate. This is done by setting the
20023 option @var{n}. Default value is "25".
20024
20025 @item split_channels
20026 Set if channels should be drawn separately or overlap. Default value is 0.
20027
20028 @item colors
20029 Set colors separated by '|' which are going to be used for drawing of each channel.
20030
20031 @item scale
20032 Set amplitude scale.
20033
20034 Available values are:
20035 @table @samp
20036 @item lin
20037 Linear.
20038
20039 @item log
20040 Logarithmic.
20041
20042 @item sqrt
20043 Square root.
20044
20045 @item cbrt
20046 Cubic root.
20047 @end table
20048
20049 Default is linear.
20050
20051 @item draw
20052 Set the draw mode. This is mostly useful to set for high @var{n}.
20053
20054 Available values are:
20055 @table @samp
20056 @item scale
20057 Scale pixel values for each drawn sample.
20058
20059 @item full
20060 Draw every sample directly.
20061 @end table
20062
20063 Default value is @code{scale}.
20064 @end table
20065
20066 @subsection Examples
20067
20068 @itemize
20069 @item
20070 Output the input file audio and the corresponding video representation
20071 at the same time:
20072 @example
20073 amovie=a.mp3,asplit[out0],showwaves[out1]
20074 @end example
20075
20076 @item
20077 Create a synthetic signal and show it with showwaves, forcing a
20078 frame rate of 30 frames per second:
20079 @example
20080 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
20081 @end example
20082 @end itemize
20083
20084 @section showwavespic
20085
20086 Convert input audio to a single video frame, representing the samples waves.
20087
20088 The filter accepts the following options:
20089
20090 @table @option
20091 @item size, s
20092 Specify the video size for the output. For the syntax of this option, check the
20093 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
20094 Default value is @code{600x240}.
20095
20096 @item split_channels
20097 Set if channels should be drawn separately or overlap. Default value is 0.
20098
20099 @item colors
20100 Set colors separated by '|' which are going to be used for drawing of each channel.
20101
20102 @item scale
20103 Set amplitude scale.
20104
20105 Available values are:
20106 @table @samp
20107 @item lin
20108 Linear.
20109
20110 @item log
20111 Logarithmic.
20112
20113 @item sqrt
20114 Square root.
20115
20116 @item cbrt
20117 Cubic root.
20118 @end table
20119
20120 Default is linear.
20121 @end table
20122
20123 @subsection Examples
20124
20125 @itemize
20126 @item
20127 Extract a channel split representation of the wave form of a whole audio track
20128 in a 1024x800 picture using @command{ffmpeg}:
20129 @example
20130 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
20131 @end example
20132 @end itemize
20133
20134 @section sidedata, asidedata
20135
20136 Delete frame side data, or select frames based on it.
20137
20138 This filter accepts the following options:
20139
20140 @table @option
20141 @item mode
20142 Set mode of operation of the filter.
20143
20144 Can be one of the following:
20145
20146 @table @samp
20147 @item select
20148 Select every frame with side data of @code{type}.
20149
20150 @item delete
20151 Delete side data of @code{type}. If @code{type} is not set, delete all side
20152 data in the frame.
20153
20154 @end table
20155
20156 @item type
20157 Set side data type used with all modes. Must be set for @code{select} mode. For
20158 the list of frame side data types, refer to the @code{AVFrameSideDataType} enum
20159 in @file{libavutil/frame.h}. For example, to choose
20160 @code{AV_FRAME_DATA_PANSCAN} side data, you must specify @code{PANSCAN}.
20161
20162 @end table
20163
20164 @section spectrumsynth
20165
20166 Sythesize audio from 2 input video spectrums, first input stream represents
20167 magnitude across time and second represents phase across time.
20168 The filter will transform from frequency domain as displayed in videos back
20169 to time domain as presented in audio output.
20170
20171 This filter is primarily created for reversing processed @ref{showspectrum}
20172 filter outputs, but can synthesize sound from other spectrograms too.
20173 But in such case results are going to be poor if the phase data is not
20174 available, because in such cases phase data need to be recreated, usually
20175 its just recreated from random noise.
20176 For best results use gray only output (@code{channel} color mode in
20177 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
20178 @code{lin} scale for phase video. To produce phase, for 2nd video, use
20179 @code{data} option. Inputs videos should generally use @code{fullframe}
20180 slide mode as that saves resources needed for decoding video.
20181
20182 The filter accepts the following options:
20183
20184 @table @option
20185 @item sample_rate
20186 Specify sample rate of output audio, the sample rate of audio from which
20187 spectrum was generated may differ.
20188
20189 @item channels
20190 Set number of channels represented in input video spectrums.
20191
20192 @item scale
20193 Set scale which was used when generating magnitude input spectrum.
20194 Can be @code{lin} or @code{log}. Default is @code{log}.
20195
20196 @item slide
20197 Set slide which was used when generating inputs spectrums.
20198 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
20199 Default is @code{fullframe}.
20200
20201 @item win_func
20202 Set window function used for resynthesis.
20203
20204 @item overlap
20205 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
20206 which means optimal overlap for selected window function will be picked.
20207
20208 @item orientation
20209 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
20210 Default is @code{vertical}.
20211 @end table
20212
20213 @subsection Examples
20214
20215 @itemize
20216 @item
20217 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
20218 then resynthesize videos back to audio with spectrumsynth:
20219 @example
20220 ffmpeg -i input.flac -lavfi showspectrum=mode=separate:scale=log:overlap=0.875:color=channel:slide=fullframe:data=magnitude -an -c:v rawvideo magnitude.nut
20221 ffmpeg -i input.flac -lavfi showspectrum=mode=separate:scale=lin:overlap=0.875:color=channel:slide=fullframe:data=phase -an -c:v rawvideo phase.nut
20222 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
20223 @end example
20224 @end itemize
20225
20226 @section split, asplit
20227
20228 Split input into several identical outputs.
20229
20230 @code{asplit} works with audio input, @code{split} with video.
20231
20232 The filter accepts a single parameter which specifies the number of outputs. If
20233 unspecified, it defaults to 2.
20234
20235 @subsection Examples
20236
20237 @itemize
20238 @item
20239 Create two separate outputs from the same input:
20240 @example
20241 [in] split [out0][out1]
20242 @end example
20243
20244 @item
20245 To create 3 or more outputs, you need to specify the number of
20246 outputs, like in:
20247 @example
20248 [in] asplit=3 [out0][out1][out2]
20249 @end example
20250
20251 @item
20252 Create two separate outputs from the same input, one cropped and
20253 one padded:
20254 @example
20255 [in] split [splitout1][splitout2];
20256 [splitout1] crop=100:100:0:0    [cropout];
20257 [splitout2] pad=200:200:100:100 [padout];
20258 @end example
20259
20260 @item
20261 Create 5 copies of the input audio with @command{ffmpeg}:
20262 @example
20263 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
20264 @end example
20265 @end itemize
20266
20267 @section zmq, azmq
20268
20269 Receive commands sent through a libzmq client, and forward them to
20270 filters in the filtergraph.
20271
20272 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
20273 must be inserted between two video filters, @code{azmq} between two
20274 audio filters. Both are capable to send messages to any filter type.
20275
20276 To enable these filters you need to install the libzmq library and
20277 headers and configure FFmpeg with @code{--enable-libzmq}.
20278
20279 For more information about libzmq see:
20280 @url{http://www.zeromq.org/}
20281
20282 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
20283 receives messages sent through a network interface defined by the
20284 @option{bind_address} (or the abbreviation "@option{b}") option.
20285 Default value of this option is @file{tcp://localhost:5555}. You may
20286 want to alter this value to your needs, but do not forget to escape any
20287 ':' signs (see @ref{filtergraph escaping}).
20288
20289 The received message must be in the form:
20290 @example
20291 @var{TARGET} @var{COMMAND} [@var{ARG}]
20292 @end example
20293
20294 @var{TARGET} specifies the target of the command, usually the name of
20295 the filter class or a specific filter instance name. The default
20296 filter instance name uses the pattern @samp{Parsed_<filter_name>_<index>},
20297 but you can override this by using the @samp{filter_name@@id} syntax
20298 (see @ref{Filtergraph syntax}).
20299
20300 @var{COMMAND} specifies the name of the command for the target filter.
20301
20302 @var{ARG} is optional and specifies the optional argument list for the
20303 given @var{COMMAND}.
20304
20305 Upon reception, the message is processed and the corresponding command
20306 is injected into the filtergraph. Depending on the result, the filter
20307 will send a reply to the client, adopting the format:
20308 @example
20309 @var{ERROR_CODE} @var{ERROR_REASON}
20310 @var{MESSAGE}
20311 @end example
20312
20313 @var{MESSAGE} is optional.
20314
20315 @subsection Examples
20316
20317 Look at @file{tools/zmqsend} for an example of a zmq client which can
20318 be used to send commands processed by these filters.
20319
20320 Consider the following filtergraph generated by @command{ffplay}.
20321 In this example the last overlay filter has an instance name. All other
20322 filters will have default instance names.
20323
20324 @example
20325 ffplay -dumpgraph 1 -f lavfi "
20326 color=s=100x100:c=red  [l];
20327 color=s=100x100:c=blue [r];
20328 nullsrc=s=200x100, zmq [bg];
20329 [bg][l]   overlay     [bg+l];
20330 [bg+l][r] overlay@@my=x=100 "
20331 @end example
20332
20333 To change the color of the left side of the video, the following
20334 command can be used:
20335 @example
20336 echo Parsed_color_0 c yellow | tools/zmqsend
20337 @end example
20338
20339 To change the right side:
20340 @example
20341 echo Parsed_color_1 c pink | tools/zmqsend
20342 @end example
20343
20344 To change the position of the right side:
20345 @example
20346 echo overlay@@my x 150 | tools/zmqsend
20347 @end example
20348
20349
20350 @c man end MULTIMEDIA FILTERS
20351
20352 @chapter Multimedia Sources
20353 @c man begin MULTIMEDIA SOURCES
20354
20355 Below is a description of the currently available multimedia sources.
20356
20357 @section amovie
20358
20359 This is the same as @ref{movie} source, except it selects an audio
20360 stream by default.
20361
20362 @anchor{movie}
20363 @section movie
20364
20365 Read audio and/or video stream(s) from a movie container.
20366
20367 It accepts the following parameters:
20368
20369 @table @option
20370 @item filename
20371 The name of the resource to read (not necessarily a file; it can also be a
20372 device or a stream accessed through some protocol).
20373
20374 @item format_name, f
20375 Specifies the format assumed for the movie to read, and can be either
20376 the name of a container or an input device. If not specified, the
20377 format is guessed from @var{movie_name} or by probing.
20378
20379 @item seek_point, sp
20380 Specifies the seek point in seconds. The frames will be output
20381 starting from this seek point. The parameter is evaluated with
20382 @code{av_strtod}, so the numerical value may be suffixed by an IS
20383 postfix. The default value is "0".
20384
20385 @item streams, s
20386 Specifies the streams to read. Several streams can be specified,
20387 separated by "+". The source will then have as many outputs, in the
20388 same order. The syntax is explained in the @ref{Stream specifiers,,"Stream specifiers"
20389 section in the ffmpeg manual,ffmpeg}. Two special names, "dv" and "da" specify
20390 respectively the default (best suited) video and audio stream. Default
20391 is "dv", or "da" if the filter is called as "amovie".
20392
20393 @item stream_index, si
20394 Specifies the index of the video stream to read. If the value is -1,
20395 the most suitable video stream will be automatically selected. The default
20396 value is "-1". Deprecated. If the filter is called "amovie", it will select
20397 audio instead of video.
20398
20399 @item loop
20400 Specifies how many times to read the stream in sequence.
20401 If the value is 0, the stream will be looped infinitely.
20402 Default value is "1".
20403
20404 Note that when the movie is looped the source timestamps are not
20405 changed, so it will generate non monotonically increasing timestamps.
20406
20407 @item discontinuity
20408 Specifies the time difference between frames above which the point is
20409 considered a timestamp discontinuity which is removed by adjusting the later
20410 timestamps.
20411 @end table
20412
20413 It allows overlaying a second video on top of the main input of
20414 a filtergraph, as shown in this graph:
20415 @example
20416 input -----------> deltapts0 --> overlay --> output
20417                                     ^
20418                                     |
20419 movie --> scale--> deltapts1 -------+
20420 @end example
20421 @subsection Examples
20422
20423 @itemize
20424 @item
20425 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
20426 on top of the input labelled "in":
20427 @example
20428 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
20429 [in] setpts=PTS-STARTPTS [main];
20430 [main][over] overlay=16:16 [out]
20431 @end example
20432
20433 @item
20434 Read from a video4linux2 device, and overlay it on top of the input
20435 labelled "in":
20436 @example
20437 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
20438 [in] setpts=PTS-STARTPTS [main];
20439 [main][over] overlay=16:16 [out]
20440 @end example
20441
20442 @item
20443 Read the first video stream and the audio stream with id 0x81 from
20444 dvd.vob; the video is connected to the pad named "video" and the audio is
20445 connected to the pad named "audio":
20446 @example
20447 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
20448 @end example
20449 @end itemize
20450
20451 @subsection Commands
20452
20453 Both movie and amovie support the following commands:
20454 @table @option
20455 @item seek
20456 Perform seek using "av_seek_frame".
20457 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
20458 @itemize
20459 @item
20460 @var{stream_index}: If stream_index is -1, a default
20461 stream is selected, and @var{timestamp} is automatically converted
20462 from AV_TIME_BASE units to the stream specific time_base.
20463 @item
20464 @var{timestamp}: Timestamp in AVStream.time_base units
20465 or, if no stream is specified, in AV_TIME_BASE units.
20466 @item
20467 @var{flags}: Flags which select direction and seeking mode.
20468 @end itemize
20469
20470 @item get_duration
20471 Get movie duration in AV_TIME_BASE units.
20472
20473 @end table
20474
20475 @c man end MULTIMEDIA SOURCES