]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
Merge commit '0ccddbad200c1d9439c5a836501917d515cddf76'
[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 @section Notes on filtergraph escaping
225
226 Filtergraph description composition entails several levels of
227 escaping. See @ref{quoting_and_escaping,,the "Quoting and escaping"
228 section in the ffmpeg-utils(1) manual,ffmpeg-utils} for more
229 information about the employed escaping procedure.
230
231 A first level escaping affects the content of each filter option
232 value, which may contain the special character @code{:} used to
233 separate values, or one of the escaping characters @code{\'}.
234
235 A second level escaping affects the whole filter description, which
236 may contain the escaping characters @code{\'} or the special
237 characters @code{[],;} used by the filtergraph description.
238
239 Finally, when you specify a filtergraph on a shell commandline, you
240 need to perform a third level escaping for the shell special
241 characters contained within it.
242
243 For example, consider the following string to be embedded in
244 the @ref{drawtext} filter description @option{text} value:
245 @example
246 this is a 'string': may contain one, or more, special characters
247 @end example
248
249 This string contains the @code{'} special escaping character, and the
250 @code{:} special character, so it needs to be escaped in this way:
251 @example
252 text=this is a \'string\'\: may contain one, or more, special characters
253 @end example
254
255 A second level of escaping is required when embedding the filter
256 description in a filtergraph description, in order to escape all the
257 filtergraph special characters. Thus the example above becomes:
258 @example
259 drawtext=text=this is a \\\'string\\\'\\: may contain one\, or more\, special characters
260 @end example
261 (note that in addition to the @code{\'} escaping special characters,
262 also @code{,} needs to be escaped).
263
264 Finally an additional level of escaping is needed when writing the
265 filtergraph description in a shell command, which depends on the
266 escaping rules of the adopted shell. For example, assuming that
267 @code{\} is special and needs to be escaped with another @code{\}, the
268 previous string will finally result in:
269 @example
270 -vf "drawtext=text=this is a \\\\\\'string\\\\\\'\\\\: may contain one\\, or more\\, special characters"
271 @end example
272
273 @chapter Timeline editing
274
275 Some filters support a generic @option{enable} option. For the filters
276 supporting timeline editing, this option can be set to an expression which is
277 evaluated before sending a frame to the filter. If the evaluation is non-zero,
278 the filter will be enabled, otherwise the frame will be sent unchanged to the
279 next filter in the filtergraph.
280
281 The expression accepts the following values:
282 @table @samp
283 @item t
284 timestamp expressed in seconds, NAN if the input timestamp is unknown
285
286 @item n
287 sequential number of the input frame, starting from 0
288
289 @item pos
290 the position in the file of the input frame, NAN if unknown
291
292 @item w
293 @item h
294 width and height of the input frame if video
295 @end table
296
297 Additionally, these filters support an @option{enable} command that can be used
298 to re-define the expression.
299
300 Like any other filtering option, the @option{enable} option follows the same
301 rules.
302
303 For example, to enable a blur filter (@ref{smartblur}) from 10 seconds to 3
304 minutes, and a @ref{curves} filter starting at 3 seconds:
305 @example
306 smartblur = enable='between(t,10,3*60)',
307 curves    = enable='gte(t,3)' : preset=cross_process
308 @end example
309
310 See @code{ffmpeg -filters} to view which filters have timeline support.
311
312 @c man end FILTERGRAPH DESCRIPTION
313
314 @anchor{framesync}
315 @chapter Options for filters with several inputs (framesync)
316 @c man begin OPTIONS FOR FILTERS WITH SEVERAL INPUTS
317
318 Some filters with several inputs support a common set of options.
319 These options can only be set by name, not with the short notation.
320
321 @table @option
322 @item eof_action
323 The action to take when EOF is encountered on the secondary input; it accepts
324 one of the following values:
325
326 @table @option
327 @item repeat
328 Repeat the last frame (the default).
329 @item endall
330 End both streams.
331 @item pass
332 Pass the main input through.
333 @end table
334
335 @item shortest
336 If set to 1, force the output to terminate when the shortest input
337 terminates. Default value is 0.
338
339 @item repeatlast
340 If set to 1, force the filter to extend the last frame of secondary streams
341 until the end of the primary stream. A value of 0 disables this behavior.
342 Default value is 1.
343 @end table
344
345 @c man end OPTIONS FOR FILTERS WITH SEVERAL INPUTS
346
347 @chapter Audio Filters
348 @c man begin AUDIO FILTERS
349
350 When you configure your FFmpeg build, you can disable any of the
351 existing filters using @code{--disable-filters}.
352 The configure output will show the audio filters included in your
353 build.
354
355 Below is a description of the currently available audio filters.
356
357 @section acompressor
358
359 A compressor is mainly used to reduce the dynamic range of a signal.
360 Especially modern music is mostly compressed at a high ratio to
361 improve the overall loudness. It's done to get the highest attention
362 of a listener, "fatten" the sound and bring more "power" to the track.
363 If a signal is compressed too much it may sound dull or "dead"
364 afterwards or it may start to "pump" (which could be a powerful effect
365 but can also destroy a track completely).
366 The right compression is the key to reach a professional sound and is
367 the high art of mixing and mastering. Because of its complex settings
368 it may take a long time to get the right feeling for this kind of effect.
369
370 Compression is done by detecting the volume above a chosen level
371 @code{threshold} and dividing it by the factor set with @code{ratio}.
372 So if you set the threshold to -12dB and your signal reaches -6dB a ratio
373 of 2:1 will result in a signal at -9dB. Because an exact manipulation of
374 the signal would cause distortion of the waveform the reduction can be
375 levelled over the time. This is done by setting "Attack" and "Release".
376 @code{attack} determines how long the signal has to rise above the threshold
377 before any reduction will occur and @code{release} sets the time the signal
378 has to fall below the threshold to reduce the reduction again. Shorter signals
379 than the chosen attack time will be left untouched.
380 The overall reduction of the signal can be made up afterwards with the
381 @code{makeup} setting. So compressing the peaks of a signal about 6dB and
382 raising the makeup to this level results in a signal twice as loud than the
383 source. To gain a softer entry in the compression the @code{knee} flattens the
384 hard edge at the threshold in the range of the chosen decibels.
385
386 The filter accepts the following options:
387
388 @table @option
389 @item level_in
390 Set input gain. Default is 1. Range is between 0.015625 and 64.
391
392 @item threshold
393 If a signal of stream rises above this level it will affect the gain
394 reduction.
395 By default it is 0.125. Range is between 0.00097563 and 1.
396
397 @item ratio
398 Set a ratio by which the signal is reduced. 1:2 means that if the level
399 rose 4dB above the threshold, it will be only 2dB above after the reduction.
400 Default is 2. Range is between 1 and 20.
401
402 @item attack
403 Amount of milliseconds the signal has to rise above the threshold before gain
404 reduction starts. Default is 20. Range is between 0.01 and 2000.
405
406 @item release
407 Amount of milliseconds the signal has to fall below the threshold before
408 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
409
410 @item makeup
411 Set the amount by how much signal will be amplified after processing.
412 Default is 1. Range is from 1 to 64.
413
414 @item knee
415 Curve the sharp knee around the threshold to enter gain reduction more softly.
416 Default is 2.82843. Range is between 1 and 8.
417
418 @item link
419 Choose if the @code{average} level between all channels of input stream
420 or the louder(@code{maximum}) channel of input stream affects the
421 reduction. Default is @code{average}.
422
423 @item detection
424 Should the exact signal be taken in case of @code{peak} or an RMS one in case
425 of @code{rms}. Default is @code{rms} which is mostly smoother.
426
427 @item mix
428 How much to use compressed signal in output. Default is 1.
429 Range is between 0 and 1.
430 @end table
431
432 @section acopy
433
434 Copy the input audio source unchanged to the output. This is mainly useful for
435 testing purposes.
436
437 @section acrossfade
438
439 Apply cross fade from one input audio stream to another input audio stream.
440 The cross fade is applied for specified duration near the end of first stream.
441
442 The filter accepts the following options:
443
444 @table @option
445 @item nb_samples, ns
446 Specify the number of samples for which the cross fade effect has to last.
447 At the end of the cross fade effect the first input audio will be completely
448 silent. Default is 44100.
449
450 @item duration, d
451 Specify the duration of the cross fade effect. See
452 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
453 for the accepted syntax.
454 By default the duration is determined by @var{nb_samples}.
455 If set this option is used instead of @var{nb_samples}.
456
457 @item overlap, o
458 Should first stream end overlap with second stream start. Default is enabled.
459
460 @item curve1
461 Set curve for cross fade transition for first stream.
462
463 @item curve2
464 Set curve for cross fade transition for second stream.
465
466 For description of available curve types see @ref{afade} filter description.
467 @end table
468
469 @subsection Examples
470
471 @itemize
472 @item
473 Cross fade from one input to another:
474 @example
475 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:c1=exp:c2=exp output.flac
476 @end example
477
478 @item
479 Cross fade from one input to another but without overlapping:
480 @example
481 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:o=0:c1=exp:c2=exp output.flac
482 @end example
483 @end itemize
484
485 @section acrusher
486
487 Reduce audio bit resolution.
488
489 This filter is bit crusher with enhanced functionality. A bit crusher
490 is used to audibly reduce number of bits an audio signal is sampled
491 with. This doesn't change the bit depth at all, it just produces the
492 effect. Material reduced in bit depth sounds more harsh and "digital".
493 This filter is able to even round to continuous values instead of discrete
494 bit depths.
495 Additionally it has a D/C offset which results in different crushing of
496 the lower and the upper half of the signal.
497 An Anti-Aliasing setting is able to produce "softer" crushing sounds.
498
499 Another feature of this filter is the logarithmic mode.
500 This setting switches from linear distances between bits to logarithmic ones.
501 The result is a much more "natural" sounding crusher which doesn't gate low
502 signals for example. The human ear has a logarithmic perception, too
503 so this kind of crushing is much more pleasant.
504 Logarithmic crushing is also able to get anti-aliased.
505
506 The filter accepts the following options:
507
508 @table @option
509 @item level_in
510 Set level in.
511
512 @item level_out
513 Set level out.
514
515 @item bits
516 Set bit reduction.
517
518 @item mix
519 Set mixing amount.
520
521 @item mode
522 Can be linear: @code{lin} or logarithmic: @code{log}.
523
524 @item dc
525 Set DC.
526
527 @item aa
528 Set anti-aliasing.
529
530 @item samples
531 Set sample reduction.
532
533 @item lfo
534 Enable LFO. By default disabled.
535
536 @item lforange
537 Set LFO range.
538
539 @item lforate
540 Set LFO rate.
541 @end table
542
543 @section adelay
544
545 Delay one or more audio channels.
546
547 Samples in delayed channel are filled with silence.
548
549 The filter accepts the following option:
550
551 @table @option
552 @item delays
553 Set list of delays in milliseconds for each channel separated by '|'.
554 Unused delays will be silently ignored. If number of given delays is
555 smaller than number of channels all remaining channels will not be delayed.
556 If you want to delay exact number of samples, append 'S' to number.
557 @end table
558
559 @subsection Examples
560
561 @itemize
562 @item
563 Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
564 the second channel (and any other channels that may be present) unchanged.
565 @example
566 adelay=1500|0|500
567 @end example
568
569 @item
570 Delay second channel by 500 samples, the third channel by 700 samples and leave
571 the first channel (and any other channels that may be present) unchanged.
572 @example
573 adelay=0|500S|700S
574 @end example
575 @end itemize
576
577 @section aecho
578
579 Apply echoing to the input audio.
580
581 Echoes are reflected sound and can occur naturally amongst mountains
582 (and sometimes large buildings) when talking or shouting; digital echo
583 effects emulate this behaviour and are often used to help fill out the
584 sound of a single instrument or vocal. The time difference between the
585 original signal and the reflection is the @code{delay}, and the
586 loudness of the reflected signal is the @code{decay}.
587 Multiple echoes can have different delays and decays.
588
589 A description of the accepted parameters follows.
590
591 @table @option
592 @item in_gain
593 Set input gain of reflected signal. Default is @code{0.6}.
594
595 @item out_gain
596 Set output gain of reflected signal. Default is @code{0.3}.
597
598 @item delays
599 Set list of time intervals in milliseconds between original signal and reflections
600 separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
601 Default is @code{1000}.
602
603 @item decays
604 Set list of loudness of reflected signals separated by '|'.
605 Allowed range for each @code{decay} is @code{(0 - 1.0]}.
606 Default is @code{0.5}.
607 @end table
608
609 @subsection Examples
610
611 @itemize
612 @item
613 Make it sound as if there are twice as many instruments as are actually playing:
614 @example
615 aecho=0.8:0.88:60:0.4
616 @end example
617
618 @item
619 If delay is very short, then it sound like a (metallic) robot playing music:
620 @example
621 aecho=0.8:0.88:6:0.4
622 @end example
623
624 @item
625 A longer delay will sound like an open air concert in the mountains:
626 @example
627 aecho=0.8:0.9:1000:0.3
628 @end example
629
630 @item
631 Same as above but with one more mountain:
632 @example
633 aecho=0.8:0.9:1000|1800:0.3|0.25
634 @end example
635 @end itemize
636
637 @section aemphasis
638 Audio emphasis filter creates or restores material directly taken from LPs or
639 emphased CDs with different filter curves. E.g. to store music on vinyl the
640 signal has to be altered by a filter first to even out the disadvantages of
641 this recording medium.
642 Once the material is played back the inverse filter has to be applied to
643 restore the distortion of the frequency response.
644
645 The filter accepts the following options:
646
647 @table @option
648 @item level_in
649 Set input gain.
650
651 @item level_out
652 Set output gain.
653
654 @item mode
655 Set filter mode. For restoring material use @code{reproduction} mode, otherwise
656 use @code{production} mode. Default is @code{reproduction} mode.
657
658 @item type
659 Set filter type. Selects medium. Can be one of the following:
660
661 @table @option
662 @item col
663 select Columbia.
664 @item emi
665 select EMI.
666 @item bsi
667 select BSI (78RPM).
668 @item riaa
669 select RIAA.
670 @item cd
671 select Compact Disc (CD).
672 @item 50fm
673 select 50µs (FM).
674 @item 75fm
675 select 75µs (FM).
676 @item 50kf
677 select 50µs (FM-KF).
678 @item 75kf
679 select 75µs (FM-KF).
680 @end table
681 @end table
682
683 @section aeval
684
685 Modify an audio signal according to the specified expressions.
686
687 This filter accepts one or more expressions (one for each channel),
688 which are evaluated and used to modify a corresponding audio signal.
689
690 It accepts the following parameters:
691
692 @table @option
693 @item exprs
694 Set the '|'-separated expressions list for each separate channel. If
695 the number of input channels is greater than the number of
696 expressions, the last specified expression is used for the remaining
697 output channels.
698
699 @item channel_layout, c
700 Set output channel layout. If not specified, the channel layout is
701 specified by the number of expressions. If set to @samp{same}, it will
702 use by default the same input channel layout.
703 @end table
704
705 Each expression in @var{exprs} can contain the following constants and functions:
706
707 @table @option
708 @item ch
709 channel number of the current expression
710
711 @item n
712 number of the evaluated sample, starting from 0
713
714 @item s
715 sample rate
716
717 @item t
718 time of the evaluated sample expressed in seconds
719
720 @item nb_in_channels
721 @item nb_out_channels
722 input and output number of channels
723
724 @item val(CH)
725 the value of input channel with number @var{CH}
726 @end table
727
728 Note: this filter is slow. For faster processing you should use a
729 dedicated filter.
730
731 @subsection Examples
732
733 @itemize
734 @item
735 Half volume:
736 @example
737 aeval=val(ch)/2:c=same
738 @end example
739
740 @item
741 Invert phase of the second channel:
742 @example
743 aeval=val(0)|-val(1)
744 @end example
745 @end itemize
746
747 @anchor{afade}
748 @section afade
749
750 Apply fade-in/out effect to input audio.
751
752 A description of the accepted parameters follows.
753
754 @table @option
755 @item type, t
756 Specify the effect type, can be either @code{in} for fade-in, or
757 @code{out} for a fade-out effect. Default is @code{in}.
758
759 @item start_sample, ss
760 Specify the number of the start sample for starting to apply the fade
761 effect. Default is 0.
762
763 @item nb_samples, ns
764 Specify the number of samples for which the fade effect has to last. At
765 the end of the fade-in effect the output audio will have the same
766 volume as the input audio, at the end of the fade-out transition
767 the output audio will be silence. Default is 44100.
768
769 @item start_time, st
770 Specify the start time of the fade effect. Default is 0.
771 The value must be specified as a time duration; see
772 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
773 for the accepted syntax.
774 If set this option is used instead of @var{start_sample}.
775
776 @item duration, d
777 Specify the duration of the fade effect. See
778 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
779 for the accepted syntax.
780 At the end of the fade-in effect the output audio will have the same
781 volume as the input audio, at the end of the fade-out transition
782 the output audio will be silence.
783 By default the duration is determined by @var{nb_samples}.
784 If set this option is used instead of @var{nb_samples}.
785
786 @item curve
787 Set curve for fade transition.
788
789 It accepts the following values:
790 @table @option
791 @item tri
792 select triangular, linear slope (default)
793 @item qsin
794 select quarter of sine wave
795 @item hsin
796 select half of sine wave
797 @item esin
798 select exponential sine wave
799 @item log
800 select logarithmic
801 @item ipar
802 select inverted parabola
803 @item qua
804 select quadratic
805 @item cub
806 select cubic
807 @item squ
808 select square root
809 @item cbr
810 select cubic root
811 @item par
812 select parabola
813 @item exp
814 select exponential
815 @item iqsin
816 select inverted quarter of sine wave
817 @item ihsin
818 select inverted half of sine wave
819 @item dese
820 select double-exponential seat
821 @item desi
822 select double-exponential sigmoid
823 @end table
824 @end table
825
826 @subsection Examples
827
828 @itemize
829 @item
830 Fade in first 15 seconds of audio:
831 @example
832 afade=t=in:ss=0:d=15
833 @end example
834
835 @item
836 Fade out last 25 seconds of a 900 seconds audio:
837 @example
838 afade=t=out:st=875:d=25
839 @end example
840 @end itemize
841
842 @section afftfilt
843 Apply arbitrary expressions to samples in frequency domain.
844
845 @table @option
846 @item real
847 Set frequency domain real expression for each separate channel separated
848 by '|'. Default is "1".
849 If the number of input channels is greater than the number of
850 expressions, the last specified expression is used for the remaining
851 output channels.
852
853 @item imag
854 Set frequency domain imaginary expression for each separate channel
855 separated by '|'. If not set, @var{real} option is used.
856
857 Each expression in @var{real} and @var{imag} can contain the following
858 constants:
859
860 @table @option
861 @item sr
862 sample rate
863
864 @item b
865 current frequency bin number
866
867 @item nb
868 number of available bins
869
870 @item ch
871 channel number of the current expression
872
873 @item chs
874 number of channels
875
876 @item pts
877 current frame pts
878 @end table
879
880 @item win_size
881 Set window size.
882
883 It accepts the following values:
884 @table @samp
885 @item w16
886 @item w32
887 @item w64
888 @item w128
889 @item w256
890 @item w512
891 @item w1024
892 @item w2048
893 @item w4096
894 @item w8192
895 @item w16384
896 @item w32768
897 @item w65536
898 @end table
899 Default is @code{w4096}
900
901 @item win_func
902 Set window function. Default is @code{hann}.
903
904 @item overlap
905 Set window overlap. If set to 1, the recommended overlap for selected
906 window function will be picked. Default is @code{0.75}.
907 @end table
908
909 @subsection Examples
910
911 @itemize
912 @item
913 Leave almost only low frequencies in audio:
914 @example
915 afftfilt="1-clip((b/nb)*b,0,1)"
916 @end example
917 @end itemize
918
919 @section afir
920
921 Apply an arbitrary Frequency Impulse Response filter.
922
923 This filter is designed for applying long FIR filters,
924 up to 30 seconds long.
925
926 It can be used as component for digital crossover filters,
927 room equalization, cross talk cancellation, wavefield synthesis,
928 auralization, ambiophonics and ambisonics.
929
930 This filter uses second stream as FIR coefficients.
931 If second stream holds single channel, it will be used
932 for all input channels in first stream, otherwise
933 number of channels in second stream must be same as
934 number of channels in first stream.
935
936 It accepts the following parameters:
937
938 @table @option
939 @item dry
940 Set dry gain. This sets input gain.
941
942 @item wet
943 Set wet gain. This sets final output gain.
944
945 @item length
946 Set Impulse Response filter length. Default is 1, which means whole IR is processed.
947
948 @item again
949 Enable applying gain measured from power of IR.
950 @end table
951
952 @subsection Examples
953
954 @itemize
955 @item
956 Apply reverb to stream using mono IR file as second input, complete command using ffmpeg:
957 @example
958 ffmpeg -i input.wav -i middle_tunnel_1way_mono.wav -lavfi afir output.wav
959 @end example
960 @end itemize
961
962 @anchor{aformat}
963 @section aformat
964
965 Set output format constraints for the input audio. The framework will
966 negotiate the most appropriate format to minimize conversions.
967
968 It accepts the following parameters:
969 @table @option
970
971 @item sample_fmts
972 A '|'-separated list of requested sample formats.
973
974 @item sample_rates
975 A '|'-separated list of requested sample rates.
976
977 @item channel_layouts
978 A '|'-separated list of requested channel layouts.
979
980 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
981 for the required syntax.
982 @end table
983
984 If a parameter is omitted, all values are allowed.
985
986 Force the output to either unsigned 8-bit or signed 16-bit stereo
987 @example
988 aformat=sample_fmts=u8|s16:channel_layouts=stereo
989 @end example
990
991 @section agate
992
993 A gate is mainly used to reduce lower parts of a signal. This kind of signal
994 processing reduces disturbing noise between useful signals.
995
996 Gating is done by detecting the volume below a chosen level @var{threshold}
997 and dividing it by the factor set with @var{ratio}. The bottom of the noise
998 floor is set via @var{range}. Because an exact manipulation of the signal
999 would cause distortion of the waveform the reduction can be levelled over
1000 time. This is done by setting @var{attack} and @var{release}.
1001
1002 @var{attack} determines how long the signal has to fall below the threshold
1003 before any reduction will occur and @var{release} sets the time the signal
1004 has to rise above the threshold to reduce the reduction again.
1005 Shorter signals than the chosen attack time will be left untouched.
1006
1007 @table @option
1008 @item level_in
1009 Set input level before filtering.
1010 Default is 1. Allowed range is from 0.015625 to 64.
1011
1012 @item range
1013 Set the level of gain reduction when the signal is below the threshold.
1014 Default is 0.06125. Allowed range is from 0 to 1.
1015
1016 @item threshold
1017 If a signal rises above this level the gain reduction is released.
1018 Default is 0.125. Allowed range is from 0 to 1.
1019
1020 @item ratio
1021 Set a ratio by which the signal is reduced.
1022 Default is 2. Allowed range is from 1 to 9000.
1023
1024 @item attack
1025 Amount of milliseconds the signal has to rise above the threshold before gain
1026 reduction stops.
1027 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
1028
1029 @item release
1030 Amount of milliseconds the signal has to fall below the threshold before the
1031 reduction is increased again. Default is 250 milliseconds.
1032 Allowed range is from 0.01 to 9000.
1033
1034 @item makeup
1035 Set amount of amplification of signal after processing.
1036 Default is 1. Allowed range is from 1 to 64.
1037
1038 @item knee
1039 Curve the sharp knee around the threshold to enter gain reduction more softly.
1040 Default is 2.828427125. Allowed range is from 1 to 8.
1041
1042 @item detection
1043 Choose if exact signal should be taken for detection or an RMS like one.
1044 Default is @code{rms}. Can be @code{peak} or @code{rms}.
1045
1046 @item link
1047 Choose if the average level between all channels or the louder channel affects
1048 the reduction.
1049 Default is @code{average}. Can be @code{average} or @code{maximum}.
1050 @end table
1051
1052 @section alimiter
1053
1054 The limiter prevents an input signal from rising over a desired threshold.
1055 This limiter uses lookahead technology to prevent your signal from distorting.
1056 It means that there is a small delay after the signal is processed. Keep in mind
1057 that the delay it produces is the attack time you set.
1058
1059 The filter accepts the following options:
1060
1061 @table @option
1062 @item level_in
1063 Set input gain. Default is 1.
1064
1065 @item level_out
1066 Set output gain. Default is 1.
1067
1068 @item limit
1069 Don't let signals above this level pass the limiter. Default is 1.
1070
1071 @item attack
1072 The limiter will reach its attenuation level in this amount of time in
1073 milliseconds. Default is 5 milliseconds.
1074
1075 @item release
1076 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
1077 Default is 50 milliseconds.
1078
1079 @item asc
1080 When gain reduction is always needed ASC takes care of releasing to an
1081 average reduction level rather than reaching a reduction of 0 in the release
1082 time.
1083
1084 @item asc_level
1085 Select how much the release time is affected by ASC, 0 means nearly no changes
1086 in release time while 1 produces higher release times.
1087
1088 @item level
1089 Auto level output signal. Default is enabled.
1090 This normalizes audio back to 0dB if enabled.
1091 @end table
1092
1093 Depending on picked setting it is recommended to upsample input 2x or 4x times
1094 with @ref{aresample} before applying this filter.
1095
1096 @section allpass
1097
1098 Apply a two-pole all-pass filter with central frequency (in Hz)
1099 @var{frequency}, and filter-width @var{width}.
1100 An all-pass filter changes the audio's frequency to phase relationship
1101 without changing its frequency to amplitude relationship.
1102
1103 The filter accepts the following options:
1104
1105 @table @option
1106 @item frequency, f
1107 Set frequency in Hz.
1108
1109 @item width_type, t
1110 Set method to specify band-width of filter.
1111 @table @option
1112 @item h
1113 Hz
1114 @item q
1115 Q-Factor
1116 @item o
1117 octave
1118 @item s
1119 slope
1120 @end table
1121
1122 @item width, w
1123 Specify the band-width of a filter in width_type units.
1124
1125 @item channels, c
1126 Specify which channels to filter, by default all available are filtered.
1127 @end table
1128
1129 @section aloop
1130
1131 Loop audio samples.
1132
1133 The filter accepts the following options:
1134
1135 @table @option
1136 @item loop
1137 Set the number of loops.
1138
1139 @item size
1140 Set maximal number of samples.
1141
1142 @item start
1143 Set first sample of loop.
1144 @end table
1145
1146 @anchor{amerge}
1147 @section amerge
1148
1149 Merge two or more audio streams into a single multi-channel stream.
1150
1151 The filter accepts the following options:
1152
1153 @table @option
1154
1155 @item inputs
1156 Set the number of inputs. Default is 2.
1157
1158 @end table
1159
1160 If the channel layouts of the inputs are disjoint, and therefore compatible,
1161 the channel layout of the output will be set accordingly and the channels
1162 will be reordered as necessary. If the channel layouts of the inputs are not
1163 disjoint, the output will have all the channels of the first input then all
1164 the channels of the second input, in that order, and the channel layout of
1165 the output will be the default value corresponding to the total number of
1166 channels.
1167
1168 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
1169 is FC+BL+BR, then the output will be in 5.1, with the channels in the
1170 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
1171 first input, b1 is the first channel of the second input).
1172
1173 On the other hand, if both input are in stereo, the output channels will be
1174 in the default order: a1, a2, b1, b2, and the channel layout will be
1175 arbitrarily set to 4.0, which may or may not be the expected value.
1176
1177 All inputs must have the same sample rate, and format.
1178
1179 If inputs do not have the same duration, the output will stop with the
1180 shortest.
1181
1182 @subsection Examples
1183
1184 @itemize
1185 @item
1186 Merge two mono files into a stereo stream:
1187 @example
1188 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
1189 @end example
1190
1191 @item
1192 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
1193 @example
1194 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
1195 @end example
1196 @end itemize
1197
1198 @section amix
1199
1200 Mixes multiple audio inputs into a single output.
1201
1202 Note that this filter only supports float samples (the @var{amerge}
1203 and @var{pan} audio filters support many formats). If the @var{amix}
1204 input has integer samples then @ref{aresample} will be automatically
1205 inserted to perform the conversion to float samples.
1206
1207 For example
1208 @example
1209 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
1210 @end example
1211 will mix 3 input audio streams to a single output with the same duration as the
1212 first input and a dropout transition time of 3 seconds.
1213
1214 It accepts the following parameters:
1215 @table @option
1216
1217 @item inputs
1218 The number of inputs. If unspecified, it defaults to 2.
1219
1220 @item duration
1221 How to determine the end-of-stream.
1222 @table @option
1223
1224 @item longest
1225 The duration of the longest input. (default)
1226
1227 @item shortest
1228 The duration of the shortest input.
1229
1230 @item first
1231 The duration of the first input.
1232
1233 @end table
1234
1235 @item dropout_transition
1236 The transition time, in seconds, for volume renormalization when an input
1237 stream ends. The default value is 2 seconds.
1238
1239 @end table
1240
1241 @section anequalizer
1242
1243 High-order parametric multiband equalizer for each channel.
1244
1245 It accepts the following parameters:
1246 @table @option
1247 @item params
1248
1249 This option string is in format:
1250 "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
1251 Each equalizer band is separated by '|'.
1252
1253 @table @option
1254 @item chn
1255 Set channel number to which equalization will be applied.
1256 If input doesn't have that channel the entry is ignored.
1257
1258 @item f
1259 Set central frequency for band.
1260 If input doesn't have that frequency the entry is ignored.
1261
1262 @item w
1263 Set band width in hertz.
1264
1265 @item g
1266 Set band gain in dB.
1267
1268 @item t
1269 Set filter type for band, optional, can be:
1270
1271 @table @samp
1272 @item 0
1273 Butterworth, this is default.
1274
1275 @item 1
1276 Chebyshev type 1.
1277
1278 @item 2
1279 Chebyshev type 2.
1280 @end table
1281 @end table
1282
1283 @item curves
1284 With this option activated frequency response of anequalizer is displayed
1285 in video stream.
1286
1287 @item size
1288 Set video stream size. Only useful if curves option is activated.
1289
1290 @item mgain
1291 Set max gain that will be displayed. Only useful if curves option is activated.
1292 Setting this to a reasonable value makes it possible to display gain which is derived from
1293 neighbour bands which are too close to each other and thus produce higher gain
1294 when both are activated.
1295
1296 @item fscale
1297 Set frequency scale used to draw frequency response in video output.
1298 Can be linear or logarithmic. Default is logarithmic.
1299
1300 @item colors
1301 Set color for each channel curve which is going to be displayed in video stream.
1302 This is list of color names separated by space or by '|'.
1303 Unrecognised or missing colors will be replaced by white color.
1304 @end table
1305
1306 @subsection Examples
1307
1308 @itemize
1309 @item
1310 Lower gain by 10 of central frequency 200Hz and width 100 Hz
1311 for first 2 channels using Chebyshev type 1 filter:
1312 @example
1313 anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
1314 @end example
1315 @end itemize
1316
1317 @subsection Commands
1318
1319 This filter supports the following commands:
1320 @table @option
1321 @item change
1322 Alter existing filter parameters.
1323 Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
1324
1325 @var{fN} is existing filter number, starting from 0, if no such filter is available
1326 error is returned.
1327 @var{freq} set new frequency parameter.
1328 @var{width} set new width parameter in herz.
1329 @var{gain} set new gain parameter in dB.
1330
1331 Full filter invocation with asendcmd may look like this:
1332 asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
1333 @end table
1334
1335 @section anull
1336
1337 Pass the audio source unchanged to the output.
1338
1339 @section apad
1340
1341 Pad the end of an audio stream with silence.
1342
1343 This can be used together with @command{ffmpeg} @option{-shortest} to
1344 extend audio streams to the same length as the video stream.
1345
1346 A description of the accepted options follows.
1347
1348 @table @option
1349 @item packet_size
1350 Set silence packet size. Default value is 4096.
1351
1352 @item pad_len
1353 Set the number of samples of silence to add to the end. After the
1354 value is reached, the stream is terminated. This option is mutually
1355 exclusive with @option{whole_len}.
1356
1357 @item whole_len
1358 Set the minimum total number of samples in the output audio stream. If
1359 the value is longer than the input audio length, silence is added to
1360 the end, until the value is reached. This option is mutually exclusive
1361 with @option{pad_len}.
1362 @end table
1363
1364 If neither the @option{pad_len} nor the @option{whole_len} option is
1365 set, the filter will add silence to the end of the input stream
1366 indefinitely.
1367
1368 @subsection Examples
1369
1370 @itemize
1371 @item
1372 Add 1024 samples of silence to the end of the input:
1373 @example
1374 apad=pad_len=1024
1375 @end example
1376
1377 @item
1378 Make sure the audio output will contain at least 10000 samples, pad
1379 the input with silence if required:
1380 @example
1381 apad=whole_len=10000
1382 @end example
1383
1384 @item
1385 Use @command{ffmpeg} to pad the audio input with silence, so that the
1386 video stream will always result the shortest and will be converted
1387 until the end in the output file when using the @option{shortest}
1388 option:
1389 @example
1390 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
1391 @end example
1392 @end itemize
1393
1394 @section aphaser
1395 Add a phasing effect to the input audio.
1396
1397 A phaser filter creates series of peaks and troughs in the frequency spectrum.
1398 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
1399
1400 A description of the accepted parameters follows.
1401
1402 @table @option
1403 @item in_gain
1404 Set input gain. Default is 0.4.
1405
1406 @item out_gain
1407 Set output gain. Default is 0.74
1408
1409 @item delay
1410 Set delay in milliseconds. Default is 3.0.
1411
1412 @item decay
1413 Set decay. Default is 0.4.
1414
1415 @item speed
1416 Set modulation speed in Hz. Default is 0.5.
1417
1418 @item type
1419 Set modulation type. Default is triangular.
1420
1421 It accepts the following values:
1422 @table @samp
1423 @item triangular, t
1424 @item sinusoidal, s
1425 @end table
1426 @end table
1427
1428 @section apulsator
1429
1430 Audio pulsator is something between an autopanner and a tremolo.
1431 But it can produce funny stereo effects as well. Pulsator changes the volume
1432 of the left and right channel based on a LFO (low frequency oscillator) with
1433 different waveforms and shifted phases.
1434 This filter have the ability to define an offset between left and right
1435 channel. An offset of 0 means that both LFO shapes match each other.
1436 The left and right channel are altered equally - a conventional tremolo.
1437 An offset of 50% means that the shape of the right channel is exactly shifted
1438 in phase (or moved backwards about half of the frequency) - pulsator acts as
1439 an autopanner. At 1 both curves match again. Every setting in between moves the
1440 phase shift gapless between all stages and produces some "bypassing" sounds with
1441 sine and triangle waveforms. The more you set the offset near 1 (starting from
1442 the 0.5) the faster the signal passes from the left to the right speaker.
1443
1444 The filter accepts the following options:
1445
1446 @table @option
1447 @item level_in
1448 Set input gain. By default it is 1. Range is [0.015625 - 64].
1449
1450 @item level_out
1451 Set output gain. By default it is 1. Range is [0.015625 - 64].
1452
1453 @item mode
1454 Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
1455 sawup or sawdown. Default is sine.
1456
1457 @item amount
1458 Set modulation. Define how much of original signal is affected by the LFO.
1459
1460 @item offset_l
1461 Set left channel offset. Default is 0. Allowed range is [0 - 1].
1462
1463 @item offset_r
1464 Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
1465
1466 @item width
1467 Set pulse width. Default is 1. Allowed range is [0 - 2].
1468
1469 @item timing
1470 Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
1471
1472 @item bpm
1473 Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
1474 is set to bpm.
1475
1476 @item ms
1477 Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
1478 is set to ms.
1479
1480 @item hz
1481 Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
1482 if timing is set to hz.
1483 @end table
1484
1485 @anchor{aresample}
1486 @section aresample
1487
1488 Resample the input audio to the specified parameters, using the
1489 libswresample library. If none are specified then the filter will
1490 automatically convert between its input and output.
1491
1492 This filter is also able to stretch/squeeze the audio data to make it match
1493 the timestamps or to inject silence / cut out audio to make it match the
1494 timestamps, do a combination of both or do neither.
1495
1496 The filter accepts the syntax
1497 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
1498 expresses a sample rate and @var{resampler_options} is a list of
1499 @var{key}=@var{value} pairs, separated by ":". See the
1500 @ref{Resampler Options,,the "Resampler Options" section in the
1501 ffmpeg-resampler(1) manual,ffmpeg-resampler}
1502 for the complete list of supported options.
1503
1504 @subsection Examples
1505
1506 @itemize
1507 @item
1508 Resample the input audio to 44100Hz:
1509 @example
1510 aresample=44100
1511 @end example
1512
1513 @item
1514 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
1515 samples per second compensation:
1516 @example
1517 aresample=async=1000
1518 @end example
1519 @end itemize
1520
1521 @section areverse
1522
1523 Reverse an audio clip.
1524
1525 Warning: This filter requires memory to buffer the entire clip, so trimming
1526 is suggested.
1527
1528 @subsection Examples
1529
1530 @itemize
1531 @item
1532 Take the first 5 seconds of a clip, and reverse it.
1533 @example
1534 atrim=end=5,areverse
1535 @end example
1536 @end itemize
1537
1538 @section asetnsamples
1539
1540 Set the number of samples per each output audio frame.
1541
1542 The last output packet may contain a different number of samples, as
1543 the filter will flush all the remaining samples when the input audio
1544 signals its end.
1545
1546 The filter accepts the following options:
1547
1548 @table @option
1549
1550 @item nb_out_samples, n
1551 Set the number of frames per each output audio frame. The number is
1552 intended as the number of samples @emph{per each channel}.
1553 Default value is 1024.
1554
1555 @item pad, p
1556 If set to 1, the filter will pad the last audio frame with zeroes, so
1557 that the last frame will contain the same number of samples as the
1558 previous ones. Default value is 1.
1559 @end table
1560
1561 For example, to set the number of per-frame samples to 1234 and
1562 disable padding for the last frame, use:
1563 @example
1564 asetnsamples=n=1234:p=0
1565 @end example
1566
1567 @section asetrate
1568
1569 Set the sample rate without altering the PCM data.
1570 This will result in a change of speed and pitch.
1571
1572 The filter accepts the following options:
1573
1574 @table @option
1575 @item sample_rate, r
1576 Set the output sample rate. Default is 44100 Hz.
1577 @end table
1578
1579 @section ashowinfo
1580
1581 Show a line containing various information for each input audio frame.
1582 The input audio is not modified.
1583
1584 The shown line contains a sequence of key/value pairs of the form
1585 @var{key}:@var{value}.
1586
1587 The following values are shown in the output:
1588
1589 @table @option
1590 @item n
1591 The (sequential) number of the input frame, starting from 0.
1592
1593 @item pts
1594 The presentation timestamp of the input frame, in time base units; the time base
1595 depends on the filter input pad, and is usually 1/@var{sample_rate}.
1596
1597 @item pts_time
1598 The presentation timestamp of the input frame in seconds.
1599
1600 @item pos
1601 position of the frame in the input stream, -1 if this information in
1602 unavailable and/or meaningless (for example in case of synthetic audio)
1603
1604 @item fmt
1605 The sample format.
1606
1607 @item chlayout
1608 The channel layout.
1609
1610 @item rate
1611 The sample rate for the audio frame.
1612
1613 @item nb_samples
1614 The number of samples (per channel) in the frame.
1615
1616 @item checksum
1617 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
1618 audio, the data is treated as if all the planes were concatenated.
1619
1620 @item plane_checksums
1621 A list of Adler-32 checksums for each data plane.
1622 @end table
1623
1624 @anchor{astats}
1625 @section astats
1626
1627 Display time domain statistical information about the audio channels.
1628 Statistics are calculated and displayed for each audio channel and,
1629 where applicable, an overall figure is also given.
1630
1631 It accepts the following option:
1632 @table @option
1633 @item length
1634 Short window length in seconds, used for peak and trough RMS measurement.
1635 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.1 - 10]}.
1636
1637 @item metadata
1638
1639 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
1640 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
1641 disabled.
1642
1643 Available keys for each channel are:
1644 DC_offset
1645 Min_level
1646 Max_level
1647 Min_difference
1648 Max_difference
1649 Mean_difference
1650 RMS_difference
1651 Peak_level
1652 RMS_peak
1653 RMS_trough
1654 Crest_factor
1655 Flat_factor
1656 Peak_count
1657 Bit_depth
1658 Dynamic_range
1659
1660 and for Overall:
1661 DC_offset
1662 Min_level
1663 Max_level
1664 Min_difference
1665 Max_difference
1666 Mean_difference
1667 RMS_difference
1668 Peak_level
1669 RMS_level
1670 RMS_peak
1671 RMS_trough
1672 Flat_factor
1673 Peak_count
1674 Bit_depth
1675 Number_of_samples
1676
1677 For example full key look like this @code{lavfi.astats.1.DC_offset} or
1678 this @code{lavfi.astats.Overall.Peak_count}.
1679
1680 For description what each key means read below.
1681
1682 @item reset
1683 Set number of frame after which stats are going to be recalculated.
1684 Default is disabled.
1685 @end table
1686
1687 A description of each shown parameter follows:
1688
1689 @table @option
1690 @item DC offset
1691 Mean amplitude displacement from zero.
1692
1693 @item Min level
1694 Minimal sample level.
1695
1696 @item Max level
1697 Maximal sample level.
1698
1699 @item Min difference
1700 Minimal difference between two consecutive samples.
1701
1702 @item Max difference
1703 Maximal difference between two consecutive samples.
1704
1705 @item Mean difference
1706 Mean difference between two consecutive samples.
1707 The average of each difference between two consecutive samples.
1708
1709 @item RMS difference
1710 Root Mean Square difference between two consecutive samples.
1711
1712 @item Peak level dB
1713 @item RMS level dB
1714 Standard peak and RMS level measured in dBFS.
1715
1716 @item RMS peak dB
1717 @item RMS trough dB
1718 Peak and trough values for RMS level measured over a short window.
1719
1720 @item Crest factor
1721 Standard ratio of peak to RMS level (note: not in dB).
1722
1723 @item Flat factor
1724 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
1725 (i.e. either @var{Min level} or @var{Max level}).
1726
1727 @item Peak count
1728 Number of occasions (not the number of samples) that the signal attained either
1729 @var{Min level} or @var{Max level}.
1730
1731 @item Bit depth
1732 Overall bit depth of audio. Number of bits used for each sample.
1733
1734 @item Dynamic range
1735 Measured dynamic range of audio in dB.
1736 @end table
1737
1738 @section atempo
1739
1740 Adjust audio tempo.
1741
1742 The filter accepts exactly one parameter, the audio tempo. If not
1743 specified then the filter will assume nominal 1.0 tempo. Tempo must
1744 be in the [0.5, 2.0] range.
1745
1746 @subsection Examples
1747
1748 @itemize
1749 @item
1750 Slow down audio to 80% tempo:
1751 @example
1752 atempo=0.8
1753 @end example
1754
1755 @item
1756 To speed up audio to 125% tempo:
1757 @example
1758 atempo=1.25
1759 @end example
1760 @end itemize
1761
1762 @section atrim
1763
1764 Trim the input so that the output contains one continuous subpart of the input.
1765
1766 It accepts the following parameters:
1767 @table @option
1768 @item start
1769 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
1770 sample with the timestamp @var{start} will be the first sample in the output.
1771
1772 @item end
1773 Specify time of the first audio sample that will be dropped, i.e. the
1774 audio sample immediately preceding the one with the timestamp @var{end} will be
1775 the last sample in the output.
1776
1777 @item start_pts
1778 Same as @var{start}, except this option sets the start timestamp in samples
1779 instead of seconds.
1780
1781 @item end_pts
1782 Same as @var{end}, except this option sets the end timestamp in samples instead
1783 of seconds.
1784
1785 @item duration
1786 The maximum duration of the output in seconds.
1787
1788 @item start_sample
1789 The number of the first sample that should be output.
1790
1791 @item end_sample
1792 The number of the first sample that should be dropped.
1793 @end table
1794
1795 @option{start}, @option{end}, and @option{duration} are expressed as time
1796 duration specifications; see
1797 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
1798
1799 Note that the first two sets of the start/end options and the @option{duration}
1800 option look at the frame timestamp, while the _sample options simply count the
1801 samples that pass through the filter. So start/end_pts and start/end_sample will
1802 give different results when the timestamps are wrong, inexact or do not start at
1803 zero. Also note that this filter does not modify the timestamps. If you wish
1804 to have the output timestamps start at zero, insert the asetpts filter after the
1805 atrim filter.
1806
1807 If multiple start or end options are set, this filter tries to be greedy and
1808 keep all samples that match at least one of the specified constraints. To keep
1809 only the part that matches all the constraints at once, chain multiple atrim
1810 filters.
1811
1812 The defaults are such that all the input is kept. So it is possible to set e.g.
1813 just the end values to keep everything before the specified time.
1814
1815 Examples:
1816 @itemize
1817 @item
1818 Drop everything except the second minute of input:
1819 @example
1820 ffmpeg -i INPUT -af atrim=60:120
1821 @end example
1822
1823 @item
1824 Keep only the first 1000 samples:
1825 @example
1826 ffmpeg -i INPUT -af atrim=end_sample=1000
1827 @end example
1828
1829 @end itemize
1830
1831 @section bandpass
1832
1833 Apply a two-pole Butterworth band-pass filter with central
1834 frequency @var{frequency}, and (3dB-point) band-width width.
1835 The @var{csg} option selects a constant skirt gain (peak gain = Q)
1836 instead of the default: constant 0dB peak gain.
1837 The filter roll off at 6dB per octave (20dB per decade).
1838
1839 The filter accepts the following options:
1840
1841 @table @option
1842 @item frequency, f
1843 Set the filter's central frequency. Default is @code{3000}.
1844
1845 @item csg
1846 Constant skirt gain if set to 1. Defaults to 0.
1847
1848 @item width_type, t
1849 Set method to specify band-width of filter.
1850 @table @option
1851 @item h
1852 Hz
1853 @item q
1854 Q-Factor
1855 @item o
1856 octave
1857 @item s
1858 slope
1859 @end table
1860
1861 @item width, w
1862 Specify the band-width of a filter in width_type units.
1863
1864 @item channels, c
1865 Specify which channels to filter, by default all available are filtered.
1866 @end table
1867
1868 @section bandreject
1869
1870 Apply a two-pole Butterworth band-reject filter with central
1871 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
1872 The filter roll off at 6dB per octave (20dB per decade).
1873
1874 The filter accepts the following options:
1875
1876 @table @option
1877 @item frequency, f
1878 Set the filter's central frequency. Default is @code{3000}.
1879
1880 @item width_type, t
1881 Set method to specify band-width of filter.
1882 @table @option
1883 @item h
1884 Hz
1885 @item q
1886 Q-Factor
1887 @item o
1888 octave
1889 @item s
1890 slope
1891 @end table
1892
1893 @item width, w
1894 Specify the band-width of a filter in width_type units.
1895
1896 @item channels, c
1897 Specify which channels to filter, by default all available are filtered.
1898 @end table
1899
1900 @section bass
1901
1902 Boost or cut the bass (lower) frequencies of the audio using a two-pole
1903 shelving filter with a response similar to that of a standard
1904 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
1905
1906 The filter accepts the following options:
1907
1908 @table @option
1909 @item gain, g
1910 Give the gain at 0 Hz. Its useful range is about -20
1911 (for a large cut) to +20 (for a large boost).
1912 Beware of clipping when using a positive gain.
1913
1914 @item frequency, f
1915 Set the filter's central frequency and so can be used
1916 to extend or reduce the frequency range to be boosted or cut.
1917 The default value is @code{100} Hz.
1918
1919 @item width_type, t
1920 Set method to specify band-width of filter.
1921 @table @option
1922 @item h
1923 Hz
1924 @item q
1925 Q-Factor
1926 @item o
1927 octave
1928 @item s
1929 slope
1930 @end table
1931
1932 @item width, w
1933 Determine how steep is the filter's shelf transition.
1934
1935 @item channels, c
1936 Specify which channels to filter, by default all available are filtered.
1937 @end table
1938
1939 @section biquad
1940
1941 Apply a biquad IIR filter with the given coefficients.
1942 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
1943 are the numerator and denominator coefficients respectively.
1944 and @var{channels}, @var{c} specify which channels to filter, by default all
1945 available are filtered.
1946
1947 @section bs2b
1948 Bauer stereo to binaural transformation, which improves headphone listening of
1949 stereo audio records.
1950
1951 To enable compilation of this filter you need to configure FFmpeg with
1952 @code{--enable-libbs2b}.
1953
1954 It accepts the following parameters:
1955 @table @option
1956
1957 @item profile
1958 Pre-defined crossfeed level.
1959 @table @option
1960
1961 @item default
1962 Default level (fcut=700, feed=50).
1963
1964 @item cmoy
1965 Chu Moy circuit (fcut=700, feed=60).
1966
1967 @item jmeier
1968 Jan Meier circuit (fcut=650, feed=95).
1969
1970 @end table
1971
1972 @item fcut
1973 Cut frequency (in Hz).
1974
1975 @item feed
1976 Feed level (in Hz).
1977
1978 @end table
1979
1980 @section channelmap
1981
1982 Remap input channels to new locations.
1983
1984 It accepts the following parameters:
1985 @table @option
1986 @item map
1987 Map channels from input to output. The argument is a '|'-separated list of
1988 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
1989 @var{in_channel} form. @var{in_channel} can be either the name of the input
1990 channel (e.g. FL for front left) or its index in the input channel layout.
1991 @var{out_channel} is the name of the output channel or its index in the output
1992 channel layout. If @var{out_channel} is not given then it is implicitly an
1993 index, starting with zero and increasing by one for each mapping.
1994
1995 @item channel_layout
1996 The channel layout of the output stream.
1997 @end table
1998
1999 If no mapping is present, the filter will implicitly map input channels to
2000 output channels, preserving indices.
2001
2002 For example, assuming a 5.1+downmix input MOV file,
2003 @example
2004 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
2005 @end example
2006 will create an output WAV file tagged as stereo from the downmix channels of
2007 the input.
2008
2009 To fix a 5.1 WAV improperly encoded in AAC's native channel order
2010 @example
2011 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
2012 @end example
2013
2014 @section channelsplit
2015
2016 Split each channel from an input audio stream into a separate output stream.
2017
2018 It accepts the following parameters:
2019 @table @option
2020 @item channel_layout
2021 The channel layout of the input stream. The default is "stereo".
2022 @end table
2023
2024 For example, assuming a stereo input MP3 file,
2025 @example
2026 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
2027 @end example
2028 will create an output Matroska file with two audio streams, one containing only
2029 the left channel and the other the right channel.
2030
2031 Split a 5.1 WAV file into per-channel files:
2032 @example
2033 ffmpeg -i in.wav -filter_complex
2034 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
2035 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
2036 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
2037 side_right.wav
2038 @end example
2039
2040 @section chorus
2041 Add a chorus effect to the audio.
2042
2043 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
2044
2045 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
2046 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
2047 The modulation depth defines the range the modulated delay is played before or after
2048 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
2049 sound tuned around the original one, like in a chorus where some vocals are slightly
2050 off key.
2051
2052 It accepts the following parameters:
2053 @table @option
2054 @item in_gain
2055 Set input gain. Default is 0.4.
2056
2057 @item out_gain
2058 Set output gain. Default is 0.4.
2059
2060 @item delays
2061 Set delays. A typical delay is around 40ms to 60ms.
2062
2063 @item decays
2064 Set decays.
2065
2066 @item speeds
2067 Set speeds.
2068
2069 @item depths
2070 Set depths.
2071 @end table
2072
2073 @subsection Examples
2074
2075 @itemize
2076 @item
2077 A single delay:
2078 @example
2079 chorus=0.7:0.9:55:0.4:0.25:2
2080 @end example
2081
2082 @item
2083 Two delays:
2084 @example
2085 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
2086 @end example
2087
2088 @item
2089 Fuller sounding chorus with three delays:
2090 @example
2091 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
2092 @end example
2093 @end itemize
2094
2095 @section compand
2096 Compress or expand the audio's dynamic range.
2097
2098 It accepts the following parameters:
2099
2100 @table @option
2101
2102 @item attacks
2103 @item decays
2104 A list of times in seconds for each channel over which the instantaneous level
2105 of the input signal is averaged to determine its volume. @var{attacks} refers to
2106 increase of volume and @var{decays} refers to decrease of volume. For most
2107 situations, the attack time (response to the audio getting louder) should be
2108 shorter than the decay time, because the human ear is more sensitive to sudden
2109 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
2110 a typical value for decay is 0.8 seconds.
2111 If specified number of attacks & decays is lower than number of channels, the last
2112 set attack/decay will be used for all remaining channels.
2113
2114 @item points
2115 A list of points for the transfer function, specified in dB relative to the
2116 maximum possible signal amplitude. Each key points list must be defined using
2117 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
2118 @code{x0/y0 x1/y1 x2/y2 ....}
2119
2120 The input values must be in strictly increasing order but the transfer function
2121 does not have to be monotonically rising. The point @code{0/0} is assumed but
2122 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
2123 function are @code{-70/-70|-60/-20|1/0}.
2124
2125 @item soft-knee
2126 Set the curve radius in dB for all joints. It defaults to 0.01.
2127
2128 @item gain
2129 Set the additional gain in dB to be applied at all points on the transfer
2130 function. This allows for easy adjustment of the overall gain.
2131 It defaults to 0.
2132
2133 @item volume
2134 Set an initial volume, in dB, to be assumed for each channel when filtering
2135 starts. This permits the user to supply a nominal level initially, so that, for
2136 example, a very large gain is not applied to initial signal levels before the
2137 companding has begun to operate. A typical value for audio which is initially
2138 quiet is -90 dB. It defaults to 0.
2139
2140 @item delay
2141 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
2142 delayed before being fed to the volume adjuster. Specifying a delay
2143 approximately equal to the attack/decay times allows the filter to effectively
2144 operate in predictive rather than reactive mode. It defaults to 0.
2145
2146 @end table
2147
2148 @subsection Examples
2149
2150 @itemize
2151 @item
2152 Make music with both quiet and loud passages suitable for listening to in a
2153 noisy environment:
2154 @example
2155 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
2156 @end example
2157
2158 Another example for audio with whisper and explosion parts:
2159 @example
2160 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
2161 @end example
2162
2163 @item
2164 A noise gate for when the noise is at a lower level than the signal:
2165 @example
2166 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
2167 @end example
2168
2169 @item
2170 Here is another noise gate, this time for when the noise is at a higher level
2171 than the signal (making it, in some ways, similar to squelch):
2172 @example
2173 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
2174 @end example
2175
2176 @item
2177 2:1 compression starting at -6dB:
2178 @example
2179 compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
2180 @end example
2181
2182 @item
2183 2:1 compression starting at -9dB:
2184 @example
2185 compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
2186 @end example
2187
2188 @item
2189 2:1 compression starting at -12dB:
2190 @example
2191 compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
2192 @end example
2193
2194 @item
2195 2:1 compression starting at -18dB:
2196 @example
2197 compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
2198 @end example
2199
2200 @item
2201 3:1 compression starting at -15dB:
2202 @example
2203 compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
2204 @end example
2205
2206 @item
2207 Compressor/Gate:
2208 @example
2209 compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
2210 @end example
2211
2212 @item
2213 Expander:
2214 @example
2215 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
2216 @end example
2217
2218 @item
2219 Hard limiter at -6dB:
2220 @example
2221 compand=attacks=0:points=-80/-80|-6/-6|20/-6
2222 @end example
2223
2224 @item
2225 Hard limiter at -12dB:
2226 @example
2227 compand=attacks=0:points=-80/-80|-12/-12|20/-12
2228 @end example
2229
2230 @item
2231 Hard noise gate at -35 dB:
2232 @example
2233 compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
2234 @end example
2235
2236 @item
2237 Soft limiter:
2238 @example
2239 compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
2240 @end example
2241 @end itemize
2242
2243 @section compensationdelay
2244
2245 Compensation Delay Line is a metric based delay to compensate differing
2246 positions of microphones or speakers.
2247
2248 For example, you have recorded guitar with two microphones placed in
2249 different location. Because the front of sound wave has fixed speed in
2250 normal conditions, the phasing of microphones can vary and depends on
2251 their location and interposition. The best sound mix can be achieved when
2252 these microphones are in phase (synchronized). Note that distance of
2253 ~30 cm between microphones makes one microphone to capture signal in
2254 antiphase to another microphone. That makes the final mix sounding moody.
2255 This filter helps to solve phasing problems by adding different delays
2256 to each microphone track and make them synchronized.
2257
2258 The best result can be reached when you take one track as base and
2259 synchronize other tracks one by one with it.
2260 Remember that synchronization/delay tolerance depends on sample rate, too.
2261 Higher sample rates will give more tolerance.
2262
2263 It accepts the following parameters:
2264
2265 @table @option
2266 @item mm
2267 Set millimeters distance. This is compensation distance for fine tuning.
2268 Default is 0.
2269
2270 @item cm
2271 Set cm distance. This is compensation distance for tightening distance setup.
2272 Default is 0.
2273
2274 @item m
2275 Set meters distance. This is compensation distance for hard distance setup.
2276 Default is 0.
2277
2278 @item dry
2279 Set dry amount. Amount of unprocessed (dry) signal.
2280 Default is 0.
2281
2282 @item wet
2283 Set wet amount. Amount of processed (wet) signal.
2284 Default is 1.
2285
2286 @item temp
2287 Set temperature degree in Celsius. This is the temperature of the environment.
2288 Default is 20.
2289 @end table
2290
2291 @section crossfeed
2292 Apply headphone crossfeed filter.
2293
2294 Crossfeed is the process of blending the left and right channels of stereo
2295 audio recording.
2296 It is mainly used to reduce extreme stereo separation of low frequencies.
2297
2298 The intent is to produce more speaker like sound to the listener.
2299
2300 The filter accepts the following options:
2301
2302 @table @option
2303 @item strength
2304 Set strength of crossfeed. Default is 0.2. Allowed range is from 0 to 1.
2305 This sets gain of low shelf filter for side part of stereo image.
2306 Default is -6dB. Max allowed is -30db when strength is set to 1.
2307
2308 @item range
2309 Set soundstage wideness. Default is 0.5. Allowed range is from 0 to 1.
2310 This sets cut off frequency of low shelf filter. Default is cut off near
2311 1550 Hz. With range set to 1 cut off frequency is set to 2100 Hz.
2312
2313 @item level_in
2314 Set input gain. Default is 0.9.
2315
2316 @item level_out
2317 Set output gain. Default is 1.
2318 @end table
2319
2320 @section crystalizer
2321 Simple algorithm to expand audio dynamic range.
2322
2323 The filter accepts the following options:
2324
2325 @table @option
2326 @item i
2327 Sets the intensity of effect (default: 2.0). Must be in range between 0.0
2328 (unchanged sound) to 10.0 (maximum effect).
2329
2330 @item c
2331 Enable clipping. By default is enabled.
2332 @end table
2333
2334 @section dcshift
2335 Apply a DC shift to the audio.
2336
2337 This can be useful to remove a DC offset (caused perhaps by a hardware problem
2338 in the recording chain) from the audio. The effect of a DC offset is reduced
2339 headroom and hence volume. The @ref{astats} filter can be used to determine if
2340 a signal has a DC offset.
2341
2342 @table @option
2343 @item shift
2344 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
2345 the audio.
2346
2347 @item limitergain
2348 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
2349 used to prevent clipping.
2350 @end table
2351
2352 @section dynaudnorm
2353 Dynamic Audio Normalizer.
2354
2355 This filter applies a certain amount of gain to the input audio in order
2356 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
2357 contrast to more "simple" normalization algorithms, the Dynamic Audio
2358 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
2359 This allows for applying extra gain to the "quiet" sections of the audio
2360 while avoiding distortions or clipping the "loud" sections. In other words:
2361 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
2362 sections, in the sense that the volume of each section is brought to the
2363 same target level. Note, however, that the Dynamic Audio Normalizer achieves
2364 this goal *without* applying "dynamic range compressing". It will retain 100%
2365 of the dynamic range *within* each section of the audio file.
2366
2367 @table @option
2368 @item f
2369 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
2370 Default is 500 milliseconds.
2371 The Dynamic Audio Normalizer processes the input audio in small chunks,
2372 referred to as frames. This is required, because a peak magnitude has no
2373 meaning for just a single sample value. Instead, we need to determine the
2374 peak magnitude for a contiguous sequence of sample values. While a "standard"
2375 normalizer would simply use the peak magnitude of the complete file, the
2376 Dynamic Audio Normalizer determines the peak magnitude individually for each
2377 frame. The length of a frame is specified in milliseconds. By default, the
2378 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
2379 been found to give good results with most files.
2380 Note that the exact frame length, in number of samples, will be determined
2381 automatically, based on the sampling rate of the individual input audio file.
2382
2383 @item g
2384 Set the Gaussian filter window size. In range from 3 to 301, must be odd
2385 number. Default is 31.
2386 Probably the most important parameter of the Dynamic Audio Normalizer is the
2387 @code{window size} of the Gaussian smoothing filter. The filter's window size
2388 is specified in frames, centered around the current frame. For the sake of
2389 simplicity, this must be an odd number. Consequently, the default value of 31
2390 takes into account the current frame, as well as the 15 preceding frames and
2391 the 15 subsequent frames. Using a larger window results in a stronger
2392 smoothing effect and thus in less gain variation, i.e. slower gain
2393 adaptation. Conversely, using a smaller window results in a weaker smoothing
2394 effect and thus in more gain variation, i.e. faster gain adaptation.
2395 In other words, the more you increase this value, the more the Dynamic Audio
2396 Normalizer will behave like a "traditional" normalization filter. On the
2397 contrary, the more you decrease this value, the more the Dynamic Audio
2398 Normalizer will behave like a dynamic range compressor.
2399
2400 @item p
2401 Set the target peak value. This specifies the highest permissible magnitude
2402 level for the normalized audio input. This filter will try to approach the
2403 target peak magnitude as closely as possible, but at the same time it also
2404 makes sure that the normalized signal will never exceed the peak magnitude.
2405 A frame's maximum local gain factor is imposed directly by the target peak
2406 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
2407 It is not recommended to go above this value.
2408
2409 @item m
2410 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
2411 The Dynamic Audio Normalizer determines the maximum possible (local) gain
2412 factor for each input frame, i.e. the maximum gain factor that does not
2413 result in clipping or distortion. The maximum gain factor is determined by
2414 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
2415 additionally bounds the frame's maximum gain factor by a predetermined
2416 (global) maximum gain factor. This is done in order to avoid excessive gain
2417 factors in "silent" or almost silent frames. By default, the maximum gain
2418 factor is 10.0, For most inputs the default value should be sufficient and
2419 it usually is not recommended to increase this value. Though, for input
2420 with an extremely low overall volume level, it may be necessary to allow even
2421 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
2422 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
2423 Instead, a "sigmoid" threshold function will be applied. This way, the
2424 gain factors will smoothly approach the threshold value, but never exceed that
2425 value.
2426
2427 @item r
2428 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
2429 By default, the Dynamic Audio Normalizer performs "peak" normalization.
2430 This means that the maximum local gain factor for each frame is defined
2431 (only) by the frame's highest magnitude sample. This way, the samples can
2432 be amplified as much as possible without exceeding the maximum signal
2433 level, i.e. without clipping. Optionally, however, the Dynamic Audio
2434 Normalizer can also take into account the frame's root mean square,
2435 abbreviated RMS. In electrical engineering, the RMS is commonly used to
2436 determine the power of a time-varying signal. It is therefore considered
2437 that the RMS is a better approximation of the "perceived loudness" than
2438 just looking at the signal's peak magnitude. Consequently, by adjusting all
2439 frames to a constant RMS value, a uniform "perceived loudness" can be
2440 established. If a target RMS value has been specified, a frame's local gain
2441 factor is defined as the factor that would result in exactly that RMS value.
2442 Note, however, that the maximum local gain factor is still restricted by the
2443 frame's highest magnitude sample, in order to prevent clipping.
2444
2445 @item n
2446 Enable channels coupling. By default is enabled.
2447 By default, the Dynamic Audio Normalizer will amplify all channels by the same
2448 amount. This means the same gain factor will be applied to all channels, i.e.
2449 the maximum possible gain factor is determined by the "loudest" channel.
2450 However, in some recordings, it may happen that the volume of the different
2451 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
2452 In this case, this option can be used to disable the channel coupling. This way,
2453 the gain factor will be determined independently for each channel, depending
2454 only on the individual channel's highest magnitude sample. This allows for
2455 harmonizing the volume of the different channels.
2456
2457 @item c
2458 Enable DC bias correction. By default is disabled.
2459 An audio signal (in the time domain) is a sequence of sample values.
2460 In the Dynamic Audio Normalizer these sample values are represented in the
2461 -1.0 to 1.0 range, regardless of the original input format. Normally, the
2462 audio signal, or "waveform", should be centered around the zero point.
2463 That means if we calculate the mean value of all samples in a file, or in a
2464 single frame, then the result should be 0.0 or at least very close to that
2465 value. If, however, there is a significant deviation of the mean value from
2466 0.0, in either positive or negative direction, this is referred to as a
2467 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
2468 Audio Normalizer provides optional DC bias correction.
2469 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
2470 the mean value, or "DC correction" offset, of each input frame and subtract
2471 that value from all of the frame's sample values which ensures those samples
2472 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
2473 boundaries, the DC correction offset values will be interpolated smoothly
2474 between neighbouring frames.
2475
2476 @item b
2477 Enable alternative boundary mode. By default is disabled.
2478 The Dynamic Audio Normalizer takes into account a certain neighbourhood
2479 around each frame. This includes the preceding frames as well as the
2480 subsequent frames. However, for the "boundary" frames, located at the very
2481 beginning and at the very end of the audio file, not all neighbouring
2482 frames are available. In particular, for the first few frames in the audio
2483 file, the preceding frames are not known. And, similarly, for the last few
2484 frames in the audio file, the subsequent frames are not known. Thus, the
2485 question arises which gain factors should be assumed for the missing frames
2486 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
2487 to deal with this situation. The default boundary mode assumes a gain factor
2488 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
2489 "fade out" at the beginning and at the end of the input, respectively.
2490
2491 @item s
2492 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
2493 By default, the Dynamic Audio Normalizer does not apply "traditional"
2494 compression. This means that signal peaks will not be pruned and thus the
2495 full dynamic range will be retained within each local neighbourhood. However,
2496 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
2497 normalization algorithm with a more "traditional" compression.
2498 For this purpose, the Dynamic Audio Normalizer provides an optional compression
2499 (thresholding) function. If (and only if) the compression feature is enabled,
2500 all input frames will be processed by a soft knee thresholding function prior
2501 to the actual normalization process. Put simply, the thresholding function is
2502 going to prune all samples whose magnitude exceeds a certain threshold value.
2503 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
2504 value. Instead, the threshold value will be adjusted for each individual
2505 frame.
2506 In general, smaller parameters result in stronger compression, and vice versa.
2507 Values below 3.0 are not recommended, because audible distortion may appear.
2508 @end table
2509
2510 @section earwax
2511
2512 Make audio easier to listen to on headphones.
2513
2514 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
2515 so that when listened to on headphones the stereo image is moved from
2516 inside your head (standard for headphones) to outside and in front of
2517 the listener (standard for speakers).
2518
2519 Ported from SoX.
2520
2521 @section equalizer
2522
2523 Apply a two-pole peaking equalisation (EQ) filter. With this
2524 filter, the signal-level at and around a selected frequency can
2525 be increased or decreased, whilst (unlike bandpass and bandreject
2526 filters) that at all other frequencies is unchanged.
2527
2528 In order to produce complex equalisation curves, this filter can
2529 be given several times, each with a different central frequency.
2530
2531 The filter accepts the following options:
2532
2533 @table @option
2534 @item frequency, f
2535 Set the filter's central frequency in Hz.
2536
2537 @item width_type, t
2538 Set method to specify band-width of filter.
2539 @table @option
2540 @item h
2541 Hz
2542 @item q
2543 Q-Factor
2544 @item o
2545 octave
2546 @item s
2547 slope
2548 @end table
2549
2550 @item width, w
2551 Specify the band-width of a filter in width_type units.
2552
2553 @item gain, g
2554 Set the required gain or attenuation in dB.
2555 Beware of clipping when using a positive gain.
2556
2557 @item channels, c
2558 Specify which channels to filter, by default all available are filtered.
2559 @end table
2560
2561 @subsection Examples
2562 @itemize
2563 @item
2564 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
2565 @example
2566 equalizer=f=1000:t=h:width=200:g=-10
2567 @end example
2568
2569 @item
2570 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
2571 @example
2572 equalizer=f=1000:t=q:w=1:g=2,equalizer=f=100:t=q:w=2:g=-5
2573 @end example
2574 @end itemize
2575
2576 @section extrastereo
2577
2578 Linearly increases the difference between left and right channels which
2579 adds some sort of "live" effect to playback.
2580
2581 The filter accepts the following options:
2582
2583 @table @option
2584 @item m
2585 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
2586 (average of both channels), with 1.0 sound will be unchanged, with
2587 -1.0 left and right channels will be swapped.
2588
2589 @item c
2590 Enable clipping. By default is enabled.
2591 @end table
2592
2593 @section firequalizer
2594 Apply FIR Equalization using arbitrary frequency response.
2595
2596 The filter accepts the following option:
2597
2598 @table @option
2599 @item gain
2600 Set gain curve equation (in dB). The expression can contain variables:
2601 @table @option
2602 @item f
2603 the evaluated frequency
2604 @item sr
2605 sample rate
2606 @item ch
2607 channel number, set to 0 when multichannels evaluation is disabled
2608 @item chid
2609 channel id, see libavutil/channel_layout.h, set to the first channel id when
2610 multichannels evaluation is disabled
2611 @item chs
2612 number of channels
2613 @item chlayout
2614 channel_layout, see libavutil/channel_layout.h
2615
2616 @end table
2617 and functions:
2618 @table @option
2619 @item gain_interpolate(f)
2620 interpolate gain on frequency f based on gain_entry
2621 @item cubic_interpolate(f)
2622 same as gain_interpolate, but smoother
2623 @end table
2624 This option is also available as command. Default is @code{gain_interpolate(f)}.
2625
2626 @item gain_entry
2627 Set gain entry for gain_interpolate function. The expression can
2628 contain functions:
2629 @table @option
2630 @item entry(f, g)
2631 store gain entry at frequency f with value g
2632 @end table
2633 This option is also available as command.
2634
2635 @item delay
2636 Set filter delay in seconds. Higher value means more accurate.
2637 Default is @code{0.01}.
2638
2639 @item accuracy
2640 Set filter accuracy in Hz. Lower value means more accurate.
2641 Default is @code{5}.
2642
2643 @item wfunc
2644 Set window function. Acceptable values are:
2645 @table @option
2646 @item rectangular
2647 rectangular window, useful when gain curve is already smooth
2648 @item hann
2649 hann window (default)
2650 @item hamming
2651 hamming window
2652 @item blackman
2653 blackman window
2654 @item nuttall3
2655 3-terms continuous 1st derivative nuttall window
2656 @item mnuttall3
2657 minimum 3-terms discontinuous nuttall window
2658 @item nuttall
2659 4-terms continuous 1st derivative nuttall window
2660 @item bnuttall
2661 minimum 4-terms discontinuous nuttall (blackman-nuttall) window
2662 @item bharris
2663 blackman-harris window
2664 @item tukey
2665 tukey window
2666 @end table
2667
2668 @item fixed
2669 If enabled, use fixed number of audio samples. This improves speed when
2670 filtering with large delay. Default is disabled.
2671
2672 @item multi
2673 Enable multichannels evaluation on gain. Default is disabled.
2674
2675 @item zero_phase
2676 Enable zero phase mode by subtracting timestamp to compensate delay.
2677 Default is disabled.
2678
2679 @item scale
2680 Set scale used by gain. Acceptable values are:
2681 @table @option
2682 @item linlin
2683 linear frequency, linear gain
2684 @item linlog
2685 linear frequency, logarithmic (in dB) gain (default)
2686 @item loglin
2687 logarithmic (in octave scale where 20 Hz is 0) frequency, linear gain
2688 @item loglog
2689 logarithmic frequency, logarithmic gain
2690 @end table
2691
2692 @item dumpfile
2693 Set file for dumping, suitable for gnuplot.
2694
2695 @item dumpscale
2696 Set scale for dumpfile. Acceptable values are same with scale option.
2697 Default is linlog.
2698
2699 @item fft2
2700 Enable 2-channel convolution using complex FFT. This improves speed significantly.
2701 Default is disabled.
2702
2703 @item min_phase
2704 Enable minimum phase impulse response. Default is disabled.
2705 @end table
2706
2707 @subsection Examples
2708 @itemize
2709 @item
2710 lowpass at 1000 Hz:
2711 @example
2712 firequalizer=gain='if(lt(f,1000), 0, -INF)'
2713 @end example
2714 @item
2715 lowpass at 1000 Hz with gain_entry:
2716 @example
2717 firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
2718 @end example
2719 @item
2720 custom equalization:
2721 @example
2722 firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
2723 @end example
2724 @item
2725 higher delay with zero phase to compensate delay:
2726 @example
2727 firequalizer=delay=0.1:fixed=on:zero_phase=on
2728 @end example
2729 @item
2730 lowpass on left channel, highpass on right channel:
2731 @example
2732 firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
2733 :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
2734 @end example
2735 @end itemize
2736
2737 @section flanger
2738 Apply a flanging effect to the audio.
2739
2740 The filter accepts the following options:
2741
2742 @table @option
2743 @item delay
2744 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
2745
2746 @item depth
2747 Set added sweep delay in milliseconds. Range from 0 to 10. Default value is 2.
2748
2749 @item regen
2750 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
2751 Default value is 0.
2752
2753 @item width
2754 Set percentage of delayed signal mixed with original. Range from 0 to 100.
2755 Default value is 71.
2756
2757 @item speed
2758 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
2759
2760 @item shape
2761 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
2762 Default value is @var{sinusoidal}.
2763
2764 @item phase
2765 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
2766 Default value is 25.
2767
2768 @item interp
2769 Set delay-line interpolation, @var{linear} or @var{quadratic}.
2770 Default is @var{linear}.
2771 @end table
2772
2773 @section haas
2774 Apply Haas effect to audio.
2775
2776 Note that this makes most sense to apply on mono signals.
2777 With this filter applied to mono signals it give some directionality and
2778 stretches its stereo image.
2779
2780 The filter accepts the following options:
2781
2782 @table @option
2783 @item level_in
2784 Set input level. By default is @var{1}, or 0dB
2785
2786 @item level_out
2787 Set output level. By default is @var{1}, or 0dB.
2788
2789 @item side_gain
2790 Set gain applied to side part of signal. By default is @var{1}.
2791
2792 @item middle_source
2793 Set kind of middle source. Can be one of the following:
2794
2795 @table @samp
2796 @item left
2797 Pick left channel.
2798
2799 @item right
2800 Pick right channel.
2801
2802 @item mid
2803 Pick middle part signal of stereo image.
2804
2805 @item side
2806 Pick side part signal of stereo image.
2807 @end table
2808
2809 @item middle_phase
2810 Change middle phase. By default is disabled.
2811
2812 @item left_delay
2813 Set left channel delay. By default is @var{2.05} milliseconds.
2814
2815 @item left_balance
2816 Set left channel balance. By default is @var{-1}.
2817
2818 @item left_gain
2819 Set left channel gain. By default is @var{1}.
2820
2821 @item left_phase
2822 Change left phase. By default is disabled.
2823
2824 @item right_delay
2825 Set right channel delay. By defaults is @var{2.12} milliseconds.
2826
2827 @item right_balance
2828 Set right channel balance. By default is @var{1}.
2829
2830 @item right_gain
2831 Set right channel gain. By default is @var{1}.
2832
2833 @item right_phase
2834 Change right phase. By default is enabled.
2835 @end table
2836
2837 @section hdcd
2838
2839 Decodes High Definition Compatible Digital (HDCD) data. A 16-bit PCM stream with
2840 embedded HDCD codes is expanded into a 20-bit PCM stream.
2841
2842 The filter supports the Peak Extend and Low-level Gain Adjustment features
2843 of HDCD, and detects the Transient Filter flag.
2844
2845 @example
2846 ffmpeg -i HDCD16.flac -af hdcd OUT24.flac
2847 @end example
2848
2849 When using the filter with wav, note the default encoding for wav is 16-bit,
2850 so the resulting 20-bit stream will be truncated back to 16-bit. Use something
2851 like @command{-acodec pcm_s24le} after the filter to get 24-bit PCM output.
2852 @example
2853 ffmpeg -i HDCD16.wav -af hdcd OUT16.wav
2854 ffmpeg -i HDCD16.wav -af hdcd -c:a pcm_s24le OUT24.wav
2855 @end example
2856
2857 The filter accepts the following options:
2858
2859 @table @option
2860 @item disable_autoconvert
2861 Disable any automatic format conversion or resampling in the filter graph.
2862
2863 @item process_stereo
2864 Process the stereo channels together. If target_gain does not match between
2865 channels, consider it invalid and use the last valid target_gain.
2866
2867 @item cdt_ms
2868 Set the code detect timer period in ms.
2869
2870 @item force_pe
2871 Always extend peaks above -3dBFS even if PE isn't signaled.
2872
2873 @item analyze_mode
2874 Replace audio with a solid tone and adjust the amplitude to signal some
2875 specific aspect of the decoding process. The output file can be loaded in
2876 an audio editor alongside the original to aid analysis.
2877
2878 @code{analyze_mode=pe:force_pe=true} can be used to see all samples above the PE level.
2879
2880 Modes are:
2881 @table @samp
2882 @item 0, off
2883 Disabled
2884 @item 1, lle
2885 Gain adjustment level at each sample
2886 @item 2, pe
2887 Samples where peak extend occurs
2888 @item 3, cdt
2889 Samples where the code detect timer is active
2890 @item 4, tgm
2891 Samples where the target gain does not match between channels
2892 @end table
2893 @end table
2894
2895 @section headphone
2896
2897 Apply head-related transfer functions (HRTFs) to create virtual
2898 loudspeakers around the user for binaural listening via headphones.
2899 The HRIRs are provided via additional streams, for each channel
2900 one stereo input stream is needed.
2901
2902 The filter accepts the following options:
2903
2904 @table @option
2905 @item map
2906 Set mapping of input streams for convolution.
2907 The argument is a '|'-separated list of channel names in order as they
2908 are given as additional stream inputs for filter.
2909 This also specify number of input streams. Number of input streams
2910 must be not less than number of channels in first stream plus one.
2911
2912 @item gain
2913 Set gain applied to audio. Value is in dB. Default is 0.
2914
2915 @item type
2916 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
2917 processing audio in time domain which is slow.
2918 @var{freq} is processing audio in frequency domain which is fast.
2919 Default is @var{freq}.
2920
2921 @item lfe
2922 Set custom gain for LFE channels. Value is in dB. Default is 0.
2923 @end table
2924
2925 @subsection Examples
2926
2927 @itemize
2928 @item
2929 Full example using wav files as coefficients with amovie filters for 7.1 downmix,
2930 each amovie filter use stereo file with IR coefficients as input.
2931 The files give coefficients for each position of virtual loudspeaker:
2932 @example
2933 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"
2934 output.wav
2935 @end example
2936 @end itemize
2937
2938 @section highpass
2939
2940 Apply a high-pass filter with 3dB point frequency.
2941 The filter can be either single-pole, or double-pole (the default).
2942 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
2943
2944 The filter accepts the following options:
2945
2946 @table @option
2947 @item frequency, f
2948 Set frequency in Hz. Default is 3000.
2949
2950 @item poles, p
2951 Set number of poles. Default is 2.
2952
2953 @item width_type, t
2954 Set method to specify band-width of filter.
2955 @table @option
2956 @item h
2957 Hz
2958 @item q
2959 Q-Factor
2960 @item o
2961 octave
2962 @item s
2963 slope
2964 @end table
2965
2966 @item width, w
2967 Specify the band-width of a filter in width_type units.
2968 Applies only to double-pole filter.
2969 The default is 0.707q and gives a Butterworth response.
2970
2971 @item channels, c
2972 Specify which channels to filter, by default all available are filtered.
2973 @end table
2974
2975 @section join
2976
2977 Join multiple input streams into one multi-channel stream.
2978
2979 It accepts the following parameters:
2980 @table @option
2981
2982 @item inputs
2983 The number of input streams. It defaults to 2.
2984
2985 @item channel_layout
2986 The desired output channel layout. It defaults to stereo.
2987
2988 @item map
2989 Map channels from inputs to output. The argument is a '|'-separated list of
2990 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
2991 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
2992 can be either the name of the input channel (e.g. FL for front left) or its
2993 index in the specified input stream. @var{out_channel} is the name of the output
2994 channel.
2995 @end table
2996
2997 The filter will attempt to guess the mappings when they are not specified
2998 explicitly. It does so by first trying to find an unused matching input channel
2999 and if that fails it picks the first unused input channel.
3000
3001 Join 3 inputs (with properly set channel layouts):
3002 @example
3003 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
3004 @end example
3005
3006 Build a 5.1 output from 6 single-channel streams:
3007 @example
3008 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
3009 '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'
3010 out
3011 @end example
3012
3013 @section ladspa
3014
3015 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
3016
3017 To enable compilation of this filter you need to configure FFmpeg with
3018 @code{--enable-ladspa}.
3019
3020 @table @option
3021 @item file, f
3022 Specifies the name of LADSPA plugin library to load. If the environment
3023 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
3024 each one of the directories specified by the colon separated list in
3025 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
3026 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
3027 @file{/usr/lib/ladspa/}.
3028
3029 @item plugin, p
3030 Specifies the plugin within the library. Some libraries contain only
3031 one plugin, but others contain many of them. If this is not set filter
3032 will list all available plugins within the specified library.
3033
3034 @item controls, c
3035 Set the '|' separated list of controls which are zero or more floating point
3036 values that determine the behavior of the loaded plugin (for example delay,
3037 threshold or gain).
3038 Controls need to be defined using the following syntax:
3039 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
3040 @var{valuei} is the value set on the @var{i}-th control.
3041 Alternatively they can be also defined using the following syntax:
3042 @var{value0}|@var{value1}|@var{value2}|..., where
3043 @var{valuei} is the value set on the @var{i}-th control.
3044 If @option{controls} is set to @code{help}, all available controls and
3045 their valid ranges are printed.
3046
3047 @item sample_rate, s
3048 Specify the sample rate, default to 44100. Only used if plugin have
3049 zero inputs.
3050
3051 @item nb_samples, n
3052 Set the number of samples per channel per each output frame, default
3053 is 1024. Only used if plugin have zero inputs.
3054
3055 @item duration, d
3056 Set the minimum duration of the sourced audio. See
3057 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
3058 for the accepted syntax.
3059 Note that the resulting duration may be greater than the specified duration,
3060 as the generated audio is always cut at the end of a complete frame.
3061 If not specified, or the expressed duration is negative, the audio is
3062 supposed to be generated forever.
3063 Only used if plugin have zero inputs.
3064
3065 @end table
3066
3067 @subsection Examples
3068
3069 @itemize
3070 @item
3071 List all available plugins within amp (LADSPA example plugin) library:
3072 @example
3073 ladspa=file=amp
3074 @end example
3075
3076 @item
3077 List all available controls and their valid ranges for @code{vcf_notch}
3078 plugin from @code{VCF} library:
3079 @example
3080 ladspa=f=vcf:p=vcf_notch:c=help
3081 @end example
3082
3083 @item
3084 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
3085 plugin library:
3086 @example
3087 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
3088 @end example
3089
3090 @item
3091 Add reverberation to the audio using TAP-plugins
3092 (Tom's Audio Processing plugins):
3093 @example
3094 ladspa=file=tap_reverb:tap_reverb
3095 @end example
3096
3097 @item
3098 Generate white noise, with 0.2 amplitude:
3099 @example
3100 ladspa=file=cmt:noise_source_white:c=c0=.2
3101 @end example
3102
3103 @item
3104 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
3105 @code{C* Audio Plugin Suite} (CAPS) library:
3106 @example
3107 ladspa=file=caps:Click:c=c1=20'
3108 @end example
3109
3110 @item
3111 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
3112 @example
3113 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
3114 @end example
3115
3116 @item
3117 Increase volume by 20dB using fast lookahead limiter from Steve Harris
3118 @code{SWH Plugins} collection:
3119 @example
3120 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
3121 @end example
3122
3123 @item
3124 Attenuate low frequencies using Multiband EQ from Steve Harris
3125 @code{SWH Plugins} collection:
3126 @example
3127 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
3128 @end example
3129
3130 @item
3131 Reduce stereo image using @code{Narrower} from the @code{C* Audio Plugin Suite}
3132 (CAPS) library:
3133 @example
3134 ladspa=caps:Narrower
3135 @end example
3136
3137 @item
3138 Another white noise, now using @code{C* Audio Plugin Suite} (CAPS) library:
3139 @example
3140 ladspa=caps:White:.2
3141 @end example
3142
3143 @item
3144 Some fractal noise, using @code{C* Audio Plugin Suite} (CAPS) library:
3145 @example
3146 ladspa=caps:Fractal:c=c1=1
3147 @end example
3148
3149 @item
3150 Dynamic volume normalization using @code{VLevel} plugin:
3151 @example
3152 ladspa=vlevel-ladspa:vlevel_mono
3153 @end example
3154 @end itemize
3155
3156 @subsection Commands
3157
3158 This filter supports the following commands:
3159 @table @option
3160 @item cN
3161 Modify the @var{N}-th control value.
3162
3163 If the specified value is not valid, it is ignored and prior one is kept.
3164 @end table
3165
3166 @section loudnorm
3167
3168 EBU R128 loudness normalization. Includes both dynamic and linear normalization modes.
3169 Support for both single pass (livestreams, files) and double pass (files) modes.
3170 This algorithm can target IL, LRA, and maximum true peak. To accurately detect true peaks,
3171 the audio stream will be upsampled to 192 kHz unless the normalization mode is linear.
3172 Use the @code{-ar} option or @code{aresample} filter to explicitly set an output sample rate.
3173
3174 The filter accepts the following options:
3175
3176 @table @option
3177 @item I, i
3178 Set integrated loudness target.
3179 Range is -70.0 - -5.0. Default value is -24.0.
3180
3181 @item LRA, lra
3182 Set loudness range target.
3183 Range is 1.0 - 20.0. Default value is 7.0.
3184
3185 @item TP, tp
3186 Set maximum true peak.
3187 Range is -9.0 - +0.0. Default value is -2.0.
3188
3189 @item measured_I, measured_i
3190 Measured IL of input file.
3191 Range is -99.0 - +0.0.
3192
3193 @item measured_LRA, measured_lra
3194 Measured LRA of input file.
3195 Range is  0.0 - 99.0.
3196
3197 @item measured_TP, measured_tp
3198 Measured true peak of input file.
3199 Range is  -99.0 - +99.0.
3200
3201 @item measured_thresh
3202 Measured threshold of input file.
3203 Range is -99.0 - +0.0.
3204
3205 @item offset
3206 Set offset gain. Gain is applied before the true-peak limiter.
3207 Range is  -99.0 - +99.0. Default is +0.0.
3208
3209 @item linear
3210 Normalize linearly if possible.
3211 measured_I, measured_LRA, measured_TP, and measured_thresh must also
3212 to be specified in order to use this mode.
3213 Options are true or false. Default is true.
3214
3215 @item dual_mono
3216 Treat mono input files as "dual-mono". If a mono file is intended for playback
3217 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
3218 If set to @code{true}, this option will compensate for this effect.
3219 Multi-channel input files are not affected by this option.
3220 Options are true or false. Default is false.
3221
3222 @item print_format
3223 Set print format for stats. Options are summary, json, or none.
3224 Default value is none.
3225 @end table
3226
3227 @section lowpass
3228
3229 Apply a low-pass filter with 3dB point frequency.
3230 The filter can be either single-pole or double-pole (the default).
3231 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
3232
3233 The filter accepts the following options:
3234
3235 @table @option
3236 @item frequency, f
3237 Set frequency in Hz. Default is 500.
3238
3239 @item poles, p
3240 Set number of poles. Default is 2.
3241
3242 @item width_type, t
3243 Set method to specify band-width of filter.
3244 @table @option
3245 @item h
3246 Hz
3247 @item q
3248 Q-Factor
3249 @item o
3250 octave
3251 @item s
3252 slope
3253 @end table
3254
3255 @item width, w
3256 Specify the band-width of a filter in width_type units.
3257 Applies only to double-pole filter.
3258 The default is 0.707q and gives a Butterworth response.
3259
3260 @item channels, c
3261 Specify which channels to filter, by default all available are filtered.
3262 @end table
3263
3264 @subsection Examples
3265 @itemize
3266 @item
3267 Lowpass only LFE channel, it LFE is not present it does nothing:
3268 @example
3269 lowpass=c=LFE
3270 @end example
3271 @end itemize
3272
3273 @anchor{pan}
3274 @section pan
3275
3276 Mix channels with specific gain levels. The filter accepts the output
3277 channel layout followed by a set of channels definitions.
3278
3279 This filter is also designed to efficiently remap the channels of an audio
3280 stream.
3281
3282 The filter accepts parameters of the form:
3283 "@var{l}|@var{outdef}|@var{outdef}|..."
3284
3285 @table @option
3286 @item l
3287 output channel layout or number of channels
3288
3289 @item outdef
3290 output channel specification, of the form:
3291 "@var{out_name}=[@var{gain}*]@var{in_name}[(+-)[@var{gain}*]@var{in_name}...]"
3292
3293 @item out_name
3294 output channel to define, either a channel name (FL, FR, etc.) or a channel
3295 number (c0, c1, etc.)
3296
3297 @item gain
3298 multiplicative coefficient for the channel, 1 leaving the volume unchanged
3299
3300 @item in_name
3301 input channel to use, see out_name for details; it is not possible to mix
3302 named and numbered input channels
3303 @end table
3304
3305 If the `=' in a channel specification is replaced by `<', then the gains for
3306 that specification will be renormalized so that the total is 1, thus
3307 avoiding clipping noise.
3308
3309 @subsection Mixing examples
3310
3311 For example, if you want to down-mix from stereo to mono, but with a bigger
3312 factor for the left channel:
3313 @example
3314 pan=1c|c0=0.9*c0+0.1*c1
3315 @end example
3316
3317 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
3318 7-channels surround:
3319 @example
3320 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
3321 @end example
3322
3323 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
3324 that should be preferred (see "-ac" option) unless you have very specific
3325 needs.
3326
3327 @subsection Remapping examples
3328
3329 The channel remapping will be effective if, and only if:
3330
3331 @itemize
3332 @item gain coefficients are zeroes or ones,
3333 @item only one input per channel output,
3334 @end itemize
3335
3336 If all these conditions are satisfied, the filter will notify the user ("Pure
3337 channel mapping detected"), and use an optimized and lossless method to do the
3338 remapping.
3339
3340 For example, if you have a 5.1 source and want a stereo audio stream by
3341 dropping the extra channels:
3342 @example
3343 pan="stereo| c0=FL | c1=FR"
3344 @end example
3345
3346 Given the same source, you can also switch front left and front right channels
3347 and keep the input channel layout:
3348 @example
3349 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
3350 @end example
3351
3352 If the input is a stereo audio stream, you can mute the front left channel (and
3353 still keep the stereo channel layout) with:
3354 @example
3355 pan="stereo|c1=c1"
3356 @end example
3357
3358 Still with a stereo audio stream input, you can copy the right channel in both
3359 front left and right:
3360 @example
3361 pan="stereo| c0=FR | c1=FR"
3362 @end example
3363
3364 @section replaygain
3365
3366 ReplayGain scanner filter. This filter takes an audio stream as an input and
3367 outputs it unchanged.
3368 At end of filtering it displays @code{track_gain} and @code{track_peak}.
3369
3370 @section resample
3371
3372 Convert the audio sample format, sample rate and channel layout. It is
3373 not meant to be used directly.
3374
3375 @section rubberband
3376 Apply time-stretching and pitch-shifting with librubberband.
3377
3378 The filter accepts the following options:
3379
3380 @table @option
3381 @item tempo
3382 Set tempo scale factor.
3383
3384 @item pitch
3385 Set pitch scale factor.
3386
3387 @item transients
3388 Set transients detector.
3389 Possible values are:
3390 @table @var
3391 @item crisp
3392 @item mixed
3393 @item smooth
3394 @end table
3395
3396 @item detector
3397 Set detector.
3398 Possible values are:
3399 @table @var
3400 @item compound
3401 @item percussive
3402 @item soft
3403 @end table
3404
3405 @item phase
3406 Set phase.
3407 Possible values are:
3408 @table @var
3409 @item laminar
3410 @item independent
3411 @end table
3412
3413 @item window
3414 Set processing window size.
3415 Possible values are:
3416 @table @var
3417 @item standard
3418 @item short
3419 @item long
3420 @end table
3421
3422 @item smoothing
3423 Set smoothing.
3424 Possible values are:
3425 @table @var
3426 @item off
3427 @item on
3428 @end table
3429
3430 @item formant
3431 Enable formant preservation when shift pitching.
3432 Possible values are:
3433 @table @var
3434 @item shifted
3435 @item preserved
3436 @end table
3437
3438 @item pitchq
3439 Set pitch quality.
3440 Possible values are:
3441 @table @var
3442 @item quality
3443 @item speed
3444 @item consistency
3445 @end table
3446
3447 @item channels
3448 Set channels.
3449 Possible values are:
3450 @table @var
3451 @item apart
3452 @item together
3453 @end table
3454 @end table
3455
3456 @section sidechaincompress
3457
3458 This filter acts like normal compressor but has the ability to compress
3459 detected signal using second input signal.
3460 It needs two input streams and returns one output stream.
3461 First input stream will be processed depending on second stream signal.
3462 The filtered signal then can be filtered with other filters in later stages of
3463 processing. See @ref{pan} and @ref{amerge} filter.
3464
3465 The filter accepts the following options:
3466
3467 @table @option
3468 @item level_in
3469 Set input gain. Default is 1. Range is between 0.015625 and 64.
3470
3471 @item threshold
3472 If a signal of second stream raises above this level it will affect the gain
3473 reduction of first stream.
3474 By default is 0.125. Range is between 0.00097563 and 1.
3475
3476 @item ratio
3477 Set a ratio about which the signal is reduced. 1:2 means that if the level
3478 raised 4dB above the threshold, it will be only 2dB above after the reduction.
3479 Default is 2. Range is between 1 and 20.
3480
3481 @item attack
3482 Amount of milliseconds the signal has to rise above the threshold before gain
3483 reduction starts. Default is 20. Range is between 0.01 and 2000.
3484
3485 @item release
3486 Amount of milliseconds the signal has to fall below the threshold before
3487 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
3488
3489 @item makeup
3490 Set the amount by how much signal will be amplified after processing.
3491 Default is 1. Range is from 1 to 64.
3492
3493 @item knee
3494 Curve the sharp knee around the threshold to enter gain reduction more softly.
3495 Default is 2.82843. Range is between 1 and 8.
3496
3497 @item link
3498 Choose if the @code{average} level between all channels of side-chain stream
3499 or the louder(@code{maximum}) channel of side-chain stream affects the
3500 reduction. Default is @code{average}.
3501
3502 @item detection
3503 Should the exact signal be taken in case of @code{peak} or an RMS one in case
3504 of @code{rms}. Default is @code{rms} which is mainly smoother.
3505
3506 @item level_sc
3507 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
3508
3509 @item mix
3510 How much to use compressed signal in output. Default is 1.
3511 Range is between 0 and 1.
3512 @end table
3513
3514 @subsection Examples
3515
3516 @itemize
3517 @item
3518 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
3519 depending on the signal of 2nd input and later compressed signal to be
3520 merged with 2nd input:
3521 @example
3522 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
3523 @end example
3524 @end itemize
3525
3526 @section sidechaingate
3527
3528 A sidechain gate acts like a normal (wideband) gate but has the ability to
3529 filter the detected signal before sending it to the gain reduction stage.
3530 Normally a gate uses the full range signal to detect a level above the
3531 threshold.
3532 For example: If you cut all lower frequencies from your sidechain signal
3533 the gate will decrease the volume of your track only if not enough highs
3534 appear. With this technique you are able to reduce the resonation of a
3535 natural drum or remove "rumbling" of muted strokes from a heavily distorted
3536 guitar.
3537 It needs two input streams and returns one output stream.
3538 First input stream will be processed depending on second stream signal.
3539
3540 The filter accepts the following options:
3541
3542 @table @option
3543 @item level_in
3544 Set input level before filtering.
3545 Default is 1. Allowed range is from 0.015625 to 64.
3546
3547 @item range
3548 Set the level of gain reduction when the signal is below the threshold.
3549 Default is 0.06125. Allowed range is from 0 to 1.
3550
3551 @item threshold
3552 If a signal rises above this level the gain reduction is released.
3553 Default is 0.125. Allowed range is from 0 to 1.
3554
3555 @item ratio
3556 Set a ratio about which the signal is reduced.
3557 Default is 2. Allowed range is from 1 to 9000.
3558
3559 @item attack
3560 Amount of milliseconds the signal has to rise above the threshold before gain
3561 reduction stops.
3562 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
3563
3564 @item release
3565 Amount of milliseconds the signal has to fall below the threshold before the
3566 reduction is increased again. Default is 250 milliseconds.
3567 Allowed range is from 0.01 to 9000.
3568
3569 @item makeup
3570 Set amount of amplification of signal after processing.
3571 Default is 1. Allowed range is from 1 to 64.
3572
3573 @item knee
3574 Curve the sharp knee around the threshold to enter gain reduction more softly.
3575 Default is 2.828427125. Allowed range is from 1 to 8.
3576
3577 @item detection
3578 Choose if exact signal should be taken for detection or an RMS like one.
3579 Default is rms. Can be peak or rms.
3580
3581 @item link
3582 Choose if the average level between all channels or the louder channel affects
3583 the reduction.
3584 Default is average. Can be average or maximum.
3585
3586 @item level_sc
3587 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
3588 @end table
3589
3590 @section silencedetect
3591
3592 Detect silence in an audio stream.
3593
3594 This filter logs a message when it detects that the input audio volume is less
3595 or equal to a noise tolerance value for a duration greater or equal to the
3596 minimum detected noise duration.
3597
3598 The printed times and duration are expressed in seconds.
3599
3600 The filter accepts the following options:
3601
3602 @table @option
3603 @item duration, d
3604 Set silence duration until notification (default is 2 seconds).
3605
3606 @item noise, n
3607 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
3608 specified value) or amplitude ratio. Default is -60dB, or 0.001.
3609 @end table
3610
3611 @subsection Examples
3612
3613 @itemize
3614 @item
3615 Detect 5 seconds of silence with -50dB noise tolerance:
3616 @example
3617 silencedetect=n=-50dB:d=5
3618 @end example
3619
3620 @item
3621 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
3622 tolerance in @file{silence.mp3}:
3623 @example
3624 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
3625 @end example
3626 @end itemize
3627
3628 @section silenceremove
3629
3630 Remove silence from the beginning, middle or end of the audio.
3631
3632 The filter accepts the following options:
3633
3634 @table @option
3635 @item start_periods
3636 This value is used to indicate if audio should be trimmed at beginning of
3637 the audio. A value of zero indicates no silence should be trimmed from the
3638 beginning. When specifying a non-zero value, it trims audio up until it
3639 finds non-silence. Normally, when trimming silence from beginning of audio
3640 the @var{start_periods} will be @code{1} but it can be increased to higher
3641 values to trim all audio up to specific count of non-silence periods.
3642 Default value is @code{0}.
3643
3644 @item start_duration
3645 Specify the amount of time that non-silence must be detected before it stops
3646 trimming audio. By increasing the duration, bursts of noises can be treated
3647 as silence and trimmed off. Default value is @code{0}.
3648
3649 @item start_threshold
3650 This indicates what sample value should be treated as silence. For digital
3651 audio, a value of @code{0} may be fine but for audio recorded from analog,
3652 you may wish to increase the value to account for background noise.
3653 Can be specified in dB (in case "dB" is appended to the specified value)
3654 or amplitude ratio. Default value is @code{0}.
3655
3656 @item stop_periods
3657 Set the count for trimming silence from the end of audio.
3658 To remove silence from the middle of a file, specify a @var{stop_periods}
3659 that is negative. This value is then treated as a positive value and is
3660 used to indicate the effect should restart processing as specified by
3661 @var{start_periods}, making it suitable for removing periods of silence
3662 in the middle of the audio.
3663 Default value is @code{0}.
3664
3665 @item stop_duration
3666 Specify a duration of silence that must exist before audio is not copied any
3667 more. By specifying a higher duration, silence that is wanted can be left in
3668 the audio.
3669 Default value is @code{0}.
3670
3671 @item stop_threshold
3672 This is the same as @option{start_threshold} but for trimming silence from
3673 the end of audio.
3674 Can be specified in dB (in case "dB" is appended to the specified value)
3675 or amplitude ratio. Default value is @code{0}.
3676
3677 @item leave_silence
3678 This indicates that @var{stop_duration} length of audio should be left intact
3679 at the beginning of each period of silence.
3680 For example, if you want to remove long pauses between words but do not want
3681 to remove the pauses completely. Default value is @code{0}.
3682
3683 @item detection
3684 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
3685 and works better with digital silence which is exactly 0.
3686 Default value is @code{rms}.
3687
3688 @item window
3689 Set ratio used to calculate size of window for detecting silence.
3690 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
3691 @end table
3692
3693 @subsection Examples
3694
3695 @itemize
3696 @item
3697 The following example shows how this filter can be used to start a recording
3698 that does not contain the delay at the start which usually occurs between
3699 pressing the record button and the start of the performance:
3700 @example
3701 silenceremove=1:5:0.02
3702 @end example
3703
3704 @item
3705 Trim all silence encountered from beginning to end where there is more than 1
3706 second of silence in audio:
3707 @example
3708 silenceremove=0:0:0:-1:1:-90dB
3709 @end example
3710 @end itemize
3711
3712 @section sofalizer
3713
3714 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
3715 loudspeakers around the user for binaural listening via headphones (audio
3716 formats up to 9 channels supported).
3717 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
3718 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
3719 Austrian Academy of Sciences.
3720
3721 To enable compilation of this filter you need to configure FFmpeg with
3722 @code{--enable-libmysofa}.
3723
3724 The filter accepts the following options:
3725
3726 @table @option
3727 @item sofa
3728 Set the SOFA file used for rendering.
3729
3730 @item gain
3731 Set gain applied to audio. Value is in dB. Default is 0.
3732
3733 @item rotation
3734 Set rotation of virtual loudspeakers in deg. Default is 0.
3735
3736 @item elevation
3737 Set elevation of virtual speakers in deg. Default is 0.
3738
3739 @item radius
3740 Set distance in meters between loudspeakers and the listener with near-field
3741 HRTFs. Default is 1.
3742
3743 @item type
3744 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
3745 processing audio in time domain which is slow.
3746 @var{freq} is processing audio in frequency domain which is fast.
3747 Default is @var{freq}.
3748
3749 @item speakers
3750 Set custom positions of virtual loudspeakers. Syntax for this option is:
3751 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
3752 Each virtual loudspeaker is described with short channel name following with
3753 azimuth and elevation in degrees.
3754 Each virtual loudspeaker description is separated by '|'.
3755 For example to override front left and front right channel positions use:
3756 'speakers=FL 45 15|FR 345 15'.
3757 Descriptions with unrecognised channel names are ignored.
3758
3759 @item lfegain
3760 Set custom gain for LFE channels. Value is in dB. Default is 0.
3761 @end table
3762
3763 @subsection Examples
3764
3765 @itemize
3766 @item
3767 Using ClubFritz6 sofa file:
3768 @example
3769 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
3770 @end example
3771
3772 @item
3773 Using ClubFritz12 sofa file and bigger radius with small rotation:
3774 @example
3775 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
3776 @end example
3777
3778 @item
3779 Similar as above but with custom speaker positions for front left, front right, back left and back right
3780 and also with custom gain:
3781 @example
3782 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|BL 135|BR 225:gain=28"
3783 @end example
3784 @end itemize
3785
3786 @section stereotools
3787
3788 This filter has some handy utilities to manage stereo signals, for converting
3789 M/S stereo recordings to L/R signal while having control over the parameters
3790 or spreading the stereo image of master track.
3791
3792 The filter accepts the following options:
3793
3794 @table @option
3795 @item level_in
3796 Set input level before filtering for both channels. Defaults is 1.
3797 Allowed range is from 0.015625 to 64.
3798
3799 @item level_out
3800 Set output level after filtering for both channels. Defaults is 1.
3801 Allowed range is from 0.015625 to 64.
3802
3803 @item balance_in
3804 Set input balance between both channels. Default is 0.
3805 Allowed range is from -1 to 1.
3806
3807 @item balance_out
3808 Set output balance between both channels. Default is 0.
3809 Allowed range is from -1 to 1.
3810
3811 @item softclip
3812 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
3813 clipping. Disabled by default.
3814
3815 @item mutel
3816 Mute the left channel. Disabled by default.
3817
3818 @item muter
3819 Mute the right channel. Disabled by default.
3820
3821 @item phasel
3822 Change the phase of the left channel. Disabled by default.
3823
3824 @item phaser
3825 Change the phase of the right channel. Disabled by default.
3826
3827 @item mode
3828 Set stereo mode. Available values are:
3829
3830 @table @samp
3831 @item lr>lr
3832 Left/Right to Left/Right, this is default.
3833
3834 @item lr>ms
3835 Left/Right to Mid/Side.
3836
3837 @item ms>lr
3838 Mid/Side to Left/Right.
3839
3840 @item lr>ll
3841 Left/Right to Left/Left.
3842
3843 @item lr>rr
3844 Left/Right to Right/Right.
3845
3846 @item lr>l+r
3847 Left/Right to Left + Right.
3848
3849 @item lr>rl
3850 Left/Right to Right/Left.
3851
3852 @item ms>ll
3853 Mid/Side to Left/Left.
3854
3855 @item ms>rr
3856 Mid/Side to Right/Right.
3857 @end table
3858
3859 @item slev
3860 Set level of side signal. Default is 1.
3861 Allowed range is from 0.015625 to 64.
3862
3863 @item sbal
3864 Set balance of side signal. Default is 0.
3865 Allowed range is from -1 to 1.
3866
3867 @item mlev
3868 Set level of the middle signal. Default is 1.
3869 Allowed range is from 0.015625 to 64.
3870
3871 @item mpan
3872 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
3873
3874 @item base
3875 Set stereo base between mono and inversed channels. Default is 0.
3876 Allowed range is from -1 to 1.
3877
3878 @item delay
3879 Set delay in milliseconds how much to delay left from right channel and
3880 vice versa. Default is 0. Allowed range is from -20 to 20.
3881
3882 @item sclevel
3883 Set S/C level. Default is 1. Allowed range is from 1 to 100.
3884
3885 @item phase
3886 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
3887
3888 @item bmode_in, bmode_out
3889 Set balance mode for balance_in/balance_out option.
3890
3891 Can be one of the following:
3892
3893 @table @samp
3894 @item balance
3895 Classic balance mode. Attenuate one channel at time.
3896 Gain is raised up to 1.
3897
3898 @item amplitude
3899 Similar as classic mode above but gain is raised up to 2.
3900
3901 @item power
3902 Equal power distribution, from -6dB to +6dB range.
3903 @end table
3904 @end table
3905
3906 @subsection Examples
3907
3908 @itemize
3909 @item
3910 Apply karaoke like effect:
3911 @example
3912 stereotools=mlev=0.015625
3913 @end example
3914
3915 @item
3916 Convert M/S signal to L/R:
3917 @example
3918 "stereotools=mode=ms>lr"
3919 @end example
3920 @end itemize
3921
3922 @section stereowiden
3923
3924 This filter enhance the stereo effect by suppressing signal common to both
3925 channels and by delaying the signal of left into right and vice versa,
3926 thereby widening the stereo effect.
3927
3928 The filter accepts the following options:
3929
3930 @table @option
3931 @item delay
3932 Time in milliseconds of the delay of left signal into right and vice versa.
3933 Default is 20 milliseconds.
3934
3935 @item feedback
3936 Amount of gain in delayed signal into right and vice versa. Gives a delay
3937 effect of left signal in right output and vice versa which gives widening
3938 effect. Default is 0.3.
3939
3940 @item crossfeed
3941 Cross feed of left into right with inverted phase. This helps in suppressing
3942 the mono. If the value is 1 it will cancel all the signal common to both
3943 channels. Default is 0.3.
3944
3945 @item drymix
3946 Set level of input signal of original channel. Default is 0.8.
3947 @end table
3948
3949 @section superequalizer
3950 Apply 18 band equalizer.
3951
3952 The filter accepts the following options:
3953 @table @option
3954 @item 1b
3955 Set 65Hz band gain.
3956 @item 2b
3957 Set 92Hz band gain.
3958 @item 3b
3959 Set 131Hz band gain.
3960 @item 4b
3961 Set 185Hz band gain.
3962 @item 5b
3963 Set 262Hz band gain.
3964 @item 6b
3965 Set 370Hz band gain.
3966 @item 7b
3967 Set 523Hz band gain.
3968 @item 8b
3969 Set 740Hz band gain.
3970 @item 9b
3971 Set 1047Hz band gain.
3972 @item 10b
3973 Set 1480Hz band gain.
3974 @item 11b
3975 Set 2093Hz band gain.
3976 @item 12b
3977 Set 2960Hz band gain.
3978 @item 13b
3979 Set 4186Hz band gain.
3980 @item 14b
3981 Set 5920Hz band gain.
3982 @item 15b
3983 Set 8372Hz band gain.
3984 @item 16b
3985 Set 11840Hz band gain.
3986 @item 17b
3987 Set 16744Hz band gain.
3988 @item 18b
3989 Set 20000Hz band gain.
3990 @end table
3991
3992 @section surround
3993 Apply audio surround upmix filter.
3994
3995 This filter allows to produce multichannel output from audio stream.
3996
3997 The filter accepts the following options:
3998
3999 @table @option
4000 @item chl_out
4001 Set output channel layout. By default, this is @var{5.1}.
4002
4003 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4004 for the required syntax.
4005
4006 @item chl_in
4007 Set input channel layout. By default, this is @var{stereo}.
4008
4009 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4010 for the required syntax.
4011
4012 @item level_in
4013 Set input volume level. By default, this is @var{1}.
4014
4015 @item level_out
4016 Set output volume level. By default, this is @var{1}.
4017
4018 @item lfe
4019 Enable LFE channel output if output channel layout has it. By default, this is enabled.
4020
4021 @item lfe_low
4022 Set LFE low cut off frequency. By default, this is @var{128} Hz.
4023
4024 @item lfe_high
4025 Set LFE high cut off frequency. By default, this is @var{256} Hz.
4026
4027 @item fc_in
4028 Set front center input volume. By default, this is @var{1}.
4029
4030 @item fc_out
4031 Set front center output volume. By default, this is @var{1}.
4032
4033 @item lfe_in
4034 Set LFE input volume. By default, this is @var{1}.
4035
4036 @item lfe_out
4037 Set LFE output volume. By default, this is @var{1}.
4038 @end table
4039
4040 @section treble
4041
4042 Boost or cut treble (upper) frequencies of the audio using a two-pole
4043 shelving filter with a response similar to that of a standard
4044 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
4045
4046 The filter accepts the following options:
4047
4048 @table @option
4049 @item gain, g
4050 Give the gain at whichever is the lower of ~22 kHz and the
4051 Nyquist frequency. Its useful range is about -20 (for a large cut)
4052 to +20 (for a large boost). Beware of clipping when using a positive gain.
4053
4054 @item frequency, f
4055 Set the filter's central frequency and so can be used
4056 to extend or reduce the frequency range to be boosted or cut.
4057 The default value is @code{3000} Hz.
4058
4059 @item width_type, t
4060 Set method to specify band-width of filter.
4061 @table @option
4062 @item h
4063 Hz
4064 @item q
4065 Q-Factor
4066 @item o
4067 octave
4068 @item s
4069 slope
4070 @end table
4071
4072 @item width, w
4073 Determine how steep is the filter's shelf transition.
4074
4075 @item channels, c
4076 Specify which channels to filter, by default all available are filtered.
4077 @end table
4078
4079 @section tremolo
4080
4081 Sinusoidal amplitude modulation.
4082
4083 The filter accepts the following options:
4084
4085 @table @option
4086 @item f
4087 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
4088 (20 Hz or lower) will result in a tremolo effect.
4089 This filter may also be used as a ring modulator by specifying
4090 a modulation frequency higher than 20 Hz.
4091 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
4092
4093 @item d
4094 Depth of modulation as a percentage. Range is 0.0 - 1.0.
4095 Default value is 0.5.
4096 @end table
4097
4098 @section vibrato
4099
4100 Sinusoidal phase modulation.
4101
4102 The filter accepts the following options:
4103
4104 @table @option
4105 @item f
4106 Modulation frequency in Hertz.
4107 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
4108
4109 @item d
4110 Depth of modulation as a percentage. Range is 0.0 - 1.0.
4111 Default value is 0.5.
4112 @end table
4113
4114 @section volume
4115
4116 Adjust the input audio volume.
4117
4118 It accepts the following parameters:
4119 @table @option
4120
4121 @item volume
4122 Set audio volume expression.
4123
4124 Output values are clipped to the maximum value.
4125
4126 The output audio volume is given by the relation:
4127 @example
4128 @var{output_volume} = @var{volume} * @var{input_volume}
4129 @end example
4130
4131 The default value for @var{volume} is "1.0".
4132
4133 @item precision
4134 This parameter represents the mathematical precision.
4135
4136 It determines which input sample formats will be allowed, which affects the
4137 precision of the volume scaling.
4138
4139 @table @option
4140 @item fixed
4141 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
4142 @item float
4143 32-bit floating-point; this limits input sample format to FLT. (default)
4144 @item double
4145 64-bit floating-point; this limits input sample format to DBL.
4146 @end table
4147
4148 @item replaygain
4149 Choose the behaviour on encountering ReplayGain side data in input frames.
4150
4151 @table @option
4152 @item drop
4153 Remove ReplayGain side data, ignoring its contents (the default).
4154
4155 @item ignore
4156 Ignore ReplayGain side data, but leave it in the frame.
4157
4158 @item track
4159 Prefer the track gain, if present.
4160
4161 @item album
4162 Prefer the album gain, if present.
4163 @end table
4164
4165 @item replaygain_preamp
4166 Pre-amplification gain in dB to apply to the selected replaygain gain.
4167
4168 Default value for @var{replaygain_preamp} is 0.0.
4169
4170 @item eval
4171 Set when the volume expression is evaluated.
4172
4173 It accepts the following values:
4174 @table @samp
4175 @item once
4176 only evaluate expression once during the filter initialization, or
4177 when the @samp{volume} command is sent
4178
4179 @item frame
4180 evaluate expression for each incoming frame
4181 @end table
4182
4183 Default value is @samp{once}.
4184 @end table
4185
4186 The volume expression can contain the following parameters.
4187
4188 @table @option
4189 @item n
4190 frame number (starting at zero)
4191 @item nb_channels
4192 number of channels
4193 @item nb_consumed_samples
4194 number of samples consumed by the filter
4195 @item nb_samples
4196 number of samples in the current frame
4197 @item pos
4198 original frame position in the file
4199 @item pts
4200 frame PTS
4201 @item sample_rate
4202 sample rate
4203 @item startpts
4204 PTS at start of stream
4205 @item startt
4206 time at start of stream
4207 @item t
4208 frame time
4209 @item tb
4210 timestamp timebase
4211 @item volume
4212 last set volume value
4213 @end table
4214
4215 Note that when @option{eval} is set to @samp{once} only the
4216 @var{sample_rate} and @var{tb} variables are available, all other
4217 variables will evaluate to NAN.
4218
4219 @subsection Commands
4220
4221 This filter supports the following commands:
4222 @table @option
4223 @item volume
4224 Modify the volume expression.
4225 The command accepts the same syntax of the corresponding option.
4226
4227 If the specified expression is not valid, it is kept at its current
4228 value.
4229 @item replaygain_noclip
4230 Prevent clipping by limiting the gain applied.
4231
4232 Default value for @var{replaygain_noclip} is 1.
4233
4234 @end table
4235
4236 @subsection Examples
4237
4238 @itemize
4239 @item
4240 Halve the input audio volume:
4241 @example
4242 volume=volume=0.5
4243 volume=volume=1/2
4244 volume=volume=-6.0206dB
4245 @end example
4246
4247 In all the above example the named key for @option{volume} can be
4248 omitted, for example like in:
4249 @example
4250 volume=0.5
4251 @end example
4252
4253 @item
4254 Increase input audio power by 6 decibels using fixed-point precision:
4255 @example
4256 volume=volume=6dB:precision=fixed
4257 @end example
4258
4259 @item
4260 Fade volume after time 10 with an annihilation period of 5 seconds:
4261 @example
4262 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
4263 @end example
4264 @end itemize
4265
4266 @section volumedetect
4267
4268 Detect the volume of the input video.
4269
4270 The filter has no parameters. The input is not modified. Statistics about
4271 the volume will be printed in the log when the input stream end is reached.
4272
4273 In particular it will show the mean volume (root mean square), maximum
4274 volume (on a per-sample basis), and the beginning of a histogram of the
4275 registered volume values (from the maximum value to a cumulated 1/1000 of
4276 the samples).
4277
4278 All volumes are in decibels relative to the maximum PCM value.
4279
4280 @subsection Examples
4281
4282 Here is an excerpt of the output:
4283 @example
4284 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
4285 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
4286 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
4287 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
4288 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
4289 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
4290 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
4291 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
4292 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
4293 @end example
4294
4295 It means that:
4296 @itemize
4297 @item
4298 The mean square energy is approximately -27 dB, or 10^-2.7.
4299 @item
4300 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
4301 @item
4302 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
4303 @end itemize
4304
4305 In other words, raising the volume by +4 dB does not cause any clipping,
4306 raising it by +5 dB causes clipping for 6 samples, etc.
4307
4308 @c man end AUDIO FILTERS
4309
4310 @chapter Audio Sources
4311 @c man begin AUDIO SOURCES
4312
4313 Below is a description of the currently available audio sources.
4314
4315 @section abuffer
4316
4317 Buffer audio frames, and make them available to the filter chain.
4318
4319 This source is mainly intended for a programmatic use, in particular
4320 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
4321
4322 It accepts the following parameters:
4323 @table @option
4324
4325 @item time_base
4326 The timebase which will be used for timestamps of submitted frames. It must be
4327 either a floating-point number or in @var{numerator}/@var{denominator} form.
4328
4329 @item sample_rate
4330 The sample rate of the incoming audio buffers.
4331
4332 @item sample_fmt
4333 The sample format of the incoming audio buffers.
4334 Either a sample format name or its corresponding integer representation from
4335 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
4336
4337 @item channel_layout
4338 The channel layout of the incoming audio buffers.
4339 Either a channel layout name from channel_layout_map in
4340 @file{libavutil/channel_layout.c} or its corresponding integer representation
4341 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
4342
4343 @item channels
4344 The number of channels of the incoming audio buffers.
4345 If both @var{channels} and @var{channel_layout} are specified, then they
4346 must be consistent.
4347
4348 @end table
4349
4350 @subsection Examples
4351
4352 @example
4353 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
4354 @end example
4355
4356 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
4357 Since the sample format with name "s16p" corresponds to the number
4358 6 and the "stereo" channel layout corresponds to the value 0x3, this is
4359 equivalent to:
4360 @example
4361 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
4362 @end example
4363
4364 @section aevalsrc
4365
4366 Generate an audio signal specified by an expression.
4367
4368 This source accepts in input one or more expressions (one for each
4369 channel), which are evaluated and used to generate a corresponding
4370 audio signal.
4371
4372 This source accepts the following options:
4373
4374 @table @option
4375 @item exprs
4376 Set the '|'-separated expressions list for each separate channel. In case the
4377 @option{channel_layout} option is not specified, the selected channel layout
4378 depends on the number of provided expressions. Otherwise the last
4379 specified expression is applied to the remaining output channels.
4380
4381 @item channel_layout, c
4382 Set the channel layout. The number of channels in the specified layout
4383 must be equal to the number of specified expressions.
4384
4385 @item duration, d
4386 Set the minimum duration of the sourced audio. See
4387 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4388 for the accepted syntax.
4389 Note that the resulting duration may be greater than the specified
4390 duration, as the generated audio is always cut at the end of a
4391 complete frame.
4392
4393 If not specified, or the expressed duration is negative, the audio is
4394 supposed to be generated forever.
4395
4396 @item nb_samples, n
4397 Set the number of samples per channel per each output frame,
4398 default to 1024.
4399
4400 @item sample_rate, s
4401 Specify the sample rate, default to 44100.
4402 @end table
4403
4404 Each expression in @var{exprs} can contain the following constants:
4405
4406 @table @option
4407 @item n
4408 number of the evaluated sample, starting from 0
4409
4410 @item t
4411 time of the evaluated sample expressed in seconds, starting from 0
4412
4413 @item s
4414 sample rate
4415
4416 @end table
4417
4418 @subsection Examples
4419
4420 @itemize
4421 @item
4422 Generate silence:
4423 @example
4424 aevalsrc=0
4425 @end example
4426
4427 @item
4428 Generate a sin signal with frequency of 440 Hz, set sample rate to
4429 8000 Hz:
4430 @example
4431 aevalsrc="sin(440*2*PI*t):s=8000"
4432 @end example
4433
4434 @item
4435 Generate a two channels signal, specify the channel layout (Front
4436 Center + Back Center) explicitly:
4437 @example
4438 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
4439 @end example
4440
4441 @item
4442 Generate white noise:
4443 @example
4444 aevalsrc="-2+random(0)"
4445 @end example
4446
4447 @item
4448 Generate an amplitude modulated signal:
4449 @example
4450 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
4451 @end example
4452
4453 @item
4454 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
4455 @example
4456 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
4457 @end example
4458
4459 @end itemize
4460
4461 @section anullsrc
4462
4463 The null audio source, return unprocessed audio frames. It is mainly useful
4464 as a template and to be employed in analysis / debugging tools, or as
4465 the source for filters which ignore the input data (for example the sox
4466 synth filter).
4467
4468 This source accepts the following options:
4469
4470 @table @option
4471
4472 @item channel_layout, cl
4473
4474 Specifies the channel layout, and can be either an integer or a string
4475 representing a channel layout. The default value of @var{channel_layout}
4476 is "stereo".
4477
4478 Check the channel_layout_map definition in
4479 @file{libavutil/channel_layout.c} for the mapping between strings and
4480 channel layout values.
4481
4482 @item sample_rate, r
4483 Specifies the sample rate, and defaults to 44100.
4484
4485 @item nb_samples, n
4486 Set the number of samples per requested frames.
4487
4488 @end table
4489
4490 @subsection Examples
4491
4492 @itemize
4493 @item
4494 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
4495 @example
4496 anullsrc=r=48000:cl=4
4497 @end example
4498
4499 @item
4500 Do the same operation with a more obvious syntax:
4501 @example
4502 anullsrc=r=48000:cl=mono
4503 @end example
4504 @end itemize
4505
4506 All the parameters need to be explicitly defined.
4507
4508 @section flite
4509
4510 Synthesize a voice utterance using the libflite library.
4511
4512 To enable compilation of this filter you need to configure FFmpeg with
4513 @code{--enable-libflite}.
4514
4515 Note that versions of the flite library prior to 2.0 are not thread-safe.
4516
4517 The filter accepts the following options:
4518
4519 @table @option
4520
4521 @item list_voices
4522 If set to 1, list the names of the available voices and exit
4523 immediately. Default value is 0.
4524
4525 @item nb_samples, n
4526 Set the maximum number of samples per frame. Default value is 512.
4527
4528 @item textfile
4529 Set the filename containing the text to speak.
4530
4531 @item text
4532 Set the text to speak.
4533
4534 @item voice, v
4535 Set the voice to use for the speech synthesis. Default value is
4536 @code{kal}. See also the @var{list_voices} option.
4537 @end table
4538
4539 @subsection Examples
4540
4541 @itemize
4542 @item
4543 Read from file @file{speech.txt}, and synthesize the text using the
4544 standard flite voice:
4545 @example
4546 flite=textfile=speech.txt
4547 @end example
4548
4549 @item
4550 Read the specified text selecting the @code{slt} voice:
4551 @example
4552 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
4553 @end example
4554
4555 @item
4556 Input text to ffmpeg:
4557 @example
4558 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
4559 @end example
4560
4561 @item
4562 Make @file{ffplay} speak the specified text, using @code{flite} and
4563 the @code{lavfi} device:
4564 @example
4565 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
4566 @end example
4567 @end itemize
4568
4569 For more information about libflite, check:
4570 @url{http://www.festvox.org/flite/}
4571
4572 @section anoisesrc
4573
4574 Generate a noise audio signal.
4575
4576 The filter accepts the following options:
4577
4578 @table @option
4579 @item sample_rate, r
4580 Specify the sample rate. Default value is 48000 Hz.
4581
4582 @item amplitude, a
4583 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
4584 is 1.0.
4585
4586 @item duration, d
4587 Specify the duration of the generated audio stream. Not specifying this option
4588 results in noise with an infinite length.
4589
4590 @item color, colour, c
4591 Specify the color of noise. Available noise colors are white, pink, brown,
4592 blue and violet. Default color is white.
4593
4594 @item seed, s
4595 Specify a value used to seed the PRNG.
4596
4597 @item nb_samples, n
4598 Set the number of samples per each output frame, default is 1024.
4599 @end table
4600
4601 @subsection Examples
4602
4603 @itemize
4604
4605 @item
4606 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
4607 @example
4608 anoisesrc=d=60:c=pink:r=44100:a=0.5
4609 @end example
4610 @end itemize
4611
4612 @section sine
4613
4614 Generate an audio signal made of a sine wave with amplitude 1/8.
4615
4616 The audio signal is bit-exact.
4617
4618 The filter accepts the following options:
4619
4620 @table @option
4621
4622 @item frequency, f
4623 Set the carrier frequency. Default is 440 Hz.
4624
4625 @item beep_factor, b
4626 Enable a periodic beep every second with frequency @var{beep_factor} times
4627 the carrier frequency. Default is 0, meaning the beep is disabled.
4628
4629 @item sample_rate, r
4630 Specify the sample rate, default is 44100.
4631
4632 @item duration, d
4633 Specify the duration of the generated audio stream.
4634
4635 @item samples_per_frame
4636 Set the number of samples per output frame.
4637
4638 The expression can contain the following constants:
4639
4640 @table @option
4641 @item n
4642 The (sequential) number of the output audio frame, starting from 0.
4643
4644 @item pts
4645 The PTS (Presentation TimeStamp) of the output audio frame,
4646 expressed in @var{TB} units.
4647
4648 @item t
4649 The PTS of the output audio frame, expressed in seconds.
4650
4651 @item TB
4652 The timebase of the output audio frames.
4653 @end table
4654
4655 Default is @code{1024}.
4656 @end table
4657
4658 @subsection Examples
4659
4660 @itemize
4661
4662 @item
4663 Generate a simple 440 Hz sine wave:
4664 @example
4665 sine
4666 @end example
4667
4668 @item
4669 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
4670 @example
4671 sine=220:4:d=5
4672 sine=f=220:b=4:d=5
4673 sine=frequency=220:beep_factor=4:duration=5
4674 @end example
4675
4676 @item
4677 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
4678 pattern:
4679 @example
4680 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
4681 @end example
4682 @end itemize
4683
4684 @c man end AUDIO SOURCES
4685
4686 @chapter Audio Sinks
4687 @c man begin AUDIO SINKS
4688
4689 Below is a description of the currently available audio sinks.
4690
4691 @section abuffersink
4692
4693 Buffer audio frames, and make them available to the end of filter chain.
4694
4695 This sink is mainly intended for programmatic use, in particular
4696 through the interface defined in @file{libavfilter/buffersink.h}
4697 or the options system.
4698
4699 It accepts a pointer to an AVABufferSinkContext structure, which
4700 defines the incoming buffers' formats, to be passed as the opaque
4701 parameter to @code{avfilter_init_filter} for initialization.
4702 @section anullsink
4703
4704 Null audio sink; do absolutely nothing with the input audio. It is
4705 mainly useful as a template and for use in analysis / debugging
4706 tools.
4707
4708 @c man end AUDIO SINKS
4709
4710 @chapter Video Filters
4711 @c man begin VIDEO FILTERS
4712
4713 When you configure your FFmpeg build, you can disable any of the
4714 existing filters using @code{--disable-filters}.
4715 The configure output will show the video filters included in your
4716 build.
4717
4718 Below is a description of the currently available video filters.
4719
4720 @section alphaextract
4721
4722 Extract the alpha component from the input as a grayscale video. This
4723 is especially useful with the @var{alphamerge} filter.
4724
4725 @section alphamerge
4726
4727 Add or replace the alpha component of the primary input with the
4728 grayscale value of a second input. This is intended for use with
4729 @var{alphaextract} to allow the transmission or storage of frame
4730 sequences that have alpha in a format that doesn't support an alpha
4731 channel.
4732
4733 For example, to reconstruct full frames from a normal YUV-encoded video
4734 and a separate video created with @var{alphaextract}, you might use:
4735 @example
4736 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
4737 @end example
4738
4739 Since this filter is designed for reconstruction, it operates on frame
4740 sequences without considering timestamps, and terminates when either
4741 input reaches end of stream. This will cause problems if your encoding
4742 pipeline drops frames. If you're trying to apply an image as an
4743 overlay to a video stream, consider the @var{overlay} filter instead.
4744
4745 @section ass
4746
4747 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
4748 and libavformat to work. On the other hand, it is limited to ASS (Advanced
4749 Substation Alpha) subtitles files.
4750
4751 This filter accepts the following option in addition to the common options from
4752 the @ref{subtitles} filter:
4753
4754 @table @option
4755 @item shaping
4756 Set the shaping engine
4757
4758 Available values are:
4759 @table @samp
4760 @item auto
4761 The default libass shaping engine, which is the best available.
4762 @item simple
4763 Fast, font-agnostic shaper that can do only substitutions
4764 @item complex
4765 Slower shaper using OpenType for substitutions and positioning
4766 @end table
4767
4768 The default is @code{auto}.
4769 @end table
4770
4771 @section atadenoise
4772 Apply an Adaptive Temporal Averaging Denoiser to the video input.
4773
4774 The filter accepts the following options:
4775
4776 @table @option
4777 @item 0a
4778 Set threshold A for 1st plane. Default is 0.02.
4779 Valid range is 0 to 0.3.
4780
4781 @item 0b
4782 Set threshold B for 1st plane. Default is 0.04.
4783 Valid range is 0 to 5.
4784
4785 @item 1a
4786 Set threshold A for 2nd plane. Default is 0.02.
4787 Valid range is 0 to 0.3.
4788
4789 @item 1b
4790 Set threshold B for 2nd plane. Default is 0.04.
4791 Valid range is 0 to 5.
4792
4793 @item 2a
4794 Set threshold A for 3rd plane. Default is 0.02.
4795 Valid range is 0 to 0.3.
4796
4797 @item 2b
4798 Set threshold B for 3rd plane. Default is 0.04.
4799 Valid range is 0 to 5.
4800
4801 Threshold A is designed to react on abrupt changes in the input signal and
4802 threshold B is designed to react on continuous changes in the input signal.
4803
4804 @item s
4805 Set number of frames filter will use for averaging. Default is 33. Must be odd
4806 number in range [5, 129].
4807
4808 @item p
4809 Set what planes of frame filter will use for averaging. Default is all.
4810 @end table
4811
4812 @section avgblur
4813
4814 Apply average blur filter.
4815
4816 The filter accepts the following options:
4817
4818 @table @option
4819 @item sizeX
4820 Set horizontal kernel size.
4821
4822 @item planes
4823 Set which planes to filter. By default all planes are filtered.
4824
4825 @item sizeY
4826 Set vertical kernel size, if zero it will be same as @code{sizeX}.
4827 Default is @code{0}.
4828 @end table
4829
4830 @section bbox
4831
4832 Compute the bounding box for the non-black pixels in the input frame
4833 luminance plane.
4834
4835 This filter computes the bounding box containing all the pixels with a
4836 luminance value greater than the minimum allowed value.
4837 The parameters describing the bounding box are printed on the filter
4838 log.
4839
4840 The filter accepts the following option:
4841
4842 @table @option
4843 @item min_val
4844 Set the minimal luminance value. Default is @code{16}.
4845 @end table
4846
4847 @section bitplanenoise
4848
4849 Show and measure bit plane noise.
4850
4851 The filter accepts the following options:
4852
4853 @table @option
4854 @item bitplane
4855 Set which plane to analyze. Default is @code{1}.
4856
4857 @item filter
4858 Filter out noisy pixels from @code{bitplane} set above.
4859 Default is disabled.
4860 @end table
4861
4862 @section blackdetect
4863
4864 Detect video intervals that are (almost) completely black. Can be
4865 useful to detect chapter transitions, commercials, or invalid
4866 recordings. Output lines contains the time for the start, end and
4867 duration of the detected black interval expressed in seconds.
4868
4869 In order to display the output lines, you need to set the loglevel at
4870 least to the AV_LOG_INFO value.
4871
4872 The filter accepts the following options:
4873
4874 @table @option
4875 @item black_min_duration, d
4876 Set the minimum detected black duration expressed in seconds. It must
4877 be a non-negative floating point number.
4878
4879 Default value is 2.0.
4880
4881 @item picture_black_ratio_th, pic_th
4882 Set the threshold for considering a picture "black".
4883 Express the minimum value for the ratio:
4884 @example
4885 @var{nb_black_pixels} / @var{nb_pixels}
4886 @end example
4887
4888 for which a picture is considered black.
4889 Default value is 0.98.
4890
4891 @item pixel_black_th, pix_th
4892 Set the threshold for considering a pixel "black".
4893
4894 The threshold expresses the maximum pixel luminance value for which a
4895 pixel is considered "black". The provided value is scaled according to
4896 the following equation:
4897 @example
4898 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
4899 @end example
4900
4901 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
4902 the input video format, the range is [0-255] for YUV full-range
4903 formats and [16-235] for YUV non full-range formats.
4904
4905 Default value is 0.10.
4906 @end table
4907
4908 The following example sets the maximum pixel threshold to the minimum
4909 value, and detects only black intervals of 2 or more seconds:
4910 @example
4911 blackdetect=d=2:pix_th=0.00
4912 @end example
4913
4914 @section blackframe
4915
4916 Detect frames that are (almost) completely black. Can be useful to
4917 detect chapter transitions or commercials. Output lines consist of
4918 the frame number of the detected frame, the percentage of blackness,
4919 the position in the file if known or -1 and the timestamp in seconds.
4920
4921 In order to display the output lines, you need to set the loglevel at
4922 least to the AV_LOG_INFO value.
4923
4924 This filter exports frame metadata @code{lavfi.blackframe.pblack}.
4925 The value represents the percentage of pixels in the picture that
4926 are below the threshold value.
4927
4928 It accepts the following parameters:
4929
4930 @table @option
4931
4932 @item amount
4933 The percentage of the pixels that have to be below the threshold; it defaults to
4934 @code{98}.
4935
4936 @item threshold, thresh
4937 The threshold below which a pixel value is considered black; it defaults to
4938 @code{32}.
4939
4940 @end table
4941
4942 @section blend, tblend
4943
4944 Blend two video frames into each other.
4945
4946 The @code{blend} filter takes two input streams and outputs one
4947 stream, the first input is the "top" layer and second input is
4948 "bottom" layer.  By default, the output terminates when the longest input terminates.
4949
4950 The @code{tblend} (time blend) filter takes two consecutive frames
4951 from one single stream, and outputs the result obtained by blending
4952 the new frame on top of the old frame.
4953
4954 A description of the accepted options follows.
4955
4956 @table @option
4957 @item c0_mode
4958 @item c1_mode
4959 @item c2_mode
4960 @item c3_mode
4961 @item all_mode
4962 Set blend mode for specific pixel component or all pixel components in case
4963 of @var{all_mode}. Default value is @code{normal}.
4964
4965 Available values for component modes are:
4966 @table @samp
4967 @item addition
4968 @item grainmerge
4969 @item and
4970 @item average
4971 @item burn
4972 @item darken
4973 @item difference
4974 @item grainextract
4975 @item divide
4976 @item dodge
4977 @item freeze
4978 @item exclusion
4979 @item extremity
4980 @item glow
4981 @item hardlight
4982 @item hardmix
4983 @item heat
4984 @item lighten
4985 @item linearlight
4986 @item multiply
4987 @item multiply128
4988 @item negation
4989 @item normal
4990 @item or
4991 @item overlay
4992 @item phoenix
4993 @item pinlight
4994 @item reflect
4995 @item screen
4996 @item softlight
4997 @item subtract
4998 @item vividlight
4999 @item xor
5000 @end table
5001
5002 @item c0_opacity
5003 @item c1_opacity
5004 @item c2_opacity
5005 @item c3_opacity
5006 @item all_opacity
5007 Set blend opacity for specific pixel component or all pixel components in case
5008 of @var{all_opacity}. Only used in combination with pixel component blend modes.
5009
5010 @item c0_expr
5011 @item c1_expr
5012 @item c2_expr
5013 @item c3_expr
5014 @item all_expr
5015 Set blend expression for specific pixel component or all pixel components in case
5016 of @var{all_expr}. Note that related mode options will be ignored if those are set.
5017
5018 The expressions can use the following variables:
5019
5020 @table @option
5021 @item N
5022 The sequential number of the filtered frame, starting from @code{0}.
5023
5024 @item X
5025 @item Y
5026 the coordinates of the current sample
5027
5028 @item W
5029 @item H
5030 the width and height of currently filtered plane
5031
5032 @item SW
5033 @item SH
5034 Width and height scale depending on the currently filtered plane. It is the
5035 ratio between the corresponding luma plane number of pixels and the current
5036 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
5037 @code{0.5,0.5} for chroma planes.
5038
5039 @item T
5040 Time of the current frame, expressed in seconds.
5041
5042 @item TOP, A
5043 Value of pixel component at current location for first video frame (top layer).
5044
5045 @item BOTTOM, B
5046 Value of pixel component at current location for second video frame (bottom layer).
5047 @end table
5048 @end table
5049
5050 The @code{blend} filter also supports the @ref{framesync} options.
5051
5052 @subsection Examples
5053
5054 @itemize
5055 @item
5056 Apply transition from bottom layer to top layer in first 10 seconds:
5057 @example
5058 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
5059 @end example
5060
5061 @item
5062 Apply linear horizontal transition from top layer to bottom layer:
5063 @example
5064 blend=all_expr='A*(X/W)+B*(1-X/W)'
5065 @end example
5066
5067 @item
5068 Apply 1x1 checkerboard effect:
5069 @example
5070 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
5071 @end example
5072
5073 @item
5074 Apply uncover left effect:
5075 @example
5076 blend=all_expr='if(gte(N*SW+X,W),A,B)'
5077 @end example
5078
5079 @item
5080 Apply uncover down effect:
5081 @example
5082 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
5083 @end example
5084
5085 @item
5086 Apply uncover up-left effect:
5087 @example
5088 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
5089 @end example
5090
5091 @item
5092 Split diagonally video and shows top and bottom layer on each side:
5093 @example
5094 blend=all_expr='if(gt(X,Y*(W/H)),A,B)'
5095 @end example
5096
5097 @item
5098 Display differences between the current and the previous frame:
5099 @example
5100 tblend=all_mode=grainextract
5101 @end example
5102 @end itemize
5103
5104 @section boxblur
5105
5106 Apply a boxblur algorithm to the input video.
5107
5108 It accepts the following parameters:
5109
5110 @table @option
5111
5112 @item luma_radius, lr
5113 @item luma_power, lp
5114 @item chroma_radius, cr
5115 @item chroma_power, cp
5116 @item alpha_radius, ar
5117 @item alpha_power, ap
5118
5119 @end table
5120
5121 A description of the accepted options follows.
5122
5123 @table @option
5124 @item luma_radius, lr
5125 @item chroma_radius, cr
5126 @item alpha_radius, ar
5127 Set an expression for the box radius in pixels used for blurring the
5128 corresponding input plane.
5129
5130 The radius value must be a non-negative number, and must not be
5131 greater than the value of the expression @code{min(w,h)/2} for the
5132 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
5133 planes.
5134
5135 Default value for @option{luma_radius} is "2". If not specified,
5136 @option{chroma_radius} and @option{alpha_radius} default to the
5137 corresponding value set for @option{luma_radius}.
5138
5139 The expressions can contain the following constants:
5140 @table @option
5141 @item w
5142 @item h
5143 The input width and height in pixels.
5144
5145 @item cw
5146 @item ch
5147 The input chroma image width and height in pixels.
5148
5149 @item hsub
5150 @item vsub
5151 The horizontal and vertical chroma subsample values. For example, for the
5152 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
5153 @end table
5154
5155 @item luma_power, lp
5156 @item chroma_power, cp
5157 @item alpha_power, ap
5158 Specify how many times the boxblur filter is applied to the
5159 corresponding plane.
5160
5161 Default value for @option{luma_power} is 2. If not specified,
5162 @option{chroma_power} and @option{alpha_power} default to the
5163 corresponding value set for @option{luma_power}.
5164
5165 A value of 0 will disable the effect.
5166 @end table
5167
5168 @subsection Examples
5169
5170 @itemize
5171 @item
5172 Apply a boxblur filter with the luma, chroma, and alpha radii
5173 set to 2:
5174 @example
5175 boxblur=luma_radius=2:luma_power=1
5176 boxblur=2:1
5177 @end example
5178
5179 @item
5180 Set the luma radius to 2, and alpha and chroma radius to 0:
5181 @example
5182 boxblur=2:1:cr=0:ar=0
5183 @end example
5184
5185 @item
5186 Set the luma and chroma radii to a fraction of the video dimension:
5187 @example
5188 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
5189 @end example
5190 @end itemize
5191
5192 @section bwdif
5193
5194 Deinterlace the input video ("bwdif" stands for "Bob Weaver
5195 Deinterlacing Filter").
5196
5197 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
5198 interpolation algorithms.
5199 It accepts the following parameters:
5200
5201 @table @option
5202 @item mode
5203 The interlacing mode to adopt. It accepts one of the following values:
5204
5205 @table @option
5206 @item 0, send_frame
5207 Output one frame for each frame.
5208 @item 1, send_field
5209 Output one frame for each field.
5210 @end table
5211
5212 The default value is @code{send_field}.
5213
5214 @item parity
5215 The picture field parity assumed for the input interlaced video. It accepts one
5216 of the following values:
5217
5218 @table @option
5219 @item 0, tff
5220 Assume the top field is first.
5221 @item 1, bff
5222 Assume the bottom field is first.
5223 @item -1, auto
5224 Enable automatic detection of field parity.
5225 @end table
5226
5227 The default value is @code{auto}.
5228 If the interlacing is unknown or the decoder does not export this information,
5229 top field first will be assumed.
5230
5231 @item deint
5232 Specify which frames to deinterlace. Accept one of the following
5233 values:
5234
5235 @table @option
5236 @item 0, all
5237 Deinterlace all frames.
5238 @item 1, interlaced
5239 Only deinterlace frames marked as interlaced.
5240 @end table
5241
5242 The default value is @code{all}.
5243 @end table
5244
5245 @section chromakey
5246 YUV colorspace color/chroma keying.
5247
5248 The filter accepts the following options:
5249
5250 @table @option
5251 @item color
5252 The color which will be replaced with transparency.
5253
5254 @item similarity
5255 Similarity percentage with the key color.
5256
5257 0.01 matches only the exact key color, while 1.0 matches everything.
5258
5259 @item blend
5260 Blend percentage.
5261
5262 0.0 makes pixels either fully transparent, or not transparent at all.
5263
5264 Higher values result in semi-transparent pixels, with a higher transparency
5265 the more similar the pixels color is to the key color.
5266
5267 @item yuv
5268 Signals that the color passed is already in YUV instead of RGB.
5269
5270 Literal colors like "green" or "red" don't make sense with this enabled anymore.
5271 This can be used to pass exact YUV values as hexadecimal numbers.
5272 @end table
5273
5274 @subsection Examples
5275
5276 @itemize
5277 @item
5278 Make every green pixel in the input image transparent:
5279 @example
5280 ffmpeg -i input.png -vf chromakey=green out.png
5281 @end example
5282
5283 @item
5284 Overlay a greenscreen-video on top of a static black background.
5285 @example
5286 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
5287 @end example
5288 @end itemize
5289
5290 @section ciescope
5291
5292 Display CIE color diagram with pixels overlaid onto it.
5293
5294 The filter accepts the following options:
5295
5296 @table @option
5297 @item system
5298 Set color system.
5299
5300 @table @samp
5301 @item ntsc, 470m
5302 @item ebu, 470bg
5303 @item smpte
5304 @item 240m
5305 @item apple
5306 @item widergb
5307 @item cie1931
5308 @item rec709, hdtv
5309 @item uhdtv, rec2020
5310 @end table
5311
5312 @item cie
5313 Set CIE system.
5314
5315 @table @samp
5316 @item xyy
5317 @item ucs
5318 @item luv
5319 @end table
5320
5321 @item gamuts
5322 Set what gamuts to draw.
5323
5324 See @code{system} option for available values.
5325
5326 @item size, s
5327 Set ciescope size, by default set to 512.
5328
5329 @item intensity, i
5330 Set intensity used to map input pixel values to CIE diagram.
5331
5332 @item contrast
5333 Set contrast used to draw tongue colors that are out of active color system gamut.
5334
5335 @item corrgamma
5336 Correct gamma displayed on scope, by default enabled.
5337
5338 @item showwhite
5339 Show white point on CIE diagram, by default disabled.
5340
5341 @item gamma
5342 Set input gamma. Used only with XYZ input color space.
5343 @end table
5344
5345 @section codecview
5346
5347 Visualize information exported by some codecs.
5348
5349 Some codecs can export information through frames using side-data or other
5350 means. For example, some MPEG based codecs export motion vectors through the
5351 @var{export_mvs} flag in the codec @option{flags2} option.
5352
5353 The filter accepts the following option:
5354
5355 @table @option
5356 @item mv
5357 Set motion vectors to visualize.
5358
5359 Available flags for @var{mv} are:
5360
5361 @table @samp
5362 @item pf
5363 forward predicted MVs of P-frames
5364 @item bf
5365 forward predicted MVs of B-frames
5366 @item bb
5367 backward predicted MVs of B-frames
5368 @end table
5369
5370 @item qp
5371 Display quantization parameters using the chroma planes.
5372
5373 @item mv_type, mvt
5374 Set motion vectors type to visualize. Includes MVs from all frames unless specified by @var{frame_type} option.
5375
5376 Available flags for @var{mv_type} are:
5377
5378 @table @samp
5379 @item fp
5380 forward predicted MVs
5381 @item bp
5382 backward predicted MVs
5383 @end table
5384
5385 @item frame_type, ft
5386 Set frame type to visualize motion vectors of.
5387
5388 Available flags for @var{frame_type} are:
5389
5390 @table @samp
5391 @item if
5392 intra-coded frames (I-frames)
5393 @item pf
5394 predicted frames (P-frames)
5395 @item bf
5396 bi-directionally predicted frames (B-frames)
5397 @end table
5398 @end table
5399
5400 @subsection Examples
5401
5402 @itemize
5403 @item
5404 Visualize forward predicted MVs of all frames using @command{ffplay}:
5405 @example
5406 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv_type=fp
5407 @end example
5408
5409 @item
5410 Visualize multi-directionals MVs of P and B-Frames using @command{ffplay}:
5411 @example
5412 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv=pf+bf+bb
5413 @end example
5414 @end itemize
5415
5416 @section colorbalance
5417 Modify intensity of primary colors (red, green and blue) of input frames.
5418
5419 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
5420 regions for the red-cyan, green-magenta or blue-yellow balance.
5421
5422 A positive adjustment value shifts the balance towards the primary color, a negative
5423 value towards the complementary color.
5424
5425 The filter accepts the following options:
5426
5427 @table @option
5428 @item rs
5429 @item gs
5430 @item bs
5431 Adjust red, green and blue shadows (darkest pixels).
5432
5433 @item rm
5434 @item gm
5435 @item bm
5436 Adjust red, green and blue midtones (medium pixels).
5437
5438 @item rh
5439 @item gh
5440 @item bh
5441 Adjust red, green and blue highlights (brightest pixels).
5442
5443 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
5444 @end table
5445
5446 @subsection Examples
5447
5448 @itemize
5449 @item
5450 Add red color cast to shadows:
5451 @example
5452 colorbalance=rs=.3
5453 @end example
5454 @end itemize
5455
5456 @section colorkey
5457 RGB colorspace color keying.
5458
5459 The filter accepts the following options:
5460
5461 @table @option
5462 @item color
5463 The color which will be replaced with transparency.
5464
5465 @item similarity
5466 Similarity percentage with the key color.
5467
5468 0.01 matches only the exact key color, while 1.0 matches everything.
5469
5470 @item blend
5471 Blend percentage.
5472
5473 0.0 makes pixels either fully transparent, or not transparent at all.
5474
5475 Higher values result in semi-transparent pixels, with a higher transparency
5476 the more similar the pixels color is to the key color.
5477 @end table
5478
5479 @subsection Examples
5480
5481 @itemize
5482 @item
5483 Make every green pixel in the input image transparent:
5484 @example
5485 ffmpeg -i input.png -vf colorkey=green out.png
5486 @end example
5487
5488 @item
5489 Overlay a greenscreen-video on top of a static background image.
5490 @example
5491 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
5492 @end example
5493 @end itemize
5494
5495 @section colorlevels
5496
5497 Adjust video input frames using levels.
5498
5499 The filter accepts the following options:
5500
5501 @table @option
5502 @item rimin
5503 @item gimin
5504 @item bimin
5505 @item aimin
5506 Adjust red, green, blue and alpha input black point.
5507 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
5508
5509 @item rimax
5510 @item gimax
5511 @item bimax
5512 @item aimax
5513 Adjust red, green, blue and alpha input white point.
5514 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
5515
5516 Input levels are used to lighten highlights (bright tones), darken shadows
5517 (dark tones), change the balance of bright and dark tones.
5518
5519 @item romin
5520 @item gomin
5521 @item bomin
5522 @item aomin
5523 Adjust red, green, blue and alpha output black point.
5524 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
5525
5526 @item romax
5527 @item gomax
5528 @item bomax
5529 @item aomax
5530 Adjust red, green, blue and alpha output white point.
5531 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
5532
5533 Output levels allows manual selection of a constrained output level range.
5534 @end table
5535
5536 @subsection Examples
5537
5538 @itemize
5539 @item
5540 Make video output darker:
5541 @example
5542 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
5543 @end example
5544
5545 @item
5546 Increase contrast:
5547 @example
5548 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
5549 @end example
5550
5551 @item
5552 Make video output lighter:
5553 @example
5554 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
5555 @end example
5556
5557 @item
5558 Increase brightness:
5559 @example
5560 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
5561 @end example
5562 @end itemize
5563
5564 @section colorchannelmixer
5565
5566 Adjust video input frames by re-mixing color channels.
5567
5568 This filter modifies a color channel by adding the values associated to
5569 the other channels of the same pixels. For example if the value to
5570 modify is red, the output value will be:
5571 @example
5572 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
5573 @end example
5574
5575 The filter accepts the following options:
5576
5577 @table @option
5578 @item rr
5579 @item rg
5580 @item rb
5581 @item ra
5582 Adjust contribution of input red, green, blue and alpha channels for output red channel.
5583 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
5584
5585 @item gr
5586 @item gg
5587 @item gb
5588 @item ga
5589 Adjust contribution of input red, green, blue and alpha channels for output green channel.
5590 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
5591
5592 @item br
5593 @item bg
5594 @item bb
5595 @item ba
5596 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
5597 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
5598
5599 @item ar
5600 @item ag
5601 @item ab
5602 @item aa
5603 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
5604 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
5605
5606 Allowed ranges for options are @code{[-2.0, 2.0]}.
5607 @end table
5608
5609 @subsection Examples
5610
5611 @itemize
5612 @item
5613 Convert source to grayscale:
5614 @example
5615 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
5616 @end example
5617 @item
5618 Simulate sepia tones:
5619 @example
5620 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
5621 @end example
5622 @end itemize
5623
5624 @section colormatrix
5625
5626 Convert color matrix.
5627
5628 The filter accepts the following options:
5629
5630 @table @option
5631 @item src
5632 @item dst
5633 Specify the source and destination color matrix. Both values must be
5634 specified.
5635
5636 The accepted values are:
5637 @table @samp
5638 @item bt709
5639 BT.709
5640
5641 @item fcc
5642 FCC
5643
5644 @item bt601
5645 BT.601
5646
5647 @item bt470
5648 BT.470
5649
5650 @item bt470bg
5651 BT.470BG
5652
5653 @item smpte170m
5654 SMPTE-170M
5655
5656 @item smpte240m
5657 SMPTE-240M
5658
5659 @item bt2020
5660 BT.2020
5661 @end table
5662 @end table
5663
5664 For example to convert from BT.601 to SMPTE-240M, use the command:
5665 @example
5666 colormatrix=bt601:smpte240m
5667 @end example
5668
5669 @section colorspace
5670
5671 Convert colorspace, transfer characteristics or color primaries.
5672 Input video needs to have an even size.
5673
5674 The filter accepts the following options:
5675
5676 @table @option
5677 @anchor{all}
5678 @item all
5679 Specify all color properties at once.
5680
5681 The accepted values are:
5682 @table @samp
5683 @item bt470m
5684 BT.470M
5685
5686 @item bt470bg
5687 BT.470BG
5688
5689 @item bt601-6-525
5690 BT.601-6 525
5691
5692 @item bt601-6-625
5693 BT.601-6 625
5694
5695 @item bt709
5696 BT.709
5697
5698 @item smpte170m
5699 SMPTE-170M
5700
5701 @item smpte240m
5702 SMPTE-240M
5703
5704 @item bt2020
5705 BT.2020
5706
5707 @end table
5708
5709 @anchor{space}
5710 @item space
5711 Specify output colorspace.
5712
5713 The accepted values are:
5714 @table @samp
5715 @item bt709
5716 BT.709
5717
5718 @item fcc
5719 FCC
5720
5721 @item bt470bg
5722 BT.470BG or BT.601-6 625
5723
5724 @item smpte170m
5725 SMPTE-170M or BT.601-6 525
5726
5727 @item smpte240m
5728 SMPTE-240M
5729
5730 @item ycgco
5731 YCgCo
5732
5733 @item bt2020ncl
5734 BT.2020 with non-constant luminance
5735
5736 @end table
5737
5738 @anchor{trc}
5739 @item trc
5740 Specify output transfer characteristics.
5741
5742 The accepted values are:
5743 @table @samp
5744 @item bt709
5745 BT.709
5746
5747 @item bt470m
5748 BT.470M
5749
5750 @item bt470bg
5751 BT.470BG
5752
5753 @item gamma22
5754 Constant gamma of 2.2
5755
5756 @item gamma28
5757 Constant gamma of 2.8
5758
5759 @item smpte170m
5760 SMPTE-170M, BT.601-6 625 or BT.601-6 525
5761
5762 @item smpte240m
5763 SMPTE-240M
5764
5765 @item srgb
5766 SRGB
5767
5768 @item iec61966-2-1
5769 iec61966-2-1
5770
5771 @item iec61966-2-4
5772 iec61966-2-4
5773
5774 @item xvycc
5775 xvycc
5776
5777 @item bt2020-10
5778 BT.2020 for 10-bits content
5779
5780 @item bt2020-12
5781 BT.2020 for 12-bits content
5782
5783 @end table
5784
5785 @anchor{primaries}
5786 @item primaries
5787 Specify output color primaries.
5788
5789 The accepted values are:
5790 @table @samp
5791 @item bt709
5792 BT.709
5793
5794 @item bt470m
5795 BT.470M
5796
5797 @item bt470bg
5798 BT.470BG or BT.601-6 625
5799
5800 @item smpte170m
5801 SMPTE-170M or BT.601-6 525
5802
5803 @item smpte240m
5804 SMPTE-240M
5805
5806 @item film
5807 film
5808
5809 @item smpte431
5810 SMPTE-431
5811
5812 @item smpte432
5813 SMPTE-432
5814
5815 @item bt2020
5816 BT.2020
5817
5818 @item jedec-p22
5819 JEDEC P22 phosphors
5820
5821 @end table
5822
5823 @anchor{range}
5824 @item range
5825 Specify output color range.
5826
5827 The accepted values are:
5828 @table @samp
5829 @item tv
5830 TV (restricted) range
5831
5832 @item mpeg
5833 MPEG (restricted) range
5834
5835 @item pc
5836 PC (full) range
5837
5838 @item jpeg
5839 JPEG (full) range
5840
5841 @end table
5842
5843 @item format
5844 Specify output color format.
5845
5846 The accepted values are:
5847 @table @samp
5848 @item yuv420p
5849 YUV 4:2:0 planar 8-bits
5850
5851 @item yuv420p10
5852 YUV 4:2:0 planar 10-bits
5853
5854 @item yuv420p12
5855 YUV 4:2:0 planar 12-bits
5856
5857 @item yuv422p
5858 YUV 4:2:2 planar 8-bits
5859
5860 @item yuv422p10
5861 YUV 4:2:2 planar 10-bits
5862
5863 @item yuv422p12
5864 YUV 4:2:2 planar 12-bits
5865
5866 @item yuv444p
5867 YUV 4:4:4 planar 8-bits
5868
5869 @item yuv444p10
5870 YUV 4:4:4 planar 10-bits
5871
5872 @item yuv444p12
5873 YUV 4:4:4 planar 12-bits
5874
5875 @end table
5876
5877 @item fast
5878 Do a fast conversion, which skips gamma/primary correction. This will take
5879 significantly less CPU, but will be mathematically incorrect. To get output
5880 compatible with that produced by the colormatrix filter, use fast=1.
5881
5882 @item dither
5883 Specify dithering mode.
5884
5885 The accepted values are:
5886 @table @samp
5887 @item none
5888 No dithering
5889
5890 @item fsb
5891 Floyd-Steinberg dithering
5892 @end table
5893
5894 @item wpadapt
5895 Whitepoint adaptation mode.
5896
5897 The accepted values are:
5898 @table @samp
5899 @item bradford
5900 Bradford whitepoint adaptation
5901
5902 @item vonkries
5903 von Kries whitepoint adaptation
5904
5905 @item identity
5906 identity whitepoint adaptation (i.e. no whitepoint adaptation)
5907 @end table
5908
5909 @item iall
5910 Override all input properties at once. Same accepted values as @ref{all}.
5911
5912 @item ispace
5913 Override input colorspace. Same accepted values as @ref{space}.
5914
5915 @item iprimaries
5916 Override input color primaries. Same accepted values as @ref{primaries}.
5917
5918 @item itrc
5919 Override input transfer characteristics. Same accepted values as @ref{trc}.
5920
5921 @item irange
5922 Override input color range. Same accepted values as @ref{range}.
5923
5924 @end table
5925
5926 The filter converts the transfer characteristics, color space and color
5927 primaries to the specified user values. The output value, if not specified,
5928 is set to a default value based on the "all" property. If that property is
5929 also not specified, the filter will log an error. The output color range and
5930 format default to the same value as the input color range and format. The
5931 input transfer characteristics, color space, color primaries and color range
5932 should be set on the input data. If any of these are missing, the filter will
5933 log an error and no conversion will take place.
5934
5935 For example to convert the input to SMPTE-240M, use the command:
5936 @example
5937 colorspace=smpte240m
5938 @end example
5939
5940 @section convolution
5941
5942 Apply convolution 3x3 or 5x5 filter.
5943
5944 The filter accepts the following options:
5945
5946 @table @option
5947 @item 0m
5948 @item 1m
5949 @item 2m
5950 @item 3m
5951 Set matrix for each plane.
5952 Matrix is sequence of 9 or 25 signed integers.
5953
5954 @item 0rdiv
5955 @item 1rdiv
5956 @item 2rdiv
5957 @item 3rdiv
5958 Set multiplier for calculated value for each plane.
5959
5960 @item 0bias
5961 @item 1bias
5962 @item 2bias
5963 @item 3bias
5964 Set bias for each plane. This value is added to the result of the multiplication.
5965 Useful for making the overall image brighter or darker. Default is 0.0.
5966 @end table
5967
5968 @subsection Examples
5969
5970 @itemize
5971 @item
5972 Apply sharpen:
5973 @example
5974 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"
5975 @end example
5976
5977 @item
5978 Apply blur:
5979 @example
5980 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"
5981 @end example
5982
5983 @item
5984 Apply edge enhance:
5985 @example
5986 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"
5987 @end example
5988
5989 @item
5990 Apply edge detect:
5991 @example
5992 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"
5993 @end example
5994
5995 @item
5996 Apply laplacian edge detector which includes diagonals:
5997 @example
5998 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"
5999 @end example
6000
6001 @item
6002 Apply emboss:
6003 @example
6004 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"
6005 @end example
6006 @end itemize
6007
6008 @section convolve
6009
6010 Apply 2D convolution of video stream in frequency domain using second stream
6011 as impulse.
6012
6013 The filter accepts the following options:
6014
6015 @table @option
6016 @item planes
6017 Set which planes to process.
6018
6019 @item impulse
6020 Set which impulse video frames will be processed, can be @var{first}
6021 or @var{all}. Default is @var{all}.
6022 @end table
6023
6024 The @code{convolve} filter also supports the @ref{framesync} options.
6025
6026 @section copy
6027
6028 Copy the input video source unchanged to the output. This is mainly useful for
6029 testing purposes.
6030
6031 @anchor{coreimage}
6032 @section coreimage
6033 Video filtering on GPU using Apple's CoreImage API on OSX.
6034
6035 Hardware acceleration is based on an OpenGL context. Usually, this means it is
6036 processed by video hardware. However, software-based OpenGL implementations
6037 exist which means there is no guarantee for hardware processing. It depends on
6038 the respective OSX.
6039
6040 There are many filters and image generators provided by Apple that come with a
6041 large variety of options. The filter has to be referenced by its name along
6042 with its options.
6043
6044 The coreimage filter accepts the following options:
6045 @table @option
6046 @item list_filters
6047 List all available filters and generators along with all their respective
6048 options as well as possible minimum and maximum values along with the default
6049 values.
6050 @example
6051 list_filters=true
6052 @end example
6053
6054 @item filter
6055 Specify all filters by their respective name and options.
6056 Use @var{list_filters} to determine all valid filter names and options.
6057 Numerical options are specified by a float value and are automatically clamped
6058 to their respective value range.  Vector and color options have to be specified
6059 by a list of space separated float values. Character escaping has to be done.
6060 A special option name @code{default} is available to use default options for a
6061 filter.
6062
6063 It is required to specify either @code{default} or at least one of the filter options.
6064 All omitted options are used with their default values.
6065 The syntax of the filter string is as follows:
6066 @example
6067 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
6068 @end example
6069
6070 @item output_rect
6071 Specify a rectangle where the output of the filter chain is copied into the
6072 input image. It is given by a list of space separated float values:
6073 @example
6074 output_rect=x\ y\ width\ height
6075 @end example
6076 If not given, the output rectangle equals the dimensions of the input image.
6077 The output rectangle is automatically cropped at the borders of the input
6078 image. Negative values are valid for each component.
6079 @example
6080 output_rect=25\ 25\ 100\ 100
6081 @end example
6082 @end table
6083
6084 Several filters can be chained for successive processing without GPU-HOST
6085 transfers allowing for fast processing of complex filter chains.
6086 Currently, only filters with zero (generators) or exactly one (filters) input
6087 image and one output image are supported. Also, transition filters are not yet
6088 usable as intended.
6089
6090 Some filters generate output images with additional padding depending on the
6091 respective filter kernel. The padding is automatically removed to ensure the
6092 filter output has the same size as the input image.
6093
6094 For image generators, the size of the output image is determined by the
6095 previous output image of the filter chain or the input image of the whole
6096 filterchain, respectively. The generators do not use the pixel information of
6097 this image to generate their output. However, the generated output is
6098 blended onto this image, resulting in partial or complete coverage of the
6099 output image.
6100
6101 The @ref{coreimagesrc} video source can be used for generating input images
6102 which are directly fed into the filter chain. By using it, providing input
6103 images by another video source or an input video is not required.
6104
6105 @subsection Examples
6106
6107 @itemize
6108
6109 @item
6110 List all filters available:
6111 @example
6112 coreimage=list_filters=true
6113 @end example
6114
6115 @item
6116 Use the CIBoxBlur filter with default options to blur an image:
6117 @example
6118 coreimage=filter=CIBoxBlur@@default
6119 @end example
6120
6121 @item
6122 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
6123 its center at 100x100 and a radius of 50 pixels:
6124 @example
6125 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
6126 @end example
6127
6128 @item
6129 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
6130 given as complete and escaped command-line for Apple's standard bash shell:
6131 @example
6132 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
6133 @end example
6134 @end itemize
6135
6136 @section crop
6137
6138 Crop the input video to given dimensions.
6139
6140 It accepts the following parameters:
6141
6142 @table @option
6143 @item w, out_w
6144 The width of the output video. It defaults to @code{iw}.
6145 This expression is evaluated only once during the filter
6146 configuration, or when the @samp{w} or @samp{out_w} command is sent.
6147
6148 @item h, out_h
6149 The height of the output video. It defaults to @code{ih}.
6150 This expression is evaluated only once during the filter
6151 configuration, or when the @samp{h} or @samp{out_h} command is sent.
6152
6153 @item x
6154 The horizontal position, in the input video, of the left edge of the output
6155 video. It defaults to @code{(in_w-out_w)/2}.
6156 This expression is evaluated per-frame.
6157
6158 @item y
6159 The vertical position, in the input video, of the top edge of the output video.
6160 It defaults to @code{(in_h-out_h)/2}.
6161 This expression is evaluated per-frame.
6162
6163 @item keep_aspect
6164 If set to 1 will force the output display aspect ratio
6165 to be the same of the input, by changing the output sample aspect
6166 ratio. It defaults to 0.
6167
6168 @item exact
6169 Enable exact cropping. If enabled, subsampled videos will be cropped at exact
6170 width/height/x/y as specified and will not be rounded to nearest smaller value.
6171 It defaults to 0.
6172 @end table
6173
6174 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
6175 expressions containing the following constants:
6176
6177 @table @option
6178 @item x
6179 @item y
6180 The computed values for @var{x} and @var{y}. They are evaluated for
6181 each new frame.
6182
6183 @item in_w
6184 @item in_h
6185 The input width and height.
6186
6187 @item iw
6188 @item ih
6189 These are the same as @var{in_w} and @var{in_h}.
6190
6191 @item out_w
6192 @item out_h
6193 The output (cropped) width and height.
6194
6195 @item ow
6196 @item oh
6197 These are the same as @var{out_w} and @var{out_h}.
6198
6199 @item a
6200 same as @var{iw} / @var{ih}
6201
6202 @item sar
6203 input sample aspect ratio
6204
6205 @item dar
6206 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
6207
6208 @item hsub
6209 @item vsub
6210 horizontal and vertical chroma subsample values. For example for the
6211 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6212
6213 @item n
6214 The number of the input frame, starting from 0.
6215
6216 @item pos
6217 the position in the file of the input frame, NAN if unknown
6218
6219 @item t
6220 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
6221
6222 @end table
6223
6224 The expression for @var{out_w} may depend on the value of @var{out_h},
6225 and the expression for @var{out_h} may depend on @var{out_w}, but they
6226 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
6227 evaluated after @var{out_w} and @var{out_h}.
6228
6229 The @var{x} and @var{y} parameters specify the expressions for the
6230 position of the top-left corner of the output (non-cropped) area. They
6231 are evaluated for each frame. If the evaluated value is not valid, it
6232 is approximated to the nearest valid value.
6233
6234 The expression for @var{x} may depend on @var{y}, and the expression
6235 for @var{y} may depend on @var{x}.
6236
6237 @subsection Examples
6238
6239 @itemize
6240 @item
6241 Crop area with size 100x100 at position (12,34).
6242 @example
6243 crop=100:100:12:34
6244 @end example
6245
6246 Using named options, the example above becomes:
6247 @example
6248 crop=w=100:h=100:x=12:y=34
6249 @end example
6250
6251 @item
6252 Crop the central input area with size 100x100:
6253 @example
6254 crop=100:100
6255 @end example
6256
6257 @item
6258 Crop the central input area with size 2/3 of the input video:
6259 @example
6260 crop=2/3*in_w:2/3*in_h
6261 @end example
6262
6263 @item
6264 Crop the input video central square:
6265 @example
6266 crop=out_w=in_h
6267 crop=in_h
6268 @end example
6269
6270 @item
6271 Delimit the rectangle with the top-left corner placed at position
6272 100:100 and the right-bottom corner corresponding to the right-bottom
6273 corner of the input image.
6274 @example
6275 crop=in_w-100:in_h-100:100:100
6276 @end example
6277
6278 @item
6279 Crop 10 pixels from the left and right borders, and 20 pixels from
6280 the top and bottom borders
6281 @example
6282 crop=in_w-2*10:in_h-2*20
6283 @end example
6284
6285 @item
6286 Keep only the bottom right quarter of the input image:
6287 @example
6288 crop=in_w/2:in_h/2:in_w/2:in_h/2
6289 @end example
6290
6291 @item
6292 Crop height for getting Greek harmony:
6293 @example
6294 crop=in_w:1/PHI*in_w
6295 @end example
6296
6297 @item
6298 Apply trembling effect:
6299 @example
6300 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)
6301 @end example
6302
6303 @item
6304 Apply erratic camera effect depending on timestamp:
6305 @example
6306 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)"
6307 @end example
6308
6309 @item
6310 Set x depending on the value of y:
6311 @example
6312 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
6313 @end example
6314 @end itemize
6315
6316 @subsection Commands
6317
6318 This filter supports the following commands:
6319 @table @option
6320 @item w, out_w
6321 @item h, out_h
6322 @item x
6323 @item y
6324 Set width/height of the output video and the horizontal/vertical position
6325 in the input video.
6326 The command accepts the same syntax of the corresponding option.
6327
6328 If the specified expression is not valid, it is kept at its current
6329 value.
6330 @end table
6331
6332 @section cropdetect
6333
6334 Auto-detect the crop size.
6335
6336 It calculates the necessary cropping parameters and prints the
6337 recommended parameters via the logging system. The detected dimensions
6338 correspond to the non-black area of the input video.
6339
6340 It accepts the following parameters:
6341
6342 @table @option
6343
6344 @item limit
6345 Set higher black value threshold, which can be optionally specified
6346 from nothing (0) to everything (255 for 8-bit based formats). An intensity
6347 value greater to the set value is considered non-black. It defaults to 24.
6348 You can also specify a value between 0.0 and 1.0 which will be scaled depending
6349 on the bitdepth of the pixel format.
6350
6351 @item round
6352 The value which the width/height should be divisible by. It defaults to
6353 16. The offset is automatically adjusted to center the video. Use 2 to
6354 get only even dimensions (needed for 4:2:2 video). 16 is best when
6355 encoding to most video codecs.
6356
6357 @item reset_count, reset
6358 Set the counter that determines after how many frames cropdetect will
6359 reset the previously detected largest video area and start over to
6360 detect the current optimal crop area. Default value is 0.
6361
6362 This can be useful when channel logos distort the video area. 0
6363 indicates 'never reset', and returns the largest area encountered during
6364 playback.
6365 @end table
6366
6367 @anchor{curves}
6368 @section curves
6369
6370 Apply color adjustments using curves.
6371
6372 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
6373 component (red, green and blue) has its values defined by @var{N} key points
6374 tied from each other using a smooth curve. The x-axis represents the pixel
6375 values from the input frame, and the y-axis the new pixel values to be set for
6376 the output frame.
6377
6378 By default, a component curve is defined by the two points @var{(0;0)} and
6379 @var{(1;1)}. This creates a straight line where each original pixel value is
6380 "adjusted" to its own value, which means no change to the image.
6381
6382 The filter allows you to redefine these two points and add some more. A new
6383 curve (using a natural cubic spline interpolation) will be define to pass
6384 smoothly through all these new coordinates. The new defined points needs to be
6385 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
6386 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
6387 the vector spaces, the values will be clipped accordingly.
6388
6389 The filter accepts the following options:
6390
6391 @table @option
6392 @item preset
6393 Select one of the available color presets. This option can be used in addition
6394 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
6395 options takes priority on the preset values.
6396 Available presets are:
6397 @table @samp
6398 @item none
6399 @item color_negative
6400 @item cross_process
6401 @item darker
6402 @item increase_contrast
6403 @item lighter
6404 @item linear_contrast
6405 @item medium_contrast
6406 @item negative
6407 @item strong_contrast
6408 @item vintage
6409 @end table
6410 Default is @code{none}.
6411 @item master, m
6412 Set the master key points. These points will define a second pass mapping. It
6413 is sometimes called a "luminance" or "value" mapping. It can be used with
6414 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
6415 post-processing LUT.
6416 @item red, r
6417 Set the key points for the red component.
6418 @item green, g
6419 Set the key points for the green component.
6420 @item blue, b
6421 Set the key points for the blue component.
6422 @item all
6423 Set the key points for all components (not including master).
6424 Can be used in addition to the other key points component
6425 options. In this case, the unset component(s) will fallback on this
6426 @option{all} setting.
6427 @item psfile
6428 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
6429 @item plot
6430 Save Gnuplot script of the curves in specified file.
6431 @end table
6432
6433 To avoid some filtergraph syntax conflicts, each key points list need to be
6434 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
6435
6436 @subsection Examples
6437
6438 @itemize
6439 @item
6440 Increase slightly the middle level of blue:
6441 @example
6442 curves=blue='0/0 0.5/0.58 1/1'
6443 @end example
6444
6445 @item
6446 Vintage effect:
6447 @example
6448 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'
6449 @end example
6450 Here we obtain the following coordinates for each components:
6451 @table @var
6452 @item red
6453 @code{(0;0.11) (0.42;0.51) (1;0.95)}
6454 @item green
6455 @code{(0;0) (0.50;0.48) (1;1)}
6456 @item blue
6457 @code{(0;0.22) (0.49;0.44) (1;0.80)}
6458 @end table
6459
6460 @item
6461 The previous example can also be achieved with the associated built-in preset:
6462 @example
6463 curves=preset=vintage
6464 @end example
6465
6466 @item
6467 Or simply:
6468 @example
6469 curves=vintage
6470 @end example
6471
6472 @item
6473 Use a Photoshop preset and redefine the points of the green component:
6474 @example
6475 curves=psfile='MyCurvesPresets/purple.acv':green='0/0 0.45/0.53 1/1'
6476 @end example
6477
6478 @item
6479 Check out the curves of the @code{cross_process} profile using @command{ffmpeg}
6480 and @command{gnuplot}:
6481 @example
6482 ffmpeg -f lavfi -i color -vf curves=cross_process:plot=/tmp/curves.plt -frames:v 1 -f null -
6483 gnuplot -p /tmp/curves.plt
6484 @end example
6485 @end itemize
6486
6487 @section datascope
6488
6489 Video data analysis filter.
6490
6491 This filter shows hexadecimal pixel values of part of video.
6492
6493 The filter accepts the following options:
6494
6495 @table @option
6496 @item size, s
6497 Set output video size.
6498
6499 @item x
6500 Set x offset from where to pick pixels.
6501
6502 @item y
6503 Set y offset from where to pick pixels.
6504
6505 @item mode
6506 Set scope mode, can be one of the following:
6507 @table @samp
6508 @item mono
6509 Draw hexadecimal pixel values with white color on black background.
6510
6511 @item color
6512 Draw hexadecimal pixel values with input video pixel color on black
6513 background.
6514
6515 @item color2
6516 Draw hexadecimal pixel values on color background picked from input video,
6517 the text color is picked in such way so its always visible.
6518 @end table
6519
6520 @item axis
6521 Draw rows and columns numbers on left and top of video.
6522
6523 @item opacity
6524 Set background opacity.
6525 @end table
6526
6527 @section dctdnoiz
6528
6529 Denoise frames using 2D DCT (frequency domain filtering).
6530
6531 This filter is not designed for real time.
6532
6533 The filter accepts the following options:
6534
6535 @table @option
6536 @item sigma, s
6537 Set the noise sigma constant.
6538
6539 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
6540 coefficient (absolute value) below this threshold with be dropped.
6541
6542 If you need a more advanced filtering, see @option{expr}.
6543
6544 Default is @code{0}.
6545
6546 @item overlap
6547 Set number overlapping pixels for each block. Since the filter can be slow, you
6548 may want to reduce this value, at the cost of a less effective filter and the
6549 risk of various artefacts.
6550
6551 If the overlapping value doesn't permit processing the whole input width or
6552 height, a warning will be displayed and according borders won't be denoised.
6553
6554 Default value is @var{blocksize}-1, which is the best possible setting.
6555
6556 @item expr, e
6557 Set the coefficient factor expression.
6558
6559 For each coefficient of a DCT block, this expression will be evaluated as a
6560 multiplier value for the coefficient.
6561
6562 If this is option is set, the @option{sigma} option will be ignored.
6563
6564 The absolute value of the coefficient can be accessed through the @var{c}
6565 variable.
6566
6567 @item n
6568 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
6569 @var{blocksize}, which is the width and height of the processed blocks.
6570
6571 The default value is @var{3} (8x8) and can be raised to @var{4} for a
6572 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
6573 on the speed processing. Also, a larger block size does not necessarily means a
6574 better de-noising.
6575 @end table
6576
6577 @subsection Examples
6578
6579 Apply a denoise with a @option{sigma} of @code{4.5}:
6580 @example
6581 dctdnoiz=4.5
6582 @end example
6583
6584 The same operation can be achieved using the expression system:
6585 @example
6586 dctdnoiz=e='gte(c, 4.5*3)'
6587 @end example
6588
6589 Violent denoise using a block size of @code{16x16}:
6590 @example
6591 dctdnoiz=15:n=4
6592 @end example
6593
6594 @section deband
6595
6596 Remove banding artifacts from input video.
6597 It works by replacing banded pixels with average value of referenced pixels.
6598
6599 The filter accepts the following options:
6600
6601 @table @option
6602 @item 1thr
6603 @item 2thr
6604 @item 3thr
6605 @item 4thr
6606 Set banding detection threshold for each plane. Default is 0.02.
6607 Valid range is 0.00003 to 0.5.
6608 If difference between current pixel and reference pixel is less than threshold,
6609 it will be considered as banded.
6610
6611 @item range, r
6612 Banding detection range in pixels. Default is 16. If positive, random number
6613 in range 0 to set value will be used. If negative, exact absolute value
6614 will be used.
6615 The range defines square of four pixels around current pixel.
6616
6617 @item direction, d
6618 Set direction in radians from which four pixel will be compared. If positive,
6619 random direction from 0 to set direction will be picked. If negative, exact of
6620 absolute value will be picked. For example direction 0, -PI or -2*PI radians
6621 will pick only pixels on same row and -PI/2 will pick only pixels on same
6622 column.
6623
6624 @item blur, b
6625 If enabled, current pixel is compared with average value of all four
6626 surrounding pixels. The default is enabled. If disabled current pixel is
6627 compared with all four surrounding pixels. The pixel is considered banded
6628 if only all four differences with surrounding pixels are less than threshold.
6629
6630 @item coupling, c
6631 If enabled, current pixel is changed if and only if all pixel components are banded,
6632 e.g. banding detection threshold is triggered for all color components.
6633 The default is disabled.
6634 @end table
6635
6636 @anchor{decimate}
6637 @section decimate
6638
6639 Drop duplicated frames at regular intervals.
6640
6641 The filter accepts the following options:
6642
6643 @table @option
6644 @item cycle
6645 Set the number of frames from which one will be dropped. Setting this to
6646 @var{N} means one frame in every batch of @var{N} frames will be dropped.
6647 Default is @code{5}.
6648
6649 @item dupthresh
6650 Set the threshold for duplicate detection. If the difference metric for a frame
6651 is less than or equal to this value, then it is declared as duplicate. Default
6652 is @code{1.1}
6653
6654 @item scthresh
6655 Set scene change threshold. Default is @code{15}.
6656
6657 @item blockx
6658 @item blocky
6659 Set the size of the x and y-axis blocks used during metric calculations.
6660 Larger blocks give better noise suppression, but also give worse detection of
6661 small movements. Must be a power of two. Default is @code{32}.
6662
6663 @item ppsrc
6664 Mark main input as a pre-processed input and activate clean source input
6665 stream. This allows the input to be pre-processed with various filters to help
6666 the metrics calculation while keeping the frame selection lossless. When set to
6667 @code{1}, the first stream is for the pre-processed input, and the second
6668 stream is the clean source from where the kept frames are chosen. Default is
6669 @code{0}.
6670
6671 @item chroma
6672 Set whether or not chroma is considered in the metric calculations. Default is
6673 @code{1}.
6674 @end table
6675
6676 @section deflate
6677
6678 Apply deflate effect to the video.
6679
6680 This filter replaces the pixel by the local(3x3) average by taking into account
6681 only values lower than the pixel.
6682
6683 It accepts the following options:
6684
6685 @table @option
6686 @item threshold0
6687 @item threshold1
6688 @item threshold2
6689 @item threshold3
6690 Limit the maximum change for each plane, default is 65535.
6691 If 0, plane will remain unchanged.
6692 @end table
6693
6694 @section deflicker
6695
6696 Remove temporal frame luminance variations.
6697
6698 It accepts the following options:
6699
6700 @table @option
6701 @item size, s
6702 Set moving-average filter size in frames. Default is 5. Allowed range is 2 - 129.
6703
6704 @item mode, m
6705 Set averaging mode to smooth temporal luminance variations.
6706
6707 Available values are:
6708 @table @samp
6709 @item am
6710 Arithmetic mean
6711
6712 @item gm
6713 Geometric mean
6714
6715 @item hm
6716 Harmonic mean
6717
6718 @item qm
6719 Quadratic mean
6720
6721 @item cm
6722 Cubic mean
6723
6724 @item pm
6725 Power mean
6726
6727 @item median
6728 Median
6729 @end table
6730
6731 @item bypass
6732 Do not actually modify frame. Useful when one only wants metadata.
6733 @end table
6734
6735 @section dejudder
6736
6737 Remove judder produced by partially interlaced telecined content.
6738
6739 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
6740 source was partially telecined content then the output of @code{pullup,dejudder}
6741 will have a variable frame rate. May change the recorded frame rate of the
6742 container. Aside from that change, this filter will not affect constant frame
6743 rate video.
6744
6745 The option available in this filter is:
6746 @table @option
6747
6748 @item cycle
6749 Specify the length of the window over which the judder repeats.
6750
6751 Accepts any integer greater than 1. Useful values are:
6752 @table @samp
6753
6754 @item 4
6755 If the original was telecined from 24 to 30 fps (Film to NTSC).
6756
6757 @item 5
6758 If the original was telecined from 25 to 30 fps (PAL to NTSC).
6759
6760 @item 20
6761 If a mixture of the two.
6762 @end table
6763
6764 The default is @samp{4}.
6765 @end table
6766
6767 @section delogo
6768
6769 Suppress a TV station logo by a simple interpolation of the surrounding
6770 pixels. Just set a rectangle covering the logo and watch it disappear
6771 (and sometimes something even uglier appear - your mileage may vary).
6772
6773 It accepts the following parameters:
6774 @table @option
6775
6776 @item x
6777 @item y
6778 Specify the top left corner coordinates of the logo. They must be
6779 specified.
6780
6781 @item w
6782 @item h
6783 Specify the width and height of the logo to clear. They must be
6784 specified.
6785
6786 @item band, t
6787 Specify the thickness of the fuzzy edge of the rectangle (added to
6788 @var{w} and @var{h}). The default value is 1. This option is
6789 deprecated, setting higher values should no longer be necessary and
6790 is not recommended.
6791
6792 @item show
6793 When set to 1, a green rectangle is drawn on the screen to simplify
6794 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
6795 The default value is 0.
6796
6797 The rectangle is drawn on the outermost pixels which will be (partly)
6798 replaced with interpolated values. The values of the next pixels
6799 immediately outside this rectangle in each direction will be used to
6800 compute the interpolated pixel values inside the rectangle.
6801
6802 @end table
6803
6804 @subsection Examples
6805
6806 @itemize
6807 @item
6808 Set a rectangle covering the area with top left corner coordinates 0,0
6809 and size 100x77, and a band of size 10:
6810 @example
6811 delogo=x=0:y=0:w=100:h=77:band=10
6812 @end example
6813
6814 @end itemize
6815
6816 @section deshake
6817
6818 Attempt to fix small changes in horizontal and/or vertical shift. This
6819 filter helps remove camera shake from hand-holding a camera, bumping a
6820 tripod, moving on a vehicle, etc.
6821
6822 The filter accepts the following options:
6823
6824 @table @option
6825
6826 @item x
6827 @item y
6828 @item w
6829 @item h
6830 Specify a rectangular area where to limit the search for motion
6831 vectors.
6832 If desired the search for motion vectors can be limited to a
6833 rectangular area of the frame defined by its top left corner, width
6834 and height. These parameters have the same meaning as the drawbox
6835 filter which can be used to visualise the position of the bounding
6836 box.
6837
6838 This is useful when simultaneous movement of subjects within the frame
6839 might be confused for camera motion by the motion vector search.
6840
6841 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
6842 then the full frame is used. This allows later options to be set
6843 without specifying the bounding box for the motion vector search.
6844
6845 Default - search the whole frame.
6846
6847 @item rx
6848 @item ry
6849 Specify the maximum extent of movement in x and y directions in the
6850 range 0-64 pixels. Default 16.
6851
6852 @item edge
6853 Specify how to generate pixels to fill blanks at the edge of the
6854 frame. Available values are:
6855 @table @samp
6856 @item blank, 0
6857 Fill zeroes at blank locations
6858 @item original, 1
6859 Original image at blank locations
6860 @item clamp, 2
6861 Extruded edge value at blank locations
6862 @item mirror, 3
6863 Mirrored edge at blank locations
6864 @end table
6865 Default value is @samp{mirror}.
6866
6867 @item blocksize
6868 Specify the blocksize to use for motion search. Range 4-128 pixels,
6869 default 8.
6870
6871 @item contrast
6872 Specify the contrast threshold for blocks. Only blocks with more than
6873 the specified contrast (difference between darkest and lightest
6874 pixels) will be considered. Range 1-255, default 125.
6875
6876 @item search
6877 Specify the search strategy. Available values are:
6878 @table @samp
6879 @item exhaustive, 0
6880 Set exhaustive search
6881 @item less, 1
6882 Set less exhaustive search.
6883 @end table
6884 Default value is @samp{exhaustive}.
6885
6886 @item filename
6887 If set then a detailed log of the motion search is written to the
6888 specified file.
6889
6890 @item opencl
6891 If set to 1, specify using OpenCL capabilities, only available if
6892 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
6893
6894 @end table
6895
6896 @section despill
6897
6898 Remove unwanted contamination of foreground colors, caused by reflected color of
6899 greenscreen or bluescreen.
6900
6901 This filter accepts the following options:
6902
6903 @table @option
6904 @item type
6905 Set what type of despill to use.
6906
6907 @item mix
6908 Set how spillmap will be generated.
6909
6910 @item expand
6911 Set how much to get rid of still remaining spill.
6912
6913 @item red
6914 Controls amount of red in spill area.
6915
6916 @item green
6917 Controls amount of green in spill area.
6918 Should be -1 for greenscreen.
6919
6920 @item blue
6921 Controls amount of blue in spill area.
6922 Should be -1 for bluescreen.
6923
6924 @item brightness
6925 Controls brightness of spill area, preserving colors.
6926
6927 @item alpha
6928 Modify alpha from generated spillmap.
6929 @end table
6930
6931 @section detelecine
6932
6933 Apply an exact inverse of the telecine operation. It requires a predefined
6934 pattern specified using the pattern option which must be the same as that passed
6935 to the telecine filter.
6936
6937 This filter accepts the following options:
6938
6939 @table @option
6940 @item first_field
6941 @table @samp
6942 @item top, t
6943 top field first
6944 @item bottom, b
6945 bottom field first
6946 The default value is @code{top}.
6947 @end table
6948
6949 @item pattern
6950 A string of numbers representing the pulldown pattern you wish to apply.
6951 The default value is @code{23}.
6952
6953 @item start_frame
6954 A number representing position of the first frame with respect to the telecine
6955 pattern. This is to be used if the stream is cut. The default value is @code{0}.
6956 @end table
6957
6958 @section dilation
6959
6960 Apply dilation effect to the video.
6961
6962 This filter replaces the pixel by the local(3x3) maximum.
6963
6964 It accepts the following options:
6965
6966 @table @option
6967 @item threshold0
6968 @item threshold1
6969 @item threshold2
6970 @item threshold3
6971 Limit the maximum change for each plane, default is 65535.
6972 If 0, plane will remain unchanged.
6973
6974 @item coordinates
6975 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
6976 pixels are used.
6977
6978 Flags to local 3x3 coordinates maps like this:
6979
6980     1 2 3
6981     4   5
6982     6 7 8
6983 @end table
6984
6985 @section displace
6986
6987 Displace pixels as indicated by second and third input stream.
6988
6989 It takes three input streams and outputs one stream, the first input is the
6990 source, and second and third input are displacement maps.
6991
6992 The second input specifies how much to displace pixels along the
6993 x-axis, while the third input specifies how much to displace pixels
6994 along the y-axis.
6995 If one of displacement map streams terminates, last frame from that
6996 displacement map will be used.
6997
6998 Note that once generated, displacements maps can be reused over and over again.
6999
7000 A description of the accepted options follows.
7001
7002 @table @option
7003 @item edge
7004 Set displace behavior for pixels that are out of range.
7005
7006 Available values are:
7007 @table @samp
7008 @item blank
7009 Missing pixels are replaced by black pixels.
7010
7011 @item smear
7012 Adjacent pixels will spread out to replace missing pixels.
7013
7014 @item wrap
7015 Out of range pixels are wrapped so they point to pixels of other side.
7016
7017 @item mirror
7018 Out of range pixels will be replaced with mirrored pixels.
7019 @end table
7020 Default is @samp{smear}.
7021
7022 @end table
7023
7024 @subsection Examples
7025
7026 @itemize
7027 @item
7028 Add ripple effect to rgb input of video size hd720:
7029 @example
7030 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
7031 @end example
7032
7033 @item
7034 Add wave effect to rgb input of video size hd720:
7035 @example
7036 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
7037 @end example
7038 @end itemize
7039
7040 @section drawbox
7041
7042 Draw a colored box on the input image.
7043
7044 It accepts the following parameters:
7045
7046 @table @option
7047 @item x
7048 @item y
7049 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
7050
7051 @item width, w
7052 @item height, h
7053 The expressions which specify the width and height of the box; if 0 they are interpreted as
7054 the input width and height. It defaults to 0.
7055
7056 @item color, c
7057 Specify the color of the box to write. For the general syntax of this option,
7058 check the "Color" section in the ffmpeg-utils manual. If the special
7059 value @code{invert} is used, the box edge color is the same as the
7060 video with inverted luma.
7061
7062 @item thickness, t
7063 The expression which sets the thickness of the box edge. Default value is @code{3}.
7064
7065 See below for the list of accepted constants.
7066 @end table
7067
7068 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
7069 following constants:
7070
7071 @table @option
7072 @item dar
7073 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
7074
7075 @item hsub
7076 @item vsub
7077 horizontal and vertical chroma subsample values. For example for the
7078 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
7079
7080 @item in_h, ih
7081 @item in_w, iw
7082 The input width and height.
7083
7084 @item sar
7085 The input sample aspect ratio.
7086
7087 @item x
7088 @item y
7089 The x and y offset coordinates where the box is drawn.
7090
7091 @item w
7092 @item h
7093 The width and height of the drawn box.
7094
7095 @item t
7096 The thickness of the drawn box.
7097
7098 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
7099 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
7100
7101 @end table
7102
7103 @subsection Examples
7104
7105 @itemize
7106 @item
7107 Draw a black box around the edge of the input image:
7108 @example
7109 drawbox
7110 @end example
7111
7112 @item
7113 Draw a box with color red and an opacity of 50%:
7114 @example
7115 drawbox=10:20:200:60:red@@0.5
7116 @end example
7117
7118 The previous example can be specified as:
7119 @example
7120 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
7121 @end example
7122
7123 @item
7124 Fill the box with pink color:
7125 @example
7126 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=max
7127 @end example
7128
7129 @item
7130 Draw a 2-pixel red 2.40:1 mask:
7131 @example
7132 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
7133 @end example
7134 @end itemize
7135
7136 @section drawgrid
7137
7138 Draw a grid on the input image.
7139
7140 It accepts the following parameters:
7141
7142 @table @option
7143 @item x
7144 @item y
7145 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
7146
7147 @item width, w
7148 @item height, h
7149 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
7150 input width and height, respectively, minus @code{thickness}, so image gets
7151 framed. Default to 0.
7152
7153 @item color, c
7154 Specify the color of the grid. For the general syntax of this option,
7155 check the "Color" section in the ffmpeg-utils manual. If the special
7156 value @code{invert} is used, the grid color is the same as the
7157 video with inverted luma.
7158
7159 @item thickness, t
7160 The expression which sets the thickness of the grid line. Default value is @code{1}.
7161
7162 See below for the list of accepted constants.
7163 @end table
7164
7165 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
7166 following constants:
7167
7168 @table @option
7169 @item dar
7170 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
7171
7172 @item hsub
7173 @item vsub
7174 horizontal and vertical chroma subsample values. For example for the
7175 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
7176
7177 @item in_h, ih
7178 @item in_w, iw
7179 The input grid cell width and height.
7180
7181 @item sar
7182 The input sample aspect ratio.
7183
7184 @item x
7185 @item y
7186 The x and y coordinates of some point of grid intersection (meant to configure offset).
7187
7188 @item w
7189 @item h
7190 The width and height of the drawn cell.
7191
7192 @item t
7193 The thickness of the drawn cell.
7194
7195 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
7196 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
7197
7198 @end table
7199
7200 @subsection Examples
7201
7202 @itemize
7203 @item
7204 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
7205 @example
7206 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
7207 @end example
7208
7209 @item
7210 Draw a white 3x3 grid with an opacity of 50%:
7211 @example
7212 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
7213 @end example
7214 @end itemize
7215
7216 @anchor{drawtext}
7217 @section drawtext
7218
7219 Draw a text string or text from a specified file on top of a video, using the
7220 libfreetype library.
7221
7222 To enable compilation of this filter, you need to configure FFmpeg with
7223 @code{--enable-libfreetype}.
7224 To enable default font fallback and the @var{font} option you need to
7225 configure FFmpeg with @code{--enable-libfontconfig}.
7226 To enable the @var{text_shaping} option, you need to configure FFmpeg with
7227 @code{--enable-libfribidi}.
7228
7229 @subsection Syntax
7230
7231 It accepts the following parameters:
7232
7233 @table @option
7234
7235 @item box
7236 Used to draw a box around text using the background color.
7237 The value must be either 1 (enable) or 0 (disable).
7238 The default value of @var{box} is 0.
7239
7240 @item boxborderw
7241 Set the width of the border to be drawn around the box using @var{boxcolor}.
7242 The default value of @var{boxborderw} is 0.
7243
7244 @item boxcolor
7245 The color to be used for drawing box around text. For the syntax of this
7246 option, check the "Color" section in the ffmpeg-utils manual.
7247
7248 The default value of @var{boxcolor} is "white".
7249
7250 @item line_spacing
7251 Set the line spacing in pixels of the border to be drawn around the box using @var{box}.
7252 The default value of @var{line_spacing} is 0.
7253
7254 @item borderw
7255 Set the width of the border to be drawn around the text using @var{bordercolor}.
7256 The default value of @var{borderw} is 0.
7257
7258 @item bordercolor
7259 Set the color to be used for drawing border around text. For the syntax of this
7260 option, check the "Color" section in the ffmpeg-utils manual.
7261
7262 The default value of @var{bordercolor} is "black".
7263
7264 @item expansion
7265 Select how the @var{text} is expanded. Can be either @code{none},
7266 @code{strftime} (deprecated) or
7267 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
7268 below for details.
7269
7270 @item basetime
7271 Set a start time for the count. Value is in microseconds. Only applied
7272 in the deprecated strftime expansion mode. To emulate in normal expansion
7273 mode use the @code{pts} function, supplying the start time (in seconds)
7274 as the second argument.
7275
7276 @item fix_bounds
7277 If true, check and fix text coords to avoid clipping.
7278
7279 @item fontcolor
7280 The color to be used for drawing fonts. For the syntax of this option, check
7281 the "Color" section in the ffmpeg-utils manual.
7282
7283 The default value of @var{fontcolor} is "black".
7284
7285 @item fontcolor_expr
7286 String which is expanded the same way as @var{text} to obtain dynamic
7287 @var{fontcolor} value. By default this option has empty value and is not
7288 processed. When this option is set, it overrides @var{fontcolor} option.
7289
7290 @item font
7291 The font family to be used for drawing text. By default Sans.
7292
7293 @item fontfile
7294 The font file to be used for drawing text. The path must be included.
7295 This parameter is mandatory if the fontconfig support is disabled.
7296
7297 @item alpha
7298 Draw the text applying alpha blending. The value can
7299 be a number between 0.0 and 1.0.
7300 The expression accepts the same variables @var{x, y} as well.
7301 The default value is 1.
7302 Please see @var{fontcolor_expr}.
7303
7304 @item fontsize
7305 The font size to be used for drawing text.
7306 The default value of @var{fontsize} is 16.
7307
7308 @item text_shaping
7309 If set to 1, attempt to shape the text (for example, reverse the order of
7310 right-to-left text and join Arabic characters) before drawing it.
7311 Otherwise, just draw the text exactly as given.
7312 By default 1 (if supported).
7313
7314 @item ft_load_flags
7315 The flags to be used for loading the fonts.
7316
7317 The flags map the corresponding flags supported by libfreetype, and are
7318 a combination of the following values:
7319 @table @var
7320 @item default
7321 @item no_scale
7322 @item no_hinting
7323 @item render
7324 @item no_bitmap
7325 @item vertical_layout
7326 @item force_autohint
7327 @item crop_bitmap
7328 @item pedantic
7329 @item ignore_global_advance_width
7330 @item no_recurse
7331 @item ignore_transform
7332 @item monochrome
7333 @item linear_design
7334 @item no_autohint
7335 @end table
7336
7337 Default value is "default".
7338
7339 For more information consult the documentation for the FT_LOAD_*
7340 libfreetype flags.
7341
7342 @item shadowcolor
7343 The color to be used for drawing a shadow behind the drawn text. For the
7344 syntax of this option, check the "Color" section in the ffmpeg-utils manual.
7345
7346 The default value of @var{shadowcolor} is "black".
7347
7348 @item shadowx
7349 @item shadowy
7350 The x and y offsets for the text shadow position with respect to the
7351 position of the text. They can be either positive or negative
7352 values. The default value for both is "0".
7353
7354 @item start_number
7355 The starting frame number for the n/frame_num variable. The default value
7356 is "0".
7357
7358 @item tabsize
7359 The size in number of spaces to use for rendering the tab.
7360 Default value is 4.
7361
7362 @item timecode
7363 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
7364 format. It can be used with or without text parameter. @var{timecode_rate}
7365 option must be specified.
7366
7367 @item timecode_rate, rate, r
7368 Set the timecode frame rate (timecode only). Value will be rounded to nearest
7369 integer. Minimum value is "1".
7370 Drop-frame timecode is supported for frame rates 30 & 60.
7371
7372 @item tc24hmax
7373 If set to 1, the output of the timecode option will wrap around at 24 hours.
7374 Default is 0 (disabled).
7375
7376 @item text
7377 The text string to be drawn. The text must be a sequence of UTF-8
7378 encoded characters.
7379 This parameter is mandatory if no file is specified with the parameter
7380 @var{textfile}.
7381
7382 @item textfile
7383 A text file containing text to be drawn. The text must be a sequence
7384 of UTF-8 encoded characters.
7385
7386 This parameter is mandatory if no text string is specified with the
7387 parameter @var{text}.
7388
7389 If both @var{text} and @var{textfile} are specified, an error is thrown.
7390
7391 @item reload
7392 If set to 1, the @var{textfile} will be reloaded before each frame.
7393 Be sure to update it atomically, or it may be read partially, or even fail.
7394
7395 @item x
7396 @item y
7397 The expressions which specify the offsets where text will be drawn
7398 within the video frame. They are relative to the top/left border of the
7399 output image.
7400
7401 The default value of @var{x} and @var{y} is "0".
7402
7403 See below for the list of accepted constants and functions.
7404 @end table
7405
7406 The parameters for @var{x} and @var{y} are expressions containing the
7407 following constants and functions:
7408
7409 @table @option
7410 @item dar
7411 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
7412
7413 @item hsub
7414 @item vsub
7415 horizontal and vertical chroma subsample values. For example for the
7416 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
7417
7418 @item line_h, lh
7419 the height of each text line
7420
7421 @item main_h, h, H
7422 the input height
7423
7424 @item main_w, w, W
7425 the input width
7426
7427 @item max_glyph_a, ascent
7428 the maximum distance from the baseline to the highest/upper grid
7429 coordinate used to place a glyph outline point, for all the rendered
7430 glyphs.
7431 It is a positive value, due to the grid's orientation with the Y axis
7432 upwards.
7433
7434 @item max_glyph_d, descent
7435 the maximum distance from the baseline to the lowest grid coordinate
7436 used to place a glyph outline point, for all the rendered glyphs.
7437 This is a negative value, due to the grid's orientation, with the Y axis
7438 upwards.
7439
7440 @item max_glyph_h
7441 maximum glyph height, that is the maximum height for all the glyphs
7442 contained in the rendered text, it is equivalent to @var{ascent} -
7443 @var{descent}.
7444
7445 @item max_glyph_w
7446 maximum glyph width, that is the maximum width for all the glyphs
7447 contained in the rendered text
7448
7449 @item n
7450 the number of input frame, starting from 0
7451
7452 @item rand(min, max)
7453 return a random number included between @var{min} and @var{max}
7454
7455 @item sar
7456 The input sample aspect ratio.
7457
7458 @item t
7459 timestamp expressed in seconds, NAN if the input timestamp is unknown
7460
7461 @item text_h, th
7462 the height of the rendered text
7463
7464 @item text_w, tw
7465 the width of the rendered text
7466
7467 @item x
7468 @item y
7469 the x and y offset coordinates where the text is drawn.
7470
7471 These parameters allow the @var{x} and @var{y} expressions to refer
7472 each other, so you can for example specify @code{y=x/dar}.
7473 @end table
7474
7475 @anchor{drawtext_expansion}
7476 @subsection Text expansion
7477
7478 If @option{expansion} is set to @code{strftime},
7479 the filter recognizes strftime() sequences in the provided text and
7480 expands them accordingly. Check the documentation of strftime(). This
7481 feature is deprecated.
7482
7483 If @option{expansion} is set to @code{none}, the text is printed verbatim.
7484
7485 If @option{expansion} is set to @code{normal} (which is the default),
7486 the following expansion mechanism is used.
7487
7488 The backslash character @samp{\}, followed by any character, always expands to
7489 the second character.
7490
7491 Sequences of the form @code{%@{...@}} are expanded. The text between the
7492 braces is a function name, possibly followed by arguments separated by ':'.
7493 If the arguments contain special characters or delimiters (':' or '@}'),
7494 they should be escaped.
7495
7496 Note that they probably must also be escaped as the value for the
7497 @option{text} option in the filter argument string and as the filter
7498 argument in the filtergraph description, and possibly also for the shell,
7499 that makes up to four levels of escaping; using a text file avoids these
7500 problems.
7501
7502 The following functions are available:
7503
7504 @table @command
7505
7506 @item expr, e
7507 The expression evaluation result.
7508
7509 It must take one argument specifying the expression to be evaluated,
7510 which accepts the same constants and functions as the @var{x} and
7511 @var{y} values. Note that not all constants should be used, for
7512 example the text size is not known when evaluating the expression, so
7513 the constants @var{text_w} and @var{text_h} will have an undefined
7514 value.
7515
7516 @item expr_int_format, eif
7517 Evaluate the expression's value and output as formatted integer.
7518
7519 The first argument is the expression to be evaluated, just as for the @var{expr} function.
7520 The second argument specifies the output format. Allowed values are @samp{x},
7521 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
7522 @code{printf} function.
7523 The third parameter is optional and sets the number of positions taken by the output.
7524 It can be used to add padding with zeros from the left.
7525
7526 @item gmtime
7527 The time at which the filter is running, expressed in UTC.
7528 It can accept an argument: a strftime() format string.
7529
7530 @item localtime
7531 The time at which the filter is running, expressed in the local time zone.
7532 It can accept an argument: a strftime() format string.
7533
7534 @item metadata
7535 Frame metadata. Takes one or two arguments.
7536
7537 The first argument is mandatory and specifies the metadata key.
7538
7539 The second argument is optional and specifies a default value, used when the
7540 metadata key is not found or empty.
7541
7542 @item n, frame_num
7543 The frame number, starting from 0.
7544
7545 @item pict_type
7546 A 1 character description of the current picture type.
7547
7548 @item pts
7549 The timestamp of the current frame.
7550 It can take up to three arguments.
7551
7552 The first argument is the format of the timestamp; it defaults to @code{flt}
7553 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
7554 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
7555 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
7556 @code{localtime} stands for the timestamp of the frame formatted as
7557 local time zone time.
7558
7559 The second argument is an offset added to the timestamp.
7560
7561 If the format is set to @code{localtime} or @code{gmtime},
7562 a third argument may be supplied: a strftime() format string.
7563 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
7564 @end table
7565
7566 @subsection Examples
7567
7568 @itemize
7569 @item
7570 Draw "Test Text" with font FreeSerif, using the default values for the
7571 optional parameters.
7572
7573 @example
7574 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
7575 @end example
7576
7577 @item
7578 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
7579 and y=50 (counting from the top-left corner of the screen), text is
7580 yellow with a red box around it. Both the text and the box have an
7581 opacity of 20%.
7582
7583 @example
7584 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
7585           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
7586 @end example
7587
7588 Note that the double quotes are not necessary if spaces are not used
7589 within the parameter list.
7590
7591 @item
7592 Show the text at the center of the video frame:
7593 @example
7594 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
7595 @end example
7596
7597 @item
7598 Show the text at a random position, switching to a new position every 30 seconds:
7599 @example
7600 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)"
7601 @end example
7602
7603 @item
7604 Show a text line sliding from right to left in the last row of the video
7605 frame. The file @file{LONG_LINE} is assumed to contain a single line
7606 with no newlines.
7607 @example
7608 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
7609 @end example
7610
7611 @item
7612 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
7613 @example
7614 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
7615 @end example
7616
7617 @item
7618 Draw a single green letter "g", at the center of the input video.
7619 The glyph baseline is placed at half screen height.
7620 @example
7621 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
7622 @end example
7623
7624 @item
7625 Show text for 1 second every 3 seconds:
7626 @example
7627 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
7628 @end example
7629
7630 @item
7631 Use fontconfig to set the font. Note that the colons need to be escaped.
7632 @example
7633 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
7634 @end example
7635
7636 @item
7637 Print the date of a real-time encoding (see strftime(3)):
7638 @example
7639 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
7640 @end example
7641
7642 @item
7643 Show text fading in and out (appearing/disappearing):
7644 @example
7645 #!/bin/sh
7646 DS=1.0 # display start
7647 DE=10.0 # display end
7648 FID=1.5 # fade in duration
7649 FOD=5 # fade out duration
7650 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 @}"
7651 @end example
7652
7653 @item
7654 Horizontally align multiple separate texts. Note that @option{max_glyph_a}
7655 and the @option{fontsize} value are included in the @option{y} offset.
7656 @example
7657 drawtext=fontfile=FreeSans.ttf:text=DOG:fontsize=24:x=10:y=20+24-max_glyph_a,
7658 drawtext=fontfile=FreeSans.ttf:text=cow:fontsize=24:x=80:y=20+24-max_glyph_a
7659 @end example
7660
7661 @end itemize
7662
7663 For more information about libfreetype, check:
7664 @url{http://www.freetype.org/}.
7665
7666 For more information about fontconfig, check:
7667 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
7668
7669 For more information about libfribidi, check:
7670 @url{http://fribidi.org/}.
7671
7672 @section edgedetect
7673
7674 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
7675
7676 The filter accepts the following options:
7677
7678 @table @option
7679 @item low
7680 @item high
7681 Set low and high threshold values used by the Canny thresholding
7682 algorithm.
7683
7684 The high threshold selects the "strong" edge pixels, which are then
7685 connected through 8-connectivity with the "weak" edge pixels selected
7686 by the low threshold.
7687
7688 @var{low} and @var{high} threshold values must be chosen in the range
7689 [0,1], and @var{low} should be lesser or equal to @var{high}.
7690
7691 Default value for @var{low} is @code{20/255}, and default value for @var{high}
7692 is @code{50/255}.
7693
7694 @item mode
7695 Define the drawing mode.
7696
7697 @table @samp
7698 @item wires
7699 Draw white/gray wires on black background.
7700
7701 @item colormix
7702 Mix the colors to create a paint/cartoon effect.
7703 @end table
7704
7705 Default value is @var{wires}.
7706 @end table
7707
7708 @subsection Examples
7709
7710 @itemize
7711 @item
7712 Standard edge detection with custom values for the hysteresis thresholding:
7713 @example
7714 edgedetect=low=0.1:high=0.4
7715 @end example
7716
7717 @item
7718 Painting effect without thresholding:
7719 @example
7720 edgedetect=mode=colormix:high=0
7721 @end example
7722 @end itemize
7723
7724 @section eq
7725 Set brightness, contrast, saturation and approximate gamma adjustment.
7726
7727 The filter accepts the following options:
7728
7729 @table @option
7730 @item contrast
7731 Set the contrast expression. The value must be a float value in range
7732 @code{-2.0} to @code{2.0}. The default value is "1".
7733
7734 @item brightness
7735 Set the brightness expression. The value must be a float value in
7736 range @code{-1.0} to @code{1.0}. The default value is "0".
7737
7738 @item saturation
7739 Set the saturation expression. The value must be a float in
7740 range @code{0.0} to @code{3.0}. The default value is "1".
7741
7742 @item gamma
7743 Set the gamma expression. The value must be a float in range
7744 @code{0.1} to @code{10.0}.  The default value is "1".
7745
7746 @item gamma_r
7747 Set the gamma expression for red. The value must be a float in
7748 range @code{0.1} to @code{10.0}. The default value is "1".
7749
7750 @item gamma_g
7751 Set the gamma expression for green. The value must be a float in range
7752 @code{0.1} to @code{10.0}. The default value is "1".
7753
7754 @item gamma_b
7755 Set the gamma expression for blue. The value must be a float in range
7756 @code{0.1} to @code{10.0}. The default value is "1".
7757
7758 @item gamma_weight
7759 Set the gamma weight expression. It can be used to reduce the effect
7760 of a high gamma value on bright image areas, e.g. keep them from
7761 getting overamplified and just plain white. The value must be a float
7762 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
7763 gamma correction all the way down while @code{1.0} leaves it at its
7764 full strength. Default is "1".
7765
7766 @item eval
7767 Set when the expressions for brightness, contrast, saturation and
7768 gamma expressions are evaluated.
7769
7770 It accepts the following values:
7771 @table @samp
7772 @item init
7773 only evaluate expressions once during the filter initialization or
7774 when a command is processed
7775
7776 @item frame
7777 evaluate expressions for each incoming frame
7778 @end table
7779
7780 Default value is @samp{init}.
7781 @end table
7782
7783 The expressions accept the following parameters:
7784 @table @option
7785 @item n
7786 frame count of the input frame starting from 0
7787
7788 @item pos
7789 byte position of the corresponding packet in the input file, NAN if
7790 unspecified
7791
7792 @item r
7793 frame rate of the input video, NAN if the input frame rate is unknown
7794
7795 @item t
7796 timestamp expressed in seconds, NAN if the input timestamp is unknown
7797 @end table
7798
7799 @subsection Commands
7800 The filter supports the following commands:
7801
7802 @table @option
7803 @item contrast
7804 Set the contrast expression.
7805
7806 @item brightness
7807 Set the brightness expression.
7808
7809 @item saturation
7810 Set the saturation expression.
7811
7812 @item gamma
7813 Set the gamma expression.
7814
7815 @item gamma_r
7816 Set the gamma_r expression.
7817
7818 @item gamma_g
7819 Set gamma_g expression.
7820
7821 @item gamma_b
7822 Set gamma_b expression.
7823
7824 @item gamma_weight
7825 Set gamma_weight expression.
7826
7827 The command accepts the same syntax of the corresponding option.
7828
7829 If the specified expression is not valid, it is kept at its current
7830 value.
7831
7832 @end table
7833
7834 @section erosion
7835
7836 Apply erosion effect to the video.
7837
7838 This filter replaces the pixel by the local(3x3) minimum.
7839
7840 It accepts the following options:
7841
7842 @table @option
7843 @item threshold0
7844 @item threshold1
7845 @item threshold2
7846 @item threshold3
7847 Limit the maximum change for each plane, default is 65535.
7848 If 0, plane will remain unchanged.
7849
7850 @item coordinates
7851 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
7852 pixels are used.
7853
7854 Flags to local 3x3 coordinates maps like this:
7855
7856     1 2 3
7857     4   5
7858     6 7 8
7859 @end table
7860
7861 @section extractplanes
7862
7863 Extract color channel components from input video stream into
7864 separate grayscale video streams.
7865
7866 The filter accepts the following option:
7867
7868 @table @option
7869 @item planes
7870 Set plane(s) to extract.
7871
7872 Available values for planes are:
7873 @table @samp
7874 @item y
7875 @item u
7876 @item v
7877 @item a
7878 @item r
7879 @item g
7880 @item b
7881 @end table
7882
7883 Choosing planes not available in the input will result in an error.
7884 That means you cannot select @code{r}, @code{g}, @code{b} planes
7885 with @code{y}, @code{u}, @code{v} planes at same time.
7886 @end table
7887
7888 @subsection Examples
7889
7890 @itemize
7891 @item
7892 Extract luma, u and v color channel component from input video frame
7893 into 3 grayscale outputs:
7894 @example
7895 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
7896 @end example
7897 @end itemize
7898
7899 @section elbg
7900
7901 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
7902
7903 For each input image, the filter will compute the optimal mapping from
7904 the input to the output given the codebook length, that is the number
7905 of distinct output colors.
7906
7907 This filter accepts the following options.
7908
7909 @table @option
7910 @item codebook_length, l
7911 Set codebook length. The value must be a positive integer, and
7912 represents the number of distinct output colors. Default value is 256.
7913
7914 @item nb_steps, n
7915 Set the maximum number of iterations to apply for computing the optimal
7916 mapping. The higher the value the better the result and the higher the
7917 computation time. Default value is 1.
7918
7919 @item seed, s
7920 Set a random seed, must be an integer included between 0 and
7921 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
7922 will try to use a good random seed on a best effort basis.
7923
7924 @item pal8
7925 Set pal8 output pixel format. This option does not work with codebook
7926 length greater than 256.
7927 @end table
7928
7929 @section fade
7930
7931 Apply a fade-in/out effect to the input video.
7932
7933 It accepts the following parameters:
7934
7935 @table @option
7936 @item type, t
7937 The effect type can be either "in" for a fade-in, or "out" for a fade-out
7938 effect.
7939 Default is @code{in}.
7940
7941 @item start_frame, s
7942 Specify the number of the frame to start applying the fade
7943 effect at. Default is 0.
7944
7945 @item nb_frames, n
7946 The number of frames that the fade effect lasts. At the end of the
7947 fade-in effect, the output video will have the same intensity as the input video.
7948 At the end of the fade-out transition, the output video will be filled with the
7949 selected @option{color}.
7950 Default is 25.
7951
7952 @item alpha
7953 If set to 1, fade only alpha channel, if one exists on the input.
7954 Default value is 0.
7955
7956 @item start_time, st
7957 Specify the timestamp (in seconds) of the frame to start to apply the fade
7958 effect. If both start_frame and start_time are specified, the fade will start at
7959 whichever comes last.  Default is 0.
7960
7961 @item duration, d
7962 The number of seconds for which the fade effect has to last. At the end of the
7963 fade-in effect the output video will have the same intensity as the input video,
7964 at the end of the fade-out transition the output video will be filled with the
7965 selected @option{color}.
7966 If both duration and nb_frames are specified, duration is used. Default is 0
7967 (nb_frames is used by default).
7968
7969 @item color, c
7970 Specify the color of the fade. Default is "black".
7971 @end table
7972
7973 @subsection Examples
7974
7975 @itemize
7976 @item
7977 Fade in the first 30 frames of video:
7978 @example
7979 fade=in:0:30
7980 @end example
7981
7982 The command above is equivalent to:
7983 @example
7984 fade=t=in:s=0:n=30
7985 @end example
7986
7987 @item
7988 Fade out the last 45 frames of a 200-frame video:
7989 @example
7990 fade=out:155:45
7991 fade=type=out:start_frame=155:nb_frames=45
7992 @end example
7993
7994 @item
7995 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
7996 @example
7997 fade=in:0:25, fade=out:975:25
7998 @end example
7999
8000 @item
8001 Make the first 5 frames yellow, then fade in from frame 5-24:
8002 @example
8003 fade=in:5:20:color=yellow
8004 @end example
8005
8006 @item
8007 Fade in alpha over first 25 frames of video:
8008 @example
8009 fade=in:0:25:alpha=1
8010 @end example
8011
8012 @item
8013 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
8014 @example
8015 fade=t=in:st=5.5:d=0.5
8016 @end example
8017
8018 @end itemize
8019
8020 @section fftfilt
8021 Apply arbitrary expressions to samples in frequency domain
8022
8023 @table @option
8024 @item dc_Y
8025 Adjust the dc value (gain) of the luma plane of the image. The filter
8026 accepts an integer value in range @code{0} to @code{1000}. The default
8027 value is set to @code{0}.
8028
8029 @item dc_U
8030 Adjust the dc value (gain) of the 1st chroma plane of the image. The
8031 filter accepts an integer value in range @code{0} to @code{1000}. The
8032 default value is set to @code{0}.
8033
8034 @item dc_V
8035 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
8036 filter accepts an integer value in range @code{0} to @code{1000}. The
8037 default value is set to @code{0}.
8038
8039 @item weight_Y
8040 Set the frequency domain weight expression for the luma plane.
8041
8042 @item weight_U
8043 Set the frequency domain weight expression for the 1st chroma plane.
8044
8045 @item weight_V
8046 Set the frequency domain weight expression for the 2nd chroma plane.
8047
8048 @item eval
8049 Set when the expressions are evaluated.
8050
8051 It accepts the following values:
8052 @table @samp
8053 @item init
8054 Only evaluate expressions once during the filter initialization.
8055
8056 @item frame
8057 Evaluate expressions for each incoming frame.
8058 @end table
8059
8060 Default value is @samp{init}.
8061
8062 The filter accepts the following variables:
8063 @item X
8064 @item Y
8065 The coordinates of the current sample.
8066
8067 @item W
8068 @item H
8069 The width and height of the image.
8070
8071 @item N
8072 The number of input frame, starting from 0.
8073 @end table
8074
8075 @subsection Examples
8076
8077 @itemize
8078 @item
8079 High-pass:
8080 @example
8081 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
8082 @end example
8083
8084 @item
8085 Low-pass:
8086 @example
8087 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
8088 @end example
8089
8090 @item
8091 Sharpen:
8092 @example
8093 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
8094 @end example
8095
8096 @item
8097 Blur:
8098 @example
8099 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
8100 @end example
8101
8102 @end itemize
8103
8104 @section field
8105
8106 Extract a single field from an interlaced image using stride
8107 arithmetic to avoid wasting CPU time. The output frames are marked as
8108 non-interlaced.
8109
8110 The filter accepts the following options:
8111
8112 @table @option
8113 @item type
8114 Specify whether to extract the top (if the value is @code{0} or
8115 @code{top}) or the bottom field (if the value is @code{1} or
8116 @code{bottom}).
8117 @end table
8118
8119 @section fieldhint
8120
8121 Create new frames by copying the top and bottom fields from surrounding frames
8122 supplied as numbers by the hint file.
8123
8124 @table @option
8125 @item hint
8126 Set file containing hints: absolute/relative frame numbers.
8127
8128 There must be one line for each frame in a clip. Each line must contain two
8129 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
8130 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
8131 is current frame number for @code{absolute} mode or out of [-1, 1] range
8132 for @code{relative} mode. First number tells from which frame to pick up top
8133 field and second number tells from which frame to pick up bottom field.
8134
8135 If optionally followed by @code{+} output frame will be marked as interlaced,
8136 else if followed by @code{-} output frame will be marked as progressive, else
8137 it will be marked same as input frame.
8138 If line starts with @code{#} or @code{;} that line is skipped.
8139
8140 @item mode
8141 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
8142 @end table
8143
8144 Example of first several lines of @code{hint} file for @code{relative} mode:
8145 @example
8146 0,0 - # first frame
8147 1,0 - # second frame, use third's frame top field and second's frame bottom field
8148 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
8149 1,0 -
8150 0,0 -
8151 0,0 -
8152 1,0 -
8153 1,0 -
8154 1,0 -
8155 0,0 -
8156 0,0 -
8157 1,0 -
8158 1,0 -
8159 1,0 -
8160 0,0 -
8161 @end example
8162
8163 @section fieldmatch
8164
8165 Field matching filter for inverse telecine. It is meant to reconstruct the
8166 progressive frames from a telecined stream. The filter does not drop duplicated
8167 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
8168 followed by a decimation filter such as @ref{decimate} in the filtergraph.
8169
8170 The separation of the field matching and the decimation is notably motivated by
8171 the possibility of inserting a de-interlacing filter fallback between the two.
8172 If the source has mixed telecined and real interlaced content,
8173 @code{fieldmatch} will not be able to match fields for the interlaced parts.
8174 But these remaining combed frames will be marked as interlaced, and thus can be
8175 de-interlaced by a later filter such as @ref{yadif} before decimation.
8176
8177 In addition to the various configuration options, @code{fieldmatch} can take an
8178 optional second stream, activated through the @option{ppsrc} option. If
8179 enabled, the frames reconstruction will be based on the fields and frames from
8180 this second stream. This allows the first input to be pre-processed in order to
8181 help the various algorithms of the filter, while keeping the output lossless
8182 (assuming the fields are matched properly). Typically, a field-aware denoiser,
8183 or brightness/contrast adjustments can help.
8184
8185 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
8186 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
8187 which @code{fieldmatch} is based on. While the semantic and usage are very
8188 close, some behaviour and options names can differ.
8189
8190 The @ref{decimate} filter currently only works for constant frame rate input.
8191 If your input has mixed telecined (30fps) and progressive content with a lower
8192 framerate like 24fps use the following filterchain to produce the necessary cfr
8193 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
8194
8195 The filter accepts the following options:
8196
8197 @table @option
8198 @item order
8199 Specify the assumed field order of the input stream. Available values are:
8200
8201 @table @samp
8202 @item auto
8203 Auto detect parity (use FFmpeg's internal parity value).
8204 @item bff
8205 Assume bottom field first.
8206 @item tff
8207 Assume top field first.
8208 @end table
8209
8210 Note that it is sometimes recommended not to trust the parity announced by the
8211 stream.
8212
8213 Default value is @var{auto}.
8214
8215 @item mode
8216 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
8217 sense that it won't risk creating jerkiness due to duplicate frames when
8218 possible, but if there are bad edits or blended fields it will end up
8219 outputting combed frames when a good match might actually exist. On the other
8220 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
8221 but will almost always find a good frame if there is one. The other values are
8222 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
8223 jerkiness and creating duplicate frames versus finding good matches in sections
8224 with bad edits, orphaned fields, blended fields, etc.
8225
8226 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
8227
8228 Available values are:
8229
8230 @table @samp
8231 @item pc
8232 2-way matching (p/c)
8233 @item pc_n
8234 2-way matching, and trying 3rd match if still combed (p/c + n)
8235 @item pc_u
8236 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
8237 @item pc_n_ub
8238 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
8239 still combed (p/c + n + u/b)
8240 @item pcn
8241 3-way matching (p/c/n)
8242 @item pcn_ub
8243 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
8244 detected as combed (p/c/n + u/b)
8245 @end table
8246
8247 The parenthesis at the end indicate the matches that would be used for that
8248 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
8249 @var{top}).
8250
8251 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
8252 the slowest.
8253
8254 Default value is @var{pc_n}.
8255
8256 @item ppsrc
8257 Mark the main input stream as a pre-processed input, and enable the secondary
8258 input stream as the clean source to pick the fields from. See the filter
8259 introduction for more details. It is similar to the @option{clip2} feature from
8260 VFM/TFM.
8261
8262 Default value is @code{0} (disabled).
8263
8264 @item field
8265 Set the field to match from. It is recommended to set this to the same value as
8266 @option{order} unless you experience matching failures with that setting. In
8267 certain circumstances changing the field that is used to match from can have a
8268 large impact on matching performance. Available values are:
8269
8270 @table @samp
8271 @item auto
8272 Automatic (same value as @option{order}).
8273 @item bottom
8274 Match from the bottom field.
8275 @item top
8276 Match from the top field.
8277 @end table
8278
8279 Default value is @var{auto}.
8280
8281 @item mchroma
8282 Set whether or not chroma is included during the match comparisons. In most
8283 cases it is recommended to leave this enabled. You should set this to @code{0}
8284 only if your clip has bad chroma problems such as heavy rainbowing or other
8285 artifacts. Setting this to @code{0} could also be used to speed things up at
8286 the cost of some accuracy.
8287
8288 Default value is @code{1}.
8289
8290 @item y0
8291 @item y1
8292 These define an exclusion band which excludes the lines between @option{y0} and
8293 @option{y1} from being included in the field matching decision. An exclusion
8294 band can be used to ignore subtitles, a logo, or other things that may
8295 interfere with the matching. @option{y0} sets the starting scan line and
8296 @option{y1} sets the ending line; all lines in between @option{y0} and
8297 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
8298 @option{y0} and @option{y1} to the same value will disable the feature.
8299 @option{y0} and @option{y1} defaults to @code{0}.
8300
8301 @item scthresh
8302 Set the scene change detection threshold as a percentage of maximum change on
8303 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
8304 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
8305 @option{scthresh} is @code{[0.0, 100.0]}.
8306
8307 Default value is @code{12.0}.
8308
8309 @item combmatch
8310 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
8311 account the combed scores of matches when deciding what match to use as the
8312 final match. Available values are:
8313
8314 @table @samp
8315 @item none
8316 No final matching based on combed scores.
8317 @item sc
8318 Combed scores are only used when a scene change is detected.
8319 @item full
8320 Use combed scores all the time.
8321 @end table
8322
8323 Default is @var{sc}.
8324
8325 @item combdbg
8326 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
8327 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
8328 Available values are:
8329
8330 @table @samp
8331 @item none
8332 No forced calculation.
8333 @item pcn
8334 Force p/c/n calculations.
8335 @item pcnub
8336 Force p/c/n/u/b calculations.
8337 @end table
8338
8339 Default value is @var{none}.
8340
8341 @item cthresh
8342 This is the area combing threshold used for combed frame detection. This
8343 essentially controls how "strong" or "visible" combing must be to be detected.
8344 Larger values mean combing must be more visible and smaller values mean combing
8345 can be less visible or strong and still be detected. Valid settings are from
8346 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
8347 be detected as combed). This is basically a pixel difference value. A good
8348 range is @code{[8, 12]}.
8349
8350 Default value is @code{9}.
8351
8352 @item chroma
8353 Sets whether or not chroma is considered in the combed frame decision.  Only
8354 disable this if your source has chroma problems (rainbowing, etc.) that are
8355 causing problems for the combed frame detection with chroma enabled. Actually,
8356 using @option{chroma}=@var{0} is usually more reliable, except for the case
8357 where there is chroma only combing in the source.
8358
8359 Default value is @code{0}.
8360
8361 @item blockx
8362 @item blocky
8363 Respectively set the x-axis and y-axis size of the window used during combed
8364 frame detection. This has to do with the size of the area in which
8365 @option{combpel} pixels are required to be detected as combed for a frame to be
8366 declared combed. See the @option{combpel} parameter description for more info.
8367 Possible values are any number that is a power of 2 starting at 4 and going up
8368 to 512.
8369
8370 Default value is @code{16}.
8371
8372 @item combpel
8373 The number of combed pixels inside any of the @option{blocky} by
8374 @option{blockx} size blocks on the frame for the frame to be detected as
8375 combed. While @option{cthresh} controls how "visible" the combing must be, this
8376 setting controls "how much" combing there must be in any localized area (a
8377 window defined by the @option{blockx} and @option{blocky} settings) on the
8378 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
8379 which point no frames will ever be detected as combed). This setting is known
8380 as @option{MI} in TFM/VFM vocabulary.
8381
8382 Default value is @code{80}.
8383 @end table
8384
8385 @anchor{p/c/n/u/b meaning}
8386 @subsection p/c/n/u/b meaning
8387
8388 @subsubsection p/c/n
8389
8390 We assume the following telecined stream:
8391
8392 @example
8393 Top fields:     1 2 2 3 4
8394 Bottom fields:  1 2 3 4 4
8395 @end example
8396
8397 The numbers correspond to the progressive frame the fields relate to. Here, the
8398 first two frames are progressive, the 3rd and 4th are combed, and so on.
8399
8400 When @code{fieldmatch} is configured to run a matching from bottom
8401 (@option{field}=@var{bottom}) this is how this input stream get transformed:
8402
8403 @example
8404 Input stream:
8405                 T     1 2 2 3 4
8406                 B     1 2 3 4 4   <-- matching reference
8407
8408 Matches:              c c n n c
8409
8410 Output stream:
8411                 T     1 2 3 4 4
8412                 B     1 2 3 4 4
8413 @end example
8414
8415 As a result of the field matching, we can see that some frames get duplicated.
8416 To perform a complete inverse telecine, you need to rely on a decimation filter
8417 after this operation. See for instance the @ref{decimate} filter.
8418
8419 The same operation now matching from top fields (@option{field}=@var{top})
8420 looks like this:
8421
8422 @example
8423 Input stream:
8424                 T     1 2 2 3 4   <-- matching reference
8425                 B     1 2 3 4 4
8426
8427 Matches:              c c p p c
8428
8429 Output stream:
8430                 T     1 2 2 3 4
8431                 B     1 2 2 3 4
8432 @end example
8433
8434 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
8435 basically, they refer to the frame and field of the opposite parity:
8436
8437 @itemize
8438 @item @var{p} matches the field of the opposite parity in the previous frame
8439 @item @var{c} matches the field of the opposite parity in the current frame
8440 @item @var{n} matches the field of the opposite parity in the next frame
8441 @end itemize
8442
8443 @subsubsection u/b
8444
8445 The @var{u} and @var{b} matching are a bit special in the sense that they match
8446 from the opposite parity flag. In the following examples, we assume that we are
8447 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
8448 'x' is placed above and below each matched fields.
8449
8450 With bottom matching (@option{field}=@var{bottom}):
8451 @example
8452 Match:           c         p           n          b          u
8453
8454                  x       x               x        x          x
8455   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
8456   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
8457                  x         x           x        x              x
8458
8459 Output frames:
8460                  2          1          2          2          2
8461                  2          2          2          1          3
8462 @end example
8463
8464 With top matching (@option{field}=@var{top}):
8465 @example
8466 Match:           c         p           n          b          u
8467
8468                  x         x           x        x              x
8469   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
8470   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
8471                  x       x               x        x          x
8472
8473 Output frames:
8474                  2          2          2          1          2
8475                  2          1          3          2          2
8476 @end example
8477
8478 @subsection Examples
8479
8480 Simple IVTC of a top field first telecined stream:
8481 @example
8482 fieldmatch=order=tff:combmatch=none, decimate
8483 @end example
8484
8485 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
8486 @example
8487 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
8488 @end example
8489
8490 @section fieldorder
8491
8492 Transform the field order of the input video.
8493
8494 It accepts the following parameters:
8495
8496 @table @option
8497
8498 @item order
8499 The output field order. Valid values are @var{tff} for top field first or @var{bff}
8500 for bottom field first.
8501 @end table
8502
8503 The default value is @samp{tff}.
8504
8505 The transformation is done by shifting the picture content up or down
8506 by one line, and filling the remaining line with appropriate picture content.
8507 This method is consistent with most broadcast field order converters.
8508
8509 If the input video is not flagged as being interlaced, or it is already
8510 flagged as being of the required output field order, then this filter does
8511 not alter the incoming video.
8512
8513 It is very useful when converting to or from PAL DV material,
8514 which is bottom field first.
8515
8516 For example:
8517 @example
8518 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
8519 @end example
8520
8521 @section fifo, afifo
8522
8523 Buffer input images and send them when they are requested.
8524
8525 It is mainly useful when auto-inserted by the libavfilter
8526 framework.
8527
8528 It does not take parameters.
8529
8530 @section find_rect
8531
8532 Find a rectangular object
8533
8534 It accepts the following options:
8535
8536 @table @option
8537 @item object
8538 Filepath of the object image, needs to be in gray8.
8539
8540 @item threshold
8541 Detection threshold, default is 0.5.
8542
8543 @item mipmaps
8544 Number of mipmaps, default is 3.
8545
8546 @item xmin, ymin, xmax, ymax
8547 Specifies the rectangle in which to search.
8548 @end table
8549
8550 @subsection Examples
8551
8552 @itemize
8553 @item
8554 Generate a representative palette of a given video using @command{ffmpeg}:
8555 @example
8556 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
8557 @end example
8558 @end itemize
8559
8560 @section cover_rect
8561
8562 Cover a rectangular object
8563
8564 It accepts the following options:
8565
8566 @table @option
8567 @item cover
8568 Filepath of the optional cover image, needs to be in yuv420.
8569
8570 @item mode
8571 Set covering mode.
8572
8573 It accepts the following values:
8574 @table @samp
8575 @item cover
8576 cover it by the supplied image
8577 @item blur
8578 cover it by interpolating the surrounding pixels
8579 @end table
8580
8581 Default value is @var{blur}.
8582 @end table
8583
8584 @subsection Examples
8585
8586 @itemize
8587 @item
8588 Generate a representative palette of a given video using @command{ffmpeg}:
8589 @example
8590 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
8591 @end example
8592 @end itemize
8593
8594 @section floodfill
8595
8596 Flood area with values of same pixel components with another values.
8597
8598 It accepts the following options:
8599 @table @option
8600 @item x
8601 Set pixel x coordinate.
8602
8603 @item y
8604 Set pixel y coordinate.
8605
8606 @item s0
8607 Set source #0 component value.
8608
8609 @item s1
8610 Set source #1 component value.
8611
8612 @item s2
8613 Set source #2 component value.
8614
8615 @item s3
8616 Set source #3 component value.
8617
8618 @item d0
8619 Set destination #0 component value.
8620
8621 @item d1
8622 Set destination #1 component value.
8623
8624 @item d2
8625 Set destination #2 component value.
8626
8627 @item d3
8628 Set destination #3 component value.
8629 @end table
8630
8631 @anchor{format}
8632 @section format
8633
8634 Convert the input video to one of the specified pixel formats.
8635 Libavfilter will try to pick one that is suitable as input to
8636 the next filter.
8637
8638 It accepts the following parameters:
8639 @table @option
8640
8641 @item pix_fmts
8642 A '|'-separated list of pixel format names, such as
8643 "pix_fmts=yuv420p|monow|rgb24".
8644
8645 @end table
8646
8647 @subsection Examples
8648
8649 @itemize
8650 @item
8651 Convert the input video to the @var{yuv420p} format
8652 @example
8653 format=pix_fmts=yuv420p
8654 @end example
8655
8656 Convert the input video to any of the formats in the list
8657 @example
8658 format=pix_fmts=yuv420p|yuv444p|yuv410p
8659 @end example
8660 @end itemize
8661
8662 @anchor{fps}
8663 @section fps
8664
8665 Convert the video to specified constant frame rate by duplicating or dropping
8666 frames as necessary.
8667
8668 It accepts the following parameters:
8669 @table @option
8670
8671 @item fps
8672 The desired output frame rate. The default is @code{25}.
8673
8674 @item start_time
8675 Assume the first PTS should be the given value, in seconds. This allows for
8676 padding/trimming at the start of stream. By default, no assumption is made
8677 about the first frame's expected PTS, so no padding or trimming is done.
8678 For example, this could be set to 0 to pad the beginning with duplicates of
8679 the first frame if a video stream starts after the audio stream or to trim any
8680 frames with a negative PTS.
8681
8682 @item round
8683 Timestamp (PTS) rounding method.
8684
8685 Possible values are:
8686 @table @option
8687 @item zero
8688 round towards 0
8689 @item inf
8690 round away from 0
8691 @item down
8692 round towards -infinity
8693 @item up
8694 round towards +infinity
8695 @item near
8696 round to nearest
8697 @end table
8698 The default is @code{near}.
8699
8700 @item eof_action
8701 Action performed when reading the last frame.
8702
8703 Possible values are:
8704 @table @option
8705 @item round
8706 Use same timestamp rounding method as used for other frames.
8707 @item pass
8708 Pass through last frame if input duration has not been reached yet.
8709 @end table
8710 The default is @code{round}.
8711
8712 @end table
8713
8714 Alternatively, the options can be specified as a flat string:
8715 @var{fps}[:@var{start_time}[:@var{round}]].
8716
8717 See also the @ref{setpts} filter.
8718
8719 @subsection Examples
8720
8721 @itemize
8722 @item
8723 A typical usage in order to set the fps to 25:
8724 @example
8725 fps=fps=25
8726 @end example
8727
8728 @item
8729 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
8730 @example
8731 fps=fps=film:round=near
8732 @end example
8733 @end itemize
8734
8735 @section framepack
8736
8737 Pack two different video streams into a stereoscopic video, setting proper
8738 metadata on supported codecs. The two views should have the same size and
8739 framerate and processing will stop when the shorter video ends. Please note
8740 that you may conveniently adjust view properties with the @ref{scale} and
8741 @ref{fps} filters.
8742
8743 It accepts the following parameters:
8744 @table @option
8745
8746 @item format
8747 The desired packing format. Supported values are:
8748
8749 @table @option
8750
8751 @item sbs
8752 The views are next to each other (default).
8753
8754 @item tab
8755 The views are on top of each other.
8756
8757 @item lines
8758 The views are packed by line.
8759
8760 @item columns
8761 The views are packed by column.
8762
8763 @item frameseq
8764 The views are temporally interleaved.
8765
8766 @end table
8767
8768 @end table
8769
8770 Some examples:
8771
8772 @example
8773 # Convert left and right views into a frame-sequential video
8774 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
8775
8776 # Convert views into a side-by-side video with the same output resolution as the input
8777 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
8778 @end example
8779
8780 @section framerate
8781
8782 Change the frame rate by interpolating new video output frames from the source
8783 frames.
8784
8785 This filter is not designed to function correctly with interlaced media. If
8786 you wish to change the frame rate of interlaced media then you are required
8787 to deinterlace before this filter and re-interlace after this filter.
8788
8789 A description of the accepted options follows.
8790
8791 @table @option
8792 @item fps
8793 Specify the output frames per second. This option can also be specified
8794 as a value alone. The default is @code{50}.
8795
8796 @item interp_start
8797 Specify the start of a range where the output frame will be created as a
8798 linear interpolation of two frames. The range is [@code{0}-@code{255}],
8799 the default is @code{15}.
8800
8801 @item interp_end
8802 Specify the end of a range where the output frame will be created as a
8803 linear interpolation of two frames. The range is [@code{0}-@code{255}],
8804 the default is @code{240}.
8805
8806 @item scene
8807 Specify the level at which a scene change is detected as a value between
8808 0 and 100 to indicate a new scene; a low value reflects a low
8809 probability for the current frame to introduce a new scene, while a higher
8810 value means the current frame is more likely to be one.
8811 The default is @code{7}.
8812
8813 @item flags
8814 Specify flags influencing the filter process.
8815
8816 Available value for @var{flags} is:
8817
8818 @table @option
8819 @item scene_change_detect, scd
8820 Enable scene change detection using the value of the option @var{scene}.
8821 This flag is enabled by default.
8822 @end table
8823 @end table
8824
8825 @section framestep
8826
8827 Select one frame every N-th frame.
8828
8829 This filter accepts the following option:
8830 @table @option
8831 @item step
8832 Select frame after every @code{step} frames.
8833 Allowed values are positive integers higher than 0. Default value is @code{1}.
8834 @end table
8835
8836 @anchor{frei0r}
8837 @section frei0r
8838
8839 Apply a frei0r effect to the input video.
8840
8841 To enable the compilation of this filter, you need to install the frei0r
8842 header and configure FFmpeg with @code{--enable-frei0r}.
8843
8844 It accepts the following parameters:
8845
8846 @table @option
8847
8848 @item filter_name
8849 The name of the frei0r effect to load. If the environment variable
8850 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
8851 directories specified by the colon-separated list in @env{FREI0R_PATH}.
8852 Otherwise, the standard frei0r paths are searched, in this order:
8853 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
8854 @file{/usr/lib/frei0r-1/}.
8855
8856 @item filter_params
8857 A '|'-separated list of parameters to pass to the frei0r effect.
8858
8859 @end table
8860
8861 A frei0r effect parameter can be a boolean (its value is either
8862 "y" or "n"), a double, a color (specified as
8863 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
8864 numbers between 0.0 and 1.0, inclusive) or by a color description specified in the "Color"
8865 section in the ffmpeg-utils manual), a position (specified as @var{X}/@var{Y}, where
8866 @var{X} and @var{Y} are floating point numbers) and/or a string.
8867
8868 The number and types of parameters depend on the loaded effect. If an
8869 effect parameter is not specified, the default value is set.
8870
8871 @subsection Examples
8872
8873 @itemize
8874 @item
8875 Apply the distort0r effect, setting the first two double parameters:
8876 @example
8877 frei0r=filter_name=distort0r:filter_params=0.5|0.01
8878 @end example
8879
8880 @item
8881 Apply the colordistance effect, taking a color as the first parameter:
8882 @example
8883 frei0r=colordistance:0.2/0.3/0.4
8884 frei0r=colordistance:violet
8885 frei0r=colordistance:0x112233
8886 @end example
8887
8888 @item
8889 Apply the perspective effect, specifying the top left and top right image
8890 positions:
8891 @example
8892 frei0r=perspective:0.2/0.2|0.8/0.2
8893 @end example
8894 @end itemize
8895
8896 For more information, see
8897 @url{http://frei0r.dyne.org}
8898
8899 @section fspp
8900
8901 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
8902
8903 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
8904 processing filter, one of them is performed once per block, not per pixel.
8905 This allows for much higher speed.
8906
8907 The filter accepts the following options:
8908
8909 @table @option
8910 @item quality
8911 Set quality. This option defines the number of levels for averaging. It accepts
8912 an integer in the range 4-5. Default value is @code{4}.
8913
8914 @item qp
8915 Force a constant quantization parameter. It accepts an integer in range 0-63.
8916 If not set, the filter will use the QP from the video stream (if available).
8917
8918 @item strength
8919 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
8920 more details but also more artifacts, while higher values make the image smoother
8921 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
8922
8923 @item use_bframe_qp
8924 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
8925 option may cause flicker since the B-Frames have often larger QP. Default is
8926 @code{0} (not enabled).
8927
8928 @end table
8929
8930 @section gblur
8931
8932 Apply Gaussian blur filter.
8933
8934 The filter accepts the following options:
8935
8936 @table @option
8937 @item sigma
8938 Set horizontal sigma, standard deviation of Gaussian blur. Default is @code{0.5}.
8939
8940 @item steps
8941 Set number of steps for Gaussian approximation. Defauls is @code{1}.
8942
8943 @item planes
8944 Set which planes to filter. By default all planes are filtered.
8945
8946 @item sigmaV
8947 Set vertical sigma, if negative it will be same as @code{sigma}.
8948 Default is @code{-1}.
8949 @end table
8950
8951 @section geq
8952
8953 The filter accepts the following options:
8954
8955 @table @option
8956 @item lum_expr, lum
8957 Set the luminance expression.
8958 @item cb_expr, cb
8959 Set the chrominance blue expression.
8960 @item cr_expr, cr
8961 Set the chrominance red expression.
8962 @item alpha_expr, a
8963 Set the alpha expression.
8964 @item red_expr, r
8965 Set the red expression.
8966 @item green_expr, g
8967 Set the green expression.
8968 @item blue_expr, b
8969 Set the blue expression.
8970 @end table
8971
8972 The colorspace is selected according to the specified options. If one
8973 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
8974 options is specified, the filter will automatically select a YCbCr
8975 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
8976 @option{blue_expr} options is specified, it will select an RGB
8977 colorspace.
8978
8979 If one of the chrominance expression is not defined, it falls back on the other
8980 one. If no alpha expression is specified it will evaluate to opaque value.
8981 If none of chrominance expressions are specified, they will evaluate
8982 to the luminance expression.
8983
8984 The expressions can use the following variables and functions:
8985
8986 @table @option
8987 @item N
8988 The sequential number of the filtered frame, starting from @code{0}.
8989
8990 @item X
8991 @item Y
8992 The coordinates of the current sample.
8993
8994 @item W
8995 @item H
8996 The width and height of the image.
8997
8998 @item SW
8999 @item SH
9000 Width and height scale depending on the currently filtered plane. It is the
9001 ratio between the corresponding luma plane number of pixels and the current
9002 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
9003 @code{0.5,0.5} for chroma planes.
9004
9005 @item T
9006 Time of the current frame, expressed in seconds.
9007
9008 @item p(x, y)
9009 Return the value of the pixel at location (@var{x},@var{y}) of the current
9010 plane.
9011
9012 @item lum(x, y)
9013 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
9014 plane.
9015
9016 @item cb(x, y)
9017 Return the value of the pixel at location (@var{x},@var{y}) of the
9018 blue-difference chroma plane. Return 0 if there is no such plane.
9019
9020 @item cr(x, y)
9021 Return the value of the pixel at location (@var{x},@var{y}) of the
9022 red-difference chroma plane. Return 0 if there is no such plane.
9023
9024 @item r(x, y)
9025 @item g(x, y)
9026 @item b(x, y)
9027 Return the value of the pixel at location (@var{x},@var{y}) of the
9028 red/green/blue component. Return 0 if there is no such component.
9029
9030 @item alpha(x, y)
9031 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
9032 plane. Return 0 if there is no such plane.
9033 @end table
9034
9035 For functions, if @var{x} and @var{y} are outside the area, the value will be
9036 automatically clipped to the closer edge.
9037
9038 @subsection Examples
9039
9040 @itemize
9041 @item
9042 Flip the image horizontally:
9043 @example
9044 geq=p(W-X\,Y)
9045 @end example
9046
9047 @item
9048 Generate a bidimensional sine wave, with angle @code{PI/3} and a
9049 wavelength of 100 pixels:
9050 @example
9051 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
9052 @end example
9053
9054 @item
9055 Generate a fancy enigmatic moving light:
9056 @example
9057 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
9058 @end example
9059
9060 @item
9061 Generate a quick emboss effect:
9062 @example
9063 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
9064 @end example
9065
9066 @item
9067 Modify RGB components depending on pixel position:
9068 @example
9069 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
9070 @end example
9071
9072 @item
9073 Create a radial gradient that is the same size as the input (also see
9074 the @ref{vignette} filter):
9075 @example
9076 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
9077 @end example
9078 @end itemize
9079
9080 @section gradfun
9081
9082 Fix the banding artifacts that are sometimes introduced into nearly flat
9083 regions by truncation to 8-bit color depth.
9084 Interpolate the gradients that should go where the bands are, and
9085 dither them.
9086
9087 It is designed for playback only.  Do not use it prior to
9088 lossy compression, because compression tends to lose the dither and
9089 bring back the bands.
9090
9091 It accepts the following parameters:
9092
9093 @table @option
9094
9095 @item strength
9096 The maximum amount by which the filter will change any one pixel. This is also
9097 the threshold for detecting nearly flat regions. Acceptable values range from
9098 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
9099 valid range.
9100
9101 @item radius
9102 The neighborhood to fit the gradient to. A larger radius makes for smoother
9103 gradients, but also prevents the filter from modifying the pixels near detailed
9104 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
9105 values will be clipped to the valid range.
9106
9107 @end table
9108
9109 Alternatively, the options can be specified as a flat string:
9110 @var{strength}[:@var{radius}]
9111
9112 @subsection Examples
9113
9114 @itemize
9115 @item
9116 Apply the filter with a @code{3.5} strength and radius of @code{8}:
9117 @example
9118 gradfun=3.5:8
9119 @end example
9120
9121 @item
9122 Specify radius, omitting the strength (which will fall-back to the default
9123 value):
9124 @example
9125 gradfun=radius=8
9126 @end example
9127
9128 @end itemize
9129
9130 @anchor{haldclut}
9131 @section haldclut
9132
9133 Apply a Hald CLUT to a video stream.
9134
9135 First input is the video stream to process, and second one is the Hald CLUT.
9136 The Hald CLUT input can be a simple picture or a complete video stream.
9137
9138 The filter accepts the following options:
9139
9140 @table @option
9141 @item shortest
9142 Force termination when the shortest input terminates. Default is @code{0}.
9143 @item repeatlast
9144 Continue applying the last CLUT after the end of the stream. A value of
9145 @code{0} disable the filter after the last frame of the CLUT is reached.
9146 Default is @code{1}.
9147 @end table
9148
9149 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
9150 filters share the same internals).
9151
9152 More information about the Hald CLUT can be found on Eskil Steenberg's website
9153 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
9154
9155 @subsection Workflow examples
9156
9157 @subsubsection Hald CLUT video stream
9158
9159 Generate an identity Hald CLUT stream altered with various effects:
9160 @example
9161 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
9162 @end example
9163
9164 Note: make sure you use a lossless codec.
9165
9166 Then use it with @code{haldclut} to apply it on some random stream:
9167 @example
9168 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
9169 @end example
9170
9171 The Hald CLUT will be applied to the 10 first seconds (duration of
9172 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
9173 to the remaining frames of the @code{mandelbrot} stream.
9174
9175 @subsubsection Hald CLUT with preview
9176
9177 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
9178 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
9179 biggest possible square starting at the top left of the picture. The remaining
9180 padding pixels (bottom or right) will be ignored. This area can be used to add
9181 a preview of the Hald CLUT.
9182
9183 Typically, the following generated Hald CLUT will be supported by the
9184 @code{haldclut} filter:
9185
9186 @example
9187 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
9188    pad=iw+320 [padded_clut];
9189    smptebars=s=320x256, split [a][b];
9190    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
9191    [main][b] overlay=W-320" -frames:v 1 clut.png
9192 @end example
9193
9194 It contains the original and a preview of the effect of the CLUT: SMPTE color
9195 bars are displayed on the right-top, and below the same color bars processed by
9196 the color changes.
9197
9198 Then, the effect of this Hald CLUT can be visualized with:
9199 @example
9200 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
9201 @end example
9202
9203 @section hflip
9204
9205 Flip the input video horizontally.
9206
9207 For example, to horizontally flip the input video with @command{ffmpeg}:
9208 @example
9209 ffmpeg -i in.avi -vf "hflip" out.avi
9210 @end example
9211
9212 @section histeq
9213 This filter applies a global color histogram equalization on a
9214 per-frame basis.
9215
9216 It can be used to correct video that has a compressed range of pixel
9217 intensities.  The filter redistributes the pixel intensities to
9218 equalize their distribution across the intensity range. It may be
9219 viewed as an "automatically adjusting contrast filter". This filter is
9220 useful only for correcting degraded or poorly captured source
9221 video.
9222
9223 The filter accepts the following options:
9224
9225 @table @option
9226 @item strength
9227 Determine the amount of equalization to be applied.  As the strength
9228 is reduced, the distribution of pixel intensities more-and-more
9229 approaches that of the input frame. The value must be a float number
9230 in the range [0,1] and defaults to 0.200.
9231
9232 @item intensity
9233 Set the maximum intensity that can generated and scale the output
9234 values appropriately.  The strength should be set as desired and then
9235 the intensity can be limited if needed to avoid washing-out. The value
9236 must be a float number in the range [0,1] and defaults to 0.210.
9237
9238 @item antibanding
9239 Set the antibanding level. If enabled the filter will randomly vary
9240 the luminance of output pixels by a small amount to avoid banding of
9241 the histogram. Possible values are @code{none}, @code{weak} or
9242 @code{strong}. It defaults to @code{none}.
9243 @end table
9244
9245 @section histogram
9246
9247 Compute and draw a color distribution histogram for the input video.
9248
9249 The computed histogram is a representation of the color component
9250 distribution in an image.
9251
9252 Standard histogram displays the color components distribution in an image.
9253 Displays color graph for each color component. Shows distribution of
9254 the Y, U, V, A or R, G, B components, depending on input format, in the
9255 current frame. Below each graph a color component scale meter is shown.
9256
9257 The filter accepts the following options:
9258
9259 @table @option
9260 @item level_height
9261 Set height of level. Default value is @code{200}.
9262 Allowed range is [50, 2048].
9263
9264 @item scale_height
9265 Set height of color scale. Default value is @code{12}.
9266 Allowed range is [0, 40].
9267
9268 @item display_mode
9269 Set display mode.
9270 It accepts the following values:
9271 @table @samp
9272 @item stack
9273 Per color component graphs are placed below each other.
9274
9275 @item parade
9276 Per color component graphs are placed side by side.
9277
9278 @item overlay
9279 Presents information identical to that in the @code{parade}, except
9280 that the graphs representing color components are superimposed directly
9281 over one another.
9282 @end table
9283 Default is @code{stack}.
9284
9285 @item levels_mode
9286 Set mode. Can be either @code{linear}, or @code{logarithmic}.
9287 Default is @code{linear}.
9288
9289 @item components
9290 Set what color components to display.
9291 Default is @code{7}.
9292
9293 @item fgopacity
9294 Set foreground opacity. Default is @code{0.7}.
9295
9296 @item bgopacity
9297 Set background opacity. Default is @code{0.5}.
9298 @end table
9299
9300 @subsection Examples
9301
9302 @itemize
9303
9304 @item
9305 Calculate and draw histogram:
9306 @example
9307 ffplay -i input -vf histogram
9308 @end example
9309
9310 @end itemize
9311
9312 @anchor{hqdn3d}
9313 @section hqdn3d
9314
9315 This is a high precision/quality 3d denoise filter. It aims to reduce
9316 image noise, producing smooth images and making still images really
9317 still. It should enhance compressibility.
9318
9319 It accepts the following optional parameters:
9320
9321 @table @option
9322 @item luma_spatial
9323 A non-negative floating point number which specifies spatial luma strength.
9324 It defaults to 4.0.
9325
9326 @item chroma_spatial
9327 A non-negative floating point number which specifies spatial chroma strength.
9328 It defaults to 3.0*@var{luma_spatial}/4.0.
9329
9330 @item luma_tmp
9331 A floating point number which specifies luma temporal strength. It defaults to
9332 6.0*@var{luma_spatial}/4.0.
9333
9334 @item chroma_tmp
9335 A floating point number which specifies chroma temporal strength. It defaults to
9336 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
9337 @end table
9338
9339 @section hwdownload
9340
9341 Download hardware frames to system memory.
9342
9343 The input must be in hardware frames, and the output a non-hardware format.
9344 Not all formats will be supported on the output - it may be necessary to insert
9345 an additional @option{format} filter immediately following in the graph to get
9346 the output in a supported format.
9347
9348 @section hwmap
9349
9350 Map hardware frames to system memory or to another device.
9351
9352 This filter has several different modes of operation; which one is used depends
9353 on the input and output formats:
9354 @itemize
9355 @item
9356 Hardware frame input, normal frame output
9357
9358 Map the input frames to system memory and pass them to the output.  If the
9359 original hardware frame is later required (for example, after overlaying
9360 something else on part of it), the @option{hwmap} filter can be used again
9361 in the next mode to retrieve it.
9362 @item
9363 Normal frame input, hardware frame output
9364
9365 If the input is actually a software-mapped hardware frame, then unmap it -
9366 that is, return the original hardware frame.
9367
9368 Otherwise, a device must be provided.  Create new hardware surfaces on that
9369 device for the output, then map them back to the software format at the input
9370 and give those frames to the preceding filter.  This will then act like the
9371 @option{hwupload} filter, but may be able to avoid an additional copy when
9372 the input is already in a compatible format.
9373 @item
9374 Hardware frame input and output
9375
9376 A device must be supplied for the output, either directly or with the
9377 @option{derive_device} option.  The input and output devices must be of
9378 different types and compatible - the exact meaning of this is
9379 system-dependent, but typically it means that they must refer to the same
9380 underlying hardware context (for example, refer to the same graphics card).
9381
9382 If the input frames were originally created on the output device, then unmap
9383 to retrieve the original frames.
9384
9385 Otherwise, map the frames to the output device - create new hardware frames
9386 on the output corresponding to the frames on the input.
9387 @end itemize
9388
9389 The following additional parameters are accepted:
9390
9391 @table @option
9392 @item mode
9393 Set the frame mapping mode.  Some combination of:
9394 @table @var
9395 @item read
9396 The mapped frame should be readable.
9397 @item write
9398 The mapped frame should be writeable.
9399 @item overwrite
9400 The mapping will always overwrite the entire frame.
9401
9402 This may improve performance in some cases, as the original contents of the
9403 frame need not be loaded.
9404 @item direct
9405 The mapping must not involve any copying.
9406
9407 Indirect mappings to copies of frames are created in some cases where either
9408 direct mapping is not possible or it would have unexpected properties.
9409 Setting this flag ensures that the mapping is direct and will fail if that is
9410 not possible.
9411 @end table
9412 Defaults to @var{read+write} if not specified.
9413
9414 @item derive_device @var{type}
9415 Rather than using the device supplied at initialisation, instead derive a new
9416 device of type @var{type} from the device the input frames exist on.
9417
9418 @item reverse
9419 In a hardware to hardware mapping, map in reverse - create frames in the sink
9420 and map them back to the source.  This may be necessary in some cases where
9421 a mapping in one direction is required but only the opposite direction is
9422 supported by the devices being used.
9423
9424 This option is dangerous - it may break the preceding filter in undefined
9425 ways if there are any additional constraints on that filter's output.
9426 Do not use it without fully understanding the implications of its use.
9427 @end table
9428
9429 @section hwupload
9430
9431 Upload system memory frames to hardware surfaces.
9432
9433 The device to upload to must be supplied when the filter is initialised.  If
9434 using ffmpeg, select the appropriate device with the @option{-filter_hw_device}
9435 option.
9436
9437 @anchor{hwupload_cuda}
9438 @section hwupload_cuda
9439
9440 Upload system memory frames to a CUDA device.
9441
9442 It accepts the following optional parameters:
9443
9444 @table @option
9445 @item device
9446 The number of the CUDA device to use
9447 @end table
9448
9449 @section hqx
9450
9451 Apply a high-quality magnification filter designed for pixel art. This filter
9452 was originally created by Maxim Stepin.
9453
9454 It accepts the following option:
9455
9456 @table @option
9457 @item n
9458 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
9459 @code{hq3x} and @code{4} for @code{hq4x}.
9460 Default is @code{3}.
9461 @end table
9462
9463 @section hstack
9464 Stack input videos horizontally.
9465
9466 All streams must be of same pixel format and of same height.
9467
9468 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
9469 to create same output.
9470
9471 The filter accept the following option:
9472
9473 @table @option
9474 @item inputs
9475 Set number of input streams. Default is 2.
9476
9477 @item shortest
9478 If set to 1, force the output to terminate when the shortest input
9479 terminates. Default value is 0.
9480 @end table
9481
9482 @section hue
9483
9484 Modify the hue and/or the saturation of the input.
9485
9486 It accepts the following parameters:
9487
9488 @table @option
9489 @item h
9490 Specify the hue angle as a number of degrees. It accepts an expression,
9491 and defaults to "0".
9492
9493 @item s
9494 Specify the saturation in the [-10,10] range. It accepts an expression and
9495 defaults to "1".
9496
9497 @item H
9498 Specify the hue angle as a number of radians. It accepts an
9499 expression, and defaults to "0".
9500
9501 @item b
9502 Specify the brightness in the [-10,10] range. It accepts an expression and
9503 defaults to "0".
9504 @end table
9505
9506 @option{h} and @option{H} are mutually exclusive, and can't be
9507 specified at the same time.
9508
9509 The @option{b}, @option{h}, @option{H} and @option{s} option values are
9510 expressions containing the following constants:
9511
9512 @table @option
9513 @item n
9514 frame count of the input frame starting from 0
9515
9516 @item pts
9517 presentation timestamp of the input frame expressed in time base units
9518
9519 @item r
9520 frame rate of the input video, NAN if the input frame rate is unknown
9521
9522 @item t
9523 timestamp expressed in seconds, NAN if the input timestamp is unknown
9524
9525 @item tb
9526 time base of the input video
9527 @end table
9528
9529 @subsection Examples
9530
9531 @itemize
9532 @item
9533 Set the hue to 90 degrees and the saturation to 1.0:
9534 @example
9535 hue=h=90:s=1
9536 @end example
9537
9538 @item
9539 Same command but expressing the hue in radians:
9540 @example
9541 hue=H=PI/2:s=1
9542 @end example
9543
9544 @item
9545 Rotate hue and make the saturation swing between 0
9546 and 2 over a period of 1 second:
9547 @example
9548 hue="H=2*PI*t: s=sin(2*PI*t)+1"
9549 @end example
9550
9551 @item
9552 Apply a 3 seconds saturation fade-in effect starting at 0:
9553 @example
9554 hue="s=min(t/3\,1)"
9555 @end example
9556
9557 The general fade-in expression can be written as:
9558 @example
9559 hue="s=min(0\, max((t-START)/DURATION\, 1))"
9560 @end example
9561
9562 @item
9563 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
9564 @example
9565 hue="s=max(0\, min(1\, (8-t)/3))"
9566 @end example
9567
9568 The general fade-out expression can be written as:
9569 @example
9570 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
9571 @end example
9572
9573 @end itemize
9574
9575 @subsection Commands
9576
9577 This filter supports the following commands:
9578 @table @option
9579 @item b
9580 @item s
9581 @item h
9582 @item H
9583 Modify the hue and/or the saturation and/or brightness of the input video.
9584 The command accepts the same syntax of the corresponding option.
9585
9586 If the specified expression is not valid, it is kept at its current
9587 value.
9588 @end table
9589
9590 @section hysteresis
9591
9592 Grow first stream into second stream by connecting components.
9593 This makes it possible to build more robust edge masks.
9594
9595 This filter accepts the following options:
9596
9597 @table @option
9598 @item planes
9599 Set which planes will be processed as bitmap, unprocessed planes will be
9600 copied from first stream.
9601 By default value 0xf, all planes will be processed.
9602
9603 @item threshold
9604 Set threshold which is used in filtering. If pixel component value is higher than
9605 this value filter algorithm for connecting components is activated.
9606 By default value is 0.
9607 @end table
9608
9609 @section idet
9610
9611 Detect video interlacing type.
9612
9613 This filter tries to detect if the input frames are interlaced, progressive,
9614 top or bottom field first. It will also try to detect fields that are
9615 repeated between adjacent frames (a sign of telecine).
9616
9617 Single frame detection considers only immediately adjacent frames when classifying each frame.
9618 Multiple frame detection incorporates the classification history of previous frames.
9619
9620 The filter will log these metadata values:
9621
9622 @table @option
9623 @item single.current_frame
9624 Detected type of current frame using single-frame detection. One of:
9625 ``tff'' (top field first), ``bff'' (bottom field first),
9626 ``progressive'', or ``undetermined''
9627
9628 @item single.tff
9629 Cumulative number of frames detected as top field first using single-frame detection.
9630
9631 @item multiple.tff
9632 Cumulative number of frames detected as top field first using multiple-frame detection.
9633
9634 @item single.bff
9635 Cumulative number of frames detected as bottom field first using single-frame detection.
9636
9637 @item multiple.current_frame
9638 Detected type of current frame using multiple-frame detection. One of:
9639 ``tff'' (top field first), ``bff'' (bottom field first),
9640 ``progressive'', or ``undetermined''
9641
9642 @item multiple.bff
9643 Cumulative number of frames detected as bottom field first using multiple-frame detection.
9644
9645 @item single.progressive
9646 Cumulative number of frames detected as progressive using single-frame detection.
9647
9648 @item multiple.progressive
9649 Cumulative number of frames detected as progressive using multiple-frame detection.
9650
9651 @item single.undetermined
9652 Cumulative number of frames that could not be classified using single-frame detection.
9653
9654 @item multiple.undetermined
9655 Cumulative number of frames that could not be classified using multiple-frame detection.
9656
9657 @item repeated.current_frame
9658 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
9659
9660 @item repeated.neither
9661 Cumulative number of frames with no repeated field.
9662
9663 @item repeated.top
9664 Cumulative number of frames with the top field repeated from the previous frame's top field.
9665
9666 @item repeated.bottom
9667 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
9668 @end table
9669
9670 The filter accepts the following options:
9671
9672 @table @option
9673 @item intl_thres
9674 Set interlacing threshold.
9675 @item prog_thres
9676 Set progressive threshold.
9677 @item rep_thres
9678 Threshold for repeated field detection.
9679 @item half_life
9680 Number of frames after which a given frame's contribution to the
9681 statistics is halved (i.e., it contributes only 0.5 to its
9682 classification). The default of 0 means that all frames seen are given
9683 full weight of 1.0 forever.
9684 @item analyze_interlaced_flag
9685 When this is not 0 then idet will use the specified number of frames to determine
9686 if the interlaced flag is accurate, it will not count undetermined frames.
9687 If the flag is found to be accurate it will be used without any further
9688 computations, if it is found to be inaccurate it will be cleared without any
9689 further computations. This allows inserting the idet filter as a low computational
9690 method to clean up the interlaced flag
9691 @end table
9692
9693 @section il
9694
9695 Deinterleave or interleave fields.
9696
9697 This filter allows one to process interlaced images fields without
9698 deinterlacing them. Deinterleaving splits the input frame into 2
9699 fields (so called half pictures). Odd lines are moved to the top
9700 half of the output image, even lines to the bottom half.
9701 You can process (filter) them independently and then re-interleave them.
9702
9703 The filter accepts the following options:
9704
9705 @table @option
9706 @item luma_mode, l
9707 @item chroma_mode, c
9708 @item alpha_mode, a
9709 Available values for @var{luma_mode}, @var{chroma_mode} and
9710 @var{alpha_mode} are:
9711
9712 @table @samp
9713 @item none
9714 Do nothing.
9715
9716 @item deinterleave, d
9717 Deinterleave fields, placing one above the other.
9718
9719 @item interleave, i
9720 Interleave fields. Reverse the effect of deinterleaving.
9721 @end table
9722 Default value is @code{none}.
9723
9724 @item luma_swap, ls
9725 @item chroma_swap, cs
9726 @item alpha_swap, as
9727 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
9728 @end table
9729
9730 @section inflate
9731
9732 Apply inflate effect to the video.
9733
9734 This filter replaces the pixel by the local(3x3) average by taking into account
9735 only values higher than the pixel.
9736
9737 It accepts the following options:
9738
9739 @table @option
9740 @item threshold0
9741 @item threshold1
9742 @item threshold2
9743 @item threshold3
9744 Limit the maximum change for each plane, default is 65535.
9745 If 0, plane will remain unchanged.
9746 @end table
9747
9748 @section interlace
9749
9750 Simple interlacing filter from progressive contents. This interleaves upper (or
9751 lower) lines from odd frames with lower (or upper) lines from even frames,
9752 halving the frame rate and preserving image height.
9753
9754 @example
9755    Original        Original             New Frame
9756    Frame 'j'      Frame 'j+1'             (tff)
9757   ==========      ===========       ==================
9758     Line 0  -------------------->    Frame 'j' Line 0
9759     Line 1          Line 1  ---->   Frame 'j+1' Line 1
9760     Line 2 --------------------->    Frame 'j' Line 2
9761     Line 3          Line 3  ---->   Frame 'j+1' Line 3
9762      ...             ...                   ...
9763 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
9764 @end example
9765
9766 It accepts the following optional parameters:
9767
9768 @table @option
9769 @item scan
9770 This determines whether the interlaced frame is taken from the even
9771 (tff - default) or odd (bff) lines of the progressive frame.
9772
9773 @item lowpass
9774 Vertical lowpass filter to avoid twitter interlacing and
9775 reduce moire patterns.
9776
9777 @table @samp
9778 @item 0, off
9779 Disable vertical lowpass filter
9780
9781 @item 1, linear
9782 Enable linear filter (default)
9783
9784 @item 2, complex
9785 Enable complex filter. This will slightly less reduce twitter and moire
9786 but better retain detail and subjective sharpness impression.
9787
9788 @end table
9789 @end table
9790
9791 @section kerndeint
9792
9793 Deinterlace input video by applying Donald Graft's adaptive kernel
9794 deinterling. Work on interlaced parts of a video to produce
9795 progressive frames.
9796
9797 The description of the accepted parameters follows.
9798
9799 @table @option
9800 @item thresh
9801 Set the threshold which affects the filter's tolerance when
9802 determining if a pixel line must be processed. It must be an integer
9803 in the range [0,255] and defaults to 10. A value of 0 will result in
9804 applying the process on every pixels.
9805
9806 @item map
9807 Paint pixels exceeding the threshold value to white if set to 1.
9808 Default is 0.
9809
9810 @item order
9811 Set the fields order. Swap fields if set to 1, leave fields alone if
9812 0. Default is 0.
9813
9814 @item sharp
9815 Enable additional sharpening if set to 1. Default is 0.
9816
9817 @item twoway
9818 Enable twoway sharpening if set to 1. Default is 0.
9819 @end table
9820
9821 @subsection Examples
9822
9823 @itemize
9824 @item
9825 Apply default values:
9826 @example
9827 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
9828 @end example
9829
9830 @item
9831 Enable additional sharpening:
9832 @example
9833 kerndeint=sharp=1
9834 @end example
9835
9836 @item
9837 Paint processed pixels in white:
9838 @example
9839 kerndeint=map=1
9840 @end example
9841 @end itemize
9842
9843 @section lenscorrection
9844
9845 Correct radial lens distortion
9846
9847 This filter can be used to correct for radial distortion as can result from the use
9848 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
9849 one can use tools available for example as part of opencv or simply trial-and-error.
9850 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
9851 and extract the k1 and k2 coefficients from the resulting matrix.
9852
9853 Note that effectively the same filter is available in the open-source tools Krita and
9854 Digikam from the KDE project.
9855
9856 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
9857 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
9858 brightness distribution, so you may want to use both filters together in certain
9859 cases, though you will have to take care of ordering, i.e. whether vignetting should
9860 be applied before or after lens correction.
9861
9862 @subsection Options
9863
9864 The filter accepts the following options:
9865
9866 @table @option
9867 @item cx
9868 Relative x-coordinate of the focal point of the image, and thereby the center of the
9869 distortion. This value has a range [0,1] and is expressed as fractions of the image
9870 width.
9871 @item cy
9872 Relative y-coordinate of the focal point of the image, and thereby the center of the
9873 distortion. This value has a range [0,1] and is expressed as fractions of the image
9874 height.
9875 @item k1
9876 Coefficient of the quadratic correction term. 0.5 means no correction.
9877 @item k2
9878 Coefficient of the double quadratic correction term. 0.5 means no correction.
9879 @end table
9880
9881 The formula that generates the correction is:
9882
9883 @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)
9884
9885 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
9886 distances from the focal point in the source and target images, respectively.
9887
9888 @section libvmaf
9889
9890 Obtain the VMAF (Video Multi-Method Assessment Fusion)
9891 score between two input videos.
9892
9893 The obtained VMAF score is printed through the logging system.
9894
9895 It requires Netflix's vmaf library (libvmaf) as a pre-requisite.
9896 After installing the library it can be enabled using:
9897 @code{./configure --enable-libvmaf}.
9898 If no model path is specified it uses the default model: @code{vmaf_v0.6.1.pkl}.
9899
9900 The filter has following options:
9901
9902 @table @option
9903 @item model_path
9904 Set the model path which is to be used for SVM.
9905 Default value: @code{"vmaf_v0.6.1.pkl"}
9906
9907 @item log_path
9908 Set the file path to be used to store logs.
9909
9910 @item log_fmt
9911 Set the format of the log file (xml or json).
9912
9913 @item enable_transform
9914 Enables transform for computing vmaf.
9915
9916 @item phone_model
9917 Invokes the phone model which will generate VMAF scores higher than in the
9918 regular model, which is more suitable for laptop, TV, etc. viewing conditions.
9919
9920 @item psnr
9921 Enables computing psnr along with vmaf.
9922
9923 @item ssim
9924 Enables computing ssim along with vmaf.
9925
9926 @item ms_ssim
9927 Enables computing ms_ssim along with vmaf.
9928
9929 @item pool
9930 Set the pool method (mean, min or harmonic mean) to be used for computing vmaf.
9931 @end table
9932
9933 This filter also supports the @ref{framesync} options.
9934
9935 On the below examples the input file @file{main.mpg} being processed is
9936 compared with the reference file @file{ref.mpg}.
9937
9938 @example
9939 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf -f null -
9940 @end example
9941
9942 Example with options:
9943 @example
9944 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf="psnr=1:enable-transform=1" -f null -
9945 @end example
9946
9947 @section limiter
9948
9949 Limits the pixel components values to the specified range [min, max].
9950
9951 The filter accepts the following options:
9952
9953 @table @option
9954 @item min
9955 Lower bound. Defaults to the lowest allowed value for the input.
9956
9957 @item max
9958 Upper bound. Defaults to the highest allowed value for the input.
9959
9960 @item planes
9961 Specify which planes will be processed. Defaults to all available.
9962 @end table
9963
9964 @section loop
9965
9966 Loop video frames.
9967
9968 The filter accepts the following options:
9969
9970 @table @option
9971 @item loop
9972 Set the number of loops.
9973
9974 @item size
9975 Set maximal size in number of frames.
9976
9977 @item start
9978 Set first frame of loop.
9979 @end table
9980
9981 @anchor{lut3d}
9982 @section lut3d
9983
9984 Apply a 3D LUT to an input video.
9985
9986 The filter accepts the following options:
9987
9988 @table @option
9989 @item file
9990 Set the 3D LUT file name.
9991
9992 Currently supported formats:
9993 @table @samp
9994 @item 3dl
9995 AfterEffects
9996 @item cube
9997 Iridas
9998 @item dat
9999 DaVinci
10000 @item m3d
10001 Pandora
10002 @end table
10003 @item interp
10004 Select interpolation mode.
10005
10006 Available values are:
10007
10008 @table @samp
10009 @item nearest
10010 Use values from the nearest defined point.
10011 @item trilinear
10012 Interpolate values using the 8 points defining a cube.
10013 @item tetrahedral
10014 Interpolate values using a tetrahedron.
10015 @end table
10016 @end table
10017
10018 This filter also supports the @ref{framesync} options.
10019
10020 @section lumakey
10021
10022 Turn certain luma values into transparency.
10023
10024 The filter accepts the following options:
10025
10026 @table @option
10027 @item threshold
10028 Set the luma which will be used as base for transparency.
10029 Default value is @code{0}.
10030
10031 @item tolerance
10032 Set the range of luma values to be keyed out.
10033 Default value is @code{0}.
10034
10035 @item softness
10036 Set the range of softness. Default value is @code{0}.
10037 Use this to control gradual transition from zero to full transparency.
10038 @end table
10039
10040 @section lut, lutrgb, lutyuv
10041
10042 Compute a look-up table for binding each pixel component input value
10043 to an output value, and apply it to the input video.
10044
10045 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
10046 to an RGB input video.
10047
10048 These filters accept the following parameters:
10049 @table @option
10050 @item c0
10051 set first pixel component expression
10052 @item c1
10053 set second pixel component expression
10054 @item c2
10055 set third pixel component expression
10056 @item c3
10057 set fourth pixel component expression, corresponds to the alpha component
10058
10059 @item r
10060 set red component expression
10061 @item g
10062 set green component expression
10063 @item b
10064 set blue component expression
10065 @item a
10066 alpha component expression
10067
10068 @item y
10069 set Y/luminance component expression
10070 @item u
10071 set U/Cb component expression
10072 @item v
10073 set V/Cr component expression
10074 @end table
10075
10076 Each of them specifies the expression to use for computing the lookup table for
10077 the corresponding pixel component values.
10078
10079 The exact component associated to each of the @var{c*} options depends on the
10080 format in input.
10081
10082 The @var{lut} filter requires either YUV or RGB pixel formats in input,
10083 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
10084
10085 The expressions can contain the following constants and functions:
10086
10087 @table @option
10088 @item w
10089 @item h
10090 The input width and height.
10091
10092 @item val
10093 The input value for the pixel component.
10094
10095 @item clipval
10096 The input value, clipped to the @var{minval}-@var{maxval} range.
10097
10098 @item maxval
10099 The maximum value for the pixel component.
10100
10101 @item minval
10102 The minimum value for the pixel component.
10103
10104 @item negval
10105 The negated value for the pixel component value, clipped to the
10106 @var{minval}-@var{maxval} range; it corresponds to the expression
10107 "maxval-clipval+minval".
10108
10109 @item clip(val)
10110 The computed value in @var{val}, clipped to the
10111 @var{minval}-@var{maxval} range.
10112
10113 @item gammaval(gamma)
10114 The computed gamma correction value of the pixel component value,
10115 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
10116 expression
10117 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
10118
10119 @end table
10120
10121 All expressions default to "val".
10122
10123 @subsection Examples
10124
10125 @itemize
10126 @item
10127 Negate input video:
10128 @example
10129 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
10130 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
10131 @end example
10132
10133 The above is the same as:
10134 @example
10135 lutrgb="r=negval:g=negval:b=negval"
10136 lutyuv="y=negval:u=negval:v=negval"
10137 @end example
10138
10139 @item
10140 Negate luminance:
10141 @example
10142 lutyuv=y=negval
10143 @end example
10144
10145 @item
10146 Remove chroma components, turning the video into a graytone image:
10147 @example
10148 lutyuv="u=128:v=128"
10149 @end example
10150
10151 @item
10152 Apply a luma burning effect:
10153 @example
10154 lutyuv="y=2*val"
10155 @end example
10156
10157 @item
10158 Remove green and blue components:
10159 @example
10160 lutrgb="g=0:b=0"
10161 @end example
10162
10163 @item
10164 Set a constant alpha channel value on input:
10165 @example
10166 format=rgba,lutrgb=a="maxval-minval/2"
10167 @end example
10168
10169 @item
10170 Correct luminance gamma by a factor of 0.5:
10171 @example
10172 lutyuv=y=gammaval(0.5)
10173 @end example
10174
10175 @item
10176 Discard least significant bits of luma:
10177 @example
10178 lutyuv=y='bitand(val, 128+64+32)'
10179 @end example
10180
10181 @item
10182 Technicolor like effect:
10183 @example
10184 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
10185 @end example
10186 @end itemize
10187
10188 @section lut2, tlut2
10189
10190 The @code{lut2} filter takes two input streams and outputs one
10191 stream.
10192
10193 The @code{tlut2} (time lut2) filter takes two consecutive frames
10194 from one single stream.
10195
10196 This filter accepts the following parameters:
10197 @table @option
10198 @item c0
10199 set first pixel component expression
10200 @item c1
10201 set second pixel component expression
10202 @item c2
10203 set third pixel component expression
10204 @item c3
10205 set fourth pixel component expression, corresponds to the alpha component
10206 @end table
10207
10208 Each of them specifies the expression to use for computing the lookup table for
10209 the corresponding pixel component values.
10210
10211 The exact component associated to each of the @var{c*} options depends on the
10212 format in inputs.
10213
10214 The expressions can contain the following constants:
10215
10216 @table @option
10217 @item w
10218 @item h
10219 The input width and height.
10220
10221 @item x
10222 The first input value for the pixel component.
10223
10224 @item y
10225 The second input value for the pixel component.
10226
10227 @item bdx
10228 The first input video bit depth.
10229
10230 @item bdy
10231 The second input video bit depth.
10232 @end table
10233
10234 All expressions default to "x".
10235
10236 @subsection Examples
10237
10238 @itemize
10239 @item
10240 Highlight differences between two RGB video streams:
10241 @example
10242 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)'
10243 @end example
10244
10245 @item
10246 Highlight differences between two YUV video streams:
10247 @example
10248 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)'
10249 @end example
10250
10251 @item
10252 Show max difference between two video streams:
10253 @example
10254 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)))'
10255 @end example
10256 @end itemize
10257
10258 @section maskedclamp
10259
10260 Clamp the first input stream with the second input and third input stream.
10261
10262 Returns the value of first stream to be between second input
10263 stream - @code{undershoot} and third input stream + @code{overshoot}.
10264
10265 This filter accepts the following options:
10266 @table @option
10267 @item undershoot
10268 Default value is @code{0}.
10269
10270 @item overshoot
10271 Default value is @code{0}.
10272
10273 @item planes
10274 Set which planes will be processed as bitmap, unprocessed planes will be
10275 copied from first stream.
10276 By default value 0xf, all planes will be processed.
10277 @end table
10278
10279 @section maskedmerge
10280
10281 Merge the first input stream with the second input stream using per pixel
10282 weights in the third input stream.
10283
10284 A value of 0 in the third stream pixel component means that pixel component
10285 from first stream is returned unchanged, while maximum value (eg. 255 for
10286 8-bit videos) means that pixel component from second stream is returned
10287 unchanged. Intermediate values define the amount of merging between both
10288 input stream's pixel components.
10289
10290 This filter accepts the following options:
10291 @table @option
10292 @item planes
10293 Set which planes will be processed as bitmap, unprocessed planes will be
10294 copied from first stream.
10295 By default value 0xf, all planes will be processed.
10296 @end table
10297
10298 @section mcdeint
10299
10300 Apply motion-compensation deinterlacing.
10301
10302 It needs one field per frame as input and must thus be used together
10303 with yadif=1/3 or equivalent.
10304
10305 This filter accepts the following options:
10306 @table @option
10307 @item mode
10308 Set the deinterlacing mode.
10309
10310 It accepts one of the following values:
10311 @table @samp
10312 @item fast
10313 @item medium
10314 @item slow
10315 use iterative motion estimation
10316 @item extra_slow
10317 like @samp{slow}, but use multiple reference frames.
10318 @end table
10319 Default value is @samp{fast}.
10320
10321 @item parity
10322 Set the picture field parity assumed for the input video. It must be
10323 one of the following values:
10324
10325 @table @samp
10326 @item 0, tff
10327 assume top field first
10328 @item 1, bff
10329 assume bottom field first
10330 @end table
10331
10332 Default value is @samp{bff}.
10333
10334 @item qp
10335 Set per-block quantization parameter (QP) used by the internal
10336 encoder.
10337
10338 Higher values should result in a smoother motion vector field but less
10339 optimal individual vectors. Default value is 1.
10340 @end table
10341
10342 @section mergeplanes
10343
10344 Merge color channel components from several video streams.
10345
10346 The filter accepts up to 4 input streams, and merge selected input
10347 planes to the output video.
10348
10349 This filter accepts the following options:
10350 @table @option
10351 @item mapping
10352 Set input to output plane mapping. Default is @code{0}.
10353
10354 The mappings is specified as a bitmap. It should be specified as a
10355 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
10356 mapping for the first plane of the output stream. 'A' sets the number of
10357 the input stream to use (from 0 to 3), and 'a' the plane number of the
10358 corresponding input to use (from 0 to 3). The rest of the mappings is
10359 similar, 'Bb' describes the mapping for the output stream second
10360 plane, 'Cc' describes the mapping for the output stream third plane and
10361 'Dd' describes the mapping for the output stream fourth plane.
10362
10363 @item format
10364 Set output pixel format. Default is @code{yuva444p}.
10365 @end table
10366
10367 @subsection Examples
10368
10369 @itemize
10370 @item
10371 Merge three gray video streams of same width and height into single video stream:
10372 @example
10373 [a0][a1][a2]mergeplanes=0x001020:yuv444p
10374 @end example
10375
10376 @item
10377 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
10378 @example
10379 [a0][a1]mergeplanes=0x00010210:yuva444p
10380 @end example
10381
10382 @item
10383 Swap Y and A plane in yuva444p stream:
10384 @example
10385 format=yuva444p,mergeplanes=0x03010200:yuva444p
10386 @end example
10387
10388 @item
10389 Swap U and V plane in yuv420p stream:
10390 @example
10391 format=yuv420p,mergeplanes=0x000201:yuv420p
10392 @end example
10393
10394 @item
10395 Cast a rgb24 clip to yuv444p:
10396 @example
10397 format=rgb24,mergeplanes=0x000102:yuv444p
10398 @end example
10399 @end itemize
10400
10401 @section mestimate
10402
10403 Estimate and export motion vectors using block matching algorithms.
10404 Motion vectors are stored in frame side data to be used by other filters.
10405
10406 This filter accepts the following options:
10407 @table @option
10408 @item method
10409 Specify the motion estimation method. Accepts one of the following values:
10410
10411 @table @samp
10412 @item esa
10413 Exhaustive search algorithm.
10414 @item tss
10415 Three step search algorithm.
10416 @item tdls
10417 Two dimensional logarithmic search algorithm.
10418 @item ntss
10419 New three step search algorithm.
10420 @item fss
10421 Four step search algorithm.
10422 @item ds
10423 Diamond search algorithm.
10424 @item hexbs
10425 Hexagon-based search algorithm.
10426 @item epzs
10427 Enhanced predictive zonal search algorithm.
10428 @item umh
10429 Uneven multi-hexagon search algorithm.
10430 @end table
10431 Default value is @samp{esa}.
10432
10433 @item mb_size
10434 Macroblock size. Default @code{16}.
10435
10436 @item search_param
10437 Search parameter. Default @code{7}.
10438 @end table
10439
10440 @section midequalizer
10441
10442 Apply Midway Image Equalization effect using two video streams.
10443
10444 Midway Image Equalization adjusts a pair of images to have the same
10445 histogram, while maintaining their dynamics as much as possible. It's
10446 useful for e.g. matching exposures from a pair of stereo cameras.
10447
10448 This filter has two inputs and one output, which must be of same pixel format, but
10449 may be of different sizes. The output of filter is first input adjusted with
10450 midway histogram of both inputs.
10451
10452 This filter accepts the following option:
10453
10454 @table @option
10455 @item planes
10456 Set which planes to process. Default is @code{15}, which is all available planes.
10457 @end table
10458
10459 @section minterpolate
10460
10461 Convert the video to specified frame rate using motion interpolation.
10462
10463 This filter accepts the following options:
10464 @table @option
10465 @item fps
10466 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}.
10467
10468 @item mi_mode
10469 Motion interpolation mode. Following values are accepted:
10470 @table @samp
10471 @item dup
10472 Duplicate previous or next frame for interpolating new ones.
10473 @item blend
10474 Blend source frames. Interpolated frame is mean of previous and next frames.
10475 @item mci
10476 Motion compensated interpolation. Following options are effective when this mode is selected:
10477
10478 @table @samp
10479 @item mc_mode
10480 Motion compensation mode. Following values are accepted:
10481 @table @samp
10482 @item obmc
10483 Overlapped block motion compensation.
10484 @item aobmc
10485 Adaptive overlapped block motion compensation. Window weighting coefficients are controlled adaptively according to the reliabilities of the neighboring motion vectors to reduce oversmoothing.
10486 @end table
10487 Default mode is @samp{obmc}.
10488
10489 @item me_mode
10490 Motion estimation mode. Following values are accepted:
10491 @table @samp
10492 @item bidir
10493 Bidirectional motion estimation. Motion vectors are estimated for each source frame in both forward and backward directions.
10494 @item bilat
10495 Bilateral motion estimation. Motion vectors are estimated directly for interpolated frame.
10496 @end table
10497 Default mode is @samp{bilat}.
10498
10499 @item me
10500 The algorithm to be used for motion estimation. Following values are accepted:
10501 @table @samp
10502 @item esa
10503 Exhaustive search algorithm.
10504 @item tss
10505 Three step search algorithm.
10506 @item tdls
10507 Two dimensional logarithmic search algorithm.
10508 @item ntss
10509 New three step search algorithm.
10510 @item fss
10511 Four step search algorithm.
10512 @item ds
10513 Diamond search algorithm.
10514 @item hexbs
10515 Hexagon-based search algorithm.
10516 @item epzs
10517 Enhanced predictive zonal search algorithm.
10518 @item umh
10519 Uneven multi-hexagon search algorithm.
10520 @end table
10521 Default algorithm is @samp{epzs}.
10522
10523 @item mb_size
10524 Macroblock size. Default @code{16}.
10525
10526 @item search_param
10527 Motion estimation search parameter. Default @code{32}.
10528
10529 @item vsbmc
10530 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).
10531 @end table
10532 @end table
10533
10534 @item scd
10535 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:
10536 @table @samp
10537 @item none
10538 Disable scene change detection.
10539 @item fdiff
10540 Frame difference. Corresponding pixel values are compared and if it satisfies @var{scd_threshold} scene change is detected.
10541 @end table
10542 Default method is @samp{fdiff}.
10543
10544 @item scd_threshold
10545 Scene change detection threshold. Default is @code{5.0}.
10546 @end table
10547
10548 @section mpdecimate
10549
10550 Drop frames that do not differ greatly from the previous frame in
10551 order to reduce frame rate.
10552
10553 The main use of this filter is for very-low-bitrate encoding
10554 (e.g. streaming over dialup modem), but it could in theory be used for
10555 fixing movies that were inverse-telecined incorrectly.
10556
10557 A description of the accepted options follows.
10558
10559 @table @option
10560 @item max
10561 Set the maximum number of consecutive frames which can be dropped (if
10562 positive), or the minimum interval between dropped frames (if
10563 negative). If the value is 0, the frame is dropped disregarding the
10564 number of previous sequentially dropped frames.
10565
10566 Default value is 0.
10567
10568 @item hi
10569 @item lo
10570 @item frac
10571 Set the dropping threshold values.
10572
10573 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
10574 represent actual pixel value differences, so a threshold of 64
10575 corresponds to 1 unit of difference for each pixel, or the same spread
10576 out differently over the block.
10577
10578 A frame is a candidate for dropping if no 8x8 blocks differ by more
10579 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
10580 meaning the whole image) differ by more than a threshold of @option{lo}.
10581
10582 Default value for @option{hi} is 64*12, default value for @option{lo} is
10583 64*5, and default value for @option{frac} is 0.33.
10584 @end table
10585
10586
10587 @section negate
10588
10589 Negate input video.
10590
10591 It accepts an integer in input; if non-zero it negates the
10592 alpha component (if available). The default value in input is 0.
10593
10594 @section nlmeans
10595
10596 Denoise frames using Non-Local Means algorithm.
10597
10598 Each pixel is adjusted by looking for other pixels with similar contexts. This
10599 context similarity is defined by comparing their surrounding patches of size
10600 @option{p}x@option{p}. Patches are searched in an area of @option{r}x@option{r}
10601 around the pixel.
10602
10603 Note that the research area defines centers for patches, which means some
10604 patches will be made of pixels outside that research area.
10605
10606 The filter accepts the following options.
10607
10608 @table @option
10609 @item s
10610 Set denoising strength.
10611
10612 @item p
10613 Set patch size.
10614
10615 @item pc
10616 Same as @option{p} but for chroma planes.
10617
10618 The default value is @var{0} and means automatic.
10619
10620 @item r
10621 Set research size.
10622
10623 @item rc
10624 Same as @option{r} but for chroma planes.
10625
10626 The default value is @var{0} and means automatic.
10627 @end table
10628
10629 @section nnedi
10630
10631 Deinterlace video using neural network edge directed interpolation.
10632
10633 This filter accepts the following options:
10634
10635 @table @option
10636 @item weights
10637 Mandatory option, without binary file filter can not work.
10638 Currently file can be found here:
10639 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
10640
10641 @item deint
10642 Set which frames to deinterlace, by default it is @code{all}.
10643 Can be @code{all} or @code{interlaced}.
10644
10645 @item field
10646 Set mode of operation.
10647
10648 Can be one of the following:
10649
10650 @table @samp
10651 @item af
10652 Use frame flags, both fields.
10653 @item a
10654 Use frame flags, single field.
10655 @item t
10656 Use top field only.
10657 @item b
10658 Use bottom field only.
10659 @item tf
10660 Use both fields, top first.
10661 @item bf
10662 Use both fields, bottom first.
10663 @end table
10664
10665 @item planes
10666 Set which planes to process, by default filter process all frames.
10667
10668 @item nsize
10669 Set size of local neighborhood around each pixel, used by the predictor neural
10670 network.
10671
10672 Can be one of the following:
10673
10674 @table @samp
10675 @item s8x6
10676 @item s16x6
10677 @item s32x6
10678 @item s48x6
10679 @item s8x4
10680 @item s16x4
10681 @item s32x4
10682 @end table
10683
10684 @item nns
10685 Set the number of neurons in predictor neural network.
10686 Can be one of the following:
10687
10688 @table @samp
10689 @item n16
10690 @item n32
10691 @item n64
10692 @item n128
10693 @item n256
10694 @end table
10695
10696 @item qual
10697 Controls the number of different neural network predictions that are blended
10698 together to compute the final output value. Can be @code{fast}, default or
10699 @code{slow}.
10700
10701 @item etype
10702 Set which set of weights to use in the predictor.
10703 Can be one of the following:
10704
10705 @table @samp
10706 @item a
10707 weights trained to minimize absolute error
10708 @item s
10709 weights trained to minimize squared error
10710 @end table
10711
10712 @item pscrn
10713 Controls whether or not the prescreener neural network is used to decide
10714 which pixels should be processed by the predictor neural network and which
10715 can be handled by simple cubic interpolation.
10716 The prescreener is trained to know whether cubic interpolation will be
10717 sufficient for a pixel or whether it should be predicted by the predictor nn.
10718 The computational complexity of the prescreener nn is much less than that of
10719 the predictor nn. Since most pixels can be handled by cubic interpolation,
10720 using the prescreener generally results in much faster processing.
10721 The prescreener is pretty accurate, so the difference between using it and not
10722 using it is almost always unnoticeable.
10723
10724 Can be one of the following:
10725
10726 @table @samp
10727 @item none
10728 @item original
10729 @item new
10730 @end table
10731
10732 Default is @code{new}.
10733
10734 @item fapprox
10735 Set various debugging flags.
10736 @end table
10737
10738 @section noformat
10739
10740 Force libavfilter not to use any of the specified pixel formats for the
10741 input to the next filter.
10742
10743 It accepts the following parameters:
10744 @table @option
10745
10746 @item pix_fmts
10747 A '|'-separated list of pixel format names, such as
10748 pix_fmts=yuv420p|monow|rgb24".
10749
10750 @end table
10751
10752 @subsection Examples
10753
10754 @itemize
10755 @item
10756 Force libavfilter to use a format different from @var{yuv420p} for the
10757 input to the vflip filter:
10758 @example
10759 noformat=pix_fmts=yuv420p,vflip
10760 @end example
10761
10762 @item
10763 Convert the input video to any of the formats not contained in the list:
10764 @example
10765 noformat=yuv420p|yuv444p|yuv410p
10766 @end example
10767 @end itemize
10768
10769 @section noise
10770
10771 Add noise on video input frame.
10772
10773 The filter accepts the following options:
10774
10775 @table @option
10776 @item all_seed
10777 @item c0_seed
10778 @item c1_seed
10779 @item c2_seed
10780 @item c3_seed
10781 Set noise seed for specific pixel component or all pixel components in case
10782 of @var{all_seed}. Default value is @code{123457}.
10783
10784 @item all_strength, alls
10785 @item c0_strength, c0s
10786 @item c1_strength, c1s
10787 @item c2_strength, c2s
10788 @item c3_strength, c3s
10789 Set noise strength for specific pixel component or all pixel components in case
10790 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
10791
10792 @item all_flags, allf
10793 @item c0_flags, c0f
10794 @item c1_flags, c1f
10795 @item c2_flags, c2f
10796 @item c3_flags, c3f
10797 Set pixel component flags or set flags for all components if @var{all_flags}.
10798 Available values for component flags are:
10799 @table @samp
10800 @item a
10801 averaged temporal noise (smoother)
10802 @item p
10803 mix random noise with a (semi)regular pattern
10804 @item t
10805 temporal noise (noise pattern changes between frames)
10806 @item u
10807 uniform noise (gaussian otherwise)
10808 @end table
10809 @end table
10810
10811 @subsection Examples
10812
10813 Add temporal and uniform noise to input video:
10814 @example
10815 noise=alls=20:allf=t+u
10816 @end example
10817
10818 @section null
10819
10820 Pass the video source unchanged to the output.
10821
10822 @section ocr
10823 Optical Character Recognition
10824
10825 This filter uses Tesseract for optical character recognition.
10826
10827 It accepts the following options:
10828
10829 @table @option
10830 @item datapath
10831 Set datapath to tesseract data. Default is to use whatever was
10832 set at installation.
10833
10834 @item language
10835 Set language, default is "eng".
10836
10837 @item whitelist
10838 Set character whitelist.
10839
10840 @item blacklist
10841 Set character blacklist.
10842 @end table
10843
10844 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
10845
10846 @section ocv
10847
10848 Apply a video transform using libopencv.
10849
10850 To enable this filter, install the libopencv library and headers and
10851 configure FFmpeg with @code{--enable-libopencv}.
10852
10853 It accepts the following parameters:
10854
10855 @table @option
10856
10857 @item filter_name
10858 The name of the libopencv filter to apply.
10859
10860 @item filter_params
10861 The parameters to pass to the libopencv filter. If not specified, the default
10862 values are assumed.
10863
10864 @end table
10865
10866 Refer to the official libopencv documentation for more precise
10867 information:
10868 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
10869
10870 Several libopencv filters are supported; see the following subsections.
10871
10872 @anchor{dilate}
10873 @subsection dilate
10874
10875 Dilate an image by using a specific structuring element.
10876 It corresponds to the libopencv function @code{cvDilate}.
10877
10878 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
10879
10880 @var{struct_el} represents a structuring element, and has the syntax:
10881 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
10882
10883 @var{cols} and @var{rows} represent the number of columns and rows of
10884 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
10885 point, and @var{shape} the shape for the structuring element. @var{shape}
10886 must be "rect", "cross", "ellipse", or "custom".
10887
10888 If the value for @var{shape} is "custom", it must be followed by a
10889 string of the form "=@var{filename}". The file with name
10890 @var{filename} is assumed to represent a binary image, with each
10891 printable character corresponding to a bright pixel. When a custom
10892 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
10893 or columns and rows of the read file are assumed instead.
10894
10895 The default value for @var{struct_el} is "3x3+0x0/rect".
10896
10897 @var{nb_iterations} specifies the number of times the transform is
10898 applied to the image, and defaults to 1.
10899
10900 Some examples:
10901 @example
10902 # Use the default values
10903 ocv=dilate
10904
10905 # Dilate using a structuring element with a 5x5 cross, iterating two times
10906 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
10907
10908 # Read the shape from the file diamond.shape, iterating two times.
10909 # The file diamond.shape may contain a pattern of characters like this
10910 #   *
10911 #  ***
10912 # *****
10913 #  ***
10914 #   *
10915 # The specified columns and rows are ignored
10916 # but the anchor point coordinates are not
10917 ocv=dilate:0x0+2x2/custom=diamond.shape|2
10918 @end example
10919
10920 @subsection erode
10921
10922 Erode an image by using a specific structuring element.
10923 It corresponds to the libopencv function @code{cvErode}.
10924
10925 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
10926 with the same syntax and semantics as the @ref{dilate} filter.
10927
10928 @subsection smooth
10929
10930 Smooth the input video.
10931
10932 The filter takes the following parameters:
10933 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
10934
10935 @var{type} is the type of smooth filter to apply, and must be one of
10936 the following values: "blur", "blur_no_scale", "median", "gaussian",
10937 or "bilateral". The default value is "gaussian".
10938
10939 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
10940 depend on the smooth type. @var{param1} and
10941 @var{param2} accept integer positive values or 0. @var{param3} and
10942 @var{param4} accept floating point values.
10943
10944 The default value for @var{param1} is 3. The default value for the
10945 other parameters is 0.
10946
10947 These parameters correspond to the parameters assigned to the
10948 libopencv function @code{cvSmooth}.
10949
10950 @section oscilloscope
10951
10952 2D Video Oscilloscope.
10953
10954 Useful to measure spatial impulse, step responses, chroma delays, etc.
10955
10956 It accepts the following parameters:
10957
10958 @table @option
10959 @item x
10960 Set scope center x position.
10961
10962 @item y
10963 Set scope center y position.
10964
10965 @item s
10966 Set scope size, relative to frame diagonal.
10967
10968 @item t
10969 Set scope tilt/rotation.
10970
10971 @item o
10972 Set trace opacity.
10973
10974 @item tx
10975 Set trace center x position.
10976
10977 @item ty
10978 Set trace center y position.
10979
10980 @item tw
10981 Set trace width, relative to width of frame.
10982
10983 @item th
10984 Set trace height, relative to height of frame.
10985
10986 @item c
10987 Set which components to trace. By default it traces first three components.
10988
10989 @item g
10990 Draw trace grid. By default is enabled.
10991
10992 @item st
10993 Draw some statistics. By default is enabled.
10994
10995 @item sc
10996 Draw scope. By default is enabled.
10997 @end table
10998
10999 @subsection Examples
11000
11001 @itemize
11002 @item
11003 Inspect full first row of video frame.
11004 @example
11005 oscilloscope=x=0.5:y=0:s=1
11006 @end example
11007
11008 @item
11009 Inspect full last row of video frame.
11010 @example
11011 oscilloscope=x=0.5:y=1:s=1
11012 @end example
11013
11014 @item
11015 Inspect full 5th line of video frame of height 1080.
11016 @example
11017 oscilloscope=x=0.5:y=5/1080:s=1
11018 @end example
11019
11020 @item
11021 Inspect full last column of video frame.
11022 @example
11023 oscilloscope=x=1:y=0.5:s=1:t=1
11024 @end example
11025
11026 @end itemize
11027
11028 @anchor{overlay}
11029 @section overlay
11030
11031 Overlay one video on top of another.
11032
11033 It takes two inputs and has one output. The first input is the "main"
11034 video on which the second input is overlaid.
11035
11036 It accepts the following parameters:
11037
11038 A description of the accepted options follows.
11039
11040 @table @option
11041 @item x
11042 @item y
11043 Set the expression for the x and y coordinates of the overlaid video
11044 on the main video. Default value is "0" for both expressions. In case
11045 the expression is invalid, it is set to a huge value (meaning that the
11046 overlay will not be displayed within the output visible area).
11047
11048 @item eof_action
11049 See @ref{framesync}.
11050
11051 @item eval
11052 Set when the expressions for @option{x}, and @option{y} are evaluated.
11053
11054 It accepts the following values:
11055 @table @samp
11056 @item init
11057 only evaluate expressions once during the filter initialization or
11058 when a command is processed
11059
11060 @item frame
11061 evaluate expressions for each incoming frame
11062 @end table
11063
11064 Default value is @samp{frame}.
11065
11066 @item shortest
11067 See @ref{framesync}.
11068
11069 @item format
11070 Set the format for the output video.
11071
11072 It accepts the following values:
11073 @table @samp
11074 @item yuv420
11075 force YUV420 output
11076
11077 @item yuv422
11078 force YUV422 output
11079
11080 @item yuv444
11081 force YUV444 output
11082
11083 @item rgb
11084 force packed RGB output
11085
11086 @item gbrp
11087 force planar RGB output
11088
11089 @item auto
11090 automatically pick format
11091 @end table
11092
11093 Default value is @samp{yuv420}.
11094
11095 @item repeatlast
11096 See @ref{framesync}.
11097 @end table
11098
11099 The @option{x}, and @option{y} expressions can contain the following
11100 parameters.
11101
11102 @table @option
11103 @item main_w, W
11104 @item main_h, H
11105 The main input width and height.
11106
11107 @item overlay_w, w
11108 @item overlay_h, h
11109 The overlay input width and height.
11110
11111 @item x
11112 @item y
11113 The computed values for @var{x} and @var{y}. They are evaluated for
11114 each new frame.
11115
11116 @item hsub
11117 @item vsub
11118 horizontal and vertical chroma subsample values of the output
11119 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
11120 @var{vsub} is 1.
11121
11122 @item n
11123 the number of input frame, starting from 0
11124
11125 @item pos
11126 the position in the file of the input frame, NAN if unknown
11127
11128 @item t
11129 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
11130
11131 @end table
11132
11133 This filter also supports the @ref{framesync} options.
11134
11135 Note that the @var{n}, @var{pos}, @var{t} variables are available only
11136 when evaluation is done @emph{per frame}, and will evaluate to NAN
11137 when @option{eval} is set to @samp{init}.
11138
11139 Be aware that frames are taken from each input video in timestamp
11140 order, hence, if their initial timestamps differ, it is a good idea
11141 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
11142 have them begin in the same zero timestamp, as the example for
11143 the @var{movie} filter does.
11144
11145 You can chain together more overlays but you should test the
11146 efficiency of such approach.
11147
11148 @subsection Commands
11149
11150 This filter supports the following commands:
11151 @table @option
11152 @item x
11153 @item y
11154 Modify the x and y of the overlay input.
11155 The command accepts the same syntax of the corresponding option.
11156
11157 If the specified expression is not valid, it is kept at its current
11158 value.
11159 @end table
11160
11161 @subsection Examples
11162
11163 @itemize
11164 @item
11165 Draw the overlay at 10 pixels from the bottom right corner of the main
11166 video:
11167 @example
11168 overlay=main_w-overlay_w-10:main_h-overlay_h-10
11169 @end example
11170
11171 Using named options the example above becomes:
11172 @example
11173 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
11174 @end example
11175
11176 @item
11177 Insert a transparent PNG logo in the bottom left corner of the input,
11178 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
11179 @example
11180 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
11181 @end example
11182
11183 @item
11184 Insert 2 different transparent PNG logos (second logo on bottom
11185 right corner) using the @command{ffmpeg} tool:
11186 @example
11187 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
11188 @end example
11189
11190 @item
11191 Add a transparent color layer on top of the main video; @code{WxH}
11192 must specify the size of the main input to the overlay filter:
11193 @example
11194 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
11195 @end example
11196
11197 @item
11198 Play an original video and a filtered version (here with the deshake
11199 filter) side by side using the @command{ffplay} tool:
11200 @example
11201 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
11202 @end example
11203
11204 The above command is the same as:
11205 @example
11206 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
11207 @end example
11208
11209 @item
11210 Make a sliding overlay appearing from the left to the right top part of the
11211 screen starting since time 2:
11212 @example
11213 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
11214 @end example
11215
11216 @item
11217 Compose output by putting two input videos side to side:
11218 @example
11219 ffmpeg -i left.avi -i right.avi -filter_complex "
11220 nullsrc=size=200x100 [background];
11221 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
11222 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
11223 [background][left]       overlay=shortest=1       [background+left];
11224 [background+left][right] overlay=shortest=1:x=100 [left+right]
11225 "
11226 @end example
11227
11228 @item
11229 Mask 10-20 seconds of a video by applying the delogo filter to a section
11230 @example
11231 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
11232 -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]'
11233 masked.avi
11234 @end example
11235
11236 @item
11237 Chain several overlays in cascade:
11238 @example
11239 nullsrc=s=200x200 [bg];
11240 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
11241 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
11242 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
11243 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
11244 [in3] null,       [mid2] overlay=100:100 [out0]
11245 @end example
11246
11247 @end itemize
11248
11249 @section owdenoise
11250
11251 Apply Overcomplete Wavelet denoiser.
11252
11253 The filter accepts the following options:
11254
11255 @table @option
11256 @item depth
11257 Set depth.
11258
11259 Larger depth values will denoise lower frequency components more, but
11260 slow down filtering.
11261
11262 Must be an int in the range 8-16, default is @code{8}.
11263
11264 @item luma_strength, ls
11265 Set luma strength.
11266
11267 Must be a double value in the range 0-1000, default is @code{1.0}.
11268
11269 @item chroma_strength, cs
11270 Set chroma strength.
11271
11272 Must be a double value in the range 0-1000, default is @code{1.0}.
11273 @end table
11274
11275 @anchor{pad}
11276 @section pad
11277
11278 Add paddings to the input image, and place the original input at the
11279 provided @var{x}, @var{y} coordinates.
11280
11281 It accepts the following parameters:
11282
11283 @table @option
11284 @item width, w
11285 @item height, h
11286 Specify an expression for the size of the output image with the
11287 paddings added. If the value for @var{width} or @var{height} is 0, the
11288 corresponding input size is used for the output.
11289
11290 The @var{width} expression can reference the value set by the
11291 @var{height} expression, and vice versa.
11292
11293 The default value of @var{width} and @var{height} is 0.
11294
11295 @item x
11296 @item y
11297 Specify the offsets to place the input image at within the padded area,
11298 with respect to the top/left border of the output image.
11299
11300 The @var{x} expression can reference the value set by the @var{y}
11301 expression, and vice versa.
11302
11303 The default value of @var{x} and @var{y} is 0.
11304
11305 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
11306 so the input image is centered on the padded area.
11307
11308 @item color
11309 Specify the color of the padded area. For the syntax of this option,
11310 check the "Color" section in the ffmpeg-utils manual.
11311
11312 The default value of @var{color} is "black".
11313
11314 @item eval
11315 Specify when to evaluate  @var{width}, @var{height}, @var{x} and @var{y} expression.
11316
11317 It accepts the following values:
11318
11319 @table @samp
11320 @item init
11321 Only evaluate expressions once during the filter initialization or when
11322 a command is processed.
11323
11324 @item frame
11325 Evaluate expressions for each incoming frame.
11326
11327 @end table
11328
11329 Default value is @samp{init}.
11330
11331 @item aspect
11332 Pad to aspect instead to a resolution.
11333
11334 @end table
11335
11336 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
11337 options are expressions containing the following constants:
11338
11339 @table @option
11340 @item in_w
11341 @item in_h
11342 The input video width and height.
11343
11344 @item iw
11345 @item ih
11346 These are the same as @var{in_w} and @var{in_h}.
11347
11348 @item out_w
11349 @item out_h
11350 The output width and height (the size of the padded area), as
11351 specified by the @var{width} and @var{height} expressions.
11352
11353 @item ow
11354 @item oh
11355 These are the same as @var{out_w} and @var{out_h}.
11356
11357 @item x
11358 @item y
11359 The x and y offsets as specified by the @var{x} and @var{y}
11360 expressions, or NAN if not yet specified.
11361
11362 @item a
11363 same as @var{iw} / @var{ih}
11364
11365 @item sar
11366 input sample aspect ratio
11367
11368 @item dar
11369 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
11370
11371 @item hsub
11372 @item vsub
11373 The horizontal and vertical chroma subsample values. For example for the
11374 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11375 @end table
11376
11377 @subsection Examples
11378
11379 @itemize
11380 @item
11381 Add paddings with the color "violet" to the input video. The output video
11382 size is 640x480, and the top-left corner of the input video is placed at
11383 column 0, row 40
11384 @example
11385 pad=640:480:0:40:violet
11386 @end example
11387
11388 The example above is equivalent to the following command:
11389 @example
11390 pad=width=640:height=480:x=0:y=40:color=violet
11391 @end example
11392
11393 @item
11394 Pad the input to get an output with dimensions increased by 3/2,
11395 and put the input video at the center of the padded area:
11396 @example
11397 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
11398 @end example
11399
11400 @item
11401 Pad the input to get a squared output with size equal to the maximum
11402 value between the input width and height, and put the input video at
11403 the center of the padded area:
11404 @example
11405 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
11406 @end example
11407
11408 @item
11409 Pad the input to get a final w/h ratio of 16:9:
11410 @example
11411 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
11412 @end example
11413
11414 @item
11415 In case of anamorphic video, in order to set the output display aspect
11416 correctly, it is necessary to use @var{sar} in the expression,
11417 according to the relation:
11418 @example
11419 (ih * X / ih) * sar = output_dar
11420 X = output_dar / sar
11421 @end example
11422
11423 Thus the previous example needs to be modified to:
11424 @example
11425 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
11426 @end example
11427
11428 @item
11429 Double the output size and put the input video in the bottom-right
11430 corner of the output padded area:
11431 @example
11432 pad="2*iw:2*ih:ow-iw:oh-ih"
11433 @end example
11434 @end itemize
11435
11436 @anchor{palettegen}
11437 @section palettegen
11438
11439 Generate one palette for a whole video stream.
11440
11441 It accepts the following options:
11442
11443 @table @option
11444 @item max_colors
11445 Set the maximum number of colors to quantize in the palette.
11446 Note: the palette will still contain 256 colors; the unused palette entries
11447 will be black.
11448
11449 @item reserve_transparent
11450 Create a palette of 255 colors maximum and reserve the last one for
11451 transparency. Reserving the transparency color is useful for GIF optimization.
11452 If not set, the maximum of colors in the palette will be 256. You probably want
11453 to disable this option for a standalone image.
11454 Set by default.
11455
11456 @item transparency_color
11457 Set the color that will be used as background for transparency.
11458
11459 @item stats_mode
11460 Set statistics mode.
11461
11462 It accepts the following values:
11463 @table @samp
11464 @item full
11465 Compute full frame histograms.
11466 @item diff
11467 Compute histograms only for the part that differs from previous frame. This
11468 might be relevant to give more importance to the moving part of your input if
11469 the background is static.
11470 @item single
11471 Compute new histogram for each frame.
11472 @end table
11473
11474 Default value is @var{full}.
11475 @end table
11476
11477 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
11478 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
11479 color quantization of the palette. This information is also visible at
11480 @var{info} logging level.
11481
11482 @subsection Examples
11483
11484 @itemize
11485 @item
11486 Generate a representative palette of a given video using @command{ffmpeg}:
11487 @example
11488 ffmpeg -i input.mkv -vf palettegen palette.png
11489 @end example
11490 @end itemize
11491
11492 @section paletteuse
11493
11494 Use a palette to downsample an input video stream.
11495
11496 The filter takes two inputs: one video stream and a palette. The palette must
11497 be a 256 pixels image.
11498
11499 It accepts the following options:
11500
11501 @table @option
11502 @item dither
11503 Select dithering mode. Available algorithms are:
11504 @table @samp
11505 @item bayer
11506 Ordered 8x8 bayer dithering (deterministic)
11507 @item heckbert
11508 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
11509 Note: this dithering is sometimes considered "wrong" and is included as a
11510 reference.
11511 @item floyd_steinberg
11512 Floyd and Steingberg dithering (error diffusion)
11513 @item sierra2
11514 Frankie Sierra dithering v2 (error diffusion)
11515 @item sierra2_4a
11516 Frankie Sierra dithering v2 "Lite" (error diffusion)
11517 @end table
11518
11519 Default is @var{sierra2_4a}.
11520
11521 @item bayer_scale
11522 When @var{bayer} dithering is selected, this option defines the scale of the
11523 pattern (how much the crosshatch pattern is visible). A low value means more
11524 visible pattern for less banding, and higher value means less visible pattern
11525 at the cost of more banding.
11526
11527 The option must be an integer value in the range [0,5]. Default is @var{2}.
11528
11529 @item diff_mode
11530 If set, define the zone to process
11531
11532 @table @samp
11533 @item rectangle
11534 Only the changing rectangle will be reprocessed. This is similar to GIF
11535 cropping/offsetting compression mechanism. This option can be useful for speed
11536 if only a part of the image is changing, and has use cases such as limiting the
11537 scope of the error diffusal @option{dither} to the rectangle that bounds the
11538 moving scene (it leads to more deterministic output if the scene doesn't change
11539 much, and as a result less moving noise and better GIF compression).
11540 @end table
11541
11542 Default is @var{none}.
11543
11544 @item new
11545 Take new palette for each output frame.
11546
11547 @item alpha_threshold
11548 Sets the alpha threshold for transparency. Alpha values above this threshold
11549 will be treated as completely opaque, and values below this threshold will be
11550 treated as completely transparent.
11551
11552 The option must be an integer value in the range [0,255]. Default is @var{128}.
11553 @end table
11554
11555 @subsection Examples
11556
11557 @itemize
11558 @item
11559 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
11560 using @command{ffmpeg}:
11561 @example
11562 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
11563 @end example
11564 @end itemize
11565
11566 @section perspective
11567
11568 Correct perspective of video not recorded perpendicular to the screen.
11569
11570 A description of the accepted parameters follows.
11571
11572 @table @option
11573 @item x0
11574 @item y0
11575 @item x1
11576 @item y1
11577 @item x2
11578 @item y2
11579 @item x3
11580 @item y3
11581 Set coordinates expression for top left, top right, bottom left and bottom right corners.
11582 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
11583 If the @code{sense} option is set to @code{source}, then the specified points will be sent
11584 to the corners of the destination. If the @code{sense} option is set to @code{destination},
11585 then the corners of the source will be sent to the specified coordinates.
11586
11587 The expressions can use the following variables:
11588
11589 @table @option
11590 @item W
11591 @item H
11592 the width and height of video frame.
11593 @item in
11594 Input frame count.
11595 @item on
11596 Output frame count.
11597 @end table
11598
11599 @item interpolation
11600 Set interpolation for perspective correction.
11601
11602 It accepts the following values:
11603 @table @samp
11604 @item linear
11605 @item cubic
11606 @end table
11607
11608 Default value is @samp{linear}.
11609
11610 @item sense
11611 Set interpretation of coordinate options.
11612
11613 It accepts the following values:
11614 @table @samp
11615 @item 0, source
11616
11617 Send point in the source specified by the given coordinates to
11618 the corners of the destination.
11619
11620 @item 1, destination
11621
11622 Send the corners of the source to the point in the destination specified
11623 by the given coordinates.
11624
11625 Default value is @samp{source}.
11626 @end table
11627
11628 @item eval
11629 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
11630
11631 It accepts the following values:
11632 @table @samp
11633 @item init
11634 only evaluate expressions once during the filter initialization or
11635 when a command is processed
11636
11637 @item frame
11638 evaluate expressions for each incoming frame
11639 @end table
11640
11641 Default value is @samp{init}.
11642 @end table
11643
11644 @section phase
11645
11646 Delay interlaced video by one field time so that the field order changes.
11647
11648 The intended use is to fix PAL movies that have been captured with the
11649 opposite field order to the film-to-video transfer.
11650
11651 A description of the accepted parameters follows.
11652
11653 @table @option
11654 @item mode
11655 Set phase mode.
11656
11657 It accepts the following values:
11658 @table @samp
11659 @item t
11660 Capture field order top-first, transfer bottom-first.
11661 Filter will delay the bottom field.
11662
11663 @item b
11664 Capture field order bottom-first, transfer top-first.
11665 Filter will delay the top field.
11666
11667 @item p
11668 Capture and transfer with the same field order. This mode only exists
11669 for the documentation of the other options to refer to, but if you
11670 actually select it, the filter will faithfully do nothing.
11671
11672 @item a
11673 Capture field order determined automatically by field flags, transfer
11674 opposite.
11675 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
11676 basis using field flags. If no field information is available,
11677 then this works just like @samp{u}.
11678
11679 @item u
11680 Capture unknown or varying, transfer opposite.
11681 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
11682 analyzing the images and selecting the alternative that produces best
11683 match between the fields.
11684
11685 @item T
11686 Capture top-first, transfer unknown or varying.
11687 Filter selects among @samp{t} and @samp{p} using image analysis.
11688
11689 @item B
11690 Capture bottom-first, transfer unknown or varying.
11691 Filter selects among @samp{b} and @samp{p} using image analysis.
11692
11693 @item A
11694 Capture determined by field flags, transfer unknown or varying.
11695 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
11696 image analysis. If no field information is available, then this works just
11697 like @samp{U}. This is the default mode.
11698
11699 @item U
11700 Both capture and transfer unknown or varying.
11701 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
11702 @end table
11703 @end table
11704
11705 @section pixdesctest
11706
11707 Pixel format descriptor test filter, mainly useful for internal
11708 testing. The output video should be equal to the input video.
11709
11710 For example:
11711 @example
11712 format=monow, pixdesctest
11713 @end example
11714
11715 can be used to test the monowhite pixel format descriptor definition.
11716
11717 @section pixscope
11718
11719 Display sample values of color channels. Mainly useful for checking color
11720 and levels. Minimum supported resolution is 640x480.
11721
11722 The filters accept the following options:
11723
11724 @table @option
11725 @item x
11726 Set scope X position, relative offset on X axis.
11727
11728 @item y
11729 Set scope Y position, relative offset on Y axis.
11730
11731 @item w
11732 Set scope width.
11733
11734 @item h
11735 Set scope height.
11736
11737 @item o
11738 Set window opacity. This window also holds statistics about pixel area.
11739
11740 @item wx
11741 Set window X position, relative offset on X axis.
11742
11743 @item wy
11744 Set window Y position, relative offset on Y axis.
11745 @end table
11746
11747 @section pp
11748
11749 Enable the specified chain of postprocessing subfilters using libpostproc. This
11750 library should be automatically selected with a GPL build (@code{--enable-gpl}).
11751 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
11752 Each subfilter and some options have a short and a long name that can be used
11753 interchangeably, i.e. dr/dering are the same.
11754
11755 The filters accept the following options:
11756
11757 @table @option
11758 @item subfilters
11759 Set postprocessing subfilters string.
11760 @end table
11761
11762 All subfilters share common options to determine their scope:
11763
11764 @table @option
11765 @item a/autoq
11766 Honor the quality commands for this subfilter.
11767
11768 @item c/chrom
11769 Do chrominance filtering, too (default).
11770
11771 @item y/nochrom
11772 Do luminance filtering only (no chrominance).
11773
11774 @item n/noluma
11775 Do chrominance filtering only (no luminance).
11776 @end table
11777
11778 These options can be appended after the subfilter name, separated by a '|'.
11779
11780 Available subfilters are:
11781
11782 @table @option
11783 @item hb/hdeblock[|difference[|flatness]]
11784 Horizontal deblocking filter
11785 @table @option
11786 @item difference
11787 Difference factor where higher values mean more deblocking (default: @code{32}).
11788 @item flatness
11789 Flatness threshold where lower values mean more deblocking (default: @code{39}).
11790 @end table
11791
11792 @item vb/vdeblock[|difference[|flatness]]
11793 Vertical deblocking filter
11794 @table @option
11795 @item difference
11796 Difference factor where higher values mean more deblocking (default: @code{32}).
11797 @item flatness
11798 Flatness threshold where lower values mean more deblocking (default: @code{39}).
11799 @end table
11800
11801 @item ha/hadeblock[|difference[|flatness]]
11802 Accurate horizontal deblocking filter
11803 @table @option
11804 @item difference
11805 Difference factor where higher values mean more deblocking (default: @code{32}).
11806 @item flatness
11807 Flatness threshold where lower values mean more deblocking (default: @code{39}).
11808 @end table
11809
11810 @item va/vadeblock[|difference[|flatness]]
11811 Accurate vertical deblocking filter
11812 @table @option
11813 @item difference
11814 Difference factor where higher values mean more deblocking (default: @code{32}).
11815 @item flatness
11816 Flatness threshold where lower values mean more deblocking (default: @code{39}).
11817 @end table
11818 @end table
11819
11820 The horizontal and vertical deblocking filters share the difference and
11821 flatness values so you cannot set different horizontal and vertical
11822 thresholds.
11823
11824 @table @option
11825 @item h1/x1hdeblock
11826 Experimental horizontal deblocking filter
11827
11828 @item v1/x1vdeblock
11829 Experimental vertical deblocking filter
11830
11831 @item dr/dering
11832 Deringing filter
11833
11834 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
11835 @table @option
11836 @item threshold1
11837 larger -> stronger filtering
11838 @item threshold2
11839 larger -> stronger filtering
11840 @item threshold3
11841 larger -> stronger filtering
11842 @end table
11843
11844 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
11845 @table @option
11846 @item f/fullyrange
11847 Stretch luminance to @code{0-255}.
11848 @end table
11849
11850 @item lb/linblenddeint
11851 Linear blend deinterlacing filter that deinterlaces the given block by
11852 filtering all lines with a @code{(1 2 1)} filter.
11853
11854 @item li/linipoldeint
11855 Linear interpolating deinterlacing filter that deinterlaces the given block by
11856 linearly interpolating every second line.
11857
11858 @item ci/cubicipoldeint
11859 Cubic interpolating deinterlacing filter deinterlaces the given block by
11860 cubically interpolating every second line.
11861
11862 @item md/mediandeint
11863 Median deinterlacing filter that deinterlaces the given block by applying a
11864 median filter to every second line.
11865
11866 @item fd/ffmpegdeint
11867 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
11868 second line with a @code{(-1 4 2 4 -1)} filter.
11869
11870 @item l5/lowpass5
11871 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
11872 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
11873
11874 @item fq/forceQuant[|quantizer]
11875 Overrides the quantizer table from the input with the constant quantizer you
11876 specify.
11877 @table @option
11878 @item quantizer
11879 Quantizer to use
11880 @end table
11881
11882 @item de/default
11883 Default pp filter combination (@code{hb|a,vb|a,dr|a})
11884
11885 @item fa/fast
11886 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
11887
11888 @item ac
11889 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
11890 @end table
11891
11892 @subsection Examples
11893
11894 @itemize
11895 @item
11896 Apply horizontal and vertical deblocking, deringing and automatic
11897 brightness/contrast:
11898 @example
11899 pp=hb/vb/dr/al
11900 @end example
11901
11902 @item
11903 Apply default filters without brightness/contrast correction:
11904 @example
11905 pp=de/-al
11906 @end example
11907
11908 @item
11909 Apply default filters and temporal denoiser:
11910 @example
11911 pp=default/tmpnoise|1|2|3
11912 @end example
11913
11914 @item
11915 Apply deblocking on luminance only, and switch vertical deblocking on or off
11916 automatically depending on available CPU time:
11917 @example
11918 pp=hb|y/vb|a
11919 @end example
11920 @end itemize
11921
11922 @section pp7
11923 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
11924 similar to spp = 6 with 7 point DCT, where only the center sample is
11925 used after IDCT.
11926
11927 The filter accepts the following options:
11928
11929 @table @option
11930 @item qp
11931 Force a constant quantization parameter. It accepts an integer in range
11932 0 to 63. If not set, the filter will use the QP from the video stream
11933 (if available).
11934
11935 @item mode
11936 Set thresholding mode. Available modes are:
11937
11938 @table @samp
11939 @item hard
11940 Set hard thresholding.
11941 @item soft
11942 Set soft thresholding (better de-ringing effect, but likely blurrier).
11943 @item medium
11944 Set medium thresholding (good results, default).
11945 @end table
11946 @end table
11947
11948 @section premultiply
11949 Apply alpha premultiply effect to input video stream using first plane
11950 of second stream as alpha.
11951
11952 Both streams must have same dimensions and same pixel format.
11953
11954 The filter accepts the following option:
11955
11956 @table @option
11957 @item planes
11958 Set which planes will be processed, unprocessed planes will be copied.
11959 By default value 0xf, all planes will be processed.
11960
11961 @item inplace
11962 Do not require 2nd input for processing, instead use alpha plane from input stream.
11963 @end table
11964
11965 @section prewitt
11966 Apply prewitt operator to input video stream.
11967
11968 The filter accepts the following option:
11969
11970 @table @option
11971 @item planes
11972 Set which planes will be processed, unprocessed planes will be copied.
11973 By default value 0xf, all planes will be processed.
11974
11975 @item scale
11976 Set value which will be multiplied with filtered result.
11977
11978 @item delta
11979 Set value which will be added to filtered result.
11980 @end table
11981
11982 @section pseudocolor
11983
11984 Alter frame colors in video with pseudocolors.
11985
11986 This filter accept the following options:
11987
11988 @table @option
11989 @item c0
11990 set pixel first component expression
11991
11992 @item c1
11993 set pixel second component expression
11994
11995 @item c2
11996 set pixel third component expression
11997
11998 @item c3
11999 set pixel fourth component expression, corresponds to the alpha component
12000
12001 @item i
12002 set component to use as base for altering colors
12003 @end table
12004
12005 Each of them specifies the expression to use for computing the lookup table for
12006 the corresponding pixel component values.
12007
12008 The expressions can contain the following constants and functions:
12009
12010 @table @option
12011 @item w
12012 @item h
12013 The input width and height.
12014
12015 @item val
12016 The input value for the pixel component.
12017
12018 @item ymin, umin, vmin, amin
12019 The minimum allowed component value.
12020
12021 @item ymax, umax, vmax, amax
12022 The maximum allowed component value.
12023 @end table
12024
12025 All expressions default to "val".
12026
12027 @subsection Examples
12028
12029 @itemize
12030 @item
12031 Change too high luma values to gradient:
12032 @example
12033 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'"
12034 @end example
12035 @end itemize
12036
12037 @section psnr
12038
12039 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
12040 Ratio) between two input videos.
12041
12042 This filter takes in input two input videos, the first input is
12043 considered the "main" source and is passed unchanged to the
12044 output. The second input is used as a "reference" video for computing
12045 the PSNR.
12046
12047 Both video inputs must have the same resolution and pixel format for
12048 this filter to work correctly. Also it assumes that both inputs
12049 have the same number of frames, which are compared one by one.
12050
12051 The obtained average PSNR is printed through the logging system.
12052
12053 The filter stores the accumulated MSE (mean squared error) of each
12054 frame, and at the end of the processing it is averaged across all frames
12055 equally, and the following formula is applied to obtain the PSNR:
12056
12057 @example
12058 PSNR = 10*log10(MAX^2/MSE)
12059 @end example
12060
12061 Where MAX is the average of the maximum values of each component of the
12062 image.
12063
12064 The description of the accepted parameters follows.
12065
12066 @table @option
12067 @item stats_file, f
12068 If specified the filter will use the named file to save the PSNR of
12069 each individual frame. When filename equals "-" the data is sent to
12070 standard output.
12071
12072 @item stats_version
12073 Specifies which version of the stats file format to use. Details of
12074 each format are written below.
12075 Default value is 1.
12076
12077 @item stats_add_max
12078 Determines whether the max value is output to the stats log.
12079 Default value is 0.
12080 Requires stats_version >= 2. If this is set and stats_version < 2,
12081 the filter will return an error.
12082 @end table
12083
12084 This filter also supports the @ref{framesync} options.
12085
12086 The file printed if @var{stats_file} is selected, contains a sequence of
12087 key/value pairs of the form @var{key}:@var{value} for each compared
12088 couple of frames.
12089
12090 If a @var{stats_version} greater than 1 is specified, a header line precedes
12091 the list of per-frame-pair stats, with key value pairs following the frame
12092 format with the following parameters:
12093
12094 @table @option
12095 @item psnr_log_version
12096 The version of the log file format. Will match @var{stats_version}.
12097
12098 @item fields
12099 A comma separated list of the per-frame-pair parameters included in
12100 the log.
12101 @end table
12102
12103 A description of each shown per-frame-pair parameter follows:
12104
12105 @table @option
12106 @item n
12107 sequential number of the input frame, starting from 1
12108
12109 @item mse_avg
12110 Mean Square Error pixel-by-pixel average difference of the compared
12111 frames, averaged over all the image components.
12112
12113 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_g, mse_a
12114 Mean Square Error pixel-by-pixel average difference of the compared
12115 frames for the component specified by the suffix.
12116
12117 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
12118 Peak Signal to Noise ratio of the compared frames for the component
12119 specified by the suffix.
12120
12121 @item max_avg, max_y, max_u, max_v
12122 Maximum allowed value for each channel, and average over all
12123 channels.
12124 @end table
12125
12126 For example:
12127 @example
12128 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
12129 [main][ref] psnr="stats_file=stats.log" [out]
12130 @end example
12131
12132 On this example the input file being processed is compared with the
12133 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
12134 is stored in @file{stats.log}.
12135
12136 @anchor{pullup}
12137 @section pullup
12138
12139 Pulldown reversal (inverse telecine) filter, capable of handling mixed
12140 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
12141 content.
12142
12143 The pullup filter is designed to take advantage of future context in making
12144 its decisions. This filter is stateless in the sense that it does not lock
12145 onto a pattern to follow, but it instead looks forward to the following
12146 fields in order to identify matches and rebuild progressive frames.
12147
12148 To produce content with an even framerate, insert the fps filter after
12149 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
12150 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
12151
12152 The filter accepts the following options:
12153
12154 @table @option
12155 @item jl
12156 @item jr
12157 @item jt
12158 @item jb
12159 These options set the amount of "junk" to ignore at the left, right, top, and
12160 bottom of the image, respectively. Left and right are in units of 8 pixels,
12161 while top and bottom are in units of 2 lines.
12162 The default is 8 pixels on each side.
12163
12164 @item sb
12165 Set the strict breaks. Setting this option to 1 will reduce the chances of
12166 filter generating an occasional mismatched frame, but it may also cause an
12167 excessive number of frames to be dropped during high motion sequences.
12168 Conversely, setting it to -1 will make filter match fields more easily.
12169 This may help processing of video where there is slight blurring between
12170 the fields, but may also cause there to be interlaced frames in the output.
12171 Default value is @code{0}.
12172
12173 @item mp
12174 Set the metric plane to use. It accepts the following values:
12175 @table @samp
12176 @item l
12177 Use luma plane.
12178
12179 @item u
12180 Use chroma blue plane.
12181
12182 @item v
12183 Use chroma red plane.
12184 @end table
12185
12186 This option may be set to use chroma plane instead of the default luma plane
12187 for doing filter's computations. This may improve accuracy on very clean
12188 source material, but more likely will decrease accuracy, especially if there
12189 is chroma noise (rainbow effect) or any grayscale video.
12190 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
12191 load and make pullup usable in realtime on slow machines.
12192 @end table
12193
12194 For best results (without duplicated frames in the output file) it is
12195 necessary to change the output frame rate. For example, to inverse
12196 telecine NTSC input:
12197 @example
12198 ffmpeg -i input -vf pullup -r 24000/1001 ...
12199 @end example
12200
12201 @section qp
12202
12203 Change video quantization parameters (QP).
12204
12205 The filter accepts the following option:
12206
12207 @table @option
12208 @item qp
12209 Set expression for quantization parameter.
12210 @end table
12211
12212 The expression is evaluated through the eval API and can contain, among others,
12213 the following constants:
12214
12215 @table @var
12216 @item known
12217 1 if index is not 129, 0 otherwise.
12218
12219 @item qp
12220 Sequential index starting from -129 to 128.
12221 @end table
12222
12223 @subsection Examples
12224
12225 @itemize
12226 @item
12227 Some equation like:
12228 @example
12229 qp=2+2*sin(PI*qp)
12230 @end example
12231 @end itemize
12232
12233 @section random
12234
12235 Flush video frames from internal cache of frames into a random order.
12236 No frame is discarded.
12237 Inspired by @ref{frei0r} nervous filter.
12238
12239 @table @option
12240 @item frames
12241 Set size in number of frames of internal cache, in range from @code{2} to
12242 @code{512}. Default is @code{30}.
12243
12244 @item seed
12245 Set seed for random number generator, must be an integer included between
12246 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
12247 less than @code{0}, the filter will try to use a good random seed on a
12248 best effort basis.
12249 @end table
12250
12251 @section readeia608
12252
12253 Read closed captioning (EIA-608) information from the top lines of a video frame.
12254
12255 This filter adds frame metadata for @code{lavfi.readeia608.X.cc} and
12256 @code{lavfi.readeia608.X.line}, where @code{X} is the number of the identified line
12257 with EIA-608 data (starting from 0). A description of each metadata value follows:
12258
12259 @table @option
12260 @item lavfi.readeia608.X.cc
12261 The two bytes stored as EIA-608 data (printed in hexadecimal).
12262
12263 @item lavfi.readeia608.X.line
12264 The number of the line on which the EIA-608 data was identified and read.
12265 @end table
12266
12267 This filter accepts the following options:
12268
12269 @table @option
12270 @item scan_min
12271 Set the line to start scanning for EIA-608 data. Default is @code{0}.
12272
12273 @item scan_max
12274 Set the line to end scanning for EIA-608 data. Default is @code{29}.
12275
12276 @item mac
12277 Set minimal acceptable amplitude change for sync codes detection.
12278 Default is @code{0.2}. Allowed range is @code{[0.001 - 1]}.
12279
12280 @item spw
12281 Set the ratio of width reserved for sync code detection.
12282 Default is @code{0.27}. Allowed range is @code{[0.01 - 0.7]}.
12283
12284 @item mhd
12285 Set the max peaks height difference for sync code detection.
12286 Default is @code{0.1}. Allowed range is @code{[0.0 - 0.5]}.
12287
12288 @item mpd
12289 Set max peaks period difference for sync code detection.
12290 Default is @code{0.1}. Allowed range is @code{[0.0 - 0.5]}.
12291
12292 @item msd
12293 Set the first two max start code bits differences.
12294 Default is @code{0.02}. Allowed range is @code{[0.0 - 0.5]}.
12295
12296 @item bhd
12297 Set the minimum ratio of bits height compared to 3rd start code bit.
12298 Default is @code{0.75}. Allowed range is @code{[0.01 - 1]}.
12299
12300 @item th_w
12301 Set the white color threshold. Default is @code{0.35}. Allowed range is @code{[0.1 - 1]}.
12302
12303 @item th_b
12304 Set the black color threshold. Default is @code{0.15}. Allowed range is @code{[0.0 - 0.5]}.
12305
12306 @item chp
12307 Enable checking the parity bit. In the event of a parity error, the filter will output
12308 @code{0x00} for that character. Default is false.
12309 @end table
12310
12311 @subsection Examples
12312
12313 @itemize
12314 @item
12315 Output a csv with presentation time and the first two lines of identified EIA-608 captioning data.
12316 @example
12317 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
12318 @end example
12319 @end itemize
12320
12321 @section readvitc
12322
12323 Read vertical interval timecode (VITC) information from the top lines of a
12324 video frame.
12325
12326 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
12327 timecode value, if a valid timecode has been detected. Further metadata key
12328 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
12329 timecode data has been found or not.
12330
12331 This filter accepts the following options:
12332
12333 @table @option
12334 @item scan_max
12335 Set the maximum number of lines to scan for VITC data. If the value is set to
12336 @code{-1} the full video frame is scanned. Default is @code{45}.
12337
12338 @item thr_b
12339 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
12340 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
12341
12342 @item thr_w
12343 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
12344 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
12345 @end table
12346
12347 @subsection Examples
12348
12349 @itemize
12350 @item
12351 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
12352 draw @code{--:--:--:--} as a placeholder:
12353 @example
12354 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
12355 @end example
12356 @end itemize
12357
12358 @section remap
12359
12360 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
12361
12362 Destination pixel at position (X, Y) will be picked from source (x, y) position
12363 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
12364 value for pixel will be used for destination pixel.
12365
12366 Xmap and Ymap input video streams must be of same dimensions. Output video stream
12367 will have Xmap/Ymap video stream dimensions.
12368 Xmap and Ymap input video streams are 16bit depth, single channel.
12369
12370 @section removegrain
12371
12372 The removegrain filter is a spatial denoiser for progressive video.
12373
12374 @table @option
12375 @item m0
12376 Set mode for the first plane.
12377
12378 @item m1
12379 Set mode for the second plane.
12380
12381 @item m2
12382 Set mode for the third plane.
12383
12384 @item m3
12385 Set mode for the fourth plane.
12386 @end table
12387
12388 Range of mode is from 0 to 24. Description of each mode follows:
12389
12390 @table @var
12391 @item 0
12392 Leave input plane unchanged. Default.
12393
12394 @item 1
12395 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
12396
12397 @item 2
12398 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
12399
12400 @item 3
12401 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
12402
12403 @item 4
12404 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
12405 This is equivalent to a median filter.
12406
12407 @item 5
12408 Line-sensitive clipping giving the minimal change.
12409
12410 @item 6
12411 Line-sensitive clipping, intermediate.
12412
12413 @item 7
12414 Line-sensitive clipping, intermediate.
12415
12416 @item 8
12417 Line-sensitive clipping, intermediate.
12418
12419 @item 9
12420 Line-sensitive clipping on a line where the neighbours pixels are the closest.
12421
12422 @item 10
12423 Replaces the target pixel with the closest neighbour.
12424
12425 @item 11
12426 [1 2 1] horizontal and vertical kernel blur.
12427
12428 @item 12
12429 Same as mode 11.
12430
12431 @item 13
12432 Bob mode, interpolates top field from the line where the neighbours
12433 pixels are the closest.
12434
12435 @item 14
12436 Bob mode, interpolates bottom field from the line where the neighbours
12437 pixels are the closest.
12438
12439 @item 15
12440 Bob mode, interpolates top field. Same as 13 but with a more complicated
12441 interpolation formula.
12442
12443 @item 16
12444 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
12445 interpolation formula.
12446
12447 @item 17
12448 Clips the pixel with the minimum and maximum of respectively the maximum and
12449 minimum of each pair of opposite neighbour pixels.
12450
12451 @item 18
12452 Line-sensitive clipping using opposite neighbours whose greatest distance from
12453 the current pixel is minimal.
12454
12455 @item 19
12456 Replaces the pixel with the average of its 8 neighbours.
12457
12458 @item 20
12459 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
12460
12461 @item 21
12462 Clips pixels using the averages of opposite neighbour.
12463
12464 @item 22
12465 Same as mode 21 but simpler and faster.
12466
12467 @item 23
12468 Small edge and halo removal, but reputed useless.
12469
12470 @item 24
12471 Similar as 23.
12472 @end table
12473
12474 @section removelogo
12475
12476 Suppress a TV station logo, using an image file to determine which
12477 pixels comprise the logo. It works by filling in the pixels that
12478 comprise the logo with neighboring pixels.
12479
12480 The filter accepts the following options:
12481
12482 @table @option
12483 @item filename, f
12484 Set the filter bitmap file, which can be any image format supported by
12485 libavformat. The width and height of the image file must match those of the
12486 video stream being processed.
12487 @end table
12488
12489 Pixels in the provided bitmap image with a value of zero are not
12490 considered part of the logo, non-zero pixels are considered part of
12491 the logo. If you use white (255) for the logo and black (0) for the
12492 rest, you will be safe. For making the filter bitmap, it is
12493 recommended to take a screen capture of a black frame with the logo
12494 visible, and then using a threshold filter followed by the erode
12495 filter once or twice.
12496
12497 If needed, little splotches can be fixed manually. Remember that if
12498 logo pixels are not covered, the filter quality will be much
12499 reduced. Marking too many pixels as part of the logo does not hurt as
12500 much, but it will increase the amount of blurring needed to cover over
12501 the image and will destroy more information than necessary, and extra
12502 pixels will slow things down on a large logo.
12503
12504 @section repeatfields
12505
12506 This filter uses the repeat_field flag from the Video ES headers and hard repeats
12507 fields based on its value.
12508
12509 @section reverse
12510
12511 Reverse a video clip.
12512
12513 Warning: This filter requires memory to buffer the entire clip, so trimming
12514 is suggested.
12515
12516 @subsection Examples
12517
12518 @itemize
12519 @item
12520 Take the first 5 seconds of a clip, and reverse it.
12521 @example
12522 trim=end=5,reverse
12523 @end example
12524 @end itemize
12525
12526 @section roberts
12527 Apply roberts cross operator to input video stream.
12528
12529 The filter accepts the following option:
12530
12531 @table @option
12532 @item planes
12533 Set which planes will be processed, unprocessed planes will be copied.
12534 By default value 0xf, all planes will be processed.
12535
12536 @item scale
12537 Set value which will be multiplied with filtered result.
12538
12539 @item delta
12540 Set value which will be added to filtered result.
12541 @end table
12542
12543 @section rotate
12544
12545 Rotate video by an arbitrary angle expressed in radians.
12546
12547 The filter accepts the following options:
12548
12549 A description of the optional parameters follows.
12550 @table @option
12551 @item angle, a
12552 Set an expression for the angle by which to rotate the input video
12553 clockwise, expressed as a number of radians. A negative value will
12554 result in a counter-clockwise rotation. By default it is set to "0".
12555
12556 This expression is evaluated for each frame.
12557
12558 @item out_w, ow
12559 Set the output width expression, default value is "iw".
12560 This expression is evaluated just once during configuration.
12561
12562 @item out_h, oh
12563 Set the output height expression, default value is "ih".
12564 This expression is evaluated just once during configuration.
12565
12566 @item bilinear
12567 Enable bilinear interpolation if set to 1, a value of 0 disables
12568 it. Default value is 1.
12569
12570 @item fillcolor, c
12571 Set the color used to fill the output area not covered by the rotated
12572 image. For the general syntax of this option, check the "Color" section in the
12573 ffmpeg-utils manual. If the special value "none" is selected then no
12574 background is printed (useful for example if the background is never shown).
12575
12576 Default value is "black".
12577 @end table
12578
12579 The expressions for the angle and the output size can contain the
12580 following constants and functions:
12581
12582 @table @option
12583 @item n
12584 sequential number of the input frame, starting from 0. It is always NAN
12585 before the first frame is filtered.
12586
12587 @item t
12588 time in seconds of the input frame, it is set to 0 when the filter is
12589 configured. It is always NAN before the first frame is filtered.
12590
12591 @item hsub
12592 @item vsub
12593 horizontal and vertical chroma subsample values. For example for the
12594 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
12595
12596 @item in_w, iw
12597 @item in_h, ih
12598 the input video width and height
12599
12600 @item out_w, ow
12601 @item out_h, oh
12602 the output width and height, that is the size of the padded area as
12603 specified by the @var{width} and @var{height} expressions
12604
12605 @item rotw(a)
12606 @item roth(a)
12607 the minimal width/height required for completely containing the input
12608 video rotated by @var{a} radians.
12609
12610 These are only available when computing the @option{out_w} and
12611 @option{out_h} expressions.
12612 @end table
12613
12614 @subsection Examples
12615
12616 @itemize
12617 @item
12618 Rotate the input by PI/6 radians clockwise:
12619 @example
12620 rotate=PI/6
12621 @end example
12622
12623 @item
12624 Rotate the input by PI/6 radians counter-clockwise:
12625 @example
12626 rotate=-PI/6
12627 @end example
12628
12629 @item
12630 Rotate the input by 45 degrees clockwise:
12631 @example
12632 rotate=45*PI/180
12633 @end example
12634
12635 @item
12636 Apply a constant rotation with period T, starting from an angle of PI/3:
12637 @example
12638 rotate=PI/3+2*PI*t/T
12639 @end example
12640
12641 @item
12642 Make the input video rotation oscillating with a period of T
12643 seconds and an amplitude of A radians:
12644 @example
12645 rotate=A*sin(2*PI/T*t)
12646 @end example
12647
12648 @item
12649 Rotate the video, output size is chosen so that the whole rotating
12650 input video is always completely contained in the output:
12651 @example
12652 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
12653 @end example
12654
12655 @item
12656 Rotate the video, reduce the output size so that no background is ever
12657 shown:
12658 @example
12659 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
12660 @end example
12661 @end itemize
12662
12663 @subsection Commands
12664
12665 The filter supports the following commands:
12666
12667 @table @option
12668 @item a, angle
12669 Set the angle expression.
12670 The command accepts the same syntax of the corresponding option.
12671
12672 If the specified expression is not valid, it is kept at its current
12673 value.
12674 @end table
12675
12676 @section sab
12677
12678 Apply Shape Adaptive Blur.
12679
12680 The filter accepts the following options:
12681
12682 @table @option
12683 @item luma_radius, lr
12684 Set luma blur filter strength, must be a value in range 0.1-4.0, default
12685 value is 1.0. A greater value will result in a more blurred image, and
12686 in slower processing.
12687
12688 @item luma_pre_filter_radius, lpfr
12689 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
12690 value is 1.0.
12691
12692 @item luma_strength, ls
12693 Set luma maximum difference between pixels to still be considered, must
12694 be a value in the 0.1-100.0 range, default value is 1.0.
12695
12696 @item chroma_radius, cr
12697 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
12698 greater value will result in a more blurred image, and in slower
12699 processing.
12700
12701 @item chroma_pre_filter_radius, cpfr
12702 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
12703
12704 @item chroma_strength, cs
12705 Set chroma maximum difference between pixels to still be considered,
12706 must be a value in the -0.9-100.0 range.
12707 @end table
12708
12709 Each chroma option value, if not explicitly specified, is set to the
12710 corresponding luma option value.
12711
12712 @anchor{scale}
12713 @section scale
12714
12715 Scale (resize) the input video, using the libswscale library.
12716
12717 The scale filter forces the output display aspect ratio to be the same
12718 of the input, by changing the output sample aspect ratio.
12719
12720 If the input image format is different from the format requested by
12721 the next filter, the scale filter will convert the input to the
12722 requested format.
12723
12724 @subsection Options
12725 The filter accepts the following options, or any of the options
12726 supported by the libswscale scaler.
12727
12728 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
12729 the complete list of scaler options.
12730
12731 @table @option
12732 @item width, w
12733 @item height, h
12734 Set the output video dimension expression. Default value is the input
12735 dimension.
12736
12737 If the @var{width} or @var{w} value is 0, the input width is used for
12738 the output. If the @var{height} or @var{h} value is 0, the input height
12739 is used for the output.
12740
12741 If one and only one of the values is -n with n >= 1, the scale filter
12742 will use a value that maintains the aspect ratio of the input image,
12743 calculated from the other specified dimension. After that it will,
12744 however, make sure that the calculated dimension is divisible by n and
12745 adjust the value if necessary.
12746
12747 If both values are -n with n >= 1, the behavior will be identical to
12748 both values being set to 0 as previously detailed.
12749
12750 See below for the list of accepted constants for use in the dimension
12751 expression.
12752
12753 @item eval
12754 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
12755
12756 @table @samp
12757 @item init
12758 Only evaluate expressions once during the filter initialization or when a command is processed.
12759
12760 @item frame
12761 Evaluate expressions for each incoming frame.
12762
12763 @end table
12764
12765 Default value is @samp{init}.
12766
12767
12768 @item interl
12769 Set the interlacing mode. It accepts the following values:
12770
12771 @table @samp
12772 @item 1
12773 Force interlaced aware scaling.
12774
12775 @item 0
12776 Do not apply interlaced scaling.
12777
12778 @item -1
12779 Select interlaced aware scaling depending on whether the source frames
12780 are flagged as interlaced or not.
12781 @end table
12782
12783 Default value is @samp{0}.
12784
12785 @item flags
12786 Set libswscale scaling flags. See
12787 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
12788 complete list of values. If not explicitly specified the filter applies
12789 the default flags.
12790
12791
12792 @item param0, param1
12793 Set libswscale input parameters for scaling algorithms that need them. See
12794 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
12795 complete documentation. If not explicitly specified the filter applies
12796 empty parameters.
12797
12798
12799
12800 @item size, s
12801 Set the video size. For the syntax of this option, check the
12802 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12803
12804 @item in_color_matrix
12805 @item out_color_matrix
12806 Set in/output YCbCr color space type.
12807
12808 This allows the autodetected value to be overridden as well as allows forcing
12809 a specific value used for the output and encoder.
12810
12811 If not specified, the color space type depends on the pixel format.
12812
12813 Possible values:
12814
12815 @table @samp
12816 @item auto
12817 Choose automatically.
12818
12819 @item bt709
12820 Format conforming to International Telecommunication Union (ITU)
12821 Recommendation BT.709.
12822
12823 @item fcc
12824 Set color space conforming to the United States Federal Communications
12825 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
12826
12827 @item bt601
12828 Set color space conforming to:
12829
12830 @itemize
12831 @item
12832 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
12833
12834 @item
12835 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
12836
12837 @item
12838 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
12839
12840 @end itemize
12841
12842 @item smpte240m
12843 Set color space conforming to SMPTE ST 240:1999.
12844 @end table
12845
12846 @item in_range
12847 @item out_range
12848 Set in/output YCbCr sample range.
12849
12850 This allows the autodetected value to be overridden as well as allows forcing
12851 a specific value used for the output and encoder. If not specified, the
12852 range depends on the pixel format. Possible values:
12853
12854 @table @samp
12855 @item auto
12856 Choose automatically.
12857
12858 @item jpeg/full/pc
12859 Set full range (0-255 in case of 8-bit luma).
12860
12861 @item mpeg/tv
12862 Set "MPEG" range (16-235 in case of 8-bit luma).
12863 @end table
12864
12865 @item force_original_aspect_ratio
12866 Enable decreasing or increasing output video width or height if necessary to
12867 keep the original aspect ratio. Possible values:
12868
12869 @table @samp
12870 @item disable
12871 Scale the video as specified and disable this feature.
12872
12873 @item decrease
12874 The output video dimensions will automatically be decreased if needed.
12875
12876 @item increase
12877 The output video dimensions will automatically be increased if needed.
12878
12879 @end table
12880
12881 One useful instance of this option is that when you know a specific device's
12882 maximum allowed resolution, you can use this to limit the output video to
12883 that, while retaining the aspect ratio. For example, device A allows
12884 1280x720 playback, and your video is 1920x800. Using this option (set it to
12885 decrease) and specifying 1280x720 to the command line makes the output
12886 1280x533.
12887
12888 Please note that this is a different thing than specifying -1 for @option{w}
12889 or @option{h}, you still need to specify the output resolution for this option
12890 to work.
12891
12892 @end table
12893
12894 The values of the @option{w} and @option{h} options are expressions
12895 containing the following constants:
12896
12897 @table @var
12898 @item in_w
12899 @item in_h
12900 The input width and height
12901
12902 @item iw
12903 @item ih
12904 These are the same as @var{in_w} and @var{in_h}.
12905
12906 @item out_w
12907 @item out_h
12908 The output (scaled) width and height
12909
12910 @item ow
12911 @item oh
12912 These are the same as @var{out_w} and @var{out_h}
12913
12914 @item a
12915 The same as @var{iw} / @var{ih}
12916
12917 @item sar
12918 input sample aspect ratio
12919
12920 @item dar
12921 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
12922
12923 @item hsub
12924 @item vsub
12925 horizontal and vertical input chroma subsample values. For example for the
12926 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
12927
12928 @item ohsub
12929 @item ovsub
12930 horizontal and vertical output chroma subsample values. For example for the
12931 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
12932 @end table
12933
12934 @subsection Examples
12935
12936 @itemize
12937 @item
12938 Scale the input video to a size of 200x100
12939 @example
12940 scale=w=200:h=100
12941 @end example
12942
12943 This is equivalent to:
12944 @example
12945 scale=200:100
12946 @end example
12947
12948 or:
12949 @example
12950 scale=200x100
12951 @end example
12952
12953 @item
12954 Specify a size abbreviation for the output size:
12955 @example
12956 scale=qcif
12957 @end example
12958
12959 which can also be written as:
12960 @example
12961 scale=size=qcif
12962 @end example
12963
12964 @item
12965 Scale the input to 2x:
12966 @example
12967 scale=w=2*iw:h=2*ih
12968 @end example
12969
12970 @item
12971 The above is the same as:
12972 @example
12973 scale=2*in_w:2*in_h
12974 @end example
12975
12976 @item
12977 Scale the input to 2x with forced interlaced scaling:
12978 @example
12979 scale=2*iw:2*ih:interl=1
12980 @end example
12981
12982 @item
12983 Scale the input to half size:
12984 @example
12985 scale=w=iw/2:h=ih/2
12986 @end example
12987
12988 @item
12989 Increase the width, and set the height to the same size:
12990 @example
12991 scale=3/2*iw:ow
12992 @end example
12993
12994 @item
12995 Seek Greek harmony:
12996 @example
12997 scale=iw:1/PHI*iw
12998 scale=ih*PHI:ih
12999 @end example
13000
13001 @item
13002 Increase the height, and set the width to 3/2 of the height:
13003 @example
13004 scale=w=3/2*oh:h=3/5*ih
13005 @end example
13006
13007 @item
13008 Increase the size, making the size a multiple of the chroma
13009 subsample values:
13010 @example
13011 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
13012 @end example
13013
13014 @item
13015 Increase the width to a maximum of 500 pixels,
13016 keeping the same aspect ratio as the input:
13017 @example
13018 scale=w='min(500\, iw*3/2):h=-1'
13019 @end example
13020 @end itemize
13021
13022 @subsection Commands
13023
13024 This filter supports the following commands:
13025 @table @option
13026 @item width, w
13027 @item height, h
13028 Set the output video dimension expression.
13029 The command accepts the same syntax of the corresponding option.
13030
13031 If the specified expression is not valid, it is kept at its current
13032 value.
13033 @end table
13034
13035 @section scale_npp
13036
13037 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
13038 format conversion on CUDA video frames. Setting the output width and height
13039 works in the same way as for the @var{scale} filter.
13040
13041 The following additional options are accepted:
13042 @table @option
13043 @item format
13044 The pixel format of the output CUDA frames. If set to the string "same" (the
13045 default), the input format will be kept. Note that automatic format negotiation
13046 and conversion is not yet supported for hardware frames
13047
13048 @item interp_algo
13049 The interpolation algorithm used for resizing. One of the following:
13050 @table @option
13051 @item nn
13052 Nearest neighbour.
13053
13054 @item linear
13055 @item cubic
13056 @item cubic2p_bspline
13057 2-parameter cubic (B=1, C=0)
13058
13059 @item cubic2p_catmullrom
13060 2-parameter cubic (B=0, C=1/2)
13061
13062 @item cubic2p_b05c03
13063 2-parameter cubic (B=1/2, C=3/10)
13064
13065 @item super
13066 Supersampling
13067
13068 @item lanczos
13069 @end table
13070
13071 @end table
13072
13073 @section scale2ref
13074
13075 Scale (resize) the input video, based on a reference video.
13076
13077 See the scale filter for available options, scale2ref supports the same but
13078 uses the reference video instead of the main input as basis. scale2ref also
13079 supports the following additional constants for the @option{w} and
13080 @option{h} options:
13081
13082 @table @var
13083 @item main_w
13084 @item main_h
13085 The main input video's width and height
13086
13087 @item main_a
13088 The same as @var{main_w} / @var{main_h}
13089
13090 @item main_sar
13091 The main input video's sample aspect ratio
13092
13093 @item main_dar, mdar
13094 The main input video's display aspect ratio. Calculated from
13095 @code{(main_w / main_h) * main_sar}.
13096
13097 @item main_hsub
13098 @item main_vsub
13099 The main input video's horizontal and vertical chroma subsample values.
13100 For example for the pixel format "yuv422p" @var{hsub} is 2 and @var{vsub}
13101 is 1.
13102 @end table
13103
13104 @subsection Examples
13105
13106 @itemize
13107 @item
13108 Scale a subtitle stream (b) to match the main video (a) in size before overlaying
13109 @example
13110 'scale2ref[b][a];[a][b]overlay'
13111 @end example
13112 @end itemize
13113
13114 @anchor{selectivecolor}
13115 @section selectivecolor
13116
13117 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
13118 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
13119 by the "purity" of the color (that is, how saturated it already is).
13120
13121 This filter is similar to the Adobe Photoshop Selective Color tool.
13122
13123 The filter accepts the following options:
13124
13125 @table @option
13126 @item correction_method
13127 Select color correction method.
13128
13129 Available values are:
13130 @table @samp
13131 @item absolute
13132 Specified adjustments are applied "as-is" (added/subtracted to original pixel
13133 component value).
13134 @item relative
13135 Specified adjustments are relative to the original component value.
13136 @end table
13137 Default is @code{absolute}.
13138 @item reds
13139 Adjustments for red pixels (pixels where the red component is the maximum)
13140 @item yellows
13141 Adjustments for yellow pixels (pixels where the blue component is the minimum)
13142 @item greens
13143 Adjustments for green pixels (pixels where the green component is the maximum)
13144 @item cyans
13145 Adjustments for cyan pixels (pixels where the red component is the minimum)
13146 @item blues
13147 Adjustments for blue pixels (pixels where the blue component is the maximum)
13148 @item magentas
13149 Adjustments for magenta pixels (pixels where the green component is the minimum)
13150 @item whites
13151 Adjustments for white pixels (pixels where all components are greater than 128)
13152 @item neutrals
13153 Adjustments for all pixels except pure black and pure white
13154 @item blacks
13155 Adjustments for black pixels (pixels where all components are lesser than 128)
13156 @item psfile
13157 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
13158 @end table
13159
13160 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
13161 4 space separated floating point adjustment values in the [-1,1] range,
13162 respectively to adjust the amount of cyan, magenta, yellow and black for the
13163 pixels of its range.
13164
13165 @subsection Examples
13166
13167 @itemize
13168 @item
13169 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
13170 increase magenta by 27% in blue areas:
13171 @example
13172 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
13173 @end example
13174
13175 @item
13176 Use a Photoshop selective color preset:
13177 @example
13178 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
13179 @end example
13180 @end itemize
13181
13182 @anchor{separatefields}
13183 @section separatefields
13184
13185 The @code{separatefields} takes a frame-based video input and splits
13186 each frame into its components fields, producing a new half height clip
13187 with twice the frame rate and twice the frame count.
13188
13189 This filter use field-dominance information in frame to decide which
13190 of each pair of fields to place first in the output.
13191 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
13192
13193 @section setdar, setsar
13194
13195 The @code{setdar} filter sets the Display Aspect Ratio for the filter
13196 output video.
13197
13198 This is done by changing the specified Sample (aka Pixel) Aspect
13199 Ratio, according to the following equation:
13200 @example
13201 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
13202 @end example
13203
13204 Keep in mind that the @code{setdar} filter does not modify the pixel
13205 dimensions of the video frame. Also, the display aspect ratio set by
13206 this filter may be changed by later filters in the filterchain,
13207 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
13208 applied.
13209
13210 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
13211 the filter output video.
13212
13213 Note that as a consequence of the application of this filter, the
13214 output display aspect ratio will change according to the equation
13215 above.
13216
13217 Keep in mind that the sample aspect ratio set by the @code{setsar}
13218 filter may be changed by later filters in the filterchain, e.g. if
13219 another "setsar" or a "setdar" filter is applied.
13220
13221 It accepts the following parameters:
13222
13223 @table @option
13224 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
13225 Set the aspect ratio used by the filter.
13226
13227 The parameter can be a floating point number string, an expression, or
13228 a string of the form @var{num}:@var{den}, where @var{num} and
13229 @var{den} are the numerator and denominator of the aspect ratio. If
13230 the parameter is not specified, it is assumed the value "0".
13231 In case the form "@var{num}:@var{den}" is used, the @code{:} character
13232 should be escaped.
13233
13234 @item max
13235 Set the maximum integer value to use for expressing numerator and
13236 denominator when reducing the expressed aspect ratio to a rational.
13237 Default value is @code{100}.
13238
13239 @end table
13240
13241 The parameter @var{sar} is an expression containing
13242 the following constants:
13243
13244 @table @option
13245 @item E, PI, PHI
13246 These are approximated values for the mathematical constants e
13247 (Euler's number), pi (Greek pi), and phi (the golden ratio).
13248
13249 @item w, h
13250 The input width and height.
13251
13252 @item a
13253 These are the same as @var{w} / @var{h}.
13254
13255 @item sar
13256 The input sample aspect ratio.
13257
13258 @item dar
13259 The input display aspect ratio. It is the same as
13260 (@var{w} / @var{h}) * @var{sar}.
13261
13262 @item hsub, vsub
13263 Horizontal and vertical chroma subsample values. For example, for the
13264 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
13265 @end table
13266
13267 @subsection Examples
13268
13269 @itemize
13270
13271 @item
13272 To change the display aspect ratio to 16:9, specify one of the following:
13273 @example
13274 setdar=dar=1.77777
13275 setdar=dar=16/9
13276 @end example
13277
13278 @item
13279 To change the sample aspect ratio to 10:11, specify:
13280 @example
13281 setsar=sar=10/11
13282 @end example
13283
13284 @item
13285 To set a display aspect ratio of 16:9, and specify a maximum integer value of
13286 1000 in the aspect ratio reduction, use the command:
13287 @example
13288 setdar=ratio=16/9:max=1000
13289 @end example
13290
13291 @end itemize
13292
13293 @anchor{setfield}
13294 @section setfield
13295
13296 Force field for the output video frame.
13297
13298 The @code{setfield} filter marks the interlace type field for the
13299 output frames. It does not change the input frame, but only sets the
13300 corresponding property, which affects how the frame is treated by
13301 following filters (e.g. @code{fieldorder} or @code{yadif}).
13302
13303 The filter accepts the following options:
13304
13305 @table @option
13306
13307 @item mode
13308 Available values are:
13309
13310 @table @samp
13311 @item auto
13312 Keep the same field property.
13313
13314 @item bff
13315 Mark the frame as bottom-field-first.
13316
13317 @item tff
13318 Mark the frame as top-field-first.
13319
13320 @item prog
13321 Mark the frame as progressive.
13322 @end table
13323 @end table
13324
13325 @section showinfo
13326
13327 Show a line containing various information for each input video frame.
13328 The input video is not modified.
13329
13330 The shown line contains a sequence of key/value pairs of the form
13331 @var{key}:@var{value}.
13332
13333 The following values are shown in the output:
13334
13335 @table @option
13336 @item n
13337 The (sequential) number of the input frame, starting from 0.
13338
13339 @item pts
13340 The Presentation TimeStamp of the input frame, expressed as a number of
13341 time base units. The time base unit depends on the filter input pad.
13342
13343 @item pts_time
13344 The Presentation TimeStamp of the input frame, expressed as a number of
13345 seconds.
13346
13347 @item pos
13348 The position of the frame in the input stream, or -1 if this information is
13349 unavailable and/or meaningless (for example in case of synthetic video).
13350
13351 @item fmt
13352 The pixel format name.
13353
13354 @item sar
13355 The sample aspect ratio of the input frame, expressed in the form
13356 @var{num}/@var{den}.
13357
13358 @item s
13359 The size of the input frame. For the syntax of this option, check the
13360 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13361
13362 @item i
13363 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
13364 for bottom field first).
13365
13366 @item iskey
13367 This is 1 if the frame is a key frame, 0 otherwise.
13368
13369 @item type
13370 The picture type of the input frame ("I" for an I-frame, "P" for a
13371 P-frame, "B" for a B-frame, or "?" for an unknown type).
13372 Also refer to the documentation of the @code{AVPictureType} enum and of
13373 the @code{av_get_picture_type_char} function defined in
13374 @file{libavutil/avutil.h}.
13375
13376 @item checksum
13377 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
13378
13379 @item plane_checksum
13380 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
13381 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
13382 @end table
13383
13384 @section showpalette
13385
13386 Displays the 256 colors palette of each frame. This filter is only relevant for
13387 @var{pal8} pixel format frames.
13388
13389 It accepts the following option:
13390
13391 @table @option
13392 @item s
13393 Set the size of the box used to represent one palette color entry. Default is
13394 @code{30} (for a @code{30x30} pixel box).
13395 @end table
13396
13397 @section shuffleframes
13398
13399 Reorder and/or duplicate and/or drop video frames.
13400
13401 It accepts the following parameters:
13402
13403 @table @option
13404 @item mapping
13405 Set the destination indexes of input frames.
13406 This is space or '|' separated list of indexes that maps input frames to output
13407 frames. Number of indexes also sets maximal value that each index may have.
13408 '-1' index have special meaning and that is to drop frame.
13409 @end table
13410
13411 The first frame has the index 0. The default is to keep the input unchanged.
13412
13413 @subsection Examples
13414
13415 @itemize
13416 @item
13417 Swap second and third frame of every three frames of the input:
13418 @example
13419 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
13420 @end example
13421
13422 @item
13423 Swap 10th and 1st frame of every ten frames of the input:
13424 @example
13425 ffmpeg -i INPUT -vf "shuffleframes=9 1 2 3 4 5 6 7 8 0" OUTPUT
13426 @end example
13427 @end itemize
13428
13429 @section shuffleplanes
13430
13431 Reorder and/or duplicate video planes.
13432
13433 It accepts the following parameters:
13434
13435 @table @option
13436
13437 @item map0
13438 The index of the input plane to be used as the first output plane.
13439
13440 @item map1
13441 The index of the input plane to be used as the second output plane.
13442
13443 @item map2
13444 The index of the input plane to be used as the third output plane.
13445
13446 @item map3
13447 The index of the input plane to be used as the fourth output plane.
13448
13449 @end table
13450
13451 The first plane has the index 0. The default is to keep the input unchanged.
13452
13453 @subsection Examples
13454
13455 @itemize
13456 @item
13457 Swap the second and third planes of the input:
13458 @example
13459 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
13460 @end example
13461 @end itemize
13462
13463 @anchor{signalstats}
13464 @section signalstats
13465 Evaluate various visual metrics that assist in determining issues associated
13466 with the digitization of analog video media.
13467
13468 By default the filter will log these metadata values:
13469
13470 @table @option
13471 @item YMIN
13472 Display the minimal Y value contained within the input frame. Expressed in
13473 range of [0-255].
13474
13475 @item YLOW
13476 Display the Y value at the 10% percentile within the input frame. Expressed in
13477 range of [0-255].
13478
13479 @item YAVG
13480 Display the average Y value within the input frame. Expressed in range of
13481 [0-255].
13482
13483 @item YHIGH
13484 Display the Y value at the 90% percentile within the input frame. Expressed in
13485 range of [0-255].
13486
13487 @item YMAX
13488 Display the maximum Y value contained within the input frame. Expressed in
13489 range of [0-255].
13490
13491 @item UMIN
13492 Display the minimal U value contained within the input frame. Expressed in
13493 range of [0-255].
13494
13495 @item ULOW
13496 Display the U value at the 10% percentile within the input frame. Expressed in
13497 range of [0-255].
13498
13499 @item UAVG
13500 Display the average U value within the input frame. Expressed in range of
13501 [0-255].
13502
13503 @item UHIGH
13504 Display the U value at the 90% percentile within the input frame. Expressed in
13505 range of [0-255].
13506
13507 @item UMAX
13508 Display the maximum U value contained within the input frame. Expressed in
13509 range of [0-255].
13510
13511 @item VMIN
13512 Display the minimal V value contained within the input frame. Expressed in
13513 range of [0-255].
13514
13515 @item VLOW
13516 Display the V value at the 10% percentile within the input frame. Expressed in
13517 range of [0-255].
13518
13519 @item VAVG
13520 Display the average V value within the input frame. Expressed in range of
13521 [0-255].
13522
13523 @item VHIGH
13524 Display the V value at the 90% percentile within the input frame. Expressed in
13525 range of [0-255].
13526
13527 @item VMAX
13528 Display the maximum V value contained within the input frame. Expressed in
13529 range of [0-255].
13530
13531 @item SATMIN
13532 Display the minimal saturation value contained within the input frame.
13533 Expressed in range of [0-~181.02].
13534
13535 @item SATLOW
13536 Display the saturation value at the 10% percentile within the input frame.
13537 Expressed in range of [0-~181.02].
13538
13539 @item SATAVG
13540 Display the average saturation value within the input frame. Expressed in range
13541 of [0-~181.02].
13542
13543 @item SATHIGH
13544 Display the saturation value at the 90% percentile within the input frame.
13545 Expressed in range of [0-~181.02].
13546
13547 @item SATMAX
13548 Display the maximum saturation value contained within the input frame.
13549 Expressed in range of [0-~181.02].
13550
13551 @item HUEMED
13552 Display the median value for hue within the input frame. Expressed in range of
13553 [0-360].
13554
13555 @item HUEAVG
13556 Display the average value for hue within the input frame. Expressed in range of
13557 [0-360].
13558
13559 @item YDIF
13560 Display the average of sample value difference between all values of the Y
13561 plane in the current frame and corresponding values of the previous input frame.
13562 Expressed in range of [0-255].
13563
13564 @item UDIF
13565 Display the average of sample value difference between all values of the U
13566 plane in the current frame and corresponding values of the previous input frame.
13567 Expressed in range of [0-255].
13568
13569 @item VDIF
13570 Display the average of sample value difference between all values of the V
13571 plane in the current frame and corresponding values of the previous input frame.
13572 Expressed in range of [0-255].
13573
13574 @item YBITDEPTH
13575 Display bit depth of Y plane in current frame.
13576 Expressed in range of [0-16].
13577
13578 @item UBITDEPTH
13579 Display bit depth of U plane in current frame.
13580 Expressed in range of [0-16].
13581
13582 @item VBITDEPTH
13583 Display bit depth of V plane in current frame.
13584 Expressed in range of [0-16].
13585 @end table
13586
13587 The filter accepts the following options:
13588
13589 @table @option
13590 @item stat
13591 @item out
13592
13593 @option{stat} specify an additional form of image analysis.
13594 @option{out} output video with the specified type of pixel highlighted.
13595
13596 Both options accept the following values:
13597
13598 @table @samp
13599 @item tout
13600 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
13601 unlike the neighboring pixels of the same field. Examples of temporal outliers
13602 include the results of video dropouts, head clogs, or tape tracking issues.
13603
13604 @item vrep
13605 Identify @var{vertical line repetition}. Vertical line repetition includes
13606 similar rows of pixels within a frame. In born-digital video vertical line
13607 repetition is common, but this pattern is uncommon in video digitized from an
13608 analog source. When it occurs in video that results from the digitization of an
13609 analog source it can indicate concealment from a dropout compensator.
13610
13611 @item brng
13612 Identify pixels that fall outside of legal broadcast range.
13613 @end table
13614
13615 @item color, c
13616 Set the highlight color for the @option{out} option. The default color is
13617 yellow.
13618 @end table
13619
13620 @subsection Examples
13621
13622 @itemize
13623 @item
13624 Output data of various video metrics:
13625 @example
13626 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
13627 @end example
13628
13629 @item
13630 Output specific data about the minimum and maximum values of the Y plane per frame:
13631 @example
13632 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
13633 @end example
13634
13635 @item
13636 Playback video while highlighting pixels that are outside of broadcast range in red.
13637 @example
13638 ffplay example.mov -vf signalstats="out=brng:color=red"
13639 @end example
13640
13641 @item
13642 Playback video with signalstats metadata drawn over the frame.
13643 @example
13644 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
13645 @end example
13646
13647 The contents of signalstat_drawtext.txt used in the command are:
13648 @example
13649 time %@{pts:hms@}
13650 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
13651 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
13652 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
13653 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
13654
13655 @end example
13656 @end itemize
13657
13658 @anchor{signature}
13659 @section signature
13660
13661 Calculates the MPEG-7 Video Signature. The filter can handle more than one
13662 input. In this case the matching between the inputs can be calculated additionally.
13663 The filter always passes through the first input. The signature of each stream can
13664 be written into a file.
13665
13666 It accepts the following options:
13667
13668 @table @option
13669 @item detectmode
13670 Enable or disable the matching process.
13671
13672 Available values are:
13673
13674 @table @samp
13675 @item off
13676 Disable the calculation of a matching (default).
13677 @item full
13678 Calculate the matching for the whole video and output whether the whole video
13679 matches or only parts.
13680 @item fast
13681 Calculate only until a matching is found or the video ends. Should be faster in
13682 some cases.
13683 @end table
13684
13685 @item nb_inputs
13686 Set the number of inputs. The option value must be a non negative integer.
13687 Default value is 1.
13688
13689 @item filename
13690 Set the path to which the output is written. If there is more than one input,
13691 the path must be a prototype, i.e. must contain %d or %0nd (where n is a positive
13692 integer), that will be replaced with the input number. If no filename is
13693 specified, no output will be written. This is the default.
13694
13695 @item format
13696 Choose the output format.
13697
13698 Available values are:
13699
13700 @table @samp
13701 @item binary
13702 Use the specified binary representation (default).
13703 @item xml
13704 Use the specified xml representation.
13705 @end table
13706
13707 @item th_d
13708 Set threshold to detect one word as similar. The option value must be an integer
13709 greater than zero. The default value is 9000.
13710
13711 @item th_dc
13712 Set threshold to detect all words as similar. The option value must be an integer
13713 greater than zero. The default value is 60000.
13714
13715 @item th_xh
13716 Set threshold to detect frames as similar. The option value must be an integer
13717 greater than zero. The default value is 116.
13718
13719 @item th_di
13720 Set the minimum length of a sequence in frames to recognize it as matching
13721 sequence. The option value must be a non negative integer value.
13722 The default value is 0.
13723
13724 @item th_it
13725 Set the minimum relation, that matching frames to all frames must have.
13726 The option value must be a double value between 0 and 1. The default value is 0.5.
13727 @end table
13728
13729 @subsection Examples
13730
13731 @itemize
13732 @item
13733 To calculate the signature of an input video and store it in signature.bin:
13734 @example
13735 ffmpeg -i input.mkv -vf signature=filename=signature.bin -map 0:v -f null -
13736 @end example
13737
13738 @item
13739 To detect whether two videos match and store the signatures in XML format in
13740 signature0.xml and signature1.xml:
13741 @example
13742 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 -
13743 @end example
13744
13745 @end itemize
13746
13747 @anchor{smartblur}
13748 @section smartblur
13749
13750 Blur the input video without impacting the outlines.
13751
13752 It accepts the following options:
13753
13754 @table @option
13755 @item luma_radius, lr
13756 Set the luma radius. The option value must be a float number in
13757 the range [0.1,5.0] that specifies the variance of the gaussian filter
13758 used to blur the image (slower if larger). Default value is 1.0.
13759
13760 @item luma_strength, ls
13761 Set the luma strength. The option value must be a float number
13762 in the range [-1.0,1.0] that configures the blurring. A value included
13763 in [0.0,1.0] will blur the image whereas a value included in
13764 [-1.0,0.0] will sharpen the image. Default value is 1.0.
13765
13766 @item luma_threshold, lt
13767 Set the luma threshold used as a coefficient to determine
13768 whether a pixel should be blurred or not. The option value must be an
13769 integer in the range [-30,30]. A value of 0 will filter all the image,
13770 a value included in [0,30] will filter flat areas and a value included
13771 in [-30,0] will filter edges. Default value is 0.
13772
13773 @item chroma_radius, cr
13774 Set the chroma radius. The option value must be a float number in
13775 the range [0.1,5.0] that specifies the variance of the gaussian filter
13776 used to blur the image (slower if larger). Default value is @option{luma_radius}.
13777
13778 @item chroma_strength, cs
13779 Set the chroma strength. The option value must be a float number
13780 in the range [-1.0,1.0] that configures the blurring. A value included
13781 in [0.0,1.0] will blur the image whereas a value included in
13782 [-1.0,0.0] will sharpen the image. Default value is @option{luma_strength}.
13783
13784 @item chroma_threshold, ct
13785 Set the chroma threshold used as a coefficient to determine
13786 whether a pixel should be blurred or not. The option value must be an
13787 integer in the range [-30,30]. A value of 0 will filter all the image,
13788 a value included in [0,30] will filter flat areas and a value included
13789 in [-30,0] will filter edges. Default value is @option{luma_threshold}.
13790 @end table
13791
13792 If a chroma option is not explicitly set, the corresponding luma value
13793 is set.
13794
13795 @section ssim
13796
13797 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
13798
13799 This filter takes in input two input videos, the first input is
13800 considered the "main" source and is passed unchanged to the
13801 output. The second input is used as a "reference" video for computing
13802 the SSIM.
13803
13804 Both video inputs must have the same resolution and pixel format for
13805 this filter to work correctly. Also it assumes that both inputs
13806 have the same number of frames, which are compared one by one.
13807
13808 The filter stores the calculated SSIM of each frame.
13809
13810 The description of the accepted parameters follows.
13811
13812 @table @option
13813 @item stats_file, f
13814 If specified the filter will use the named file to save the SSIM of
13815 each individual frame. When filename equals "-" the data is sent to
13816 standard output.
13817 @end table
13818
13819 The file printed if @var{stats_file} is selected, contains a sequence of
13820 key/value pairs of the form @var{key}:@var{value} for each compared
13821 couple of frames.
13822
13823 A description of each shown parameter follows:
13824
13825 @table @option
13826 @item n
13827 sequential number of the input frame, starting from 1
13828
13829 @item Y, U, V, R, G, B
13830 SSIM of the compared frames for the component specified by the suffix.
13831
13832 @item All
13833 SSIM of the compared frames for the whole frame.
13834
13835 @item dB
13836 Same as above but in dB representation.
13837 @end table
13838
13839 This filter also supports the @ref{framesync} options.
13840
13841 For example:
13842 @example
13843 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
13844 [main][ref] ssim="stats_file=stats.log" [out]
13845 @end example
13846
13847 On this example the input file being processed is compared with the
13848 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
13849 is stored in @file{stats.log}.
13850
13851 Another example with both psnr and ssim at same time:
13852 @example
13853 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
13854 @end example
13855
13856 @section stereo3d
13857
13858 Convert between different stereoscopic image formats.
13859
13860 The filters accept the following options:
13861
13862 @table @option
13863 @item in
13864 Set stereoscopic image format of input.
13865
13866 Available values for input image formats are:
13867 @table @samp
13868 @item sbsl
13869 side by side parallel (left eye left, right eye right)
13870
13871 @item sbsr
13872 side by side crosseye (right eye left, left eye right)
13873
13874 @item sbs2l
13875 side by side parallel with half width resolution
13876 (left eye left, right eye right)
13877
13878 @item sbs2r
13879 side by side crosseye with half width resolution
13880 (right eye left, left eye right)
13881
13882 @item abl
13883 above-below (left eye above, right eye below)
13884
13885 @item abr
13886 above-below (right eye above, left eye below)
13887
13888 @item ab2l
13889 above-below with half height resolution
13890 (left eye above, right eye below)
13891
13892 @item ab2r
13893 above-below with half height resolution
13894 (right eye above, left eye below)
13895
13896 @item al
13897 alternating frames (left eye first, right eye second)
13898
13899 @item ar
13900 alternating frames (right eye first, left eye second)
13901
13902 @item irl
13903 interleaved rows (left eye has top row, right eye starts on next row)
13904
13905 @item irr
13906 interleaved rows (right eye has top row, left eye starts on next row)
13907
13908 @item icl
13909 interleaved columns, left eye first
13910
13911 @item icr
13912 interleaved columns, right eye first
13913
13914 Default value is @samp{sbsl}.
13915 @end table
13916
13917 @item out
13918 Set stereoscopic image format of output.
13919
13920 @table @samp
13921 @item sbsl
13922 side by side parallel (left eye left, right eye right)
13923
13924 @item sbsr
13925 side by side crosseye (right eye left, left eye right)
13926
13927 @item sbs2l
13928 side by side parallel with half width resolution
13929 (left eye left, right eye right)
13930
13931 @item sbs2r
13932 side by side crosseye with half width resolution
13933 (right eye left, left eye right)
13934
13935 @item abl
13936 above-below (left eye above, right eye below)
13937
13938 @item abr
13939 above-below (right eye above, left eye below)
13940
13941 @item ab2l
13942 above-below with half height resolution
13943 (left eye above, right eye below)
13944
13945 @item ab2r
13946 above-below with half height resolution
13947 (right eye above, left eye below)
13948
13949 @item al
13950 alternating frames (left eye first, right eye second)
13951
13952 @item ar
13953 alternating frames (right eye first, left eye second)
13954
13955 @item irl
13956 interleaved rows (left eye has top row, right eye starts on next row)
13957
13958 @item irr
13959 interleaved rows (right eye has top row, left eye starts on next row)
13960
13961 @item arbg
13962 anaglyph red/blue gray
13963 (red filter on left eye, blue filter on right eye)
13964
13965 @item argg
13966 anaglyph red/green gray
13967 (red filter on left eye, green filter on right eye)
13968
13969 @item arcg
13970 anaglyph red/cyan gray
13971 (red filter on left eye, cyan filter on right eye)
13972
13973 @item arch
13974 anaglyph red/cyan half colored
13975 (red filter on left eye, cyan filter on right eye)
13976
13977 @item arcc
13978 anaglyph red/cyan color
13979 (red filter on left eye, cyan filter on right eye)
13980
13981 @item arcd
13982 anaglyph red/cyan color optimized with the least squares projection of dubois
13983 (red filter on left eye, cyan filter on right eye)
13984
13985 @item agmg
13986 anaglyph green/magenta gray
13987 (green filter on left eye, magenta filter on right eye)
13988
13989 @item agmh
13990 anaglyph green/magenta half colored
13991 (green filter on left eye, magenta filter on right eye)
13992
13993 @item agmc
13994 anaglyph green/magenta colored
13995 (green filter on left eye, magenta filter on right eye)
13996
13997 @item agmd
13998 anaglyph green/magenta color optimized with the least squares projection of dubois
13999 (green filter on left eye, magenta filter on right eye)
14000
14001 @item aybg
14002 anaglyph yellow/blue gray
14003 (yellow filter on left eye, blue filter on right eye)
14004
14005 @item aybh
14006 anaglyph yellow/blue half colored
14007 (yellow filter on left eye, blue filter on right eye)
14008
14009 @item aybc
14010 anaglyph yellow/blue colored
14011 (yellow filter on left eye, blue filter on right eye)
14012
14013 @item aybd
14014 anaglyph yellow/blue color optimized with the least squares projection of dubois
14015 (yellow filter on left eye, blue filter on right eye)
14016
14017 @item ml
14018 mono output (left eye only)
14019
14020 @item mr
14021 mono output (right eye only)
14022
14023 @item chl
14024 checkerboard, left eye first
14025
14026 @item chr
14027 checkerboard, right eye first
14028
14029 @item icl
14030 interleaved columns, left eye first
14031
14032 @item icr
14033 interleaved columns, right eye first
14034
14035 @item hdmi
14036 HDMI frame pack
14037 @end table
14038
14039 Default value is @samp{arcd}.
14040 @end table
14041
14042 @subsection Examples
14043
14044 @itemize
14045 @item
14046 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
14047 @example
14048 stereo3d=sbsl:aybd
14049 @end example
14050
14051 @item
14052 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
14053 @example
14054 stereo3d=abl:sbsr
14055 @end example
14056 @end itemize
14057
14058 @section streamselect, astreamselect
14059 Select video or audio streams.
14060
14061 The filter accepts the following options:
14062
14063 @table @option
14064 @item inputs
14065 Set number of inputs. Default is 2.
14066
14067 @item map
14068 Set input indexes to remap to outputs.
14069 @end table
14070
14071 @subsection Commands
14072
14073 The @code{streamselect} and @code{astreamselect} filter supports the following
14074 commands:
14075
14076 @table @option
14077 @item map
14078 Set input indexes to remap to outputs.
14079 @end table
14080
14081 @subsection Examples
14082
14083 @itemize
14084 @item
14085 Select first 5 seconds 1st stream and rest of time 2nd stream:
14086 @example
14087 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
14088 @end example
14089
14090 @item
14091 Same as above, but for audio:
14092 @example
14093 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
14094 @end example
14095 @end itemize
14096
14097 @section sobel
14098 Apply sobel operator to input video stream.
14099
14100 The filter accepts the following option:
14101
14102 @table @option
14103 @item planes
14104 Set which planes will be processed, unprocessed planes will be copied.
14105 By default value 0xf, all planes will be processed.
14106
14107 @item scale
14108 Set value which will be multiplied with filtered result.
14109
14110 @item delta
14111 Set value which will be added to filtered result.
14112 @end table
14113
14114 @anchor{spp}
14115 @section spp
14116
14117 Apply a simple postprocessing filter that compresses and decompresses the image
14118 at several (or - in the case of @option{quality} level @code{6} - all) shifts
14119 and average the results.
14120
14121 The filter accepts the following options:
14122
14123 @table @option
14124 @item quality
14125 Set quality. This option defines the number of levels for averaging. It accepts
14126 an integer in the range 0-6. If set to @code{0}, the filter will have no
14127 effect. A value of @code{6} means the higher quality. For each increment of
14128 that value the speed drops by a factor of approximately 2.  Default value is
14129 @code{3}.
14130
14131 @item qp
14132 Force a constant quantization parameter. If not set, the filter will use the QP
14133 from the video stream (if available).
14134
14135 @item mode
14136 Set thresholding mode. Available modes are:
14137
14138 @table @samp
14139 @item hard
14140 Set hard thresholding (default).
14141 @item soft
14142 Set soft thresholding (better de-ringing effect, but likely blurrier).
14143 @end table
14144
14145 @item use_bframe_qp
14146 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
14147 option may cause flicker since the B-Frames have often larger QP. Default is
14148 @code{0} (not enabled).
14149 @end table
14150
14151 @anchor{subtitles}
14152 @section subtitles
14153
14154 Draw subtitles on top of input video using the libass library.
14155
14156 To enable compilation of this filter you need to configure FFmpeg with
14157 @code{--enable-libass}. This filter also requires a build with libavcodec and
14158 libavformat to convert the passed subtitles file to ASS (Advanced Substation
14159 Alpha) subtitles format.
14160
14161 The filter accepts the following options:
14162
14163 @table @option
14164 @item filename, f
14165 Set the filename of the subtitle file to read. It must be specified.
14166
14167 @item original_size
14168 Specify the size of the original video, the video for which the ASS file
14169 was composed. For the syntax of this option, check the
14170 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14171 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
14172 correctly scale the fonts if the aspect ratio has been changed.
14173
14174 @item fontsdir
14175 Set a directory path containing fonts that can be used by the filter.
14176 These fonts will be used in addition to whatever the font provider uses.
14177
14178 @item alpha
14179 Process alpha channel, by default alpha channel is untouched.
14180
14181 @item charenc
14182 Set subtitles input character encoding. @code{subtitles} filter only. Only
14183 useful if not UTF-8.
14184
14185 @item stream_index, si
14186 Set subtitles stream index. @code{subtitles} filter only.
14187
14188 @item force_style
14189 Override default style or script info parameters of the subtitles. It accepts a
14190 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
14191 @end table
14192
14193 If the first key is not specified, it is assumed that the first value
14194 specifies the @option{filename}.
14195
14196 For example, to render the file @file{sub.srt} on top of the input
14197 video, use the command:
14198 @example
14199 subtitles=sub.srt
14200 @end example
14201
14202 which is equivalent to:
14203 @example
14204 subtitles=filename=sub.srt
14205 @end example
14206
14207 To render the default subtitles stream from file @file{video.mkv}, use:
14208 @example
14209 subtitles=video.mkv
14210 @end example
14211
14212 To render the second subtitles stream from that file, use:
14213 @example
14214 subtitles=video.mkv:si=1
14215 @end example
14216
14217 To make the subtitles stream from @file{sub.srt} appear in transparent green
14218 @code{DejaVu Serif}, use:
14219 @example
14220 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HAA00FF00'
14221 @end example
14222
14223 @section super2xsai
14224
14225 Scale the input by 2x and smooth using the Super2xSaI (Scale and
14226 Interpolate) pixel art scaling algorithm.
14227
14228 Useful for enlarging pixel art images without reducing sharpness.
14229
14230 @section swaprect
14231
14232 Swap two rectangular objects in video.
14233
14234 This filter accepts the following options:
14235
14236 @table @option
14237 @item w
14238 Set object width.
14239
14240 @item h
14241 Set object height.
14242
14243 @item x1
14244 Set 1st rect x coordinate.
14245
14246 @item y1
14247 Set 1st rect y coordinate.
14248
14249 @item x2
14250 Set 2nd rect x coordinate.
14251
14252 @item y2
14253 Set 2nd rect y coordinate.
14254
14255 All expressions are evaluated once for each frame.
14256 @end table
14257
14258 The all options are expressions containing the following constants:
14259
14260 @table @option
14261 @item w
14262 @item h
14263 The input width and height.
14264
14265 @item a
14266 same as @var{w} / @var{h}
14267
14268 @item sar
14269 input sample aspect ratio
14270
14271 @item dar
14272 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
14273
14274 @item n
14275 The number of the input frame, starting from 0.
14276
14277 @item t
14278 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
14279
14280 @item pos
14281 the position in the file of the input frame, NAN if unknown
14282 @end table
14283
14284 @section swapuv
14285 Swap U & V plane.
14286
14287 @section telecine
14288
14289 Apply telecine process to the video.
14290
14291 This filter accepts the following options:
14292
14293 @table @option
14294 @item first_field
14295 @table @samp
14296 @item top, t
14297 top field first
14298 @item bottom, b
14299 bottom field first
14300 The default value is @code{top}.
14301 @end table
14302
14303 @item pattern
14304 A string of numbers representing the pulldown pattern you wish to apply.
14305 The default value is @code{23}.
14306 @end table
14307
14308 @example
14309 Some typical patterns:
14310
14311 NTSC output (30i):
14312 27.5p: 32222
14313 24p: 23 (classic)
14314 24p: 2332 (preferred)
14315 20p: 33
14316 18p: 334
14317 16p: 3444
14318
14319 PAL output (25i):
14320 27.5p: 12222
14321 24p: 222222222223 ("Euro pulldown")
14322 16.67p: 33
14323 16p: 33333334
14324 @end example
14325
14326 @section threshold
14327
14328 Apply threshold effect to video stream.
14329
14330 This filter needs four video streams to perform thresholding.
14331 First stream is stream we are filtering.
14332 Second stream is holding threshold values, third stream is holding min values,
14333 and last, fourth stream is holding max values.
14334
14335 The filter accepts the following option:
14336
14337 @table @option
14338 @item planes
14339 Set which planes will be processed, unprocessed planes will be copied.
14340 By default value 0xf, all planes will be processed.
14341 @end table
14342
14343 For example if first stream pixel's component value is less then threshold value
14344 of pixel component from 2nd threshold stream, third stream value will picked,
14345 otherwise fourth stream pixel component value will be picked.
14346
14347 Using color source filter one can perform various types of thresholding:
14348
14349 @subsection Examples
14350
14351 @itemize
14352 @item
14353 Binary threshold, using gray color as threshold:
14354 @example
14355 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=black -f lavfi -i color=white -lavfi threshold output.avi
14356 @end example
14357
14358 @item
14359 Inverted binary threshold, using gray color as threshold:
14360 @example
14361 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -f lavfi -i color=black -lavfi threshold output.avi
14362 @end example
14363
14364 @item
14365 Truncate binary threshold, using gray color as threshold:
14366 @example
14367 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=gray -lavfi threshold output.avi
14368 @end example
14369
14370 @item
14371 Threshold to zero, using gray color as threshold:
14372 @example
14373 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -i 320x240.avi -lavfi threshold output.avi
14374 @end example
14375
14376 @item
14377 Inverted threshold to zero, using gray color as threshold:
14378 @example
14379 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=white -lavfi threshold output.avi
14380 @end example
14381 @end itemize
14382
14383 @section thumbnail
14384 Select the most representative frame in a given sequence of consecutive frames.
14385
14386 The filter accepts the following options:
14387
14388 @table @option
14389 @item n
14390 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
14391 will pick one of them, and then handle the next batch of @var{n} frames until
14392 the end. Default is @code{100}.
14393 @end table
14394
14395 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
14396 value will result in a higher memory usage, so a high value is not recommended.
14397
14398 @subsection Examples
14399
14400 @itemize
14401 @item
14402 Extract one picture each 50 frames:
14403 @example
14404 thumbnail=50
14405 @end example
14406
14407 @item
14408 Complete example of a thumbnail creation with @command{ffmpeg}:
14409 @example
14410 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
14411 @end example
14412 @end itemize
14413
14414 @section tile
14415
14416 Tile several successive frames together.
14417
14418 The filter accepts the following options:
14419
14420 @table @option
14421
14422 @item layout
14423 Set the grid size (i.e. the number of lines and columns). For the syntax of
14424 this option, check the
14425 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14426
14427 @item nb_frames
14428 Set the maximum number of frames to render in the given area. It must be less
14429 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
14430 the area will be used.
14431
14432 @item margin
14433 Set the outer border margin in pixels.
14434
14435 @item padding
14436 Set the inner border thickness (i.e. the number of pixels between frames). For
14437 more advanced padding options (such as having different values for the edges),
14438 refer to the pad video filter.
14439
14440 @item color
14441 Specify the color of the unused area. For the syntax of this option, check the
14442 "Color" section in the ffmpeg-utils manual. The default value of @var{color}
14443 is "black".
14444 @end table
14445
14446 @subsection Examples
14447
14448 @itemize
14449 @item
14450 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
14451 @example
14452 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
14453 @end example
14454 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
14455 duplicating each output frame to accommodate the originally detected frame
14456 rate.
14457
14458 @item
14459 Display @code{5} pictures in an area of @code{3x2} frames,
14460 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
14461 mixed flat and named options:
14462 @example
14463 tile=3x2:nb_frames=5:padding=7:margin=2
14464 @end example
14465 @end itemize
14466
14467 @section tinterlace
14468
14469 Perform various types of temporal field interlacing.
14470
14471 Frames are counted starting from 1, so the first input frame is
14472 considered odd.
14473
14474 The filter accepts the following options:
14475
14476 @table @option
14477
14478 @item mode
14479 Specify the mode of the interlacing. This option can also be specified
14480 as a value alone. See below for a list of values for this option.
14481
14482 Available values are:
14483
14484 @table @samp
14485 @item merge, 0
14486 Move odd frames into the upper field, even into the lower field,
14487 generating a double height frame at half frame rate.
14488 @example
14489  ------> time
14490 Input:
14491 Frame 1         Frame 2         Frame 3         Frame 4
14492
14493 11111           22222           33333           44444
14494 11111           22222           33333           44444
14495 11111           22222           33333           44444
14496 11111           22222           33333           44444
14497
14498 Output:
14499 11111                           33333
14500 22222                           44444
14501 11111                           33333
14502 22222                           44444
14503 11111                           33333
14504 22222                           44444
14505 11111                           33333
14506 22222                           44444
14507 @end example
14508
14509 @item drop_even, 1
14510 Only output odd frames, even frames are dropped, generating a frame with
14511 unchanged height at half frame rate.
14512
14513 @example
14514  ------> time
14515 Input:
14516 Frame 1         Frame 2         Frame 3         Frame 4
14517
14518 11111           22222           33333           44444
14519 11111           22222           33333           44444
14520 11111           22222           33333           44444
14521 11111           22222           33333           44444
14522
14523 Output:
14524 11111                           33333
14525 11111                           33333
14526 11111                           33333
14527 11111                           33333
14528 @end example
14529
14530 @item drop_odd, 2
14531 Only output even frames, odd frames are dropped, generating a frame with
14532 unchanged height at half frame rate.
14533
14534 @example
14535  ------> time
14536 Input:
14537 Frame 1         Frame 2         Frame 3         Frame 4
14538
14539 11111           22222           33333           44444
14540 11111           22222           33333           44444
14541 11111           22222           33333           44444
14542 11111           22222           33333           44444
14543
14544 Output:
14545                 22222                           44444
14546                 22222                           44444
14547                 22222                           44444
14548                 22222                           44444
14549 @end example
14550
14551 @item pad, 3
14552 Expand each frame to full height, but pad alternate lines with black,
14553 generating a frame with double height at the same input frame rate.
14554
14555 @example
14556  ------> time
14557 Input:
14558 Frame 1         Frame 2         Frame 3         Frame 4
14559
14560 11111           22222           33333           44444
14561 11111           22222           33333           44444
14562 11111           22222           33333           44444
14563 11111           22222           33333           44444
14564
14565 Output:
14566 11111           .....           33333           .....
14567 .....           22222           .....           44444
14568 11111           .....           33333           .....
14569 .....           22222           .....           44444
14570 11111           .....           33333           .....
14571 .....           22222           .....           44444
14572 11111           .....           33333           .....
14573 .....           22222           .....           44444
14574 @end example
14575
14576
14577 @item interleave_top, 4
14578 Interleave the upper field from odd frames with the lower field from
14579 even frames, generating a frame with unchanged height at half frame rate.
14580
14581 @example
14582  ------> time
14583 Input:
14584 Frame 1         Frame 2         Frame 3         Frame 4
14585
14586 11111<-         22222           33333<-         44444
14587 11111           22222<-         33333           44444<-
14588 11111<-         22222           33333<-         44444
14589 11111           22222<-         33333           44444<-
14590
14591 Output:
14592 11111                           33333
14593 22222                           44444
14594 11111                           33333
14595 22222                           44444
14596 @end example
14597
14598
14599 @item interleave_bottom, 5
14600 Interleave the lower field from odd frames with the upper field from
14601 even frames, generating a frame with unchanged height at half frame rate.
14602
14603 @example
14604  ------> time
14605 Input:
14606 Frame 1         Frame 2         Frame 3         Frame 4
14607
14608 11111           22222<-         33333           44444<-
14609 11111<-         22222           33333<-         44444
14610 11111           22222<-         33333           44444<-
14611 11111<-         22222           33333<-         44444
14612
14613 Output:
14614 22222                           44444
14615 11111                           33333
14616 22222                           44444
14617 11111                           33333
14618 @end example
14619
14620
14621 @item interlacex2, 6
14622 Double frame rate with unchanged height. Frames are inserted each
14623 containing the second temporal field from the previous input frame and
14624 the first temporal field from the next input frame. This mode relies on
14625 the top_field_first flag. Useful for interlaced video displays with no
14626 field synchronisation.
14627
14628 @example
14629  ------> time
14630 Input:
14631 Frame 1         Frame 2         Frame 3         Frame 4
14632
14633 11111           22222           33333           44444
14634  11111           22222           33333           44444
14635 11111           22222           33333           44444
14636  11111           22222           33333           44444
14637
14638 Output:
14639 11111   22222   22222   33333   33333   44444   44444
14640  11111   11111   22222   22222   33333   33333   44444
14641 11111   22222   22222   33333   33333   44444   44444
14642  11111   11111   22222   22222   33333   33333   44444
14643 @end example
14644
14645
14646 @item mergex2, 7
14647 Move odd frames into the upper field, even into the lower field,
14648 generating a double height frame at same frame rate.
14649
14650 @example
14651  ------> time
14652 Input:
14653 Frame 1         Frame 2         Frame 3         Frame 4
14654
14655 11111           22222           33333           44444
14656 11111           22222           33333           44444
14657 11111           22222           33333           44444
14658 11111           22222           33333           44444
14659
14660 Output:
14661 11111           33333           33333           55555
14662 22222           22222           44444           44444
14663 11111           33333           33333           55555
14664 22222           22222           44444           44444
14665 11111           33333           33333           55555
14666 22222           22222           44444           44444
14667 11111           33333           33333           55555
14668 22222           22222           44444           44444
14669 @end example
14670
14671 @end table
14672
14673 Numeric values are deprecated but are accepted for backward
14674 compatibility reasons.
14675
14676 Default mode is @code{merge}.
14677
14678 @item flags
14679 Specify flags influencing the filter process.
14680
14681 Available value for @var{flags} is:
14682
14683 @table @option
14684 @item low_pass_filter, vlfp
14685 Enable linear vertical low-pass filtering in the filter.
14686 Vertical low-pass filtering is required when creating an interlaced
14687 destination from a progressive source which contains high-frequency
14688 vertical detail. Filtering will reduce interlace 'twitter' and Moire
14689 patterning.
14690
14691 @item complex_filter, cvlfp
14692 Enable complex vertical low-pass filtering.
14693 This will slightly less reduce interlace 'twitter' and Moire
14694 patterning but better retain detail and subjective sharpness impression.
14695
14696 @end table
14697
14698 Vertical low-pass filtering can only be enabled for @option{mode}
14699 @var{interleave_top} and @var{interleave_bottom}.
14700
14701 @end table
14702
14703 @section tonemap
14704 Tone map colors from different dynamic ranges.
14705
14706 This filter expects data in single precision floating point, as it needs to
14707 operate on (and can output) out-of-range values. Another filter, such as
14708 @ref{zscale}, is needed to convert the resulting frame to a usable format.
14709
14710 The tonemapping algorithms implemented only work on linear light, so input
14711 data should be linearized beforehand (and possibly correctly tagged).
14712
14713 @example
14714 ffmpeg -i INPUT -vf zscale=transfer=linear,tonemap=clip,zscale=transfer=bt709,format=yuv420p OUTPUT
14715 @end example
14716
14717 @subsection Options
14718 The filter accepts the following options.
14719
14720 @table @option
14721 @item tonemap
14722 Set the tone map algorithm to use.
14723
14724 Possible values are:
14725 @table @var
14726 @item none
14727 Do not apply any tone map, only desaturate overbright pixels.
14728
14729 @item clip
14730 Hard-clip any out-of-range values. Use it for perfect color accuracy for
14731 in-range values, while distorting out-of-range values.
14732
14733 @item linear
14734 Stretch the entire reference gamut to a linear multiple of the display.
14735
14736 @item gamma
14737 Fit a logarithmic transfer between the tone curves.
14738
14739 @item reinhard
14740 Preserve overall image brightness with a simple curve, using nonlinear
14741 contrast, which results in flattening details and degrading color accuracy.
14742
14743 @item hable
14744 Preserve both dark and bright details better than @var{reinhard}, at the cost
14745 of slightly darkening everything. Use it when detail preservation is more
14746 important than color and brightness accuracy.
14747
14748 @item mobius
14749 Smoothly map out-of-range values, while retaining contrast and colors for
14750 in-range material as much as possible. Use it when color accuracy is more
14751 important than detail preservation.
14752 @end table
14753
14754 Default is none.
14755
14756 @item param
14757 Tune the tone mapping algorithm.
14758
14759 This affects the following algorithms:
14760 @table @var
14761 @item none
14762 Ignored.
14763
14764 @item linear
14765 Specifies the scale factor to use while stretching.
14766 Default to 1.0.
14767
14768 @item gamma
14769 Specifies the exponent of the function.
14770 Default to 1.8.
14771
14772 @item clip
14773 Specify an extra linear coefficient to multiply into the signal before clipping.
14774 Default to 1.0.
14775
14776 @item reinhard
14777 Specify the local contrast coefficient at the display peak.
14778 Default to 0.5, which means that in-gamut values will be about half as bright
14779 as when clipping.
14780
14781 @item hable
14782 Ignored.
14783
14784 @item mobius
14785 Specify the transition point from linear to mobius transform. Every value
14786 below this point is guaranteed to be mapped 1:1. The higher the value, the
14787 more accurate the result will be, at the cost of losing bright details.
14788 Default to 0.3, which due to the steep initial slope still preserves in-range
14789 colors fairly accurately.
14790 @end table
14791
14792 @item desat
14793 Apply desaturation for highlights that exceed this level of brightness. The
14794 higher the parameter, the more color information will be preserved. This
14795 setting helps prevent unnaturally blown-out colors for super-highlights, by
14796 (smoothly) turning into white instead. This makes images feel more natural,
14797 at the cost of reducing information about out-of-range colors.
14798
14799 The default of 2.0 is somewhat conservative and will mostly just apply to
14800 skies or directly sunlit surfaces. A setting of 0.0 disables this option.
14801
14802 This option works only if the input frame has a supported color tag.
14803
14804 @item peak
14805 Override signal/nominal/reference peak with this value. Useful when the
14806 embedded peak information in display metadata is not reliable or when tone
14807 mapping from a lower range to a higher range.
14808 @end table
14809
14810 @section transpose
14811
14812 Transpose rows with columns in the input video and optionally flip it.
14813
14814 It accepts the following parameters:
14815
14816 @table @option
14817
14818 @item dir
14819 Specify the transposition direction.
14820
14821 Can assume the following values:
14822 @table @samp
14823 @item 0, 4, cclock_flip
14824 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
14825 @example
14826 L.R     L.l
14827 . . ->  . .
14828 l.r     R.r
14829 @end example
14830
14831 @item 1, 5, clock
14832 Rotate by 90 degrees clockwise, that is:
14833 @example
14834 L.R     l.L
14835 . . ->  . .
14836 l.r     r.R
14837 @end example
14838
14839 @item 2, 6, cclock
14840 Rotate by 90 degrees counterclockwise, that is:
14841 @example
14842 L.R     R.r
14843 . . ->  . .
14844 l.r     L.l
14845 @end example
14846
14847 @item 3, 7, clock_flip
14848 Rotate by 90 degrees clockwise and vertically flip, that is:
14849 @example
14850 L.R     r.R
14851 . . ->  . .
14852 l.r     l.L
14853 @end example
14854 @end table
14855
14856 For values between 4-7, the transposition is only done if the input
14857 video geometry is portrait and not landscape. These values are
14858 deprecated, the @code{passthrough} option should be used instead.
14859
14860 Numerical values are deprecated, and should be dropped in favor of
14861 symbolic constants.
14862
14863 @item passthrough
14864 Do not apply the transposition if the input geometry matches the one
14865 specified by the specified value. It accepts the following values:
14866 @table @samp
14867 @item none
14868 Always apply transposition.
14869 @item portrait
14870 Preserve portrait geometry (when @var{height} >= @var{width}).
14871 @item landscape
14872 Preserve landscape geometry (when @var{width} >= @var{height}).
14873 @end table
14874
14875 Default value is @code{none}.
14876 @end table
14877
14878 For example to rotate by 90 degrees clockwise and preserve portrait
14879 layout:
14880 @example
14881 transpose=dir=1:passthrough=portrait
14882 @end example
14883
14884 The command above can also be specified as:
14885 @example
14886 transpose=1:portrait
14887 @end example
14888
14889 @section trim
14890 Trim the input so that the output contains one continuous subpart of the input.
14891
14892 It accepts the following parameters:
14893 @table @option
14894 @item start
14895 Specify the time of the start of the kept section, i.e. the frame with the
14896 timestamp @var{start} will be the first frame in the output.
14897
14898 @item end
14899 Specify the time of the first frame that will be dropped, i.e. the frame
14900 immediately preceding the one with the timestamp @var{end} will be the last
14901 frame in the output.
14902
14903 @item start_pts
14904 This is the same as @var{start}, except this option sets the start timestamp
14905 in timebase units instead of seconds.
14906
14907 @item end_pts
14908 This is the same as @var{end}, except this option sets the end timestamp
14909 in timebase units instead of seconds.
14910
14911 @item duration
14912 The maximum duration of the output in seconds.
14913
14914 @item start_frame
14915 The number of the first frame that should be passed to the output.
14916
14917 @item end_frame
14918 The number of the first frame that should be dropped.
14919 @end table
14920
14921 @option{start}, @option{end}, and @option{duration} are expressed as time
14922 duration specifications; see
14923 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
14924 for the accepted syntax.
14925
14926 Note that the first two sets of the start/end options and the @option{duration}
14927 option look at the frame timestamp, while the _frame variants simply count the
14928 frames that pass through the filter. Also note that this filter does not modify
14929 the timestamps. If you wish for the output timestamps to start at zero, insert a
14930 setpts filter after the trim filter.
14931
14932 If multiple start or end options are set, this filter tries to be greedy and
14933 keep all the frames that match at least one of the specified constraints. To keep
14934 only the part that matches all the constraints at once, chain multiple trim
14935 filters.
14936
14937 The defaults are such that all the input is kept. So it is possible to set e.g.
14938 just the end values to keep everything before the specified time.
14939
14940 Examples:
14941 @itemize
14942 @item
14943 Drop everything except the second minute of input:
14944 @example
14945 ffmpeg -i INPUT -vf trim=60:120
14946 @end example
14947
14948 @item
14949 Keep only the first second:
14950 @example
14951 ffmpeg -i INPUT -vf trim=duration=1
14952 @end example
14953
14954 @end itemize
14955
14956 @section unpremultiply
14957 Apply alpha unpremultiply effect to input video stream using first plane
14958 of second stream as alpha.
14959
14960 Both streams must have same dimensions and same pixel format.
14961
14962 The filter accepts the following option:
14963
14964 @table @option
14965 @item planes
14966 Set which planes will be processed, unprocessed planes will be copied.
14967 By default value 0xf, all planes will be processed.
14968
14969 If the format has 1 or 2 components, then luma is bit 0.
14970 If the format has 3 or 4 components:
14971 for RGB formats bit 0 is green, bit 1 is blue and bit 2 is red;
14972 for YUV formats bit 0 is luma, bit 1 is chroma-U and bit 2 is chroma-V.
14973 If present, the alpha channel is always the last bit.
14974
14975 @item inplace
14976 Do not require 2nd input for processing, instead use alpha plane from input stream.
14977 @end table
14978
14979 @anchor{unsharp}
14980 @section unsharp
14981
14982 Sharpen or blur the input video.
14983
14984 It accepts the following parameters:
14985
14986 @table @option
14987 @item luma_msize_x, lx
14988 Set the luma matrix horizontal size. It must be an odd integer between
14989 3 and 23. The default value is 5.
14990
14991 @item luma_msize_y, ly
14992 Set the luma matrix vertical size. It must be an odd integer between 3
14993 and 23. The default value is 5.
14994
14995 @item luma_amount, la
14996 Set the luma effect strength. It must be a floating point number, reasonable
14997 values lay between -1.5 and 1.5.
14998
14999 Negative values will blur the input video, while positive values will
15000 sharpen it, a value of zero will disable the effect.
15001
15002 Default value is 1.0.
15003
15004 @item chroma_msize_x, cx
15005 Set the chroma matrix horizontal size. It must be an odd integer
15006 between 3 and 23. The default value is 5.
15007
15008 @item chroma_msize_y, cy
15009 Set the chroma matrix vertical size. It must be an odd integer
15010 between 3 and 23. The default value is 5.
15011
15012 @item chroma_amount, ca
15013 Set the chroma effect strength. It must be a floating point number, reasonable
15014 values lay between -1.5 and 1.5.
15015
15016 Negative values will blur the input video, while positive values will
15017 sharpen it, a value of zero will disable the effect.
15018
15019 Default value is 0.0.
15020
15021 @item opencl
15022 If set to 1, specify using OpenCL capabilities, only available if
15023 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
15024
15025 @end table
15026
15027 All parameters are optional and default to the equivalent of the
15028 string '5:5:1.0:5:5:0.0'.
15029
15030 @subsection Examples
15031
15032 @itemize
15033 @item
15034 Apply strong luma sharpen effect:
15035 @example
15036 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
15037 @end example
15038
15039 @item
15040 Apply a strong blur of both luma and chroma parameters:
15041 @example
15042 unsharp=7:7:-2:7:7:-2
15043 @end example
15044 @end itemize
15045
15046 @section uspp
15047
15048 Apply ultra slow/simple postprocessing filter that compresses and decompresses
15049 the image at several (or - in the case of @option{quality} level @code{8} - all)
15050 shifts and average the results.
15051
15052 The way this differs from the behavior of spp is that uspp actually encodes &
15053 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
15054 DCT similar to MJPEG.
15055
15056 The filter accepts the following options:
15057
15058 @table @option
15059 @item quality
15060 Set quality. This option defines the number of levels for averaging. It accepts
15061 an integer in the range 0-8. If set to @code{0}, the filter will have no
15062 effect. A value of @code{8} means the higher quality. For each increment of
15063 that value the speed drops by a factor of approximately 2.  Default value is
15064 @code{3}.
15065
15066 @item qp
15067 Force a constant quantization parameter. If not set, the filter will use the QP
15068 from the video stream (if available).
15069 @end table
15070
15071 @section vaguedenoiser
15072
15073 Apply a wavelet based denoiser.
15074
15075 It transforms each frame from the video input into the wavelet domain,
15076 using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
15077 the obtained coefficients. It does an inverse wavelet transform after.
15078 Due to wavelet properties, it should give a nice smoothed result, and
15079 reduced noise, without blurring picture features.
15080
15081 This filter accepts the following options:
15082
15083 @table @option
15084 @item threshold
15085 The filtering strength. The higher, the more filtered the video will be.
15086 Hard thresholding can use a higher threshold than soft thresholding
15087 before the video looks overfiltered. Default value is 2.
15088
15089 @item method
15090 The filtering method the filter will use.
15091
15092 It accepts the following values:
15093 @table @samp
15094 @item hard
15095 All values under the threshold will be zeroed.
15096
15097 @item soft
15098 All values under the threshold will be zeroed. All values above will be
15099 reduced by the threshold.
15100
15101 @item garrote
15102 Scales or nullifies coefficients - intermediary between (more) soft and
15103 (less) hard thresholding.
15104 @end table
15105
15106 Default is garrote.
15107
15108 @item nsteps
15109 Number of times, the wavelet will decompose the picture. Picture can't
15110 be decomposed beyond a particular point (typically, 8 for a 640x480
15111 frame - as 2^9 = 512 > 480). Valid values are integers between 1 and 32. Default value is 6.
15112
15113 @item percent
15114 Partial of full denoising (limited coefficients shrinking), from 0 to 100. Default value is 85.
15115
15116 @item planes
15117 A list of the planes to process. By default all planes are processed.
15118 @end table
15119
15120 @section vectorscope
15121
15122 Display 2 color component values in the two dimensional graph (which is called
15123 a vectorscope).
15124
15125 This filter accepts the following options:
15126
15127 @table @option
15128 @item mode, m
15129 Set vectorscope mode.
15130
15131 It accepts the following values:
15132 @table @samp
15133 @item gray
15134 Gray values are displayed on graph, higher brightness means more pixels have
15135 same component color value on location in graph. This is the default mode.
15136
15137 @item color
15138 Gray values are displayed on graph. Surrounding pixels values which are not
15139 present in video frame are drawn in gradient of 2 color components which are
15140 set by option @code{x} and @code{y}. The 3rd color component is static.
15141
15142 @item color2
15143 Actual color components values present in video frame are displayed on graph.
15144
15145 @item color3
15146 Similar as color2 but higher frequency of same values @code{x} and @code{y}
15147 on graph increases value of another color component, which is luminance by
15148 default values of @code{x} and @code{y}.
15149
15150 @item color4
15151 Actual colors present in video frame are displayed on graph. If two different
15152 colors map to same position on graph then color with higher value of component
15153 not present in graph is picked.
15154
15155 @item color5
15156 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
15157 component picked from radial gradient.
15158 @end table
15159
15160 @item x
15161 Set which color component will be represented on X-axis. Default is @code{1}.
15162
15163 @item y
15164 Set which color component will be represented on Y-axis. Default is @code{2}.
15165
15166 @item intensity, i
15167 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
15168 of color component which represents frequency of (X, Y) location in graph.
15169
15170 @item envelope, e
15171 @table @samp
15172 @item none
15173 No envelope, this is default.
15174
15175 @item instant
15176 Instant envelope, even darkest single pixel will be clearly highlighted.
15177
15178 @item peak
15179 Hold maximum and minimum values presented in graph over time. This way you
15180 can still spot out of range values without constantly looking at vectorscope.
15181
15182 @item peak+instant
15183 Peak and instant envelope combined together.
15184 @end table
15185
15186 @item graticule, g
15187 Set what kind of graticule to draw.
15188 @table @samp
15189 @item none
15190 @item green
15191 @item color
15192 @end table
15193
15194 @item opacity, o
15195 Set graticule opacity.
15196
15197 @item flags, f
15198 Set graticule flags.
15199
15200 @table @samp
15201 @item white
15202 Draw graticule for white point.
15203
15204 @item black
15205 Draw graticule for black point.
15206
15207 @item name
15208 Draw color points short names.
15209 @end table
15210
15211 @item bgopacity, b
15212 Set background opacity.
15213
15214 @item lthreshold, l
15215 Set low threshold for color component not represented on X or Y axis.
15216 Values lower than this value will be ignored. Default is 0.
15217 Note this value is multiplied with actual max possible value one pixel component
15218 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
15219 is 0.1 * 255 = 25.
15220
15221 @item hthreshold, h
15222 Set high threshold for color component not represented on X or Y axis.
15223 Values higher than this value will be ignored. Default is 1.
15224 Note this value is multiplied with actual max possible value one pixel component
15225 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
15226 is 0.9 * 255 = 230.
15227
15228 @item colorspace, c
15229 Set what kind of colorspace to use when drawing graticule.
15230 @table @samp
15231 @item auto
15232 @item 601
15233 @item 709
15234 @end table
15235 Default is auto.
15236 @end table
15237
15238 @anchor{vidstabdetect}
15239 @section vidstabdetect
15240
15241 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
15242 @ref{vidstabtransform} for pass 2.
15243
15244 This filter generates a file with relative translation and rotation
15245 transform information about subsequent frames, which is then used by
15246 the @ref{vidstabtransform} filter.
15247
15248 To enable compilation of this filter you need to configure FFmpeg with
15249 @code{--enable-libvidstab}.
15250
15251 This filter accepts the following options:
15252
15253 @table @option
15254 @item result
15255 Set the path to the file used to write the transforms information.
15256 Default value is @file{transforms.trf}.
15257
15258 @item shakiness
15259 Set how shaky the video is and how quick the camera is. It accepts an
15260 integer in the range 1-10, a value of 1 means little shakiness, a
15261 value of 10 means strong shakiness. Default value is 5.
15262
15263 @item accuracy
15264 Set the accuracy of the detection process. It must be a value in the
15265 range 1-15. A value of 1 means low accuracy, a value of 15 means high
15266 accuracy. Default value is 15.
15267
15268 @item stepsize
15269 Set stepsize of the search process. The region around minimum is
15270 scanned with 1 pixel resolution. Default value is 6.
15271
15272 @item mincontrast
15273 Set minimum contrast. Below this value a local measurement field is
15274 discarded. Must be a floating point value in the range 0-1. Default
15275 value is 0.3.
15276
15277 @item tripod
15278 Set reference frame number for tripod mode.
15279
15280 If enabled, the motion of the frames is compared to a reference frame
15281 in the filtered stream, identified by the specified number. The idea
15282 is to compensate all movements in a more-or-less static scene and keep
15283 the camera view absolutely still.
15284
15285 If set to 0, it is disabled. The frames are counted starting from 1.
15286
15287 @item show
15288 Show fields and transforms in the resulting frames. It accepts an
15289 integer in the range 0-2. Default value is 0, which disables any
15290 visualization.
15291 @end table
15292
15293 @subsection Examples
15294
15295 @itemize
15296 @item
15297 Use default values:
15298 @example
15299 vidstabdetect
15300 @end example
15301
15302 @item
15303 Analyze strongly shaky movie and put the results in file
15304 @file{mytransforms.trf}:
15305 @example
15306 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
15307 @end example
15308
15309 @item
15310 Visualize the result of internal transformations in the resulting
15311 video:
15312 @example
15313 vidstabdetect=show=1
15314 @end example
15315
15316 @item
15317 Analyze a video with medium shakiness using @command{ffmpeg}:
15318 @example
15319 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
15320 @end example
15321 @end itemize
15322
15323 @anchor{vidstabtransform}
15324 @section vidstabtransform
15325
15326 Video stabilization/deshaking: pass 2 of 2,
15327 see @ref{vidstabdetect} for pass 1.
15328
15329 Read a file with transform information for each frame and
15330 apply/compensate them. Together with the @ref{vidstabdetect}
15331 filter this can be used to deshake videos. See also
15332 @url{http://public.hronopik.de/vid.stab}. It is important to also use
15333 the @ref{unsharp} filter, see below.
15334
15335 To enable compilation of this filter you need to configure FFmpeg with
15336 @code{--enable-libvidstab}.
15337
15338 @subsection Options
15339
15340 @table @option
15341 @item input
15342 Set path to the file used to read the transforms. Default value is
15343 @file{transforms.trf}.
15344
15345 @item smoothing
15346 Set the number of frames (value*2 + 1) used for lowpass filtering the
15347 camera movements. Default value is 10.
15348
15349 For example a number of 10 means that 21 frames are used (10 in the
15350 past and 10 in the future) to smoothen the motion in the video. A
15351 larger value leads to a smoother video, but limits the acceleration of
15352 the camera (pan/tilt movements). 0 is a special case where a static
15353 camera is simulated.
15354
15355 @item optalgo
15356 Set the camera path optimization algorithm.
15357
15358 Accepted values are:
15359 @table @samp
15360 @item gauss
15361 gaussian kernel low-pass filter on camera motion (default)
15362 @item avg
15363 averaging on transformations
15364 @end table
15365
15366 @item maxshift
15367 Set maximal number of pixels to translate frames. Default value is -1,
15368 meaning no limit.
15369
15370 @item maxangle
15371 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
15372 value is -1, meaning no limit.
15373
15374 @item crop
15375 Specify how to deal with borders that may be visible due to movement
15376 compensation.
15377
15378 Available values are:
15379 @table @samp
15380 @item keep
15381 keep image information from previous frame (default)
15382 @item black
15383 fill the border black
15384 @end table
15385
15386 @item invert
15387 Invert transforms if set to 1. Default value is 0.
15388
15389 @item relative
15390 Consider transforms as relative to previous frame if set to 1,
15391 absolute if set to 0. Default value is 0.
15392
15393 @item zoom
15394 Set percentage to zoom. A positive value will result in a zoom-in
15395 effect, a negative value in a zoom-out effect. Default value is 0 (no
15396 zoom).
15397
15398 @item optzoom
15399 Set optimal zooming to avoid borders.
15400
15401 Accepted values are:
15402 @table @samp
15403 @item 0
15404 disabled
15405 @item 1
15406 optimal static zoom value is determined (only very strong movements
15407 will lead to visible borders) (default)
15408 @item 2
15409 optimal adaptive zoom value is determined (no borders will be
15410 visible), see @option{zoomspeed}
15411 @end table
15412
15413 Note that the value given at zoom is added to the one calculated here.
15414
15415 @item zoomspeed
15416 Set percent to zoom maximally each frame (enabled when
15417 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
15418 0.25.
15419
15420 @item interpol
15421 Specify type of interpolation.
15422
15423 Available values are:
15424 @table @samp
15425 @item no
15426 no interpolation
15427 @item linear
15428 linear only horizontal
15429 @item bilinear
15430 linear in both directions (default)
15431 @item bicubic
15432 cubic in both directions (slow)
15433 @end table
15434
15435 @item tripod
15436 Enable virtual tripod mode if set to 1, which is equivalent to
15437 @code{relative=0:smoothing=0}. Default value is 0.
15438
15439 Use also @code{tripod} option of @ref{vidstabdetect}.
15440
15441 @item debug
15442 Increase log verbosity if set to 1. Also the detected global motions
15443 are written to the temporary file @file{global_motions.trf}. Default
15444 value is 0.
15445 @end table
15446
15447 @subsection Examples
15448
15449 @itemize
15450 @item
15451 Use @command{ffmpeg} for a typical stabilization with default values:
15452 @example
15453 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
15454 @end example
15455
15456 Note the use of the @ref{unsharp} filter which is always recommended.
15457
15458 @item
15459 Zoom in a bit more and load transform data from a given file:
15460 @example
15461 vidstabtransform=zoom=5:input="mytransforms.trf"
15462 @end example
15463
15464 @item
15465 Smoothen the video even more:
15466 @example
15467 vidstabtransform=smoothing=30
15468 @end example
15469 @end itemize
15470
15471 @section vflip
15472
15473 Flip the input video vertically.
15474
15475 For example, to vertically flip a video with @command{ffmpeg}:
15476 @example
15477 ffmpeg -i in.avi -vf "vflip" out.avi
15478 @end example
15479
15480 @anchor{vignette}
15481 @section vignette
15482
15483 Make or reverse a natural vignetting effect.
15484
15485 The filter accepts the following options:
15486
15487 @table @option
15488 @item angle, a
15489 Set lens angle expression as a number of radians.
15490
15491 The value is clipped in the @code{[0,PI/2]} range.
15492
15493 Default value: @code{"PI/5"}
15494
15495 @item x0
15496 @item y0
15497 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
15498 by default.
15499
15500 @item mode
15501 Set forward/backward mode.
15502
15503 Available modes are:
15504 @table @samp
15505 @item forward
15506 The larger the distance from the central point, the darker the image becomes.
15507
15508 @item backward
15509 The larger the distance from the central point, the brighter the image becomes.
15510 This can be used to reverse a vignette effect, though there is no automatic
15511 detection to extract the lens @option{angle} and other settings (yet). It can
15512 also be used to create a burning effect.
15513 @end table
15514
15515 Default value is @samp{forward}.
15516
15517 @item eval
15518 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
15519
15520 It accepts the following values:
15521 @table @samp
15522 @item init
15523 Evaluate expressions only once during the filter initialization.
15524
15525 @item frame
15526 Evaluate expressions for each incoming frame. This is way slower than the
15527 @samp{init} mode since it requires all the scalers to be re-computed, but it
15528 allows advanced dynamic expressions.
15529 @end table
15530
15531 Default value is @samp{init}.
15532
15533 @item dither
15534 Set dithering to reduce the circular banding effects. Default is @code{1}
15535 (enabled).
15536
15537 @item aspect
15538 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
15539 Setting this value to the SAR of the input will make a rectangular vignetting
15540 following the dimensions of the video.
15541
15542 Default is @code{1/1}.
15543 @end table
15544
15545 @subsection Expressions
15546
15547 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
15548 following parameters.
15549
15550 @table @option
15551 @item w
15552 @item h
15553 input width and height
15554
15555 @item n
15556 the number of input frame, starting from 0
15557
15558 @item pts
15559 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
15560 @var{TB} units, NAN if undefined
15561
15562 @item r
15563 frame rate of the input video, NAN if the input frame rate is unknown
15564
15565 @item t
15566 the PTS (Presentation TimeStamp) of the filtered video frame,
15567 expressed in seconds, NAN if undefined
15568
15569 @item tb
15570 time base of the input video
15571 @end table
15572
15573
15574 @subsection Examples
15575
15576 @itemize
15577 @item
15578 Apply simple strong vignetting effect:
15579 @example
15580 vignette=PI/4
15581 @end example
15582
15583 @item
15584 Make a flickering vignetting:
15585 @example
15586 vignette='PI/4+random(1)*PI/50':eval=frame
15587 @end example
15588
15589 @end itemize
15590
15591 @section vmafmotion
15592
15593 Obtain the average vmaf motion score of a video.
15594 It is one of the component filters of VMAF.
15595
15596 The obtained average motion score is printed through the logging system.
15597
15598 In the below example the input file @file{ref.mpg} is being processed and score
15599 is computed.
15600
15601 @example
15602 ffmpeg -i ref.mpg -lavfi vmafmotion -f null -
15603 @end example
15604
15605 @section vstack
15606 Stack input videos vertically.
15607
15608 All streams must be of same pixel format and of same width.
15609
15610 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
15611 to create same output.
15612
15613 The filter accept the following option:
15614
15615 @table @option
15616 @item inputs
15617 Set number of input streams. Default is 2.
15618
15619 @item shortest
15620 If set to 1, force the output to terminate when the shortest input
15621 terminates. Default value is 0.
15622 @end table
15623
15624 @section w3fdif
15625
15626 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
15627 Deinterlacing Filter").
15628
15629 Based on the process described by Martin Weston for BBC R&D, and
15630 implemented based on the de-interlace algorithm written by Jim
15631 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
15632 uses filter coefficients calculated by BBC R&D.
15633
15634 There are two sets of filter coefficients, so called "simple":
15635 and "complex". Which set of filter coefficients is used can
15636 be set by passing an optional parameter:
15637
15638 @table @option
15639 @item filter
15640 Set the interlacing filter coefficients. Accepts one of the following values:
15641
15642 @table @samp
15643 @item simple
15644 Simple filter coefficient set.
15645 @item complex
15646 More-complex filter coefficient set.
15647 @end table
15648 Default value is @samp{complex}.
15649
15650 @item deint
15651 Specify which frames to deinterlace. Accept one of the following values:
15652
15653 @table @samp
15654 @item all
15655 Deinterlace all frames,
15656 @item interlaced
15657 Only deinterlace frames marked as interlaced.
15658 @end table
15659
15660 Default value is @samp{all}.
15661 @end table
15662
15663 @section waveform
15664 Video waveform monitor.
15665
15666 The waveform monitor plots color component intensity. By default luminance
15667 only. Each column of the waveform corresponds to a column of pixels in the
15668 source video.
15669
15670 It accepts the following options:
15671
15672 @table @option
15673 @item mode, m
15674 Can be either @code{row}, or @code{column}. Default is @code{column}.
15675 In row mode, the graph on the left side represents color component value 0 and
15676 the right side represents value = 255. In column mode, the top side represents
15677 color component value = 0 and bottom side represents value = 255.
15678
15679 @item intensity, i
15680 Set intensity. Smaller values are useful to find out how many values of the same
15681 luminance are distributed across input rows/columns.
15682 Default value is @code{0.04}. Allowed range is [0, 1].
15683
15684 @item mirror, r
15685 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
15686 In mirrored mode, higher values will be represented on the left
15687 side for @code{row} mode and at the top for @code{column} mode. Default is
15688 @code{1} (mirrored).
15689
15690 @item display, d
15691 Set display mode.
15692 It accepts the following values:
15693 @table @samp
15694 @item overlay
15695 Presents information identical to that in the @code{parade}, except
15696 that the graphs representing color components are superimposed directly
15697 over one another.
15698
15699 This display mode makes it easier to spot relative differences or similarities
15700 in overlapping areas of the color components that are supposed to be identical,
15701 such as neutral whites, grays, or blacks.
15702
15703 @item stack
15704 Display separate graph for the color components side by side in
15705 @code{row} mode or one below the other in @code{column} mode.
15706
15707 @item parade
15708 Display separate graph for the color components side by side in
15709 @code{column} mode or one below the other in @code{row} mode.
15710
15711 Using this display mode makes it easy to spot color casts in the highlights
15712 and shadows of an image, by comparing the contours of the top and the bottom
15713 graphs of each waveform. Since whites, grays, and blacks are characterized
15714 by exactly equal amounts of red, green, and blue, neutral areas of the picture
15715 should display three waveforms of roughly equal width/height. If not, the
15716 correction is easy to perform by making level adjustments the three waveforms.
15717 @end table
15718 Default is @code{stack}.
15719
15720 @item components, c
15721 Set which color components to display. Default is 1, which means only luminance
15722 or red color component if input is in RGB colorspace. If is set for example to
15723 7 it will display all 3 (if) available color components.
15724
15725 @item envelope, e
15726 @table @samp
15727 @item none
15728 No envelope, this is default.
15729
15730 @item instant
15731 Instant envelope, minimum and maximum values presented in graph will be easily
15732 visible even with small @code{step} value.
15733
15734 @item peak
15735 Hold minimum and maximum values presented in graph across time. This way you
15736 can still spot out of range values without constantly looking at waveforms.
15737
15738 @item peak+instant
15739 Peak and instant envelope combined together.
15740 @end table
15741
15742 @item filter, f
15743 @table @samp
15744 @item lowpass
15745 No filtering, this is default.
15746
15747 @item flat
15748 Luma and chroma combined together.
15749
15750 @item aflat
15751 Similar as above, but shows difference between blue and red chroma.
15752
15753 @item chroma
15754 Displays only chroma.
15755
15756 @item color
15757 Displays actual color value on waveform.
15758
15759 @item acolor
15760 Similar as above, but with luma showing frequency of chroma values.
15761 @end table
15762
15763 @item graticule, g
15764 Set which graticule to display.
15765
15766 @table @samp
15767 @item none
15768 Do not display graticule.
15769
15770 @item green
15771 Display green graticule showing legal broadcast ranges.
15772 @end table
15773
15774 @item opacity, o
15775 Set graticule opacity.
15776
15777 @item flags, fl
15778 Set graticule flags.
15779
15780 @table @samp
15781 @item numbers
15782 Draw numbers above lines. By default enabled.
15783
15784 @item dots
15785 Draw dots instead of lines.
15786 @end table
15787
15788 @item scale, s
15789 Set scale used for displaying graticule.
15790
15791 @table @samp
15792 @item digital
15793 @item millivolts
15794 @item ire
15795 @end table
15796 Default is digital.
15797
15798 @item bgopacity, b
15799 Set background opacity.
15800 @end table
15801
15802 @section weave, doubleweave
15803
15804 The @code{weave} takes a field-based video input and join
15805 each two sequential fields into single frame, producing a new double
15806 height clip with half the frame rate and half the frame count.
15807
15808 The @code{doubleweave} works same as @code{weave} but without
15809 halving frame rate and frame count.
15810
15811 It accepts the following option:
15812
15813 @table @option
15814 @item first_field
15815 Set first field. Available values are:
15816
15817 @table @samp
15818 @item top, t
15819 Set the frame as top-field-first.
15820
15821 @item bottom, b
15822 Set the frame as bottom-field-first.
15823 @end table
15824 @end table
15825
15826 @subsection Examples
15827
15828 @itemize
15829 @item
15830 Interlace video using @ref{select} and @ref{separatefields} filter:
15831 @example
15832 separatefields,select=eq(mod(n,4),0)+eq(mod(n,4),3),weave
15833 @end example
15834 @end itemize
15835
15836 @section xbr
15837 Apply the xBR high-quality magnification filter which is designed for pixel
15838 art. It follows a set of edge-detection rules, see
15839 @url{http://www.libretro.com/forums/viewtopic.php?f=6&t=134}.
15840
15841 It accepts the following option:
15842
15843 @table @option
15844 @item n
15845 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
15846 @code{3xBR} and @code{4} for @code{4xBR}.
15847 Default is @code{3}.
15848 @end table
15849
15850 @anchor{yadif}
15851 @section yadif
15852
15853 Deinterlace the input video ("yadif" means "yet another deinterlacing
15854 filter").
15855
15856 It accepts the following parameters:
15857
15858
15859 @table @option
15860
15861 @item mode
15862 The interlacing mode to adopt. It accepts one of the following values:
15863
15864 @table @option
15865 @item 0, send_frame
15866 Output one frame for each frame.
15867 @item 1, send_field
15868 Output one frame for each field.
15869 @item 2, send_frame_nospatial
15870 Like @code{send_frame}, but it skips the spatial interlacing check.
15871 @item 3, send_field_nospatial
15872 Like @code{send_field}, but it skips the spatial interlacing check.
15873 @end table
15874
15875 The default value is @code{send_frame}.
15876
15877 @item parity
15878 The picture field parity assumed for the input interlaced video. It accepts one
15879 of the following values:
15880
15881 @table @option
15882 @item 0, tff
15883 Assume the top field is first.
15884 @item 1, bff
15885 Assume the bottom field is first.
15886 @item -1, auto
15887 Enable automatic detection of field parity.
15888 @end table
15889
15890 The default value is @code{auto}.
15891 If the interlacing is unknown or the decoder does not export this information,
15892 top field first will be assumed.
15893
15894 @item deint
15895 Specify which frames to deinterlace. Accept one of the following
15896 values:
15897
15898 @table @option
15899 @item 0, all
15900 Deinterlace all frames.
15901 @item 1, interlaced
15902 Only deinterlace frames marked as interlaced.
15903 @end table
15904
15905 The default value is @code{all}.
15906 @end table
15907
15908 @section zoompan
15909
15910 Apply Zoom & Pan effect.
15911
15912 This filter accepts the following options:
15913
15914 @table @option
15915 @item zoom, z
15916 Set the zoom expression. Default is 1.
15917
15918 @item x
15919 @item y
15920 Set the x and y expression. Default is 0.
15921
15922 @item d
15923 Set the duration expression in number of frames.
15924 This sets for how many number of frames effect will last for
15925 single input image.
15926
15927 @item s
15928 Set the output image size, default is 'hd720'.
15929
15930 @item fps
15931 Set the output frame rate, default is '25'.
15932 @end table
15933
15934 Each expression can contain the following constants:
15935
15936 @table @option
15937 @item in_w, iw
15938 Input width.
15939
15940 @item in_h, ih
15941 Input height.
15942
15943 @item out_w, ow
15944 Output width.
15945
15946 @item out_h, oh
15947 Output height.
15948
15949 @item in
15950 Input frame count.
15951
15952 @item on
15953 Output frame count.
15954
15955 @item x
15956 @item y
15957 Last calculated 'x' and 'y' position from 'x' and 'y' expression
15958 for current input frame.
15959
15960 @item px
15961 @item py
15962 'x' and 'y' of last output frame of previous input frame or 0 when there was
15963 not yet such frame (first input frame).
15964
15965 @item zoom
15966 Last calculated zoom from 'z' expression for current input frame.
15967
15968 @item pzoom
15969 Last calculated zoom of last output frame of previous input frame.
15970
15971 @item duration
15972 Number of output frames for current input frame. Calculated from 'd' expression
15973 for each input frame.
15974
15975 @item pduration
15976 number of output frames created for previous input frame
15977
15978 @item a
15979 Rational number: input width / input height
15980
15981 @item sar
15982 sample aspect ratio
15983
15984 @item dar
15985 display aspect ratio
15986
15987 @end table
15988
15989 @subsection Examples
15990
15991 @itemize
15992 @item
15993 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
15994 @example
15995 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
15996 @end example
15997
15998 @item
15999 Zoom-in up to 1.5 and pan always at center of picture:
16000 @example
16001 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
16002 @end example
16003
16004 @item
16005 Same as above but without pausing:
16006 @example
16007 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
16008 @end example
16009 @end itemize
16010
16011 @anchor{zscale}
16012 @section zscale
16013 Scale (resize) the input video, using the z.lib library:
16014 https://github.com/sekrit-twc/zimg.
16015
16016 The zscale filter forces the output display aspect ratio to be the same
16017 as the input, by changing the output sample aspect ratio.
16018
16019 If the input image format is different from the format requested by
16020 the next filter, the zscale filter will convert the input to the
16021 requested format.
16022
16023 @subsection Options
16024 The filter accepts the following options.
16025
16026 @table @option
16027 @item width, w
16028 @item height, h
16029 Set the output video dimension expression. Default value is the input
16030 dimension.
16031
16032 If the @var{width} or @var{w} value is 0, the input width is used for
16033 the output. If the @var{height} or @var{h} value is 0, the input height
16034 is used for the output.
16035
16036 If one and only one of the values is -n with n >= 1, the zscale filter
16037 will use a value that maintains the aspect ratio of the input image,
16038 calculated from the other specified dimension. After that it will,
16039 however, make sure that the calculated dimension is divisible by n and
16040 adjust the value if necessary.
16041
16042 If both values are -n with n >= 1, the behavior will be identical to
16043 both values being set to 0 as previously detailed.
16044
16045 See below for the list of accepted constants for use in the dimension
16046 expression.
16047
16048 @item size, s
16049 Set the video size. For the syntax of this option, check the
16050 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16051
16052 @item dither, d
16053 Set the dither type.
16054
16055 Possible values are:
16056 @table @var
16057 @item none
16058 @item ordered
16059 @item random
16060 @item error_diffusion
16061 @end table
16062
16063 Default is none.
16064
16065 @item filter, f
16066 Set the resize filter type.
16067
16068 Possible values are:
16069 @table @var
16070 @item point
16071 @item bilinear
16072 @item bicubic
16073 @item spline16
16074 @item spline36
16075 @item lanczos
16076 @end table
16077
16078 Default is bilinear.
16079
16080 @item range, r
16081 Set the color range.
16082
16083 Possible values are:
16084 @table @var
16085 @item input
16086 @item limited
16087 @item full
16088 @end table
16089
16090 Default is same as input.
16091
16092 @item primaries, p
16093 Set the color primaries.
16094
16095 Possible values are:
16096 @table @var
16097 @item input
16098 @item 709
16099 @item unspecified
16100 @item 170m
16101 @item 240m
16102 @item 2020
16103 @end table
16104
16105 Default is same as input.
16106
16107 @item transfer, t
16108 Set the transfer characteristics.
16109
16110 Possible values are:
16111 @table @var
16112 @item input
16113 @item 709
16114 @item unspecified
16115 @item 601
16116 @item linear
16117 @item 2020_10
16118 @item 2020_12
16119 @item smpte2084
16120 @item iec61966-2-1
16121 @item arib-std-b67
16122 @end table
16123
16124 Default is same as input.
16125
16126 @item matrix, m
16127 Set the colorspace matrix.
16128
16129 Possible value are:
16130 @table @var
16131 @item input
16132 @item 709
16133 @item unspecified
16134 @item 470bg
16135 @item 170m
16136 @item 2020_ncl
16137 @item 2020_cl
16138 @end table
16139
16140 Default is same as input.
16141
16142 @item rangein, rin
16143 Set the input color range.
16144
16145 Possible values are:
16146 @table @var
16147 @item input
16148 @item limited
16149 @item full
16150 @end table
16151
16152 Default is same as input.
16153
16154 @item primariesin, pin
16155 Set the input color primaries.
16156
16157 Possible values are:
16158 @table @var
16159 @item input
16160 @item 709
16161 @item unspecified
16162 @item 170m
16163 @item 240m
16164 @item 2020
16165 @end table
16166
16167 Default is same as input.
16168
16169 @item transferin, tin
16170 Set the input transfer characteristics.
16171
16172 Possible values are:
16173 @table @var
16174 @item input
16175 @item 709
16176 @item unspecified
16177 @item 601
16178 @item linear
16179 @item 2020_10
16180 @item 2020_12
16181 @end table
16182
16183 Default is same as input.
16184
16185 @item matrixin, min
16186 Set the input colorspace matrix.
16187
16188 Possible value are:
16189 @table @var
16190 @item input
16191 @item 709
16192 @item unspecified
16193 @item 470bg
16194 @item 170m
16195 @item 2020_ncl
16196 @item 2020_cl
16197 @end table
16198
16199 @item chromal, c
16200 Set the output chroma location.
16201
16202 Possible values are:
16203 @table @var
16204 @item input
16205 @item left
16206 @item center
16207 @item topleft
16208 @item top
16209 @item bottomleft
16210 @item bottom
16211 @end table
16212
16213 @item chromalin, cin
16214 Set the input chroma location.
16215
16216 Possible values are:
16217 @table @var
16218 @item input
16219 @item left
16220 @item center
16221 @item topleft
16222 @item top
16223 @item bottomleft
16224 @item bottom
16225 @end table
16226
16227 @item npl
16228 Set the nominal peak luminance.
16229 @end table
16230
16231 The values of the @option{w} and @option{h} options are expressions
16232 containing the following constants:
16233
16234 @table @var
16235 @item in_w
16236 @item in_h
16237 The input width and height
16238
16239 @item iw
16240 @item ih
16241 These are the same as @var{in_w} and @var{in_h}.
16242
16243 @item out_w
16244 @item out_h
16245 The output (scaled) width and height
16246
16247 @item ow
16248 @item oh
16249 These are the same as @var{out_w} and @var{out_h}
16250
16251 @item a
16252 The same as @var{iw} / @var{ih}
16253
16254 @item sar
16255 input sample aspect ratio
16256
16257 @item dar
16258 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
16259
16260 @item hsub
16261 @item vsub
16262 horizontal and vertical input chroma subsample values. For example for the
16263 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16264
16265 @item ohsub
16266 @item ovsub
16267 horizontal and vertical output chroma subsample values. For example for the
16268 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16269 @end table
16270
16271 @table @option
16272 @end table
16273
16274 @c man end VIDEO FILTERS
16275
16276 @chapter Video Sources
16277 @c man begin VIDEO SOURCES
16278
16279 Below is a description of the currently available video sources.
16280
16281 @section buffer
16282
16283 Buffer video frames, and make them available to the filter chain.
16284
16285 This source is mainly intended for a programmatic use, in particular
16286 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
16287
16288 It accepts the following parameters:
16289
16290 @table @option
16291
16292 @item video_size
16293 Specify the size (width and height) of the buffered video frames. For the
16294 syntax of this option, check the
16295 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16296
16297 @item width
16298 The input video width.
16299
16300 @item height
16301 The input video height.
16302
16303 @item pix_fmt
16304 A string representing the pixel format of the buffered video frames.
16305 It may be a number corresponding to a pixel format, or a pixel format
16306 name.
16307
16308 @item time_base
16309 Specify the timebase assumed by the timestamps of the buffered frames.
16310
16311 @item frame_rate
16312 Specify the frame rate expected for the video stream.
16313
16314 @item pixel_aspect, sar
16315 The sample (pixel) aspect ratio of the input video.
16316
16317 @item sws_param
16318 Specify the optional parameters to be used for the scale filter which
16319 is automatically inserted when an input change is detected in the
16320 input size or format.
16321
16322 @item hw_frames_ctx
16323 When using a hardware pixel format, this should be a reference to an
16324 AVHWFramesContext describing input frames.
16325 @end table
16326
16327 For example:
16328 @example
16329 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
16330 @end example
16331
16332 will instruct the source to accept video frames with size 320x240 and
16333 with format "yuv410p", assuming 1/24 as the timestamps timebase and
16334 square pixels (1:1 sample aspect ratio).
16335 Since the pixel format with name "yuv410p" corresponds to the number 6
16336 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
16337 this example corresponds to:
16338 @example
16339 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
16340 @end example
16341
16342 Alternatively, the options can be specified as a flat string, but this
16343 syntax is deprecated:
16344
16345 @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}]
16346
16347 @section cellauto
16348
16349 Create a pattern generated by an elementary cellular automaton.
16350
16351 The initial state of the cellular automaton can be defined through the
16352 @option{filename} and @option{pattern} options. If such options are
16353 not specified an initial state is created randomly.
16354
16355 At each new frame a new row in the video is filled with the result of
16356 the cellular automaton next generation. The behavior when the whole
16357 frame is filled is defined by the @option{scroll} option.
16358
16359 This source accepts the following options:
16360
16361 @table @option
16362 @item filename, f
16363 Read the initial cellular automaton state, i.e. the starting row, from
16364 the specified file.
16365 In the file, each non-whitespace character is considered an alive
16366 cell, a newline will terminate the row, and further characters in the
16367 file will be ignored.
16368
16369 @item pattern, p
16370 Read the initial cellular automaton state, i.e. the starting row, from
16371 the specified string.
16372
16373 Each non-whitespace character in the string is considered an alive
16374 cell, a newline will terminate the row, and further characters in the
16375 string will be ignored.
16376
16377 @item rate, r
16378 Set the video rate, that is the number of frames generated per second.
16379 Default is 25.
16380
16381 @item random_fill_ratio, ratio
16382 Set the random fill ratio for the initial cellular automaton row. It
16383 is a floating point number value ranging from 0 to 1, defaults to
16384 1/PHI.
16385
16386 This option is ignored when a file or a pattern is specified.
16387
16388 @item random_seed, seed
16389 Set the seed for filling randomly the initial row, must be an integer
16390 included between 0 and UINT32_MAX. If not specified, or if explicitly
16391 set to -1, the filter will try to use a good random seed on a best
16392 effort basis.
16393
16394 @item rule
16395 Set the cellular automaton rule, it is a number ranging from 0 to 255.
16396 Default value is 110.
16397
16398 @item size, s
16399 Set the size of the output video. For the syntax of this option, check the
16400 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16401
16402 If @option{filename} or @option{pattern} is specified, the size is set
16403 by default to the width of the specified initial state row, and the
16404 height is set to @var{width} * PHI.
16405
16406 If @option{size} is set, it must contain the width of the specified
16407 pattern string, and the specified pattern will be centered in the
16408 larger row.
16409
16410 If a filename or a pattern string is not specified, the size value
16411 defaults to "320x518" (used for a randomly generated initial state).
16412
16413 @item scroll
16414 If set to 1, scroll the output upward when all the rows in the output
16415 have been already filled. If set to 0, the new generated row will be
16416 written over the top row just after the bottom row is filled.
16417 Defaults to 1.
16418
16419 @item start_full, full
16420 If set to 1, completely fill the output with generated rows before
16421 outputting the first frame.
16422 This is the default behavior, for disabling set the value to 0.
16423
16424 @item stitch
16425 If set to 1, stitch the left and right row edges together.
16426 This is the default behavior, for disabling set the value to 0.
16427 @end table
16428
16429 @subsection Examples
16430
16431 @itemize
16432 @item
16433 Read the initial state from @file{pattern}, and specify an output of
16434 size 200x400.
16435 @example
16436 cellauto=f=pattern:s=200x400
16437 @end example
16438
16439 @item
16440 Generate a random initial row with a width of 200 cells, with a fill
16441 ratio of 2/3:
16442 @example
16443 cellauto=ratio=2/3:s=200x200
16444 @end example
16445
16446 @item
16447 Create a pattern generated by rule 18 starting by a single alive cell
16448 centered on an initial row with width 100:
16449 @example
16450 cellauto=p=@@:s=100x400:full=0:rule=18
16451 @end example
16452
16453 @item
16454 Specify a more elaborated initial pattern:
16455 @example
16456 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
16457 @end example
16458
16459 @end itemize
16460
16461 @anchor{coreimagesrc}
16462 @section coreimagesrc
16463 Video source generated on GPU using Apple's CoreImage API on OSX.
16464
16465 This video source is a specialized version of the @ref{coreimage} video filter.
16466 Use a core image generator at the beginning of the applied filterchain to
16467 generate the content.
16468
16469 The coreimagesrc video source accepts the following options:
16470 @table @option
16471 @item list_generators
16472 List all available generators along with all their respective options as well as
16473 possible minimum and maximum values along with the default values.
16474 @example
16475 list_generators=true
16476 @end example
16477
16478 @item size, s
16479 Specify the size of the sourced video. For the syntax of this option, check the
16480 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16481 The default value is @code{320x240}.
16482
16483 @item rate, r
16484 Specify the frame rate of the sourced video, as the number of frames
16485 generated per second. It has to be a string in the format
16486 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
16487 number or a valid video frame rate abbreviation. The default value is
16488 "25".
16489
16490 @item sar
16491 Set the sample aspect ratio of the sourced video.
16492
16493 @item duration, d
16494 Set the duration of the sourced video. See
16495 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
16496 for the accepted syntax.
16497
16498 If not specified, or the expressed duration is negative, the video is
16499 supposed to be generated forever.
16500 @end table
16501
16502 Additionally, all options of the @ref{coreimage} video filter are accepted.
16503 A complete filterchain can be used for further processing of the
16504 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
16505 and examples for details.
16506
16507 @subsection Examples
16508
16509 @itemize
16510
16511 @item
16512 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
16513 given as complete and escaped command-line for Apple's standard bash shell:
16514 @example
16515 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
16516 @end example
16517 This example is equivalent to the QRCode example of @ref{coreimage} without the
16518 need for a nullsrc video source.
16519 @end itemize
16520
16521
16522 @section mandelbrot
16523
16524 Generate a Mandelbrot set fractal, and progressively zoom towards the
16525 point specified with @var{start_x} and @var{start_y}.
16526
16527 This source accepts the following options:
16528
16529 @table @option
16530
16531 @item end_pts
16532 Set the terminal pts value. Default value is 400.
16533
16534 @item end_scale
16535 Set the terminal scale value.
16536 Must be a floating point value. Default value is 0.3.
16537
16538 @item inner
16539 Set the inner coloring mode, that is the algorithm used to draw the
16540 Mandelbrot fractal internal region.
16541
16542 It shall assume one of the following values:
16543 @table @option
16544 @item black
16545 Set black mode.
16546 @item convergence
16547 Show time until convergence.
16548 @item mincol
16549 Set color based on point closest to the origin of the iterations.
16550 @item period
16551 Set period mode.
16552 @end table
16553
16554 Default value is @var{mincol}.
16555
16556 @item bailout
16557 Set the bailout value. Default value is 10.0.
16558
16559 @item maxiter
16560 Set the maximum of iterations performed by the rendering
16561 algorithm. Default value is 7189.
16562
16563 @item outer
16564 Set outer coloring mode.
16565 It shall assume one of following values:
16566 @table @option
16567 @item iteration_count
16568 Set iteration cound mode.
16569 @item normalized_iteration_count
16570 set normalized iteration count mode.
16571 @end table
16572 Default value is @var{normalized_iteration_count}.
16573
16574 @item rate, r
16575 Set frame rate, expressed as number of frames per second. Default
16576 value is "25".
16577
16578 @item size, s
16579 Set frame size. For the syntax of this option, check the "Video
16580 size" section in the ffmpeg-utils manual. Default value is "640x480".
16581
16582 @item start_scale
16583 Set the initial scale value. Default value is 3.0.
16584
16585 @item start_x
16586 Set the initial x position. Must be a floating point value between
16587 -100 and 100. Default value is -0.743643887037158704752191506114774.
16588
16589 @item start_y
16590 Set the initial y position. Must be a floating point value between
16591 -100 and 100. Default value is -0.131825904205311970493132056385139.
16592 @end table
16593
16594 @section mptestsrc
16595
16596 Generate various test patterns, as generated by the MPlayer test filter.
16597
16598 The size of the generated video is fixed, and is 256x256.
16599 This source is useful in particular for testing encoding features.
16600
16601 This source accepts the following options:
16602
16603 @table @option
16604
16605 @item rate, r
16606 Specify the frame rate of the sourced video, as the number of frames
16607 generated per second. It has to be a string in the format
16608 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
16609 number or a valid video frame rate abbreviation. The default value is
16610 "25".
16611
16612 @item duration, d
16613 Set the duration of the sourced video. See
16614 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
16615 for the accepted syntax.
16616
16617 If not specified, or the expressed duration is negative, the video is
16618 supposed to be generated forever.
16619
16620 @item test, t
16621
16622 Set the number or the name of the test to perform. Supported tests are:
16623 @table @option
16624 @item dc_luma
16625 @item dc_chroma
16626 @item freq_luma
16627 @item freq_chroma
16628 @item amp_luma
16629 @item amp_chroma
16630 @item cbp
16631 @item mv
16632 @item ring1
16633 @item ring2
16634 @item all
16635
16636 @end table
16637
16638 Default value is "all", which will cycle through the list of all tests.
16639 @end table
16640
16641 Some examples:
16642 @example
16643 mptestsrc=t=dc_luma
16644 @end example
16645
16646 will generate a "dc_luma" test pattern.
16647
16648 @section frei0r_src
16649
16650 Provide a frei0r source.
16651
16652 To enable compilation of this filter you need to install the frei0r
16653 header and configure FFmpeg with @code{--enable-frei0r}.
16654
16655 This source accepts the following parameters:
16656
16657 @table @option
16658
16659 @item size
16660 The size of the video to generate. For the syntax of this option, check the
16661 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16662
16663 @item framerate
16664 The framerate of the generated video. It may be a string of the form
16665 @var{num}/@var{den} or a frame rate abbreviation.
16666
16667 @item filter_name
16668 The name to the frei0r source to load. For more information regarding frei0r and
16669 how to set the parameters, read the @ref{frei0r} section in the video filters
16670 documentation.
16671
16672 @item filter_params
16673 A '|'-separated list of parameters to pass to the frei0r source.
16674
16675 @end table
16676
16677 For example, to generate a frei0r partik0l source with size 200x200
16678 and frame rate 10 which is overlaid on the overlay filter main input:
16679 @example
16680 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
16681 @end example
16682
16683 @section life
16684
16685 Generate a life pattern.
16686
16687 This source is based on a generalization of John Conway's life game.
16688
16689 The sourced input represents a life grid, each pixel represents a cell
16690 which can be in one of two possible states, alive or dead. Every cell
16691 interacts with its eight neighbours, which are the cells that are
16692 horizontally, vertically, or diagonally adjacent.
16693
16694 At each interaction the grid evolves according to the adopted rule,
16695 which specifies the number of neighbor alive cells which will make a
16696 cell stay alive or born. The @option{rule} option allows one to specify
16697 the rule to adopt.
16698
16699 This source accepts the following options:
16700
16701 @table @option
16702 @item filename, f
16703 Set the file from which to read the initial grid state. In the file,
16704 each non-whitespace character is considered an alive cell, and newline
16705 is used to delimit the end of each row.
16706
16707 If this option is not specified, the initial grid is generated
16708 randomly.
16709
16710 @item rate, r
16711 Set the video rate, that is the number of frames generated per second.
16712 Default is 25.
16713
16714 @item random_fill_ratio, ratio
16715 Set the random fill ratio for the initial random grid. It is a
16716 floating point number value ranging from 0 to 1, defaults to 1/PHI.
16717 It is ignored when a file is specified.
16718
16719 @item random_seed, seed
16720 Set the seed for filling the initial random grid, must be an integer
16721 included between 0 and UINT32_MAX. If not specified, or if explicitly
16722 set to -1, the filter will try to use a good random seed on a best
16723 effort basis.
16724
16725 @item rule
16726 Set the life rule.
16727
16728 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
16729 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
16730 @var{NS} specifies the number of alive neighbor cells which make a
16731 live cell stay alive, and @var{NB} the number of alive neighbor cells
16732 which make a dead cell to become alive (i.e. to "born").
16733 "s" and "b" can be used in place of "S" and "B", respectively.
16734
16735 Alternatively a rule can be specified by an 18-bits integer. The 9
16736 high order bits are used to encode the next cell state if it is alive
16737 for each number of neighbor alive cells, the low order bits specify
16738 the rule for "borning" new cells. Higher order bits encode for an
16739 higher number of neighbor cells.
16740 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
16741 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
16742
16743 Default value is "S23/B3", which is the original Conway's game of life
16744 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
16745 cells, and will born a new cell if there are three alive cells around
16746 a dead cell.
16747
16748 @item size, s
16749 Set the size of the output video. For the syntax of this option, check the
16750 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16751
16752 If @option{filename} is specified, the size is set by default to the
16753 same size of the input file. If @option{size} is set, it must contain
16754 the size specified in the input file, and the initial grid defined in
16755 that file is centered in the larger resulting area.
16756
16757 If a filename is not specified, the size value defaults to "320x240"
16758 (used for a randomly generated initial grid).
16759
16760 @item stitch
16761 If set to 1, stitch the left and right grid edges together, and the
16762 top and bottom edges also. Defaults to 1.
16763
16764 @item mold
16765 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
16766 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
16767 value from 0 to 255.
16768
16769 @item life_color
16770 Set the color of living (or new born) cells.
16771
16772 @item death_color
16773 Set the color of dead cells. If @option{mold} is set, this is the first color
16774 used to represent a dead cell.
16775
16776 @item mold_color
16777 Set mold color, for definitely dead and moldy cells.
16778
16779 For the syntax of these 3 color options, check the "Color" section in the
16780 ffmpeg-utils manual.
16781 @end table
16782
16783 @subsection Examples
16784
16785 @itemize
16786 @item
16787 Read a grid from @file{pattern}, and center it on a grid of size
16788 300x300 pixels:
16789 @example
16790 life=f=pattern:s=300x300
16791 @end example
16792
16793 @item
16794 Generate a random grid of size 200x200, with a fill ratio of 2/3:
16795 @example
16796 life=ratio=2/3:s=200x200
16797 @end example
16798
16799 @item
16800 Specify a custom rule for evolving a randomly generated grid:
16801 @example
16802 life=rule=S14/B34
16803 @end example
16804
16805 @item
16806 Full example with slow death effect (mold) using @command{ffplay}:
16807 @example
16808 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
16809 @end example
16810 @end itemize
16811
16812 @anchor{allrgb}
16813 @anchor{allyuv}
16814 @anchor{color}
16815 @anchor{haldclutsrc}
16816 @anchor{nullsrc}
16817 @anchor{rgbtestsrc}
16818 @anchor{smptebars}
16819 @anchor{smptehdbars}
16820 @anchor{testsrc}
16821 @anchor{testsrc2}
16822 @anchor{yuvtestsrc}
16823 @section allrgb, allyuv, color, haldclutsrc, nullsrc, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
16824
16825 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
16826
16827 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
16828
16829 The @code{color} source provides an uniformly colored input.
16830
16831 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
16832 @ref{haldclut} filter.
16833
16834 The @code{nullsrc} source returns unprocessed video frames. It is
16835 mainly useful to be employed in analysis / debugging tools, or as the
16836 source for filters which ignore the input data.
16837
16838 The @code{rgbtestsrc} source generates an RGB test pattern useful for
16839 detecting RGB vs BGR issues. You should see a red, green and blue
16840 stripe from top to bottom.
16841
16842 The @code{smptebars} source generates a color bars pattern, based on
16843 the SMPTE Engineering Guideline EG 1-1990.
16844
16845 The @code{smptehdbars} source generates a color bars pattern, based on
16846 the SMPTE RP 219-2002.
16847
16848 The @code{testsrc} source generates a test video pattern, showing a
16849 color pattern, a scrolling gradient and a timestamp. This is mainly
16850 intended for testing purposes.
16851
16852 The @code{testsrc2} source is similar to testsrc, but supports more
16853 pixel formats instead of just @code{rgb24}. This allows using it as an
16854 input for other tests without requiring a format conversion.
16855
16856 The @code{yuvtestsrc} source generates an YUV test pattern. You should
16857 see a y, cb and cr stripe from top to bottom.
16858
16859 The sources accept the following parameters:
16860
16861 @table @option
16862
16863 @item alpha
16864 Specify the alpha (opacity) of the background, only available in the
16865 @code{testsrc2} source. The value must be between 0 (fully transparent) and
16866 255 (fully opaque, the default).
16867
16868 @item color, c
16869 Specify the color of the source, only available in the @code{color}
16870 source. For the syntax of this option, check the "Color" section in the
16871 ffmpeg-utils manual.
16872
16873 @item level
16874 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
16875 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
16876 pixels to be used as identity matrix for 3D lookup tables. Each component is
16877 coded on a @code{1/(N*N)} scale.
16878
16879 @item size, s
16880 Specify the size of the sourced video. For the syntax of this option, check the
16881 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16882 The default value is @code{320x240}.
16883
16884 This option is not available with the @code{haldclutsrc} filter.
16885
16886 @item rate, r
16887 Specify the frame rate of the sourced video, as the number of frames
16888 generated per second. It has to be a string in the format
16889 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
16890 number or a valid video frame rate abbreviation. The default value is
16891 "25".
16892
16893 @item sar
16894 Set the sample aspect ratio of the sourced video.
16895
16896 @item duration, d
16897 Set the duration of the sourced video. See
16898 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
16899 for the accepted syntax.
16900
16901 If not specified, or the expressed duration is negative, the video is
16902 supposed to be generated forever.
16903
16904 @item decimals, n
16905 Set the number of decimals to show in the timestamp, only available in the
16906 @code{testsrc} source.
16907
16908 The displayed timestamp value will correspond to the original
16909 timestamp value multiplied by the power of 10 of the specified
16910 value. Default value is 0.
16911 @end table
16912
16913 For example the following:
16914 @example
16915 testsrc=duration=5.3:size=qcif:rate=10
16916 @end example
16917
16918 will generate a video with a duration of 5.3 seconds, with size
16919 176x144 and a frame rate of 10 frames per second.
16920
16921 The following graph description will generate a red source
16922 with an opacity of 0.2, with size "qcif" and a frame rate of 10
16923 frames per second.
16924 @example
16925 color=c=red@@0.2:s=qcif:r=10
16926 @end example
16927
16928 If the input content is to be ignored, @code{nullsrc} can be used. The
16929 following command generates noise in the luminance plane by employing
16930 the @code{geq} filter:
16931 @example
16932 nullsrc=s=256x256, geq=random(1)*255:128:128
16933 @end example
16934
16935 @subsection Commands
16936
16937 The @code{color} source supports the following commands:
16938
16939 @table @option
16940 @item c, color
16941 Set the color of the created image. Accepts the same syntax of the
16942 corresponding @option{color} option.
16943 @end table
16944
16945 @c man end VIDEO SOURCES
16946
16947 @chapter Video Sinks
16948 @c man begin VIDEO SINKS
16949
16950 Below is a description of the currently available video sinks.
16951
16952 @section buffersink
16953
16954 Buffer video frames, and make them available to the end of the filter
16955 graph.
16956
16957 This sink is mainly intended for programmatic use, in particular
16958 through the interface defined in @file{libavfilter/buffersink.h}
16959 or the options system.
16960
16961 It accepts a pointer to an AVBufferSinkContext structure, which
16962 defines the incoming buffers' formats, to be passed as the opaque
16963 parameter to @code{avfilter_init_filter} for initialization.
16964
16965 @section nullsink
16966
16967 Null video sink: do absolutely nothing with the input video. It is
16968 mainly useful as a template and for use in analysis / debugging
16969 tools.
16970
16971 @c man end VIDEO SINKS
16972
16973 @chapter Multimedia Filters
16974 @c man begin MULTIMEDIA FILTERS
16975
16976 Below is a description of the currently available multimedia filters.
16977
16978 @section abitscope
16979
16980 Convert input audio to a video output, displaying the audio bit scope.
16981
16982 The filter accepts the following options:
16983
16984 @table @option
16985 @item rate, r
16986 Set frame rate, expressed as number of frames per second. Default
16987 value is "25".
16988
16989 @item size, s
16990 Specify the video size for the output. For the syntax of this option, check the
16991 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16992 Default value is @code{1024x256}.
16993
16994 @item colors
16995 Specify list of colors separated by space or by '|' which will be used to
16996 draw channels. Unrecognized or missing colors will be replaced
16997 by white color.
16998 @end table
16999
17000 @section ahistogram
17001
17002 Convert input audio to a video output, displaying the volume histogram.
17003
17004 The filter accepts the following options:
17005
17006 @table @option
17007 @item dmode
17008 Specify how histogram is calculated.
17009
17010 It accepts the following values:
17011 @table @samp
17012 @item single
17013 Use single histogram for all channels.
17014 @item separate
17015 Use separate histogram for each channel.
17016 @end table
17017 Default is @code{single}.
17018
17019 @item rate, r
17020 Set frame rate, expressed as number of frames per second. Default
17021 value is "25".
17022
17023 @item size, s
17024 Specify the video size for the output. For the syntax of this option, check the
17025 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17026 Default value is @code{hd720}.
17027
17028 @item scale
17029 Set display scale.
17030
17031 It accepts the following values:
17032 @table @samp
17033 @item log
17034 logarithmic
17035 @item sqrt
17036 square root
17037 @item cbrt
17038 cubic root
17039 @item lin
17040 linear
17041 @item rlog
17042 reverse logarithmic
17043 @end table
17044 Default is @code{log}.
17045
17046 @item ascale
17047 Set amplitude scale.
17048
17049 It accepts the following values:
17050 @table @samp
17051 @item log
17052 logarithmic
17053 @item lin
17054 linear
17055 @end table
17056 Default is @code{log}.
17057
17058 @item acount
17059 Set how much frames to accumulate in histogram.
17060 Defauls is 1. Setting this to -1 accumulates all frames.
17061
17062 @item rheight
17063 Set histogram ratio of window height.
17064
17065 @item slide
17066 Set sonogram sliding.
17067
17068 It accepts the following values:
17069 @table @samp
17070 @item replace
17071 replace old rows with new ones.
17072 @item scroll
17073 scroll from top to bottom.
17074 @end table
17075 Default is @code{replace}.
17076 @end table
17077
17078 @section aphasemeter
17079
17080 Convert input audio to a video output, displaying the audio phase.
17081
17082 The filter accepts the following options:
17083
17084 @table @option
17085 @item rate, r
17086 Set the output frame rate. Default value is @code{25}.
17087
17088 @item size, s
17089 Set the video size for the output. For the syntax of this option, check the
17090 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17091 Default value is @code{800x400}.
17092
17093 @item rc
17094 @item gc
17095 @item bc
17096 Specify the red, green, blue contrast. Default values are @code{2},
17097 @code{7} and @code{1}.
17098 Allowed range is @code{[0, 255]}.
17099
17100 @item mpc
17101 Set color which will be used for drawing median phase. If color is
17102 @code{none} which is default, no median phase value will be drawn.
17103
17104 @item video
17105 Enable video output. Default is enabled.
17106 @end table
17107
17108 The filter also exports the frame metadata @code{lavfi.aphasemeter.phase} which
17109 represents mean phase of current audio frame. Value is in range @code{[-1, 1]}.
17110 The @code{-1} means left and right channels are completely out of phase and
17111 @code{1} means channels are in phase.
17112
17113 @section avectorscope
17114
17115 Convert input audio to a video output, representing the audio vector
17116 scope.
17117
17118 The filter is used to measure the difference between channels of stereo
17119 audio stream. A monoaural signal, consisting of identical left and right
17120 signal, results in straight vertical line. Any stereo separation is visible
17121 as a deviation from this line, creating a Lissajous figure.
17122 If the straight (or deviation from it) but horizontal line appears this
17123 indicates that the left and right channels are out of phase.
17124
17125 The filter accepts the following options:
17126
17127 @table @option
17128 @item mode, m
17129 Set the vectorscope mode.
17130
17131 Available values are:
17132 @table @samp
17133 @item lissajous
17134 Lissajous rotated by 45 degrees.
17135
17136 @item lissajous_xy
17137 Same as above but not rotated.
17138
17139 @item polar
17140 Shape resembling half of circle.
17141 @end table
17142
17143 Default value is @samp{lissajous}.
17144
17145 @item size, s
17146 Set the video size for the output. For the syntax of this option, check the
17147 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17148 Default value is @code{400x400}.
17149
17150 @item rate, r
17151 Set the output frame rate. Default value is @code{25}.
17152
17153 @item rc
17154 @item gc
17155 @item bc
17156 @item ac
17157 Specify the red, green, blue and alpha contrast. Default values are @code{40},
17158 @code{160}, @code{80} and @code{255}.
17159 Allowed range is @code{[0, 255]}.
17160
17161 @item rf
17162 @item gf
17163 @item bf
17164 @item af
17165 Specify the red, green, blue and alpha fade. Default values are @code{15},
17166 @code{10}, @code{5} and @code{5}.
17167 Allowed range is @code{[0, 255]}.
17168
17169 @item zoom
17170 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[0, 10]}.
17171 Values lower than @var{1} will auto adjust zoom factor to maximal possible value.
17172
17173 @item draw
17174 Set the vectorscope drawing mode.
17175
17176 Available values are:
17177 @table @samp
17178 @item dot
17179 Draw dot for each sample.
17180
17181 @item line
17182 Draw line between previous and current sample.
17183 @end table
17184
17185 Default value is @samp{dot}.
17186
17187 @item scale
17188 Specify amplitude scale of audio samples.
17189
17190 Available values are:
17191 @table @samp
17192 @item lin
17193 Linear.
17194
17195 @item sqrt
17196 Square root.
17197
17198 @item cbrt
17199 Cubic root.
17200
17201 @item log
17202 Logarithmic.
17203 @end table
17204
17205 @end table
17206
17207 @subsection Examples
17208
17209 @itemize
17210 @item
17211 Complete example using @command{ffplay}:
17212 @example
17213 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
17214              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
17215 @end example
17216 @end itemize
17217
17218 @section bench, abench
17219
17220 Benchmark part of a filtergraph.
17221
17222 The filter accepts the following options:
17223
17224 @table @option
17225 @item action
17226 Start or stop a timer.
17227
17228 Available values are:
17229 @table @samp
17230 @item start
17231 Get the current time, set it as frame metadata (using the key
17232 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
17233
17234 @item stop
17235 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
17236 the input frame metadata to get the time difference. Time difference, average,
17237 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
17238 @code{min}) are then printed. The timestamps are expressed in seconds.
17239 @end table
17240 @end table
17241
17242 @subsection Examples
17243
17244 @itemize
17245 @item
17246 Benchmark @ref{selectivecolor} filter:
17247 @example
17248 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
17249 @end example
17250 @end itemize
17251
17252 @section concat
17253
17254 Concatenate audio and video streams, joining them together one after the
17255 other.
17256
17257 The filter works on segments of synchronized video and audio streams. All
17258 segments must have the same number of streams of each type, and that will
17259 also be the number of streams at output.
17260
17261 The filter accepts the following options:
17262
17263 @table @option
17264
17265 @item n
17266 Set the number of segments. Default is 2.
17267
17268 @item v
17269 Set the number of output video streams, that is also the number of video
17270 streams in each segment. Default is 1.
17271
17272 @item a
17273 Set the number of output audio streams, that is also the number of audio
17274 streams in each segment. Default is 0.
17275
17276 @item unsafe
17277 Activate unsafe mode: do not fail if segments have a different format.
17278
17279 @end table
17280
17281 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
17282 @var{a} audio outputs.
17283
17284 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
17285 segment, in the same order as the outputs, then the inputs for the second
17286 segment, etc.
17287
17288 Related streams do not always have exactly the same duration, for various
17289 reasons including codec frame size or sloppy authoring. For that reason,
17290 related synchronized streams (e.g. a video and its audio track) should be
17291 concatenated at once. The concat filter will use the duration of the longest
17292 stream in each segment (except the last one), and if necessary pad shorter
17293 audio streams with silence.
17294
17295 For this filter to work correctly, all segments must start at timestamp 0.
17296
17297 All corresponding streams must have the same parameters in all segments; the
17298 filtering system will automatically select a common pixel format for video
17299 streams, and a common sample format, sample rate and channel layout for
17300 audio streams, but other settings, such as resolution, must be converted
17301 explicitly by the user.
17302
17303 Different frame rates are acceptable but will result in variable frame rate
17304 at output; be sure to configure the output file to handle it.
17305
17306 @subsection Examples
17307
17308 @itemize
17309 @item
17310 Concatenate an opening, an episode and an ending, all in bilingual version
17311 (video in stream 0, audio in streams 1 and 2):
17312 @example
17313 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
17314   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
17315    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
17316   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
17317 @end example
17318
17319 @item
17320 Concatenate two parts, handling audio and video separately, using the
17321 (a)movie sources, and adjusting the resolution:
17322 @example
17323 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
17324 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
17325 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
17326 @end example
17327 Note that a desync will happen at the stitch if the audio and video streams
17328 do not have exactly the same duration in the first file.
17329
17330 @end itemize
17331
17332 @section drawgraph, adrawgraph
17333
17334 Draw a graph using input video or audio metadata.
17335
17336 It accepts the following parameters:
17337
17338 @table @option
17339 @item m1
17340 Set 1st frame metadata key from which metadata values will be used to draw a graph.
17341
17342 @item fg1
17343 Set 1st foreground color expression.
17344
17345 @item m2
17346 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
17347
17348 @item fg2
17349 Set 2nd foreground color expression.
17350
17351 @item m3
17352 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
17353
17354 @item fg3
17355 Set 3rd foreground color expression.
17356
17357 @item m4
17358 Set 4th frame metadata key from which metadata values will be used to draw a graph.
17359
17360 @item fg4
17361 Set 4th foreground color expression.
17362
17363 @item min
17364 Set minimal value of metadata value.
17365
17366 @item max
17367 Set maximal value of metadata value.
17368
17369 @item bg
17370 Set graph background color. Default is white.
17371
17372 @item mode
17373 Set graph mode.
17374
17375 Available values for mode is:
17376 @table @samp
17377 @item bar
17378 @item dot
17379 @item line
17380 @end table
17381
17382 Default is @code{line}.
17383
17384 @item slide
17385 Set slide mode.
17386
17387 Available values for slide is:
17388 @table @samp
17389 @item frame
17390 Draw new frame when right border is reached.
17391
17392 @item replace
17393 Replace old columns with new ones.
17394
17395 @item scroll
17396 Scroll from right to left.
17397
17398 @item rscroll
17399 Scroll from left to right.
17400
17401 @item picture
17402 Draw single picture.
17403 @end table
17404
17405 Default is @code{frame}.
17406
17407 @item size
17408 Set size of graph video. For the syntax of this option, check the
17409 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17410 The default value is @code{900x256}.
17411
17412 The foreground color expressions can use the following variables:
17413 @table @option
17414 @item MIN
17415 Minimal value of metadata value.
17416
17417 @item MAX
17418 Maximal value of metadata value.
17419
17420 @item VAL
17421 Current metadata key value.
17422 @end table
17423
17424 The color is defined as 0xAABBGGRR.
17425 @end table
17426
17427 Example using metadata from @ref{signalstats} filter:
17428 @example
17429 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
17430 @end example
17431
17432 Example using metadata from @ref{ebur128} filter:
17433 @example
17434 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
17435 @end example
17436
17437 @anchor{ebur128}
17438 @section ebur128
17439
17440 EBU R128 scanner filter. This filter takes an audio stream as input and outputs
17441 it unchanged. By default, it logs a message at a frequency of 10Hz with the
17442 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
17443 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
17444
17445 The filter also has a video output (see the @var{video} option) with a real
17446 time graph to observe the loudness evolution. The graphic contains the logged
17447 message mentioned above, so it is not printed anymore when this option is set,
17448 unless the verbose logging is set. The main graphing area contains the
17449 short-term loudness (3 seconds of analysis), and the gauge on the right is for
17450 the momentary loudness (400 milliseconds).
17451
17452 More information about the Loudness Recommendation EBU R128 on
17453 @url{http://tech.ebu.ch/loudness}.
17454
17455 The filter accepts the following options:
17456
17457 @table @option
17458
17459 @item video
17460 Activate the video output. The audio stream is passed unchanged whether this
17461 option is set or no. The video stream will be the first output stream if
17462 activated. Default is @code{0}.
17463
17464 @item size
17465 Set the video size. This option is for video only. For the syntax of this
17466 option, check the
17467 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17468 Default and minimum resolution is @code{640x480}.
17469
17470 @item meter
17471 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
17472 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
17473 other integer value between this range is allowed.
17474
17475 @item metadata
17476 Set metadata injection. If set to @code{1}, the audio input will be segmented
17477 into 100ms output frames, each of them containing various loudness information
17478 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
17479
17480 Default is @code{0}.
17481
17482 @item framelog
17483 Force the frame logging level.
17484
17485 Available values are:
17486 @table @samp
17487 @item info
17488 information logging level
17489 @item verbose
17490 verbose logging level
17491 @end table
17492
17493 By default, the logging level is set to @var{info}. If the @option{video} or
17494 the @option{metadata} options are set, it switches to @var{verbose}.
17495
17496 @item peak
17497 Set peak mode(s).
17498
17499 Available modes can be cumulated (the option is a @code{flag} type). Possible
17500 values are:
17501 @table @samp
17502 @item none
17503 Disable any peak mode (default).
17504 @item sample
17505 Enable sample-peak mode.
17506
17507 Simple peak mode looking for the higher sample value. It logs a message
17508 for sample-peak (identified by @code{SPK}).
17509 @item true
17510 Enable true-peak mode.
17511
17512 If enabled, the peak lookup is done on an over-sampled version of the input
17513 stream for better peak accuracy. It logs a message for true-peak.
17514 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
17515 This mode requires a build with @code{libswresample}.
17516 @end table
17517
17518 @item dualmono
17519 Treat mono input files as "dual mono". If a mono file is intended for playback
17520 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
17521 If set to @code{true}, this option will compensate for this effect.
17522 Multi-channel input files are not affected by this option.
17523
17524 @item panlaw
17525 Set a specific pan law to be used for the measurement of dual mono files.
17526 This parameter is optional, and has a default value of -3.01dB.
17527 @end table
17528
17529 @subsection Examples
17530
17531 @itemize
17532 @item
17533 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
17534 @example
17535 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
17536 @end example
17537
17538 @item
17539 Run an analysis with @command{ffmpeg}:
17540 @example
17541 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
17542 @end example
17543 @end itemize
17544
17545 @section interleave, ainterleave
17546
17547 Temporally interleave frames from several inputs.
17548
17549 @code{interleave} works with video inputs, @code{ainterleave} with audio.
17550
17551 These filters read frames from several inputs and send the oldest
17552 queued frame to the output.
17553
17554 Input streams must have well defined, monotonically increasing frame
17555 timestamp values.
17556
17557 In order to submit one frame to output, these filters need to enqueue
17558 at least one frame for each input, so they cannot work in case one
17559 input is not yet terminated and will not receive incoming frames.
17560
17561 For example consider the case when one input is a @code{select} filter
17562 which always drops input frames. The @code{interleave} filter will keep
17563 reading from that input, but it will never be able to send new frames
17564 to output until the input sends an end-of-stream signal.
17565
17566 Also, depending on inputs synchronization, the filters will drop
17567 frames in case one input receives more frames than the other ones, and
17568 the queue is already filled.
17569
17570 These filters accept the following options:
17571
17572 @table @option
17573 @item nb_inputs, n
17574 Set the number of different inputs, it is 2 by default.
17575 @end table
17576
17577 @subsection Examples
17578
17579 @itemize
17580 @item
17581 Interleave frames belonging to different streams using @command{ffmpeg}:
17582 @example
17583 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
17584 @end example
17585
17586 @item
17587 Add flickering blur effect:
17588 @example
17589 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
17590 @end example
17591 @end itemize
17592
17593 @section metadata, ametadata
17594
17595 Manipulate frame metadata.
17596
17597 This filter accepts the following options:
17598
17599 @table @option
17600 @item mode
17601 Set mode of operation of the filter.
17602
17603 Can be one of the following:
17604
17605 @table @samp
17606 @item select
17607 If both @code{value} and @code{key} is set, select frames
17608 which have such metadata. If only @code{key} is set, select
17609 every frame that has such key in metadata.
17610
17611 @item add
17612 Add new metadata @code{key} and @code{value}. If key is already available
17613 do nothing.
17614
17615 @item modify
17616 Modify value of already present key.
17617
17618 @item delete
17619 If @code{value} is set, delete only keys that have such value.
17620 Otherwise, delete key. If @code{key} is not set, delete all metadata values in
17621 the frame.
17622
17623 @item print
17624 Print key and its value if metadata was found. If @code{key} is not set print all
17625 metadata values available in frame.
17626 @end table
17627
17628 @item key
17629 Set key used with all modes. Must be set for all modes except @code{print} and @code{delete}.
17630
17631 @item value
17632 Set metadata value which will be used. This option is mandatory for
17633 @code{modify} and @code{add} mode.
17634
17635 @item function
17636 Which function to use when comparing metadata value and @code{value}.
17637
17638 Can be one of following:
17639
17640 @table @samp
17641 @item same_str
17642 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
17643
17644 @item starts_with
17645 Values are interpreted as strings, returns true if metadata value starts with
17646 the @code{value} option string.
17647
17648 @item less
17649 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
17650
17651 @item equal
17652 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
17653
17654 @item greater
17655 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
17656
17657 @item expr
17658 Values are interpreted as floats, returns true if expression from option @code{expr}
17659 evaluates to true.
17660 @end table
17661
17662 @item expr
17663 Set expression which is used when @code{function} is set to @code{expr}.
17664 The expression is evaluated through the eval API and can contain the following
17665 constants:
17666
17667 @table @option
17668 @item VALUE1
17669 Float representation of @code{value} from metadata key.
17670
17671 @item VALUE2
17672 Float representation of @code{value} as supplied by user in @code{value} option.
17673 @end table
17674
17675 @item file
17676 If specified in @code{print} mode, output is written to the named file. Instead of
17677 plain filename any writable url can be specified. Filename ``-'' is a shorthand
17678 for standard output. If @code{file} option is not set, output is written to the log
17679 with AV_LOG_INFO loglevel.
17680
17681 @end table
17682
17683 @subsection Examples
17684
17685 @itemize
17686 @item
17687 Print all metadata values for frames with key @code{lavfi.signalstats.YDIF} with values
17688 between 0 and 1.
17689 @example
17690 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
17691 @end example
17692 @item
17693 Print silencedetect output to file @file{metadata.txt}.
17694 @example
17695 silencedetect,ametadata=mode=print:file=metadata.txt
17696 @end example
17697 @item
17698 Direct all metadata to a pipe with file descriptor 4.
17699 @example
17700 metadata=mode=print:file='pipe\:4'
17701 @end example
17702 @end itemize
17703
17704 @section perms, aperms
17705
17706 Set read/write permissions for the output frames.
17707
17708 These filters are mainly aimed at developers to test direct path in the
17709 following filter in the filtergraph.
17710
17711 The filters accept the following options:
17712
17713 @table @option
17714 @item mode
17715 Select the permissions mode.
17716
17717 It accepts the following values:
17718 @table @samp
17719 @item none
17720 Do nothing. This is the default.
17721 @item ro
17722 Set all the output frames read-only.
17723 @item rw
17724 Set all the output frames directly writable.
17725 @item toggle
17726 Make the frame read-only if writable, and writable if read-only.
17727 @item random
17728 Set each output frame read-only or writable randomly.
17729 @end table
17730
17731 @item seed
17732 Set the seed for the @var{random} mode, must be an integer included between
17733 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
17734 @code{-1}, the filter will try to use a good random seed on a best effort
17735 basis.
17736 @end table
17737
17738 Note: in case of auto-inserted filter between the permission filter and the
17739 following one, the permission might not be received as expected in that
17740 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
17741 perms/aperms filter can avoid this problem.
17742
17743 @section realtime, arealtime
17744
17745 Slow down filtering to match real time approximately.
17746
17747 These filters will pause the filtering for a variable amount of time to
17748 match the output rate with the input timestamps.
17749 They are similar to the @option{re} option to @code{ffmpeg}.
17750
17751 They accept the following options:
17752
17753 @table @option
17754 @item limit
17755 Time limit for the pauses. Any pause longer than that will be considered
17756 a timestamp discontinuity and reset the timer. Default is 2 seconds.
17757 @end table
17758
17759 @anchor{select}
17760 @section select, aselect
17761
17762 Select frames to pass in output.
17763
17764 This filter accepts the following options:
17765
17766 @table @option
17767
17768 @item expr, e
17769 Set expression, which is evaluated for each input frame.
17770
17771 If the expression is evaluated to zero, the frame is discarded.
17772
17773 If the evaluation result is negative or NaN, the frame is sent to the
17774 first output; otherwise it is sent to the output with index
17775 @code{ceil(val)-1}, assuming that the input index starts from 0.
17776
17777 For example a value of @code{1.2} corresponds to the output with index
17778 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
17779
17780 @item outputs, n
17781 Set the number of outputs. The output to which to send the selected
17782 frame is based on the result of the evaluation. Default value is 1.
17783 @end table
17784
17785 The expression can contain the following constants:
17786
17787 @table @option
17788 @item n
17789 The (sequential) number of the filtered frame, starting from 0.
17790
17791 @item selected_n
17792 The (sequential) number of the selected frame, starting from 0.
17793
17794 @item prev_selected_n
17795 The sequential number of the last selected frame. It's NAN if undefined.
17796
17797 @item TB
17798 The timebase of the input timestamps.
17799
17800 @item pts
17801 The PTS (Presentation TimeStamp) of the filtered video frame,
17802 expressed in @var{TB} units. It's NAN if undefined.
17803
17804 @item t
17805 The PTS of the filtered video frame,
17806 expressed in seconds. It's NAN if undefined.
17807
17808 @item prev_pts
17809 The PTS of the previously filtered video frame. It's NAN if undefined.
17810
17811 @item prev_selected_pts
17812 The PTS of the last previously filtered video frame. It's NAN if undefined.
17813
17814 @item prev_selected_t
17815 The PTS of the last previously selected video frame, expressed in seconds. It's NAN if undefined.
17816
17817 @item start_pts
17818 The PTS of the first video frame in the video. It's NAN if undefined.
17819
17820 @item start_t
17821 The time of the first video frame in the video. It's NAN if undefined.
17822
17823 @item pict_type @emph{(video only)}
17824 The type of the filtered frame. It can assume one of the following
17825 values:
17826 @table @option
17827 @item I
17828 @item P
17829 @item B
17830 @item S
17831 @item SI
17832 @item SP
17833 @item BI
17834 @end table
17835
17836 @item interlace_type @emph{(video only)}
17837 The frame interlace type. It can assume one of the following values:
17838 @table @option
17839 @item PROGRESSIVE
17840 The frame is progressive (not interlaced).
17841 @item TOPFIRST
17842 The frame is top-field-first.
17843 @item BOTTOMFIRST
17844 The frame is bottom-field-first.
17845 @end table
17846
17847 @item consumed_sample_n @emph{(audio only)}
17848 the number of selected samples before the current frame
17849
17850 @item samples_n @emph{(audio only)}
17851 the number of samples in the current frame
17852
17853 @item sample_rate @emph{(audio only)}
17854 the input sample rate
17855
17856 @item key
17857 This is 1 if the filtered frame is a key-frame, 0 otherwise.
17858
17859 @item pos
17860 the position in the file of the filtered frame, -1 if the information
17861 is not available (e.g. for synthetic video)
17862
17863 @item scene @emph{(video only)}
17864 value between 0 and 1 to indicate a new scene; a low value reflects a low
17865 probability for the current frame to introduce a new scene, while a higher
17866 value means the current frame is more likely to be one (see the example below)
17867
17868 @item concatdec_select
17869 The concat demuxer can select only part of a concat input file by setting an
17870 inpoint and an outpoint, but the output packets may not be entirely contained
17871 in the selected interval. By using this variable, it is possible to skip frames
17872 generated by the concat demuxer which are not exactly contained in the selected
17873 interval.
17874
17875 This works by comparing the frame pts against the @var{lavf.concat.start_time}
17876 and the @var{lavf.concat.duration} packet metadata values which are also
17877 present in the decoded frames.
17878
17879 The @var{concatdec_select} variable is -1 if the frame pts is at least
17880 start_time and either the duration metadata is missing or the frame pts is less
17881 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
17882 missing.
17883
17884 That basically means that an input frame is selected if its pts is within the
17885 interval set by the concat demuxer.
17886
17887 @end table
17888
17889 The default value of the select expression is "1".
17890
17891 @subsection Examples
17892
17893 @itemize
17894 @item
17895 Select all frames in input:
17896 @example
17897 select
17898 @end example
17899
17900 The example above is the same as:
17901 @example
17902 select=1
17903 @end example
17904
17905 @item
17906 Skip all frames:
17907 @example
17908 select=0
17909 @end example
17910
17911 @item
17912 Select only I-frames:
17913 @example
17914 select='eq(pict_type\,I)'
17915 @end example
17916
17917 @item
17918 Select one frame every 100:
17919 @example
17920 select='not(mod(n\,100))'
17921 @end example
17922
17923 @item
17924 Select only frames contained in the 10-20 time interval:
17925 @example
17926 select=between(t\,10\,20)
17927 @end example
17928
17929 @item
17930 Select only I-frames contained in the 10-20 time interval:
17931 @example
17932 select=between(t\,10\,20)*eq(pict_type\,I)
17933 @end example
17934
17935 @item
17936 Select frames with a minimum distance of 10 seconds:
17937 @example
17938 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
17939 @end example
17940
17941 @item
17942 Use aselect to select only audio frames with samples number > 100:
17943 @example
17944 aselect='gt(samples_n\,100)'
17945 @end example
17946
17947 @item
17948 Create a mosaic of the first scenes:
17949 @example
17950 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
17951 @end example
17952
17953 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
17954 choice.
17955
17956 @item
17957 Send even and odd frames to separate outputs, and compose them:
17958 @example
17959 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
17960 @end example
17961
17962 @item
17963 Select useful frames from an ffconcat file which is using inpoints and
17964 outpoints but where the source files are not intra frame only.
17965 @example
17966 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
17967 @end example
17968 @end itemize
17969
17970 @section sendcmd, asendcmd
17971
17972 Send commands to filters in the filtergraph.
17973
17974 These filters read commands to be sent to other filters in the
17975 filtergraph.
17976
17977 @code{sendcmd} must be inserted between two video filters,
17978 @code{asendcmd} must be inserted between two audio filters, but apart
17979 from that they act the same way.
17980
17981 The specification of commands can be provided in the filter arguments
17982 with the @var{commands} option, or in a file specified by the
17983 @var{filename} option.
17984
17985 These filters accept the following options:
17986 @table @option
17987 @item commands, c
17988 Set the commands to be read and sent to the other filters.
17989 @item filename, f
17990 Set the filename of the commands to be read and sent to the other
17991 filters.
17992 @end table
17993
17994 @subsection Commands syntax
17995
17996 A commands description consists of a sequence of interval
17997 specifications, comprising a list of commands to be executed when a
17998 particular event related to that interval occurs. The occurring event
17999 is typically the current frame time entering or leaving a given time
18000 interval.
18001
18002 An interval is specified by the following syntax:
18003 @example
18004 @var{START}[-@var{END}] @var{COMMANDS};
18005 @end example
18006
18007 The time interval is specified by the @var{START} and @var{END} times.
18008 @var{END} is optional and defaults to the maximum time.
18009
18010 The current frame time is considered within the specified interval if
18011 it is included in the interval [@var{START}, @var{END}), that is when
18012 the time is greater or equal to @var{START} and is lesser than
18013 @var{END}.
18014
18015 @var{COMMANDS} consists of a sequence of one or more command
18016 specifications, separated by ",", relating to that interval.  The
18017 syntax of a command specification is given by:
18018 @example
18019 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
18020 @end example
18021
18022 @var{FLAGS} is optional and specifies the type of events relating to
18023 the time interval which enable sending the specified command, and must
18024 be a non-null sequence of identifier flags separated by "+" or "|" and
18025 enclosed between "[" and "]".
18026
18027 The following flags are recognized:
18028 @table @option
18029 @item enter
18030 The command is sent when the current frame timestamp enters the
18031 specified interval. In other words, the command is sent when the
18032 previous frame timestamp was not in the given interval, and the
18033 current is.
18034
18035 @item leave
18036 The command is sent when the current frame timestamp leaves the
18037 specified interval. In other words, the command is sent when the
18038 previous frame timestamp was in the given interval, and the
18039 current is not.
18040 @end table
18041
18042 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
18043 assumed.
18044
18045 @var{TARGET} specifies the target of the command, usually the name of
18046 the filter class or a specific filter instance name.
18047
18048 @var{COMMAND} specifies the name of the command for the target filter.
18049
18050 @var{ARG} is optional and specifies the optional list of argument for
18051 the given @var{COMMAND}.
18052
18053 Between one interval specification and another, whitespaces, or
18054 sequences of characters starting with @code{#} until the end of line,
18055 are ignored and can be used to annotate comments.
18056
18057 A simplified BNF description of the commands specification syntax
18058 follows:
18059 @example
18060 @var{COMMAND_FLAG}  ::= "enter" | "leave"
18061 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
18062 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
18063 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
18064 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
18065 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
18066 @end example
18067
18068 @subsection Examples
18069
18070 @itemize
18071 @item
18072 Specify audio tempo change at second 4:
18073 @example
18074 asendcmd=c='4.0 atempo tempo 1.5',atempo
18075 @end example
18076
18077 @item
18078 Target a specific filter instance:
18079 @example
18080 asendcmd=c='4.0 atempo@@my tempo 1.5',atempo@@my
18081 @end example
18082
18083 @item
18084 Specify a list of drawtext and hue commands in a file.
18085 @example
18086 # show text in the interval 5-10
18087 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
18088          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
18089
18090 # desaturate the image in the interval 15-20
18091 15.0-20.0 [enter] hue s 0,
18092           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
18093           [leave] hue s 1,
18094           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
18095
18096 # apply an exponential saturation fade-out effect, starting from time 25
18097 25 [enter] hue s exp(25-t)
18098 @end example
18099
18100 A filtergraph allowing to read and process the above command list
18101 stored in a file @file{test.cmd}, can be specified with:
18102 @example
18103 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
18104 @end example
18105 @end itemize
18106
18107 @anchor{setpts}
18108 @section setpts, asetpts
18109
18110 Change the PTS (presentation timestamp) of the input frames.
18111
18112 @code{setpts} works on video frames, @code{asetpts} on audio frames.
18113
18114 This filter accepts the following options:
18115
18116 @table @option
18117
18118 @item expr
18119 The expression which is evaluated for each frame to construct its timestamp.
18120
18121 @end table
18122
18123 The expression is evaluated through the eval API and can contain the following
18124 constants:
18125
18126 @table @option
18127 @item FRAME_RATE
18128 frame rate, only defined for constant frame-rate video
18129
18130 @item PTS
18131 The presentation timestamp in input
18132
18133 @item N
18134 The count of the input frame for video or the number of consumed samples,
18135 not including the current frame for audio, starting from 0.
18136
18137 @item NB_CONSUMED_SAMPLES
18138 The number of consumed samples, not including the current frame (only
18139 audio)
18140
18141 @item NB_SAMPLES, S
18142 The number of samples in the current frame (only audio)
18143
18144 @item SAMPLE_RATE, SR
18145 The audio sample rate.
18146
18147 @item STARTPTS
18148 The PTS of the first frame.
18149
18150 @item STARTT
18151 the time in seconds of the first frame
18152
18153 @item INTERLACED
18154 State whether the current frame is interlaced.
18155
18156 @item T
18157 the time in seconds of the current frame
18158
18159 @item POS
18160 original position in the file of the frame, or undefined if undefined
18161 for the current frame
18162
18163 @item PREV_INPTS
18164 The previous input PTS.
18165
18166 @item PREV_INT
18167 previous input time in seconds
18168
18169 @item PREV_OUTPTS
18170 The previous output PTS.
18171
18172 @item PREV_OUTT
18173 previous output time in seconds
18174
18175 @item RTCTIME
18176 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
18177 instead.
18178
18179 @item RTCSTART
18180 The wallclock (RTC) time at the start of the movie in microseconds.
18181
18182 @item TB
18183 The timebase of the input timestamps.
18184
18185 @end table
18186
18187 @subsection Examples
18188
18189 @itemize
18190 @item
18191 Start counting PTS from zero
18192 @example
18193 setpts=PTS-STARTPTS
18194 @end example
18195
18196 @item
18197 Apply fast motion effect:
18198 @example
18199 setpts=0.5*PTS
18200 @end example
18201
18202 @item
18203 Apply slow motion effect:
18204 @example
18205 setpts=2.0*PTS
18206 @end example
18207
18208 @item
18209 Set fixed rate of 25 frames per second:
18210 @example
18211 setpts=N/(25*TB)
18212 @end example
18213
18214 @item
18215 Set fixed rate 25 fps with some jitter:
18216 @example
18217 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
18218 @end example
18219
18220 @item
18221 Apply an offset of 10 seconds to the input PTS:
18222 @example
18223 setpts=PTS+10/TB
18224 @end example
18225
18226 @item
18227 Generate timestamps from a "live source" and rebase onto the current timebase:
18228 @example
18229 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
18230 @end example
18231
18232 @item
18233 Generate timestamps by counting samples:
18234 @example
18235 asetpts=N/SR/TB
18236 @end example
18237
18238 @end itemize
18239
18240 @section settb, asettb
18241
18242 Set the timebase to use for the output frames timestamps.
18243 It is mainly useful for testing timebase configuration.
18244
18245 It accepts the following parameters:
18246
18247 @table @option
18248
18249 @item expr, tb
18250 The expression which is evaluated into the output timebase.
18251
18252 @end table
18253
18254 The value for @option{tb} is an arithmetic expression representing a
18255 rational. The expression can contain the constants "AVTB" (the default
18256 timebase), "intb" (the input timebase) and "sr" (the sample rate,
18257 audio only). Default value is "intb".
18258
18259 @subsection Examples
18260
18261 @itemize
18262 @item
18263 Set the timebase to 1/25:
18264 @example
18265 settb=expr=1/25
18266 @end example
18267
18268 @item
18269 Set the timebase to 1/10:
18270 @example
18271 settb=expr=0.1
18272 @end example
18273
18274 @item
18275 Set the timebase to 1001/1000:
18276 @example
18277 settb=1+0.001
18278 @end example
18279
18280 @item
18281 Set the timebase to 2*intb:
18282 @example
18283 settb=2*intb
18284 @end example
18285
18286 @item
18287 Set the default timebase value:
18288 @example
18289 settb=AVTB
18290 @end example
18291 @end itemize
18292
18293 @section showcqt
18294 Convert input audio to a video output representing frequency spectrum
18295 logarithmically using Brown-Puckette constant Q transform algorithm with
18296 direct frequency domain coefficient calculation (but the transform itself
18297 is not really constant Q, instead the Q factor is actually variable/clamped),
18298 with musical tone scale, from E0 to D#10.
18299
18300 The filter accepts the following options:
18301
18302 @table @option
18303 @item size, s
18304 Specify the video size for the output. It must be even. For the syntax of this option,
18305 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18306 Default value is @code{1920x1080}.
18307
18308 @item fps, rate, r
18309 Set the output frame rate. Default value is @code{25}.
18310
18311 @item bar_h
18312 Set the bargraph height. It must be even. Default value is @code{-1} which
18313 computes the bargraph height automatically.
18314
18315 @item axis_h
18316 Set the axis height. It must be even. Default value is @code{-1} which computes
18317 the axis height automatically.
18318
18319 @item sono_h
18320 Set the sonogram height. It must be even. Default value is @code{-1} which
18321 computes the sonogram height automatically.
18322
18323 @item fullhd
18324 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
18325 instead. Default value is @code{1}.
18326
18327 @item sono_v, volume
18328 Specify the sonogram volume expression. It can contain variables:
18329 @table @option
18330 @item bar_v
18331 the @var{bar_v} evaluated expression
18332 @item frequency, freq, f
18333 the frequency where it is evaluated
18334 @item timeclamp, tc
18335 the value of @var{timeclamp} option
18336 @end table
18337 and functions:
18338 @table @option
18339 @item a_weighting(f)
18340 A-weighting of equal loudness
18341 @item b_weighting(f)
18342 B-weighting of equal loudness
18343 @item c_weighting(f)
18344 C-weighting of equal loudness.
18345 @end table
18346 Default value is @code{16}.
18347
18348 @item bar_v, volume2
18349 Specify the bargraph volume expression. It can contain variables:
18350 @table @option
18351 @item sono_v
18352 the @var{sono_v} evaluated expression
18353 @item frequency, freq, f
18354 the frequency where it is evaluated
18355 @item timeclamp, tc
18356 the value of @var{timeclamp} option
18357 @end table
18358 and functions:
18359 @table @option
18360 @item a_weighting(f)
18361 A-weighting of equal loudness
18362 @item b_weighting(f)
18363 B-weighting of equal loudness
18364 @item c_weighting(f)
18365 C-weighting of equal loudness.
18366 @end table
18367 Default value is @code{sono_v}.
18368
18369 @item sono_g, gamma
18370 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
18371 higher gamma makes the spectrum having more range. Default value is @code{3}.
18372 Acceptable range is @code{[1, 7]}.
18373
18374 @item bar_g, gamma2
18375 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
18376 @code{[1, 7]}.
18377
18378 @item bar_t
18379 Specify the bargraph transparency level. Lower value makes the bargraph sharper.
18380 Default value is @code{1}. Acceptable range is @code{[0, 1]}.
18381
18382 @item timeclamp, tc
18383 Specify the transform timeclamp. At low frequency, there is trade-off between
18384 accuracy in time domain and frequency domain. If timeclamp is lower,
18385 event in time domain is represented more accurately (such as fast bass drum),
18386 otherwise event in frequency domain is represented more accurately
18387 (such as bass guitar). Acceptable range is @code{[0.002, 1]}. Default value is @code{0.17}.
18388
18389 @item attack
18390 Set attack time in seconds. The default is @code{0} (disabled). Otherwise, it
18391 limits future samples by applying asymmetric windowing in time domain, useful
18392 when low latency is required. Accepted range is @code{[0, 1]}.
18393
18394 @item basefreq
18395 Specify the transform base frequency. Default value is @code{20.01523126408007475},
18396 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
18397
18398 @item endfreq
18399 Specify the transform end frequency. Default value is @code{20495.59681441799654},
18400 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
18401
18402 @item coeffclamp
18403 This option is deprecated and ignored.
18404
18405 @item tlength
18406 Specify the transform length in time domain. Use this option to control accuracy
18407 trade-off between time domain and frequency domain at every frequency sample.
18408 It can contain variables:
18409 @table @option
18410 @item frequency, freq, f
18411 the frequency where it is evaluated
18412 @item timeclamp, tc
18413 the value of @var{timeclamp} option.
18414 @end table
18415 Default value is @code{384*tc/(384+tc*f)}.
18416
18417 @item count
18418 Specify the transform count for every video frame. Default value is @code{6}.
18419 Acceptable range is @code{[1, 30]}.
18420
18421 @item fcount
18422 Specify the transform count for every single pixel. Default value is @code{0},
18423 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
18424
18425 @item fontfile
18426 Specify font file for use with freetype to draw the axis. If not specified,
18427 use embedded font. Note that drawing with font file or embedded font is not
18428 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
18429 option instead.
18430
18431 @item font
18432 Specify fontconfig pattern. This has lower priority than @var{fontfile}.
18433 The : in the pattern may be replaced by | to avoid unnecessary escaping.
18434
18435 @item fontcolor
18436 Specify font color expression. This is arithmetic expression that should return
18437 integer value 0xRRGGBB. It can contain variables:
18438 @table @option
18439 @item frequency, freq, f
18440 the frequency where it is evaluated
18441 @item timeclamp, tc
18442 the value of @var{timeclamp} option
18443 @end table
18444 and functions:
18445 @table @option
18446 @item midi(f)
18447 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
18448 @item r(x), g(x), b(x)
18449 red, green, and blue value of intensity x.
18450 @end table
18451 Default value is @code{st(0, (midi(f)-59.5)/12);
18452 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
18453 r(1-ld(1)) + b(ld(1))}.
18454
18455 @item axisfile
18456 Specify image file to draw the axis. This option override @var{fontfile} and
18457 @var{fontcolor} option.
18458
18459 @item axis, text
18460 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
18461 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
18462 Default value is @code{1}.
18463
18464 @item csp
18465 Set colorspace. The accepted values are:
18466 @table @samp
18467 @item unspecified
18468 Unspecified (default)
18469
18470 @item bt709
18471 BT.709
18472
18473 @item fcc
18474 FCC
18475
18476 @item bt470bg
18477 BT.470BG or BT.601-6 625
18478
18479 @item smpte170m
18480 SMPTE-170M or BT.601-6 525
18481
18482 @item smpte240m
18483 SMPTE-240M
18484
18485 @item bt2020ncl
18486 BT.2020 with non-constant luminance
18487
18488 @end table
18489
18490 @item cscheme
18491 Set spectrogram color scheme. This is list of floating point values with format
18492 @code{left_r|left_g|left_b|right_r|right_g|right_b}.
18493 The default is @code{1|0.5|0|0|0.5|1}.
18494
18495 @end table
18496
18497 @subsection Examples
18498
18499 @itemize
18500 @item
18501 Playing audio while showing the spectrum:
18502 @example
18503 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
18504 @end example
18505
18506 @item
18507 Same as above, but with frame rate 30 fps:
18508 @example
18509 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
18510 @end example
18511
18512 @item
18513 Playing at 1280x720:
18514 @example
18515 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
18516 @end example
18517
18518 @item
18519 Disable sonogram display:
18520 @example
18521 sono_h=0
18522 @end example
18523
18524 @item
18525 A1 and its harmonics: A1, A2, (near)E3, A3:
18526 @example
18527 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),
18528                  asplit[a][out1]; [a] showcqt [out0]'
18529 @end example
18530
18531 @item
18532 Same as above, but with more accuracy in frequency domain:
18533 @example
18534 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),
18535                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
18536 @end example
18537
18538 @item
18539 Custom volume:
18540 @example
18541 bar_v=10:sono_v=bar_v*a_weighting(f)
18542 @end example
18543
18544 @item
18545 Custom gamma, now spectrum is linear to the amplitude.
18546 @example
18547 bar_g=2:sono_g=2
18548 @end example
18549
18550 @item
18551 Custom tlength equation:
18552 @example
18553 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)))'
18554 @end example
18555
18556 @item
18557 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
18558 @example
18559 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
18560 @end example
18561
18562 @item
18563 Custom font using fontconfig:
18564 @example
18565 font='Courier New,Monospace,mono|bold'
18566 @end example
18567
18568 @item
18569 Custom frequency range with custom axis using image file:
18570 @example
18571 axisfile=myaxis.png:basefreq=40:endfreq=10000
18572 @end example
18573 @end itemize
18574
18575 @section showfreqs
18576
18577 Convert input audio to video output representing the audio power spectrum.
18578 Audio amplitude is on Y-axis while frequency is on X-axis.
18579
18580 The filter accepts the following options:
18581
18582 @table @option
18583 @item size, s
18584 Specify size of video. For the syntax of this option, check the
18585 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18586 Default is @code{1024x512}.
18587
18588 @item mode
18589 Set display mode.
18590 This set how each frequency bin will be represented.
18591
18592 It accepts the following values:
18593 @table @samp
18594 @item line
18595 @item bar
18596 @item dot
18597 @end table
18598 Default is @code{bar}.
18599
18600 @item ascale
18601 Set amplitude scale.
18602
18603 It accepts the following values:
18604 @table @samp
18605 @item lin
18606 Linear scale.
18607
18608 @item sqrt
18609 Square root scale.
18610
18611 @item cbrt
18612 Cubic root scale.
18613
18614 @item log
18615 Logarithmic scale.
18616 @end table
18617 Default is @code{log}.
18618
18619 @item fscale
18620 Set frequency scale.
18621
18622 It accepts the following values:
18623 @table @samp
18624 @item lin
18625 Linear scale.
18626
18627 @item log
18628 Logarithmic scale.
18629
18630 @item rlog
18631 Reverse logarithmic scale.
18632 @end table
18633 Default is @code{lin}.
18634
18635 @item win_size
18636 Set window size.
18637
18638 It accepts the following values:
18639 @table @samp
18640 @item w16
18641 @item w32
18642 @item w64
18643 @item w128
18644 @item w256
18645 @item w512
18646 @item w1024
18647 @item w2048
18648 @item w4096
18649 @item w8192
18650 @item w16384
18651 @item w32768
18652 @item w65536
18653 @end table
18654 Default is @code{w2048}
18655
18656 @item win_func
18657 Set windowing function.
18658
18659 It accepts the following values:
18660 @table @samp
18661 @item rect
18662 @item bartlett
18663 @item hanning
18664 @item hamming
18665 @item blackman
18666 @item welch
18667 @item flattop
18668 @item bharris
18669 @item bnuttall
18670 @item bhann
18671 @item sine
18672 @item nuttall
18673 @item lanczos
18674 @item gauss
18675 @item tukey
18676 @item dolph
18677 @item cauchy
18678 @item parzen
18679 @item poisson
18680 @end table
18681 Default is @code{hanning}.
18682
18683 @item overlap
18684 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
18685 which means optimal overlap for selected window function will be picked.
18686
18687 @item averaging
18688 Set time averaging. Setting this to 0 will display current maximal peaks.
18689 Default is @code{1}, which means time averaging is disabled.
18690
18691 @item colors
18692 Specify list of colors separated by space or by '|' which will be used to
18693 draw channel frequencies. Unrecognized or missing colors will be replaced
18694 by white color.
18695
18696 @item cmode
18697 Set channel display mode.
18698
18699 It accepts the following values:
18700 @table @samp
18701 @item combined
18702 @item separate
18703 @end table
18704 Default is @code{combined}.
18705
18706 @item minamp
18707 Set minimum amplitude used in @code{log} amplitude scaler.
18708
18709 @end table
18710
18711 @anchor{showspectrum}
18712 @section showspectrum
18713
18714 Convert input audio to a video output, representing the audio frequency
18715 spectrum.
18716
18717 The filter accepts the following options:
18718
18719 @table @option
18720 @item size, s
18721 Specify the video size for the output. For the syntax of this option, check the
18722 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18723 Default value is @code{640x512}.
18724
18725 @item slide
18726 Specify how the spectrum should slide along the window.
18727
18728 It accepts the following values:
18729 @table @samp
18730 @item replace
18731 the samples start again on the left when they reach the right
18732 @item scroll
18733 the samples scroll from right to left
18734 @item fullframe
18735 frames are only produced when the samples reach the right
18736 @item rscroll
18737 the samples scroll from left to right
18738 @end table
18739
18740 Default value is @code{replace}.
18741
18742 @item mode
18743 Specify display mode.
18744
18745 It accepts the following values:
18746 @table @samp
18747 @item combined
18748 all channels are displayed in the same row
18749 @item separate
18750 all channels are displayed in separate rows
18751 @end table
18752
18753 Default value is @samp{combined}.
18754
18755 @item color
18756 Specify display color mode.
18757
18758 It accepts the following values:
18759 @table @samp
18760 @item channel
18761 each channel is displayed in a separate color
18762 @item intensity
18763 each channel is displayed using the same color scheme
18764 @item rainbow
18765 each channel is displayed using the rainbow color scheme
18766 @item moreland
18767 each channel is displayed using the moreland color scheme
18768 @item nebulae
18769 each channel is displayed using the nebulae color scheme
18770 @item fire
18771 each channel is displayed using the fire color scheme
18772 @item fiery
18773 each channel is displayed using the fiery color scheme
18774 @item fruit
18775 each channel is displayed using the fruit color scheme
18776 @item cool
18777 each channel is displayed using the cool color scheme
18778 @end table
18779
18780 Default value is @samp{channel}.
18781
18782 @item scale
18783 Specify scale used for calculating intensity color values.
18784
18785 It accepts the following values:
18786 @table @samp
18787 @item lin
18788 linear
18789 @item sqrt
18790 square root, default
18791 @item cbrt
18792 cubic root
18793 @item log
18794 logarithmic
18795 @item 4thrt
18796 4th root
18797 @item 5thrt
18798 5th root
18799 @end table
18800
18801 Default value is @samp{sqrt}.
18802
18803 @item saturation
18804 Set saturation modifier for displayed colors. Negative values provide
18805 alternative color scheme. @code{0} is no saturation at all.
18806 Saturation must be in [-10.0, 10.0] range.
18807 Default value is @code{1}.
18808
18809 @item win_func
18810 Set window function.
18811
18812 It accepts the following values:
18813 @table @samp
18814 @item rect
18815 @item bartlett
18816 @item hann
18817 @item hanning
18818 @item hamming
18819 @item blackman
18820 @item welch
18821 @item flattop
18822 @item bharris
18823 @item bnuttall
18824 @item bhann
18825 @item sine
18826 @item nuttall
18827 @item lanczos
18828 @item gauss
18829 @item tukey
18830 @item dolph
18831 @item cauchy
18832 @item parzen
18833 @item poisson
18834 @end table
18835
18836 Default value is @code{hann}.
18837
18838 @item orientation
18839 Set orientation of time vs frequency axis. Can be @code{vertical} or
18840 @code{horizontal}. Default is @code{vertical}.
18841
18842 @item overlap
18843 Set ratio of overlap window. Default value is @code{0}.
18844 When value is @code{1} overlap is set to recommended size for specific
18845 window function currently used.
18846
18847 @item gain
18848 Set scale gain for calculating intensity color values.
18849 Default value is @code{1}.
18850
18851 @item data
18852 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
18853
18854 @item rotation
18855 Set color rotation, must be in [-1.0, 1.0] range.
18856 Default value is @code{0}.
18857 @end table
18858
18859 The usage is very similar to the showwaves filter; see the examples in that
18860 section.
18861
18862 @subsection Examples
18863
18864 @itemize
18865 @item
18866 Large window with logarithmic color scaling:
18867 @example
18868 showspectrum=s=1280x480:scale=log
18869 @end example
18870
18871 @item
18872 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
18873 @example
18874 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
18875              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
18876 @end example
18877 @end itemize
18878
18879 @section showspectrumpic
18880
18881 Convert input audio to a single video frame, representing the audio frequency
18882 spectrum.
18883
18884 The filter accepts the following options:
18885
18886 @table @option
18887 @item size, s
18888 Specify the video size for the output. For the syntax of this option, check the
18889 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18890 Default value is @code{4096x2048}.
18891
18892 @item mode
18893 Specify display mode.
18894
18895 It accepts the following values:
18896 @table @samp
18897 @item combined
18898 all channels are displayed in the same row
18899 @item separate
18900 all channels are displayed in separate rows
18901 @end table
18902 Default value is @samp{combined}.
18903
18904 @item color
18905 Specify display color mode.
18906
18907 It accepts the following values:
18908 @table @samp
18909 @item channel
18910 each channel is displayed in a separate color
18911 @item intensity
18912 each channel is displayed using the same color scheme
18913 @item rainbow
18914 each channel is displayed using the rainbow color scheme
18915 @item moreland
18916 each channel is displayed using the moreland color scheme
18917 @item nebulae
18918 each channel is displayed using the nebulae color scheme
18919 @item fire
18920 each channel is displayed using the fire color scheme
18921 @item fiery
18922 each channel is displayed using the fiery color scheme
18923 @item fruit
18924 each channel is displayed using the fruit color scheme
18925 @item cool
18926 each channel is displayed using the cool color scheme
18927 @end table
18928 Default value is @samp{intensity}.
18929
18930 @item scale
18931 Specify scale used for calculating intensity color values.
18932
18933 It accepts the following values:
18934 @table @samp
18935 @item lin
18936 linear
18937 @item sqrt
18938 square root, default
18939 @item cbrt
18940 cubic root
18941 @item log
18942 logarithmic
18943 @item 4thrt
18944 4th root
18945 @item 5thrt
18946 5th root
18947 @end table
18948 Default value is @samp{log}.
18949
18950 @item saturation
18951 Set saturation modifier for displayed colors. Negative values provide
18952 alternative color scheme. @code{0} is no saturation at all.
18953 Saturation must be in [-10.0, 10.0] range.
18954 Default value is @code{1}.
18955
18956 @item win_func
18957 Set window function.
18958
18959 It accepts the following values:
18960 @table @samp
18961 @item rect
18962 @item bartlett
18963 @item hann
18964 @item hanning
18965 @item hamming
18966 @item blackman
18967 @item welch
18968 @item flattop
18969 @item bharris
18970 @item bnuttall
18971 @item bhann
18972 @item sine
18973 @item nuttall
18974 @item lanczos
18975 @item gauss
18976 @item tukey
18977 @item dolph
18978 @item cauchy
18979 @item parzen
18980 @item poisson
18981 @end table
18982 Default value is @code{hann}.
18983
18984 @item orientation
18985 Set orientation of time vs frequency axis. Can be @code{vertical} or
18986 @code{horizontal}. Default is @code{vertical}.
18987
18988 @item gain
18989 Set scale gain for calculating intensity color values.
18990 Default value is @code{1}.
18991
18992 @item legend
18993 Draw time and frequency axes and legends. Default is enabled.
18994
18995 @item rotation
18996 Set color rotation, must be in [-1.0, 1.0] range.
18997 Default value is @code{0}.
18998 @end table
18999
19000 @subsection Examples
19001
19002 @itemize
19003 @item
19004 Extract an audio spectrogram of a whole audio track
19005 in a 1024x1024 picture using @command{ffmpeg}:
19006 @example
19007 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
19008 @end example
19009 @end itemize
19010
19011 @section showvolume
19012
19013 Convert input audio volume to a video output.
19014
19015 The filter accepts the following options:
19016
19017 @table @option
19018 @item rate, r
19019 Set video rate.
19020
19021 @item b
19022 Set border width, allowed range is [0, 5]. Default is 1.
19023
19024 @item w
19025 Set channel width, allowed range is [80, 8192]. Default is 400.
19026
19027 @item h
19028 Set channel height, allowed range is [1, 900]. Default is 20.
19029
19030 @item f
19031 Set fade, allowed range is [0.001, 1]. Default is 0.95.
19032
19033 @item c
19034 Set volume color expression.
19035
19036 The expression can use the following variables:
19037
19038 @table @option
19039 @item VOLUME
19040 Current max volume of channel in dB.
19041
19042 @item PEAK
19043 Current peak.
19044
19045 @item CHANNEL
19046 Current channel number, starting from 0.
19047 @end table
19048
19049 @item t
19050 If set, displays channel names. Default is enabled.
19051
19052 @item v
19053 If set, displays volume values. Default is enabled.
19054
19055 @item o
19056 Set orientation, can be @code{horizontal} or @code{vertical},
19057 default is @code{horizontal}.
19058
19059 @item s
19060 Set step size, allowed range s [0, 5]. Default is 0, which means
19061 step is disabled.
19062 @end table
19063
19064 @section showwaves
19065
19066 Convert input audio to a video output, representing the samples waves.
19067
19068 The filter accepts the following options:
19069
19070 @table @option
19071 @item size, s
19072 Specify the video size for the output. For the syntax of this option, check the
19073 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19074 Default value is @code{600x240}.
19075
19076 @item mode
19077 Set display mode.
19078
19079 Available values are:
19080 @table @samp
19081 @item point
19082 Draw a point for each sample.
19083
19084 @item line
19085 Draw a vertical line for each sample.
19086
19087 @item p2p
19088 Draw a point for each sample and a line between them.
19089
19090 @item cline
19091 Draw a centered vertical line for each sample.
19092 @end table
19093
19094 Default value is @code{point}.
19095
19096 @item n
19097 Set the number of samples which are printed on the same column. A
19098 larger value will decrease the frame rate. Must be a positive
19099 integer. This option can be set only if the value for @var{rate}
19100 is not explicitly specified.
19101
19102 @item rate, r
19103 Set the (approximate) output frame rate. This is done by setting the
19104 option @var{n}. Default value is "25".
19105
19106 @item split_channels
19107 Set if channels should be drawn separately or overlap. Default value is 0.
19108
19109 @item colors
19110 Set colors separated by '|' which are going to be used for drawing of each channel.
19111
19112 @item scale
19113 Set amplitude scale.
19114
19115 Available values are:
19116 @table @samp
19117 @item lin
19118 Linear.
19119
19120 @item log
19121 Logarithmic.
19122
19123 @item sqrt
19124 Square root.
19125
19126 @item cbrt
19127 Cubic root.
19128 @end table
19129
19130 Default is linear.
19131 @end table
19132
19133 @subsection Examples
19134
19135 @itemize
19136 @item
19137 Output the input file audio and the corresponding video representation
19138 at the same time:
19139 @example
19140 amovie=a.mp3,asplit[out0],showwaves[out1]
19141 @end example
19142
19143 @item
19144 Create a synthetic signal and show it with showwaves, forcing a
19145 frame rate of 30 frames per second:
19146 @example
19147 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
19148 @end example
19149 @end itemize
19150
19151 @section showwavespic
19152
19153 Convert input audio to a single video frame, representing the samples waves.
19154
19155 The filter accepts the following options:
19156
19157 @table @option
19158 @item size, s
19159 Specify the video size for the output. For the syntax of this option, check the
19160 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19161 Default value is @code{600x240}.
19162
19163 @item split_channels
19164 Set if channels should be drawn separately or overlap. Default value is 0.
19165
19166 @item colors
19167 Set colors separated by '|' which are going to be used for drawing of each channel.
19168
19169 @item scale
19170 Set amplitude scale.
19171
19172 Available values are:
19173 @table @samp
19174 @item lin
19175 Linear.
19176
19177 @item log
19178 Logarithmic.
19179
19180 @item sqrt
19181 Square root.
19182
19183 @item cbrt
19184 Cubic root.
19185 @end table
19186
19187 Default is linear.
19188 @end table
19189
19190 @subsection Examples
19191
19192 @itemize
19193 @item
19194 Extract a channel split representation of the wave form of a whole audio track
19195 in a 1024x800 picture using @command{ffmpeg}:
19196 @example
19197 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
19198 @end example
19199 @end itemize
19200
19201 @section sidedata, asidedata
19202
19203 Delete frame side data, or select frames based on it.
19204
19205 This filter accepts the following options:
19206
19207 @table @option
19208 @item mode
19209 Set mode of operation of the filter.
19210
19211 Can be one of the following:
19212
19213 @table @samp
19214 @item select
19215 Select every frame with side data of @code{type}.
19216
19217 @item delete
19218 Delete side data of @code{type}. If @code{type} is not set, delete all side
19219 data in the frame.
19220
19221 @end table
19222
19223 @item type
19224 Set side data type used with all modes. Must be set for @code{select} mode. For
19225 the list of frame side data types, refer to the @code{AVFrameSideDataType} enum
19226 in @file{libavutil/frame.h}. For example, to choose
19227 @code{AV_FRAME_DATA_PANSCAN} side data, you must specify @code{PANSCAN}.
19228
19229 @end table
19230
19231 @section spectrumsynth
19232
19233 Sythesize audio from 2 input video spectrums, first input stream represents
19234 magnitude across time and second represents phase across time.
19235 The filter will transform from frequency domain as displayed in videos back
19236 to time domain as presented in audio output.
19237
19238 This filter is primarily created for reversing processed @ref{showspectrum}
19239 filter outputs, but can synthesize sound from other spectrograms too.
19240 But in such case results are going to be poor if the phase data is not
19241 available, because in such cases phase data need to be recreated, usually
19242 its just recreated from random noise.
19243 For best results use gray only output (@code{channel} color mode in
19244 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
19245 @code{lin} scale for phase video. To produce phase, for 2nd video, use
19246 @code{data} option. Inputs videos should generally use @code{fullframe}
19247 slide mode as that saves resources needed for decoding video.
19248
19249 The filter accepts the following options:
19250
19251 @table @option
19252 @item sample_rate
19253 Specify sample rate of output audio, the sample rate of audio from which
19254 spectrum was generated may differ.
19255
19256 @item channels
19257 Set number of channels represented in input video spectrums.
19258
19259 @item scale
19260 Set scale which was used when generating magnitude input spectrum.
19261 Can be @code{lin} or @code{log}. Default is @code{log}.
19262
19263 @item slide
19264 Set slide which was used when generating inputs spectrums.
19265 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
19266 Default is @code{fullframe}.
19267
19268 @item win_func
19269 Set window function used for resynthesis.
19270
19271 @item overlap
19272 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
19273 which means optimal overlap for selected window function will be picked.
19274
19275 @item orientation
19276 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
19277 Default is @code{vertical}.
19278 @end table
19279
19280 @subsection Examples
19281
19282 @itemize
19283 @item
19284 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
19285 then resynthesize videos back to audio with spectrumsynth:
19286 @example
19287 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
19288 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
19289 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
19290 @end example
19291 @end itemize
19292
19293 @section split, asplit
19294
19295 Split input into several identical outputs.
19296
19297 @code{asplit} works with audio input, @code{split} with video.
19298
19299 The filter accepts a single parameter which specifies the number of outputs. If
19300 unspecified, it defaults to 2.
19301
19302 @subsection Examples
19303
19304 @itemize
19305 @item
19306 Create two separate outputs from the same input:
19307 @example
19308 [in] split [out0][out1]
19309 @end example
19310
19311 @item
19312 To create 3 or more outputs, you need to specify the number of
19313 outputs, like in:
19314 @example
19315 [in] asplit=3 [out0][out1][out2]
19316 @end example
19317
19318 @item
19319 Create two separate outputs from the same input, one cropped and
19320 one padded:
19321 @example
19322 [in] split [splitout1][splitout2];
19323 [splitout1] crop=100:100:0:0    [cropout];
19324 [splitout2] pad=200:200:100:100 [padout];
19325 @end example
19326
19327 @item
19328 Create 5 copies of the input audio with @command{ffmpeg}:
19329 @example
19330 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
19331 @end example
19332 @end itemize
19333
19334 @section zmq, azmq
19335
19336 Receive commands sent through a libzmq client, and forward them to
19337 filters in the filtergraph.
19338
19339 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
19340 must be inserted between two video filters, @code{azmq} between two
19341 audio filters.
19342
19343 To enable these filters you need to install the libzmq library and
19344 headers and configure FFmpeg with @code{--enable-libzmq}.
19345
19346 For more information about libzmq see:
19347 @url{http://www.zeromq.org/}
19348
19349 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
19350 receives messages sent through a network interface defined by the
19351 @option{bind_address} option.
19352
19353 The received message must be in the form:
19354 @example
19355 @var{TARGET} @var{COMMAND} [@var{ARG}]
19356 @end example
19357
19358 @var{TARGET} specifies the target of the command, usually the name of
19359 the filter class or a specific filter instance name.
19360
19361 @var{COMMAND} specifies the name of the command for the target filter.
19362
19363 @var{ARG} is optional and specifies the optional argument list for the
19364 given @var{COMMAND}.
19365
19366 Upon reception, the message is processed and the corresponding command
19367 is injected into the filtergraph. Depending on the result, the filter
19368 will send a reply to the client, adopting the format:
19369 @example
19370 @var{ERROR_CODE} @var{ERROR_REASON}
19371 @var{MESSAGE}
19372 @end example
19373
19374 @var{MESSAGE} is optional.
19375
19376 @subsection Examples
19377
19378 Look at @file{tools/zmqsend} for an example of a zmq client which can
19379 be used to send commands processed by these filters.
19380
19381 Consider the following filtergraph generated by @command{ffplay}
19382 @example
19383 ffplay -dumpgraph 1 -f lavfi "
19384 color=s=100x100:c=red  [l];
19385 color=s=100x100:c=blue [r];
19386 nullsrc=s=200x100, zmq [bg];
19387 [bg][l]   overlay      [bg+l];
19388 [bg+l][r] overlay=x=100 "
19389 @end example
19390
19391 To change the color of the left side of the video, the following
19392 command can be used:
19393 @example
19394 echo Parsed_color_0 c yellow | tools/zmqsend
19395 @end example
19396
19397 To change the right side:
19398 @example
19399 echo Parsed_color_1 c pink | tools/zmqsend
19400 @end example
19401
19402 @c man end MULTIMEDIA FILTERS
19403
19404 @chapter Multimedia Sources
19405 @c man begin MULTIMEDIA SOURCES
19406
19407 Below is a description of the currently available multimedia sources.
19408
19409 @section amovie
19410
19411 This is the same as @ref{movie} source, except it selects an audio
19412 stream by default.
19413
19414 @anchor{movie}
19415 @section movie
19416
19417 Read audio and/or video stream(s) from a movie container.
19418
19419 It accepts the following parameters:
19420
19421 @table @option
19422 @item filename
19423 The name of the resource to read (not necessarily a file; it can also be a
19424 device or a stream accessed through some protocol).
19425
19426 @item format_name, f
19427 Specifies the format assumed for the movie to read, and can be either
19428 the name of a container or an input device. If not specified, the
19429 format is guessed from @var{movie_name} or by probing.
19430
19431 @item seek_point, sp
19432 Specifies the seek point in seconds. The frames will be output
19433 starting from this seek point. The parameter is evaluated with
19434 @code{av_strtod}, so the numerical value may be suffixed by an IS
19435 postfix. The default value is "0".
19436
19437 @item streams, s
19438 Specifies the streams to read. Several streams can be specified,
19439 separated by "+". The source will then have as many outputs, in the
19440 same order. The syntax is explained in the ``Stream specifiers''
19441 section in the ffmpeg manual. Two special names, "dv" and "da" specify
19442 respectively the default (best suited) video and audio stream. Default
19443 is "dv", or "da" if the filter is called as "amovie".
19444
19445 @item stream_index, si
19446 Specifies the index of the video stream to read. If the value is -1,
19447 the most suitable video stream will be automatically selected. The default
19448 value is "-1". Deprecated. If the filter is called "amovie", it will select
19449 audio instead of video.
19450
19451 @item loop
19452 Specifies how many times to read the stream in sequence.
19453 If the value is 0, the stream will be looped infinitely.
19454 Default value is "1".
19455
19456 Note that when the movie is looped the source timestamps are not
19457 changed, so it will generate non monotonically increasing timestamps.
19458
19459 @item discontinuity
19460 Specifies the time difference between frames above which the point is
19461 considered a timestamp discontinuity which is removed by adjusting the later
19462 timestamps.
19463 @end table
19464
19465 It allows overlaying a second video on top of the main input of
19466 a filtergraph, as shown in this graph:
19467 @example
19468 input -----------> deltapts0 --> overlay --> output
19469                                     ^
19470                                     |
19471 movie --> scale--> deltapts1 -------+
19472 @end example
19473 @subsection Examples
19474
19475 @itemize
19476 @item
19477 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
19478 on top of the input labelled "in":
19479 @example
19480 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
19481 [in] setpts=PTS-STARTPTS [main];
19482 [main][over] overlay=16:16 [out]
19483 @end example
19484
19485 @item
19486 Read from a video4linux2 device, and overlay it on top of the input
19487 labelled "in":
19488 @example
19489 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
19490 [in] setpts=PTS-STARTPTS [main];
19491 [main][over] overlay=16:16 [out]
19492 @end example
19493
19494 @item
19495 Read the first video stream and the audio stream with id 0x81 from
19496 dvd.vob; the video is connected to the pad named "video" and the audio is
19497 connected to the pad named "audio":
19498 @example
19499 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
19500 @end example
19501 @end itemize
19502
19503 @subsection Commands
19504
19505 Both movie and amovie support the following commands:
19506 @table @option
19507 @item seek
19508 Perform seek using "av_seek_frame".
19509 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
19510 @itemize
19511 @item
19512 @var{stream_index}: If stream_index is -1, a default
19513 stream is selected, and @var{timestamp} is automatically converted
19514 from AV_TIME_BASE units to the stream specific time_base.
19515 @item
19516 @var{timestamp}: Timestamp in AVStream.time_base units
19517 or, if no stream is specified, in AV_TIME_BASE units.
19518 @item
19519 @var{flags}: Flags which select direction and seeking mode.
19520 @end itemize
19521
19522 @item get_duration
19523 Get movie duration in AV_TIME_BASE units.
19524
19525 @end table
19526
19527 @c man end MULTIMEDIA SOURCES