]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
avfilter:vf_libvmaf: improve docs.
[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).
7369
7370 @item tc24hmax
7371 If set to 1, the output of the timecode option will wrap around at 24 hours.
7372 Default is 0 (disabled).
7373
7374 @item text
7375 The text string to be drawn. The text must be a sequence of UTF-8
7376 encoded characters.
7377 This parameter is mandatory if no file is specified with the parameter
7378 @var{textfile}.
7379
7380 @item textfile
7381 A text file containing text to be drawn. The text must be a sequence
7382 of UTF-8 encoded characters.
7383
7384 This parameter is mandatory if no text string is specified with the
7385 parameter @var{text}.
7386
7387 If both @var{text} and @var{textfile} are specified, an error is thrown.
7388
7389 @item reload
7390 If set to 1, the @var{textfile} will be reloaded before each frame.
7391 Be sure to update it atomically, or it may be read partially, or even fail.
7392
7393 @item x
7394 @item y
7395 The expressions which specify the offsets where text will be drawn
7396 within the video frame. They are relative to the top/left border of the
7397 output image.
7398
7399 The default value of @var{x} and @var{y} is "0".
7400
7401 See below for the list of accepted constants and functions.
7402 @end table
7403
7404 The parameters for @var{x} and @var{y} are expressions containing the
7405 following constants and functions:
7406
7407 @table @option
7408 @item dar
7409 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
7410
7411 @item hsub
7412 @item vsub
7413 horizontal and vertical chroma subsample values. For example for the
7414 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
7415
7416 @item line_h, lh
7417 the height of each text line
7418
7419 @item main_h, h, H
7420 the input height
7421
7422 @item main_w, w, W
7423 the input width
7424
7425 @item max_glyph_a, ascent
7426 the maximum distance from the baseline to the highest/upper grid
7427 coordinate used to place a glyph outline point, for all the rendered
7428 glyphs.
7429 It is a positive value, due to the grid's orientation with the Y axis
7430 upwards.
7431
7432 @item max_glyph_d, descent
7433 the maximum distance from the baseline to the lowest grid coordinate
7434 used to place a glyph outline point, for all the rendered glyphs.
7435 This is a negative value, due to the grid's orientation, with the Y axis
7436 upwards.
7437
7438 @item max_glyph_h
7439 maximum glyph height, that is the maximum height for all the glyphs
7440 contained in the rendered text, it is equivalent to @var{ascent} -
7441 @var{descent}.
7442
7443 @item max_glyph_w
7444 maximum glyph width, that is the maximum width for all the glyphs
7445 contained in the rendered text
7446
7447 @item n
7448 the number of input frame, starting from 0
7449
7450 @item rand(min, max)
7451 return a random number included between @var{min} and @var{max}
7452
7453 @item sar
7454 The input sample aspect ratio.
7455
7456 @item t
7457 timestamp expressed in seconds, NAN if the input timestamp is unknown
7458
7459 @item text_h, th
7460 the height of the rendered text
7461
7462 @item text_w, tw
7463 the width of the rendered text
7464
7465 @item x
7466 @item y
7467 the x and y offset coordinates where the text is drawn.
7468
7469 These parameters allow the @var{x} and @var{y} expressions to refer
7470 each other, so you can for example specify @code{y=x/dar}.
7471 @end table
7472
7473 @anchor{drawtext_expansion}
7474 @subsection Text expansion
7475
7476 If @option{expansion} is set to @code{strftime},
7477 the filter recognizes strftime() sequences in the provided text and
7478 expands them accordingly. Check the documentation of strftime(). This
7479 feature is deprecated.
7480
7481 If @option{expansion} is set to @code{none}, the text is printed verbatim.
7482
7483 If @option{expansion} is set to @code{normal} (which is the default),
7484 the following expansion mechanism is used.
7485
7486 The backslash character @samp{\}, followed by any character, always expands to
7487 the second character.
7488
7489 Sequences of the form @code{%@{...@}} are expanded. The text between the
7490 braces is a function name, possibly followed by arguments separated by ':'.
7491 If the arguments contain special characters or delimiters (':' or '@}'),
7492 they should be escaped.
7493
7494 Note that they probably must also be escaped as the value for the
7495 @option{text} option in the filter argument string and as the filter
7496 argument in the filtergraph description, and possibly also for the shell,
7497 that makes up to four levels of escaping; using a text file avoids these
7498 problems.
7499
7500 The following functions are available:
7501
7502 @table @command
7503
7504 @item expr, e
7505 The expression evaluation result.
7506
7507 It must take one argument specifying the expression to be evaluated,
7508 which accepts the same constants and functions as the @var{x} and
7509 @var{y} values. Note that not all constants should be used, for
7510 example the text size is not known when evaluating the expression, so
7511 the constants @var{text_w} and @var{text_h} will have an undefined
7512 value.
7513
7514 @item expr_int_format, eif
7515 Evaluate the expression's value and output as formatted integer.
7516
7517 The first argument is the expression to be evaluated, just as for the @var{expr} function.
7518 The second argument specifies the output format. Allowed values are @samp{x},
7519 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
7520 @code{printf} function.
7521 The third parameter is optional and sets the number of positions taken by the output.
7522 It can be used to add padding with zeros from the left.
7523
7524 @item gmtime
7525 The time at which the filter is running, expressed in UTC.
7526 It can accept an argument: a strftime() format string.
7527
7528 @item localtime
7529 The time at which the filter is running, expressed in the local time zone.
7530 It can accept an argument: a strftime() format string.
7531
7532 @item metadata
7533 Frame metadata. Takes one or two arguments.
7534
7535 The first argument is mandatory and specifies the metadata key.
7536
7537 The second argument is optional and specifies a default value, used when the
7538 metadata key is not found or empty.
7539
7540 @item n, frame_num
7541 The frame number, starting from 0.
7542
7543 @item pict_type
7544 A 1 character description of the current picture type.
7545
7546 @item pts
7547 The timestamp of the current frame.
7548 It can take up to three arguments.
7549
7550 The first argument is the format of the timestamp; it defaults to @code{flt}
7551 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
7552 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
7553 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
7554 @code{localtime} stands for the timestamp of the frame formatted as
7555 local time zone time.
7556
7557 The second argument is an offset added to the timestamp.
7558
7559 If the format is set to @code{localtime} or @code{gmtime},
7560 a third argument may be supplied: a strftime() format string.
7561 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
7562 @end table
7563
7564 @subsection Examples
7565
7566 @itemize
7567 @item
7568 Draw "Test Text" with font FreeSerif, using the default values for the
7569 optional parameters.
7570
7571 @example
7572 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
7573 @end example
7574
7575 @item
7576 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
7577 and y=50 (counting from the top-left corner of the screen), text is
7578 yellow with a red box around it. Both the text and the box have an
7579 opacity of 20%.
7580
7581 @example
7582 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
7583           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
7584 @end example
7585
7586 Note that the double quotes are not necessary if spaces are not used
7587 within the parameter list.
7588
7589 @item
7590 Show the text at the center of the video frame:
7591 @example
7592 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
7593 @end example
7594
7595 @item
7596 Show the text at a random position, switching to a new position every 30 seconds:
7597 @example
7598 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)"
7599 @end example
7600
7601 @item
7602 Show a text line sliding from right to left in the last row of the video
7603 frame. The file @file{LONG_LINE} is assumed to contain a single line
7604 with no newlines.
7605 @example
7606 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
7607 @end example
7608
7609 @item
7610 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
7611 @example
7612 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
7613 @end example
7614
7615 @item
7616 Draw a single green letter "g", at the center of the input video.
7617 The glyph baseline is placed at half screen height.
7618 @example
7619 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
7620 @end example
7621
7622 @item
7623 Show text for 1 second every 3 seconds:
7624 @example
7625 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
7626 @end example
7627
7628 @item
7629 Use fontconfig to set the font. Note that the colons need to be escaped.
7630 @example
7631 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
7632 @end example
7633
7634 @item
7635 Print the date of a real-time encoding (see strftime(3)):
7636 @example
7637 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
7638 @end example
7639
7640 @item
7641 Show text fading in and out (appearing/disappearing):
7642 @example
7643 #!/bin/sh
7644 DS=1.0 # display start
7645 DE=10.0 # display end
7646 FID=1.5 # fade in duration
7647 FOD=5 # fade out duration
7648 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 @}"
7649 @end example
7650
7651 @item
7652 Horizontally align multiple separate texts. Note that @option{max_glyph_a}
7653 and the @option{fontsize} value are included in the @option{y} offset.
7654 @example
7655 drawtext=fontfile=FreeSans.ttf:text=DOG:fontsize=24:x=10:y=20+24-max_glyph_a,
7656 drawtext=fontfile=FreeSans.ttf:text=cow:fontsize=24:x=80:y=20+24-max_glyph_a
7657 @end example
7658
7659 @end itemize
7660
7661 For more information about libfreetype, check:
7662 @url{http://www.freetype.org/}.
7663
7664 For more information about fontconfig, check:
7665 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
7666
7667 For more information about libfribidi, check:
7668 @url{http://fribidi.org/}.
7669
7670 @section edgedetect
7671
7672 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
7673
7674 The filter accepts the following options:
7675
7676 @table @option
7677 @item low
7678 @item high
7679 Set low and high threshold values used by the Canny thresholding
7680 algorithm.
7681
7682 The high threshold selects the "strong" edge pixels, which are then
7683 connected through 8-connectivity with the "weak" edge pixels selected
7684 by the low threshold.
7685
7686 @var{low} and @var{high} threshold values must be chosen in the range
7687 [0,1], and @var{low} should be lesser or equal to @var{high}.
7688
7689 Default value for @var{low} is @code{20/255}, and default value for @var{high}
7690 is @code{50/255}.
7691
7692 @item mode
7693 Define the drawing mode.
7694
7695 @table @samp
7696 @item wires
7697 Draw white/gray wires on black background.
7698
7699 @item colormix
7700 Mix the colors to create a paint/cartoon effect.
7701 @end table
7702
7703 Default value is @var{wires}.
7704 @end table
7705
7706 @subsection Examples
7707
7708 @itemize
7709 @item
7710 Standard edge detection with custom values for the hysteresis thresholding:
7711 @example
7712 edgedetect=low=0.1:high=0.4
7713 @end example
7714
7715 @item
7716 Painting effect without thresholding:
7717 @example
7718 edgedetect=mode=colormix:high=0
7719 @end example
7720 @end itemize
7721
7722 @section eq
7723 Set brightness, contrast, saturation and approximate gamma adjustment.
7724
7725 The filter accepts the following options:
7726
7727 @table @option
7728 @item contrast
7729 Set the contrast expression. The value must be a float value in range
7730 @code{-2.0} to @code{2.0}. The default value is "1".
7731
7732 @item brightness
7733 Set the brightness expression. The value must be a float value in
7734 range @code{-1.0} to @code{1.0}. The default value is "0".
7735
7736 @item saturation
7737 Set the saturation expression. The value must be a float in
7738 range @code{0.0} to @code{3.0}. The default value is "1".
7739
7740 @item gamma
7741 Set the gamma expression. The value must be a float in range
7742 @code{0.1} to @code{10.0}.  The default value is "1".
7743
7744 @item gamma_r
7745 Set the gamma expression for red. The value must be a float in
7746 range @code{0.1} to @code{10.0}. The default value is "1".
7747
7748 @item gamma_g
7749 Set the gamma expression for green. The value must be a float in range
7750 @code{0.1} to @code{10.0}. The default value is "1".
7751
7752 @item gamma_b
7753 Set the gamma expression for blue. The value must be a float in range
7754 @code{0.1} to @code{10.0}. The default value is "1".
7755
7756 @item gamma_weight
7757 Set the gamma weight expression. It can be used to reduce the effect
7758 of a high gamma value on bright image areas, e.g. keep them from
7759 getting overamplified and just plain white. The value must be a float
7760 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
7761 gamma correction all the way down while @code{1.0} leaves it at its
7762 full strength. Default is "1".
7763
7764 @item eval
7765 Set when the expressions for brightness, contrast, saturation and
7766 gamma expressions are evaluated.
7767
7768 It accepts the following values:
7769 @table @samp
7770 @item init
7771 only evaluate expressions once during the filter initialization or
7772 when a command is processed
7773
7774 @item frame
7775 evaluate expressions for each incoming frame
7776 @end table
7777
7778 Default value is @samp{init}.
7779 @end table
7780
7781 The expressions accept the following parameters:
7782 @table @option
7783 @item n
7784 frame count of the input frame starting from 0
7785
7786 @item pos
7787 byte position of the corresponding packet in the input file, NAN if
7788 unspecified
7789
7790 @item r
7791 frame rate of the input video, NAN if the input frame rate is unknown
7792
7793 @item t
7794 timestamp expressed in seconds, NAN if the input timestamp is unknown
7795 @end table
7796
7797 @subsection Commands
7798 The filter supports the following commands:
7799
7800 @table @option
7801 @item contrast
7802 Set the contrast expression.
7803
7804 @item brightness
7805 Set the brightness expression.
7806
7807 @item saturation
7808 Set the saturation expression.
7809
7810 @item gamma
7811 Set the gamma expression.
7812
7813 @item gamma_r
7814 Set the gamma_r expression.
7815
7816 @item gamma_g
7817 Set gamma_g expression.
7818
7819 @item gamma_b
7820 Set gamma_b expression.
7821
7822 @item gamma_weight
7823 Set gamma_weight expression.
7824
7825 The command accepts the same syntax of the corresponding option.
7826
7827 If the specified expression is not valid, it is kept at its current
7828 value.
7829
7830 @end table
7831
7832 @section erosion
7833
7834 Apply erosion effect to the video.
7835
7836 This filter replaces the pixel by the local(3x3) minimum.
7837
7838 It accepts the following options:
7839
7840 @table @option
7841 @item threshold0
7842 @item threshold1
7843 @item threshold2
7844 @item threshold3
7845 Limit the maximum change for each plane, default is 65535.
7846 If 0, plane will remain unchanged.
7847
7848 @item coordinates
7849 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
7850 pixels are used.
7851
7852 Flags to local 3x3 coordinates maps like this:
7853
7854     1 2 3
7855     4   5
7856     6 7 8
7857 @end table
7858
7859 @section extractplanes
7860
7861 Extract color channel components from input video stream into
7862 separate grayscale video streams.
7863
7864 The filter accepts the following option:
7865
7866 @table @option
7867 @item planes
7868 Set plane(s) to extract.
7869
7870 Available values for planes are:
7871 @table @samp
7872 @item y
7873 @item u
7874 @item v
7875 @item a
7876 @item r
7877 @item g
7878 @item b
7879 @end table
7880
7881 Choosing planes not available in the input will result in an error.
7882 That means you cannot select @code{r}, @code{g}, @code{b} planes
7883 with @code{y}, @code{u}, @code{v} planes at same time.
7884 @end table
7885
7886 @subsection Examples
7887
7888 @itemize
7889 @item
7890 Extract luma, u and v color channel component from input video frame
7891 into 3 grayscale outputs:
7892 @example
7893 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
7894 @end example
7895 @end itemize
7896
7897 @section elbg
7898
7899 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
7900
7901 For each input image, the filter will compute the optimal mapping from
7902 the input to the output given the codebook length, that is the number
7903 of distinct output colors.
7904
7905 This filter accepts the following options.
7906
7907 @table @option
7908 @item codebook_length, l
7909 Set codebook length. The value must be a positive integer, and
7910 represents the number of distinct output colors. Default value is 256.
7911
7912 @item nb_steps, n
7913 Set the maximum number of iterations to apply for computing the optimal
7914 mapping. The higher the value the better the result and the higher the
7915 computation time. Default value is 1.
7916
7917 @item seed, s
7918 Set a random seed, must be an integer included between 0 and
7919 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
7920 will try to use a good random seed on a best effort basis.
7921
7922 @item pal8
7923 Set pal8 output pixel format. This option does not work with codebook
7924 length greater than 256.
7925 @end table
7926
7927 @section fade
7928
7929 Apply a fade-in/out effect to the input video.
7930
7931 It accepts the following parameters:
7932
7933 @table @option
7934 @item type, t
7935 The effect type can be either "in" for a fade-in, or "out" for a fade-out
7936 effect.
7937 Default is @code{in}.
7938
7939 @item start_frame, s
7940 Specify the number of the frame to start applying the fade
7941 effect at. Default is 0.
7942
7943 @item nb_frames, n
7944 The number of frames that the fade effect lasts. At the end of the
7945 fade-in effect, the output video will have the same intensity as the input video.
7946 At the end of the fade-out transition, the output video will be filled with the
7947 selected @option{color}.
7948 Default is 25.
7949
7950 @item alpha
7951 If set to 1, fade only alpha channel, if one exists on the input.
7952 Default value is 0.
7953
7954 @item start_time, st
7955 Specify the timestamp (in seconds) of the frame to start to apply the fade
7956 effect. If both start_frame and start_time are specified, the fade will start at
7957 whichever comes last.  Default is 0.
7958
7959 @item duration, d
7960 The number of seconds for which the fade effect has to last. At the end of the
7961 fade-in effect the output video will have the same intensity as the input video,
7962 at the end of the fade-out transition the output video will be filled with the
7963 selected @option{color}.
7964 If both duration and nb_frames are specified, duration is used. Default is 0
7965 (nb_frames is used by default).
7966
7967 @item color, c
7968 Specify the color of the fade. Default is "black".
7969 @end table
7970
7971 @subsection Examples
7972
7973 @itemize
7974 @item
7975 Fade in the first 30 frames of video:
7976 @example
7977 fade=in:0:30
7978 @end example
7979
7980 The command above is equivalent to:
7981 @example
7982 fade=t=in:s=0:n=30
7983 @end example
7984
7985 @item
7986 Fade out the last 45 frames of a 200-frame video:
7987 @example
7988 fade=out:155:45
7989 fade=type=out:start_frame=155:nb_frames=45
7990 @end example
7991
7992 @item
7993 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
7994 @example
7995 fade=in:0:25, fade=out:975:25
7996 @end example
7997
7998 @item
7999 Make the first 5 frames yellow, then fade in from frame 5-24:
8000 @example
8001 fade=in:5:20:color=yellow
8002 @end example
8003
8004 @item
8005 Fade in alpha over first 25 frames of video:
8006 @example
8007 fade=in:0:25:alpha=1
8008 @end example
8009
8010 @item
8011 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
8012 @example
8013 fade=t=in:st=5.5:d=0.5
8014 @end example
8015
8016 @end itemize
8017
8018 @section fftfilt
8019 Apply arbitrary expressions to samples in frequency domain
8020
8021 @table @option
8022 @item dc_Y
8023 Adjust the dc value (gain) of the luma plane of the image. The filter
8024 accepts an integer value in range @code{0} to @code{1000}. The default
8025 value is set to @code{0}.
8026
8027 @item dc_U
8028 Adjust the dc value (gain) of the 1st chroma plane of the image. The
8029 filter accepts an integer value in range @code{0} to @code{1000}. The
8030 default value is set to @code{0}.
8031
8032 @item dc_V
8033 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
8034 filter accepts an integer value in range @code{0} to @code{1000}. The
8035 default value is set to @code{0}.
8036
8037 @item weight_Y
8038 Set the frequency domain weight expression for the luma plane.
8039
8040 @item weight_U
8041 Set the frequency domain weight expression for the 1st chroma plane.
8042
8043 @item weight_V
8044 Set the frequency domain weight expression for the 2nd chroma plane.
8045
8046 @item eval
8047 Set when the expressions are evaluated.
8048
8049 It accepts the following values:
8050 @table @samp
8051 @item init
8052 Only evaluate expressions once during the filter initialization.
8053
8054 @item frame
8055 Evaluate expressions for each incoming frame.
8056 @end table
8057
8058 Default value is @samp{init}.
8059
8060 The filter accepts the following variables:
8061 @item X
8062 @item Y
8063 The coordinates of the current sample.
8064
8065 @item W
8066 @item H
8067 The width and height of the image.
8068
8069 @item N
8070 The number of input frame, starting from 0.
8071 @end table
8072
8073 @subsection Examples
8074
8075 @itemize
8076 @item
8077 High-pass:
8078 @example
8079 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
8080 @end example
8081
8082 @item
8083 Low-pass:
8084 @example
8085 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
8086 @end example
8087
8088 @item
8089 Sharpen:
8090 @example
8091 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
8092 @end example
8093
8094 @item
8095 Blur:
8096 @example
8097 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
8098 @end example
8099
8100 @end itemize
8101
8102 @section field
8103
8104 Extract a single field from an interlaced image using stride
8105 arithmetic to avoid wasting CPU time. The output frames are marked as
8106 non-interlaced.
8107
8108 The filter accepts the following options:
8109
8110 @table @option
8111 @item type
8112 Specify whether to extract the top (if the value is @code{0} or
8113 @code{top}) or the bottom field (if the value is @code{1} or
8114 @code{bottom}).
8115 @end table
8116
8117 @section fieldhint
8118
8119 Create new frames by copying the top and bottom fields from surrounding frames
8120 supplied as numbers by the hint file.
8121
8122 @table @option
8123 @item hint
8124 Set file containing hints: absolute/relative frame numbers.
8125
8126 There must be one line for each frame in a clip. Each line must contain two
8127 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
8128 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
8129 is current frame number for @code{absolute} mode or out of [-1, 1] range
8130 for @code{relative} mode. First number tells from which frame to pick up top
8131 field and second number tells from which frame to pick up bottom field.
8132
8133 If optionally followed by @code{+} output frame will be marked as interlaced,
8134 else if followed by @code{-} output frame will be marked as progressive, else
8135 it will be marked same as input frame.
8136 If line starts with @code{#} or @code{;} that line is skipped.
8137
8138 @item mode
8139 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
8140 @end table
8141
8142 Example of first several lines of @code{hint} file for @code{relative} mode:
8143 @example
8144 0,0 - # first frame
8145 1,0 - # second frame, use third's frame top field and second's frame bottom field
8146 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
8147 1,0 -
8148 0,0 -
8149 0,0 -
8150 1,0 -
8151 1,0 -
8152 1,0 -
8153 0,0 -
8154 0,0 -
8155 1,0 -
8156 1,0 -
8157 1,0 -
8158 0,0 -
8159 @end example
8160
8161 @section fieldmatch
8162
8163 Field matching filter for inverse telecine. It is meant to reconstruct the
8164 progressive frames from a telecined stream. The filter does not drop duplicated
8165 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
8166 followed by a decimation filter such as @ref{decimate} in the filtergraph.
8167
8168 The separation of the field matching and the decimation is notably motivated by
8169 the possibility of inserting a de-interlacing filter fallback between the two.
8170 If the source has mixed telecined and real interlaced content,
8171 @code{fieldmatch} will not be able to match fields for the interlaced parts.
8172 But these remaining combed frames will be marked as interlaced, and thus can be
8173 de-interlaced by a later filter such as @ref{yadif} before decimation.
8174
8175 In addition to the various configuration options, @code{fieldmatch} can take an
8176 optional second stream, activated through the @option{ppsrc} option. If
8177 enabled, the frames reconstruction will be based on the fields and frames from
8178 this second stream. This allows the first input to be pre-processed in order to
8179 help the various algorithms of the filter, while keeping the output lossless
8180 (assuming the fields are matched properly). Typically, a field-aware denoiser,
8181 or brightness/contrast adjustments can help.
8182
8183 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
8184 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
8185 which @code{fieldmatch} is based on. While the semantic and usage are very
8186 close, some behaviour and options names can differ.
8187
8188 The @ref{decimate} filter currently only works for constant frame rate input.
8189 If your input has mixed telecined (30fps) and progressive content with a lower
8190 framerate like 24fps use the following filterchain to produce the necessary cfr
8191 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
8192
8193 The filter accepts the following options:
8194
8195 @table @option
8196 @item order
8197 Specify the assumed field order of the input stream. Available values are:
8198
8199 @table @samp
8200 @item auto
8201 Auto detect parity (use FFmpeg's internal parity value).
8202 @item bff
8203 Assume bottom field first.
8204 @item tff
8205 Assume top field first.
8206 @end table
8207
8208 Note that it is sometimes recommended not to trust the parity announced by the
8209 stream.
8210
8211 Default value is @var{auto}.
8212
8213 @item mode
8214 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
8215 sense that it won't risk creating jerkiness due to duplicate frames when
8216 possible, but if there are bad edits or blended fields it will end up
8217 outputting combed frames when a good match might actually exist. On the other
8218 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
8219 but will almost always find a good frame if there is one. The other values are
8220 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
8221 jerkiness and creating duplicate frames versus finding good matches in sections
8222 with bad edits, orphaned fields, blended fields, etc.
8223
8224 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
8225
8226 Available values are:
8227
8228 @table @samp
8229 @item pc
8230 2-way matching (p/c)
8231 @item pc_n
8232 2-way matching, and trying 3rd match if still combed (p/c + n)
8233 @item pc_u
8234 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
8235 @item pc_n_ub
8236 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
8237 still combed (p/c + n + u/b)
8238 @item pcn
8239 3-way matching (p/c/n)
8240 @item pcn_ub
8241 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
8242 detected as combed (p/c/n + u/b)
8243 @end table
8244
8245 The parenthesis at the end indicate the matches that would be used for that
8246 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
8247 @var{top}).
8248
8249 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
8250 the slowest.
8251
8252 Default value is @var{pc_n}.
8253
8254 @item ppsrc
8255 Mark the main input stream as a pre-processed input, and enable the secondary
8256 input stream as the clean source to pick the fields from. See the filter
8257 introduction for more details. It is similar to the @option{clip2} feature from
8258 VFM/TFM.
8259
8260 Default value is @code{0} (disabled).
8261
8262 @item field
8263 Set the field to match from. It is recommended to set this to the same value as
8264 @option{order} unless you experience matching failures with that setting. In
8265 certain circumstances changing the field that is used to match from can have a
8266 large impact on matching performance. Available values are:
8267
8268 @table @samp
8269 @item auto
8270 Automatic (same value as @option{order}).
8271 @item bottom
8272 Match from the bottom field.
8273 @item top
8274 Match from the top field.
8275 @end table
8276
8277 Default value is @var{auto}.
8278
8279 @item mchroma
8280 Set whether or not chroma is included during the match comparisons. In most
8281 cases it is recommended to leave this enabled. You should set this to @code{0}
8282 only if your clip has bad chroma problems such as heavy rainbowing or other
8283 artifacts. Setting this to @code{0} could also be used to speed things up at
8284 the cost of some accuracy.
8285
8286 Default value is @code{1}.
8287
8288 @item y0
8289 @item y1
8290 These define an exclusion band which excludes the lines between @option{y0} and
8291 @option{y1} from being included in the field matching decision. An exclusion
8292 band can be used to ignore subtitles, a logo, or other things that may
8293 interfere with the matching. @option{y0} sets the starting scan line and
8294 @option{y1} sets the ending line; all lines in between @option{y0} and
8295 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
8296 @option{y0} and @option{y1} to the same value will disable the feature.
8297 @option{y0} and @option{y1} defaults to @code{0}.
8298
8299 @item scthresh
8300 Set the scene change detection threshold as a percentage of maximum change on
8301 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
8302 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
8303 @option{scthresh} is @code{[0.0, 100.0]}.
8304
8305 Default value is @code{12.0}.
8306
8307 @item combmatch
8308 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
8309 account the combed scores of matches when deciding what match to use as the
8310 final match. Available values are:
8311
8312 @table @samp
8313 @item none
8314 No final matching based on combed scores.
8315 @item sc
8316 Combed scores are only used when a scene change is detected.
8317 @item full
8318 Use combed scores all the time.
8319 @end table
8320
8321 Default is @var{sc}.
8322
8323 @item combdbg
8324 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
8325 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
8326 Available values are:
8327
8328 @table @samp
8329 @item none
8330 No forced calculation.
8331 @item pcn
8332 Force p/c/n calculations.
8333 @item pcnub
8334 Force p/c/n/u/b calculations.
8335 @end table
8336
8337 Default value is @var{none}.
8338
8339 @item cthresh
8340 This is the area combing threshold used for combed frame detection. This
8341 essentially controls how "strong" or "visible" combing must be to be detected.
8342 Larger values mean combing must be more visible and smaller values mean combing
8343 can be less visible or strong and still be detected. Valid settings are from
8344 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
8345 be detected as combed). This is basically a pixel difference value. A good
8346 range is @code{[8, 12]}.
8347
8348 Default value is @code{9}.
8349
8350 @item chroma
8351 Sets whether or not chroma is considered in the combed frame decision.  Only
8352 disable this if your source has chroma problems (rainbowing, etc.) that are
8353 causing problems for the combed frame detection with chroma enabled. Actually,
8354 using @option{chroma}=@var{0} is usually more reliable, except for the case
8355 where there is chroma only combing in the source.
8356
8357 Default value is @code{0}.
8358
8359 @item blockx
8360 @item blocky
8361 Respectively set the x-axis and y-axis size of the window used during combed
8362 frame detection. This has to do with the size of the area in which
8363 @option{combpel} pixels are required to be detected as combed for a frame to be
8364 declared combed. See the @option{combpel} parameter description for more info.
8365 Possible values are any number that is a power of 2 starting at 4 and going up
8366 to 512.
8367
8368 Default value is @code{16}.
8369
8370 @item combpel
8371 The number of combed pixels inside any of the @option{blocky} by
8372 @option{blockx} size blocks on the frame for the frame to be detected as
8373 combed. While @option{cthresh} controls how "visible" the combing must be, this
8374 setting controls "how much" combing there must be in any localized area (a
8375 window defined by the @option{blockx} and @option{blocky} settings) on the
8376 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
8377 which point no frames will ever be detected as combed). This setting is known
8378 as @option{MI} in TFM/VFM vocabulary.
8379
8380 Default value is @code{80}.
8381 @end table
8382
8383 @anchor{p/c/n/u/b meaning}
8384 @subsection p/c/n/u/b meaning
8385
8386 @subsubsection p/c/n
8387
8388 We assume the following telecined stream:
8389
8390 @example
8391 Top fields:     1 2 2 3 4
8392 Bottom fields:  1 2 3 4 4
8393 @end example
8394
8395 The numbers correspond to the progressive frame the fields relate to. Here, the
8396 first two frames are progressive, the 3rd and 4th are combed, and so on.
8397
8398 When @code{fieldmatch} is configured to run a matching from bottom
8399 (@option{field}=@var{bottom}) this is how this input stream get transformed:
8400
8401 @example
8402 Input stream:
8403                 T     1 2 2 3 4
8404                 B     1 2 3 4 4   <-- matching reference
8405
8406 Matches:              c c n n c
8407
8408 Output stream:
8409                 T     1 2 3 4 4
8410                 B     1 2 3 4 4
8411 @end example
8412
8413 As a result of the field matching, we can see that some frames get duplicated.
8414 To perform a complete inverse telecine, you need to rely on a decimation filter
8415 after this operation. See for instance the @ref{decimate} filter.
8416
8417 The same operation now matching from top fields (@option{field}=@var{top})
8418 looks like this:
8419
8420 @example
8421 Input stream:
8422                 T     1 2 2 3 4   <-- matching reference
8423                 B     1 2 3 4 4
8424
8425 Matches:              c c p p c
8426
8427 Output stream:
8428                 T     1 2 2 3 4
8429                 B     1 2 2 3 4
8430 @end example
8431
8432 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
8433 basically, they refer to the frame and field of the opposite parity:
8434
8435 @itemize
8436 @item @var{p} matches the field of the opposite parity in the previous frame
8437 @item @var{c} matches the field of the opposite parity in the current frame
8438 @item @var{n} matches the field of the opposite parity in the next frame
8439 @end itemize
8440
8441 @subsubsection u/b
8442
8443 The @var{u} and @var{b} matching are a bit special in the sense that they match
8444 from the opposite parity flag. In the following examples, we assume that we are
8445 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
8446 'x' is placed above and below each matched fields.
8447
8448 With bottom matching (@option{field}=@var{bottom}):
8449 @example
8450 Match:           c         p           n          b          u
8451
8452                  x       x               x        x          x
8453   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
8454   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
8455                  x         x           x        x              x
8456
8457 Output frames:
8458                  2          1          2          2          2
8459                  2          2          2          1          3
8460 @end example
8461
8462 With top matching (@option{field}=@var{top}):
8463 @example
8464 Match:           c         p           n          b          u
8465
8466                  x         x           x        x              x
8467   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
8468   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
8469                  x       x               x        x          x
8470
8471 Output frames:
8472                  2          2          2          1          2
8473                  2          1          3          2          2
8474 @end example
8475
8476 @subsection Examples
8477
8478 Simple IVTC of a top field first telecined stream:
8479 @example
8480 fieldmatch=order=tff:combmatch=none, decimate
8481 @end example
8482
8483 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
8484 @example
8485 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
8486 @end example
8487
8488 @section fieldorder
8489
8490 Transform the field order of the input video.
8491
8492 It accepts the following parameters:
8493
8494 @table @option
8495
8496 @item order
8497 The output field order. Valid values are @var{tff} for top field first or @var{bff}
8498 for bottom field first.
8499 @end table
8500
8501 The default value is @samp{tff}.
8502
8503 The transformation is done by shifting the picture content up or down
8504 by one line, and filling the remaining line with appropriate picture content.
8505 This method is consistent with most broadcast field order converters.
8506
8507 If the input video is not flagged as being interlaced, or it is already
8508 flagged as being of the required output field order, then this filter does
8509 not alter the incoming video.
8510
8511 It is very useful when converting to or from PAL DV material,
8512 which is bottom field first.
8513
8514 For example:
8515 @example
8516 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
8517 @end example
8518
8519 @section fifo, afifo
8520
8521 Buffer input images and send them when they are requested.
8522
8523 It is mainly useful when auto-inserted by the libavfilter
8524 framework.
8525
8526 It does not take parameters.
8527
8528 @section find_rect
8529
8530 Find a rectangular object
8531
8532 It accepts the following options:
8533
8534 @table @option
8535 @item object
8536 Filepath of the object image, needs to be in gray8.
8537
8538 @item threshold
8539 Detection threshold, default is 0.5.
8540
8541 @item mipmaps
8542 Number of mipmaps, default is 3.
8543
8544 @item xmin, ymin, xmax, ymax
8545 Specifies the rectangle in which to search.
8546 @end table
8547
8548 @subsection Examples
8549
8550 @itemize
8551 @item
8552 Generate a representative palette of a given video using @command{ffmpeg}:
8553 @example
8554 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
8555 @end example
8556 @end itemize
8557
8558 @section cover_rect
8559
8560 Cover a rectangular object
8561
8562 It accepts the following options:
8563
8564 @table @option
8565 @item cover
8566 Filepath of the optional cover image, needs to be in yuv420.
8567
8568 @item mode
8569 Set covering mode.
8570
8571 It accepts the following values:
8572 @table @samp
8573 @item cover
8574 cover it by the supplied image
8575 @item blur
8576 cover it by interpolating the surrounding pixels
8577 @end table
8578
8579 Default value is @var{blur}.
8580 @end table
8581
8582 @subsection Examples
8583
8584 @itemize
8585 @item
8586 Generate a representative palette of a given video using @command{ffmpeg}:
8587 @example
8588 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
8589 @end example
8590 @end itemize
8591
8592 @section floodfill
8593
8594 Flood area with values of same pixel components with another values.
8595
8596 It accepts the following options:
8597 @table @option
8598 @item x
8599 Set pixel x coordinate.
8600
8601 @item y
8602 Set pixel y coordinate.
8603
8604 @item s0
8605 Set source #0 component value.
8606
8607 @item s1
8608 Set source #1 component value.
8609
8610 @item s2
8611 Set source #2 component value.
8612
8613 @item s3
8614 Set source #3 component value.
8615
8616 @item d0
8617 Set destination #0 component value.
8618
8619 @item d1
8620 Set destination #1 component value.
8621
8622 @item d2
8623 Set destination #2 component value.
8624
8625 @item d3
8626 Set destination #3 component value.
8627 @end table
8628
8629 @anchor{format}
8630 @section format
8631
8632 Convert the input video to one of the specified pixel formats.
8633 Libavfilter will try to pick one that is suitable as input to
8634 the next filter.
8635
8636 It accepts the following parameters:
8637 @table @option
8638
8639 @item pix_fmts
8640 A '|'-separated list of pixel format names, such as
8641 "pix_fmts=yuv420p|monow|rgb24".
8642
8643 @end table
8644
8645 @subsection Examples
8646
8647 @itemize
8648 @item
8649 Convert the input video to the @var{yuv420p} format
8650 @example
8651 format=pix_fmts=yuv420p
8652 @end example
8653
8654 Convert the input video to any of the formats in the list
8655 @example
8656 format=pix_fmts=yuv420p|yuv444p|yuv410p
8657 @end example
8658 @end itemize
8659
8660 @anchor{fps}
8661 @section fps
8662
8663 Convert the video to specified constant frame rate by duplicating or dropping
8664 frames as necessary.
8665
8666 It accepts the following parameters:
8667 @table @option
8668
8669 @item fps
8670 The desired output frame rate. The default is @code{25}.
8671
8672 @item start_time
8673 Assume the first PTS should be the given value, in seconds. This allows for
8674 padding/trimming at the start of stream. By default, no assumption is made
8675 about the first frame's expected PTS, so no padding or trimming is done.
8676 For example, this could be set to 0 to pad the beginning with duplicates of
8677 the first frame if a video stream starts after the audio stream or to trim any
8678 frames with a negative PTS.
8679
8680 @item round
8681 Timestamp (PTS) rounding method.
8682
8683 Possible values are:
8684 @table @option
8685 @item zero
8686 round towards 0
8687 @item inf
8688 round away from 0
8689 @item down
8690 round towards -infinity
8691 @item up
8692 round towards +infinity
8693 @item near
8694 round to nearest
8695 @end table
8696 The default is @code{near}.
8697
8698 @item eof_action
8699 Action performed when reading the last frame.
8700
8701 Possible values are:
8702 @table @option
8703 @item round
8704 Use same timestamp rounding method as used for other frames.
8705 @item pass
8706 Pass through last frame if input duration has not been reached yet.
8707 @end table
8708 The default is @code{round}.
8709
8710 @end table
8711
8712 Alternatively, the options can be specified as a flat string:
8713 @var{fps}[:@var{start_time}[:@var{round}]].
8714
8715 See also the @ref{setpts} filter.
8716
8717 @subsection Examples
8718
8719 @itemize
8720 @item
8721 A typical usage in order to set the fps to 25:
8722 @example
8723 fps=fps=25
8724 @end example
8725
8726 @item
8727 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
8728 @example
8729 fps=fps=film:round=near
8730 @end example
8731 @end itemize
8732
8733 @section framepack
8734
8735 Pack two different video streams into a stereoscopic video, setting proper
8736 metadata on supported codecs. The two views should have the same size and
8737 framerate and processing will stop when the shorter video ends. Please note
8738 that you may conveniently adjust view properties with the @ref{scale} and
8739 @ref{fps} filters.
8740
8741 It accepts the following parameters:
8742 @table @option
8743
8744 @item format
8745 The desired packing format. Supported values are:
8746
8747 @table @option
8748
8749 @item sbs
8750 The views are next to each other (default).
8751
8752 @item tab
8753 The views are on top of each other.
8754
8755 @item lines
8756 The views are packed by line.
8757
8758 @item columns
8759 The views are packed by column.
8760
8761 @item frameseq
8762 The views are temporally interleaved.
8763
8764 @end table
8765
8766 @end table
8767
8768 Some examples:
8769
8770 @example
8771 # Convert left and right views into a frame-sequential video
8772 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
8773
8774 # Convert views into a side-by-side video with the same output resolution as the input
8775 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
8776 @end example
8777
8778 @section framerate
8779
8780 Change the frame rate by interpolating new video output frames from the source
8781 frames.
8782
8783 This filter is not designed to function correctly with interlaced media. If
8784 you wish to change the frame rate of interlaced media then you are required
8785 to deinterlace before this filter and re-interlace after this filter.
8786
8787 A description of the accepted options follows.
8788
8789 @table @option
8790 @item fps
8791 Specify the output frames per second. This option can also be specified
8792 as a value alone. The default is @code{50}.
8793
8794 @item interp_start
8795 Specify the start of a range where the output frame will be created as a
8796 linear interpolation of two frames. The range is [@code{0}-@code{255}],
8797 the default is @code{15}.
8798
8799 @item interp_end
8800 Specify the end of a range where the output frame will be created as a
8801 linear interpolation of two frames. The range is [@code{0}-@code{255}],
8802 the default is @code{240}.
8803
8804 @item scene
8805 Specify the level at which a scene change is detected as a value between
8806 0 and 100 to indicate a new scene; a low value reflects a low
8807 probability for the current frame to introduce a new scene, while a higher
8808 value means the current frame is more likely to be one.
8809 The default is @code{7}.
8810
8811 @item flags
8812 Specify flags influencing the filter process.
8813
8814 Available value for @var{flags} is:
8815
8816 @table @option
8817 @item scene_change_detect, scd
8818 Enable scene change detection using the value of the option @var{scene}.
8819 This flag is enabled by default.
8820 @end table
8821 @end table
8822
8823 @section framestep
8824
8825 Select one frame every N-th frame.
8826
8827 This filter accepts the following option:
8828 @table @option
8829 @item step
8830 Select frame after every @code{step} frames.
8831 Allowed values are positive integers higher than 0. Default value is @code{1}.
8832 @end table
8833
8834 @anchor{frei0r}
8835 @section frei0r
8836
8837 Apply a frei0r effect to the input video.
8838
8839 To enable the compilation of this filter, you need to install the frei0r
8840 header and configure FFmpeg with @code{--enable-frei0r}.
8841
8842 It accepts the following parameters:
8843
8844 @table @option
8845
8846 @item filter_name
8847 The name of the frei0r effect to load. If the environment variable
8848 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
8849 directories specified by the colon-separated list in @env{FREI0R_PATH}.
8850 Otherwise, the standard frei0r paths are searched, in this order:
8851 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
8852 @file{/usr/lib/frei0r-1/}.
8853
8854 @item filter_params
8855 A '|'-separated list of parameters to pass to the frei0r effect.
8856
8857 @end table
8858
8859 A frei0r effect parameter can be a boolean (its value is either
8860 "y" or "n"), a double, a color (specified as
8861 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
8862 numbers between 0.0 and 1.0, inclusive) or by a color description specified in the "Color"
8863 section in the ffmpeg-utils manual), a position (specified as @var{X}/@var{Y}, where
8864 @var{X} and @var{Y} are floating point numbers) and/or a string.
8865
8866 The number and types of parameters depend on the loaded effect. If an
8867 effect parameter is not specified, the default value is set.
8868
8869 @subsection Examples
8870
8871 @itemize
8872 @item
8873 Apply the distort0r effect, setting the first two double parameters:
8874 @example
8875 frei0r=filter_name=distort0r:filter_params=0.5|0.01
8876 @end example
8877
8878 @item
8879 Apply the colordistance effect, taking a color as the first parameter:
8880 @example
8881 frei0r=colordistance:0.2/0.3/0.4
8882 frei0r=colordistance:violet
8883 frei0r=colordistance:0x112233
8884 @end example
8885
8886 @item
8887 Apply the perspective effect, specifying the top left and top right image
8888 positions:
8889 @example
8890 frei0r=perspective:0.2/0.2|0.8/0.2
8891 @end example
8892 @end itemize
8893
8894 For more information, see
8895 @url{http://frei0r.dyne.org}
8896
8897 @section fspp
8898
8899 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
8900
8901 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
8902 processing filter, one of them is performed once per block, not per pixel.
8903 This allows for much higher speed.
8904
8905 The filter accepts the following options:
8906
8907 @table @option
8908 @item quality
8909 Set quality. This option defines the number of levels for averaging. It accepts
8910 an integer in the range 4-5. Default value is @code{4}.
8911
8912 @item qp
8913 Force a constant quantization parameter. It accepts an integer in range 0-63.
8914 If not set, the filter will use the QP from the video stream (if available).
8915
8916 @item strength
8917 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
8918 more details but also more artifacts, while higher values make the image smoother
8919 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
8920
8921 @item use_bframe_qp
8922 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
8923 option may cause flicker since the B-Frames have often larger QP. Default is
8924 @code{0} (not enabled).
8925
8926 @end table
8927
8928 @section gblur
8929
8930 Apply Gaussian blur filter.
8931
8932 The filter accepts the following options:
8933
8934 @table @option
8935 @item sigma
8936 Set horizontal sigma, standard deviation of Gaussian blur. Default is @code{0.5}.
8937
8938 @item steps
8939 Set number of steps for Gaussian approximation. Defauls is @code{1}.
8940
8941 @item planes
8942 Set which planes to filter. By default all planes are filtered.
8943
8944 @item sigmaV
8945 Set vertical sigma, if negative it will be same as @code{sigma}.
8946 Default is @code{-1}.
8947 @end table
8948
8949 @section geq
8950
8951 The filter accepts the following options:
8952
8953 @table @option
8954 @item lum_expr, lum
8955 Set the luminance expression.
8956 @item cb_expr, cb
8957 Set the chrominance blue expression.
8958 @item cr_expr, cr
8959 Set the chrominance red expression.
8960 @item alpha_expr, a
8961 Set the alpha expression.
8962 @item red_expr, r
8963 Set the red expression.
8964 @item green_expr, g
8965 Set the green expression.
8966 @item blue_expr, b
8967 Set the blue expression.
8968 @end table
8969
8970 The colorspace is selected according to the specified options. If one
8971 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
8972 options is specified, the filter will automatically select a YCbCr
8973 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
8974 @option{blue_expr} options is specified, it will select an RGB
8975 colorspace.
8976
8977 If one of the chrominance expression is not defined, it falls back on the other
8978 one. If no alpha expression is specified it will evaluate to opaque value.
8979 If none of chrominance expressions are specified, they will evaluate
8980 to the luminance expression.
8981
8982 The expressions can use the following variables and functions:
8983
8984 @table @option
8985 @item N
8986 The sequential number of the filtered frame, starting from @code{0}.
8987
8988 @item X
8989 @item Y
8990 The coordinates of the current sample.
8991
8992 @item W
8993 @item H
8994 The width and height of the image.
8995
8996 @item SW
8997 @item SH
8998 Width and height scale depending on the currently filtered plane. It is the
8999 ratio between the corresponding luma plane number of pixels and the current
9000 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
9001 @code{0.5,0.5} for chroma planes.
9002
9003 @item T
9004 Time of the current frame, expressed in seconds.
9005
9006 @item p(x, y)
9007 Return the value of the pixel at location (@var{x},@var{y}) of the current
9008 plane.
9009
9010 @item lum(x, y)
9011 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
9012 plane.
9013
9014 @item cb(x, y)
9015 Return the value of the pixel at location (@var{x},@var{y}) of the
9016 blue-difference chroma plane. Return 0 if there is no such plane.
9017
9018 @item cr(x, y)
9019 Return the value of the pixel at location (@var{x},@var{y}) of the
9020 red-difference chroma plane. Return 0 if there is no such plane.
9021
9022 @item r(x, y)
9023 @item g(x, y)
9024 @item b(x, y)
9025 Return the value of the pixel at location (@var{x},@var{y}) of the
9026 red/green/blue component. Return 0 if there is no such component.
9027
9028 @item alpha(x, y)
9029 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
9030 plane. Return 0 if there is no such plane.
9031 @end table
9032
9033 For functions, if @var{x} and @var{y} are outside the area, the value will be
9034 automatically clipped to the closer edge.
9035
9036 @subsection Examples
9037
9038 @itemize
9039 @item
9040 Flip the image horizontally:
9041 @example
9042 geq=p(W-X\,Y)
9043 @end example
9044
9045 @item
9046 Generate a bidimensional sine wave, with angle @code{PI/3} and a
9047 wavelength of 100 pixels:
9048 @example
9049 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
9050 @end example
9051
9052 @item
9053 Generate a fancy enigmatic moving light:
9054 @example
9055 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
9056 @end example
9057
9058 @item
9059 Generate a quick emboss effect:
9060 @example
9061 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
9062 @end example
9063
9064 @item
9065 Modify RGB components depending on pixel position:
9066 @example
9067 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
9068 @end example
9069
9070 @item
9071 Create a radial gradient that is the same size as the input (also see
9072 the @ref{vignette} filter):
9073 @example
9074 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
9075 @end example
9076 @end itemize
9077
9078 @section gradfun
9079
9080 Fix the banding artifacts that are sometimes introduced into nearly flat
9081 regions by truncation to 8-bit color depth.
9082 Interpolate the gradients that should go where the bands are, and
9083 dither them.
9084
9085 It is designed for playback only.  Do not use it prior to
9086 lossy compression, because compression tends to lose the dither and
9087 bring back the bands.
9088
9089 It accepts the following parameters:
9090
9091 @table @option
9092
9093 @item strength
9094 The maximum amount by which the filter will change any one pixel. This is also
9095 the threshold for detecting nearly flat regions. Acceptable values range from
9096 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
9097 valid range.
9098
9099 @item radius
9100 The neighborhood to fit the gradient to. A larger radius makes for smoother
9101 gradients, but also prevents the filter from modifying the pixels near detailed
9102 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
9103 values will be clipped to the valid range.
9104
9105 @end table
9106
9107 Alternatively, the options can be specified as a flat string:
9108 @var{strength}[:@var{radius}]
9109
9110 @subsection Examples
9111
9112 @itemize
9113 @item
9114 Apply the filter with a @code{3.5} strength and radius of @code{8}:
9115 @example
9116 gradfun=3.5:8
9117 @end example
9118
9119 @item
9120 Specify radius, omitting the strength (which will fall-back to the default
9121 value):
9122 @example
9123 gradfun=radius=8
9124 @end example
9125
9126 @end itemize
9127
9128 @anchor{haldclut}
9129 @section haldclut
9130
9131 Apply a Hald CLUT to a video stream.
9132
9133 First input is the video stream to process, and second one is the Hald CLUT.
9134 The Hald CLUT input can be a simple picture or a complete video stream.
9135
9136 The filter accepts the following options:
9137
9138 @table @option
9139 @item shortest
9140 Force termination when the shortest input terminates. Default is @code{0}.
9141 @item repeatlast
9142 Continue applying the last CLUT after the end of the stream. A value of
9143 @code{0} disable the filter after the last frame of the CLUT is reached.
9144 Default is @code{1}.
9145 @end table
9146
9147 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
9148 filters share the same internals).
9149
9150 More information about the Hald CLUT can be found on Eskil Steenberg's website
9151 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
9152
9153 @subsection Workflow examples
9154
9155 @subsubsection Hald CLUT video stream
9156
9157 Generate an identity Hald CLUT stream altered with various effects:
9158 @example
9159 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
9160 @end example
9161
9162 Note: make sure you use a lossless codec.
9163
9164 Then use it with @code{haldclut} to apply it on some random stream:
9165 @example
9166 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
9167 @end example
9168
9169 The Hald CLUT will be applied to the 10 first seconds (duration of
9170 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
9171 to the remaining frames of the @code{mandelbrot} stream.
9172
9173 @subsubsection Hald CLUT with preview
9174
9175 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
9176 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
9177 biggest possible square starting at the top left of the picture. The remaining
9178 padding pixels (bottom or right) will be ignored. This area can be used to add
9179 a preview of the Hald CLUT.
9180
9181 Typically, the following generated Hald CLUT will be supported by the
9182 @code{haldclut} filter:
9183
9184 @example
9185 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
9186    pad=iw+320 [padded_clut];
9187    smptebars=s=320x256, split [a][b];
9188    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
9189    [main][b] overlay=W-320" -frames:v 1 clut.png
9190 @end example
9191
9192 It contains the original and a preview of the effect of the CLUT: SMPTE color
9193 bars are displayed on the right-top, and below the same color bars processed by
9194 the color changes.
9195
9196 Then, the effect of this Hald CLUT can be visualized with:
9197 @example
9198 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
9199 @end example
9200
9201 @section hflip
9202
9203 Flip the input video horizontally.
9204
9205 For example, to horizontally flip the input video with @command{ffmpeg}:
9206 @example
9207 ffmpeg -i in.avi -vf "hflip" out.avi
9208 @end example
9209
9210 @section histeq
9211 This filter applies a global color histogram equalization on a
9212 per-frame basis.
9213
9214 It can be used to correct video that has a compressed range of pixel
9215 intensities.  The filter redistributes the pixel intensities to
9216 equalize their distribution across the intensity range. It may be
9217 viewed as an "automatically adjusting contrast filter". This filter is
9218 useful only for correcting degraded or poorly captured source
9219 video.
9220
9221 The filter accepts the following options:
9222
9223 @table @option
9224 @item strength
9225 Determine the amount of equalization to be applied.  As the strength
9226 is reduced, the distribution of pixel intensities more-and-more
9227 approaches that of the input frame. The value must be a float number
9228 in the range [0,1] and defaults to 0.200.
9229
9230 @item intensity
9231 Set the maximum intensity that can generated and scale the output
9232 values appropriately.  The strength should be set as desired and then
9233 the intensity can be limited if needed to avoid washing-out. The value
9234 must be a float number in the range [0,1] and defaults to 0.210.
9235
9236 @item antibanding
9237 Set the antibanding level. If enabled the filter will randomly vary
9238 the luminance of output pixels by a small amount to avoid banding of
9239 the histogram. Possible values are @code{none}, @code{weak} or
9240 @code{strong}. It defaults to @code{none}.
9241 @end table
9242
9243 @section histogram
9244
9245 Compute and draw a color distribution histogram for the input video.
9246
9247 The computed histogram is a representation of the color component
9248 distribution in an image.
9249
9250 Standard histogram displays the color components distribution in an image.
9251 Displays color graph for each color component. Shows distribution of
9252 the Y, U, V, A or R, G, B components, depending on input format, in the
9253 current frame. Below each graph a color component scale meter is shown.
9254
9255 The filter accepts the following options:
9256
9257 @table @option
9258 @item level_height
9259 Set height of level. Default value is @code{200}.
9260 Allowed range is [50, 2048].
9261
9262 @item scale_height
9263 Set height of color scale. Default value is @code{12}.
9264 Allowed range is [0, 40].
9265
9266 @item display_mode
9267 Set display mode.
9268 It accepts the following values:
9269 @table @samp
9270 @item stack
9271 Per color component graphs are placed below each other.
9272
9273 @item parade
9274 Per color component graphs are placed side by side.
9275
9276 @item overlay
9277 Presents information identical to that in the @code{parade}, except
9278 that the graphs representing color components are superimposed directly
9279 over one another.
9280 @end table
9281 Default is @code{stack}.
9282
9283 @item levels_mode
9284 Set mode. Can be either @code{linear}, or @code{logarithmic}.
9285 Default is @code{linear}.
9286
9287 @item components
9288 Set what color components to display.
9289 Default is @code{7}.
9290
9291 @item fgopacity
9292 Set foreground opacity. Default is @code{0.7}.
9293
9294 @item bgopacity
9295 Set background opacity. Default is @code{0.5}.
9296 @end table
9297
9298 @subsection Examples
9299
9300 @itemize
9301
9302 @item
9303 Calculate and draw histogram:
9304 @example
9305 ffplay -i input -vf histogram
9306 @end example
9307
9308 @end itemize
9309
9310 @anchor{hqdn3d}
9311 @section hqdn3d
9312
9313 This is a high precision/quality 3d denoise filter. It aims to reduce
9314 image noise, producing smooth images and making still images really
9315 still. It should enhance compressibility.
9316
9317 It accepts the following optional parameters:
9318
9319 @table @option
9320 @item luma_spatial
9321 A non-negative floating point number which specifies spatial luma strength.
9322 It defaults to 4.0.
9323
9324 @item chroma_spatial
9325 A non-negative floating point number which specifies spatial chroma strength.
9326 It defaults to 3.0*@var{luma_spatial}/4.0.
9327
9328 @item luma_tmp
9329 A floating point number which specifies luma temporal strength. It defaults to
9330 6.0*@var{luma_spatial}/4.0.
9331
9332 @item chroma_tmp
9333 A floating point number which specifies chroma temporal strength. It defaults to
9334 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
9335 @end table
9336
9337 @section hwdownload
9338
9339 Download hardware frames to system memory.
9340
9341 The input must be in hardware frames, and the output a non-hardware format.
9342 Not all formats will be supported on the output - it may be necessary to insert
9343 an additional @option{format} filter immediately following in the graph to get
9344 the output in a supported format.
9345
9346 @section hwmap
9347
9348 Map hardware frames to system memory or to another device.
9349
9350 This filter has several different modes of operation; which one is used depends
9351 on the input and output formats:
9352 @itemize
9353 @item
9354 Hardware frame input, normal frame output
9355
9356 Map the input frames to system memory and pass them to the output.  If the
9357 original hardware frame is later required (for example, after overlaying
9358 something else on part of it), the @option{hwmap} filter can be used again
9359 in the next mode to retrieve it.
9360 @item
9361 Normal frame input, hardware frame output
9362
9363 If the input is actually a software-mapped hardware frame, then unmap it -
9364 that is, return the original hardware frame.
9365
9366 Otherwise, a device must be provided.  Create new hardware surfaces on that
9367 device for the output, then map them back to the software format at the input
9368 and give those frames to the preceding filter.  This will then act like the
9369 @option{hwupload} filter, but may be able to avoid an additional copy when
9370 the input is already in a compatible format.
9371 @item
9372 Hardware frame input and output
9373
9374 A device must be supplied for the output, either directly or with the
9375 @option{derive_device} option.  The input and output devices must be of
9376 different types and compatible - the exact meaning of this is
9377 system-dependent, but typically it means that they must refer to the same
9378 underlying hardware context (for example, refer to the same graphics card).
9379
9380 If the input frames were originally created on the output device, then unmap
9381 to retrieve the original frames.
9382
9383 Otherwise, map the frames to the output device - create new hardware frames
9384 on the output corresponding to the frames on the input.
9385 @end itemize
9386
9387 The following additional parameters are accepted:
9388
9389 @table @option
9390 @item mode
9391 Set the frame mapping mode.  Some combination of:
9392 @table @var
9393 @item read
9394 The mapped frame should be readable.
9395 @item write
9396 The mapped frame should be writeable.
9397 @item overwrite
9398 The mapping will always overwrite the entire frame.
9399
9400 This may improve performance in some cases, as the original contents of the
9401 frame need not be loaded.
9402 @item direct
9403 The mapping must not involve any copying.
9404
9405 Indirect mappings to copies of frames are created in some cases where either
9406 direct mapping is not possible or it would have unexpected properties.
9407 Setting this flag ensures that the mapping is direct and will fail if that is
9408 not possible.
9409 @end table
9410 Defaults to @var{read+write} if not specified.
9411
9412 @item derive_device @var{type}
9413 Rather than using the device supplied at initialisation, instead derive a new
9414 device of type @var{type} from the device the input frames exist on.
9415
9416 @item reverse
9417 In a hardware to hardware mapping, map in reverse - create frames in the sink
9418 and map them back to the source.  This may be necessary in some cases where
9419 a mapping in one direction is required but only the opposite direction is
9420 supported by the devices being used.
9421
9422 This option is dangerous - it may break the preceding filter in undefined
9423 ways if there are any additional constraints on that filter's output.
9424 Do not use it without fully understanding the implications of its use.
9425 @end table
9426
9427 @section hwupload
9428
9429 Upload system memory frames to hardware surfaces.
9430
9431 The device to upload to must be supplied when the filter is initialised.  If
9432 using ffmpeg, select the appropriate device with the @option{-filter_hw_device}
9433 option.
9434
9435 @anchor{hwupload_cuda}
9436 @section hwupload_cuda
9437
9438 Upload system memory frames to a CUDA device.
9439
9440 It accepts the following optional parameters:
9441
9442 @table @option
9443 @item device
9444 The number of the CUDA device to use
9445 @end table
9446
9447 @section hqx
9448
9449 Apply a high-quality magnification filter designed for pixel art. This filter
9450 was originally created by Maxim Stepin.
9451
9452 It accepts the following option:
9453
9454 @table @option
9455 @item n
9456 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
9457 @code{hq3x} and @code{4} for @code{hq4x}.
9458 Default is @code{3}.
9459 @end table
9460
9461 @section hstack
9462 Stack input videos horizontally.
9463
9464 All streams must be of same pixel format and of same height.
9465
9466 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
9467 to create same output.
9468
9469 The filter accept the following option:
9470
9471 @table @option
9472 @item inputs
9473 Set number of input streams. Default is 2.
9474
9475 @item shortest
9476 If set to 1, force the output to terminate when the shortest input
9477 terminates. Default value is 0.
9478 @end table
9479
9480 @section hue
9481
9482 Modify the hue and/or the saturation of the input.
9483
9484 It accepts the following parameters:
9485
9486 @table @option
9487 @item h
9488 Specify the hue angle as a number of degrees. It accepts an expression,
9489 and defaults to "0".
9490
9491 @item s
9492 Specify the saturation in the [-10,10] range. It accepts an expression and
9493 defaults to "1".
9494
9495 @item H
9496 Specify the hue angle as a number of radians. It accepts an
9497 expression, and defaults to "0".
9498
9499 @item b
9500 Specify the brightness in the [-10,10] range. It accepts an expression and
9501 defaults to "0".
9502 @end table
9503
9504 @option{h} and @option{H} are mutually exclusive, and can't be
9505 specified at the same time.
9506
9507 The @option{b}, @option{h}, @option{H} and @option{s} option values are
9508 expressions containing the following constants:
9509
9510 @table @option
9511 @item n
9512 frame count of the input frame starting from 0
9513
9514 @item pts
9515 presentation timestamp of the input frame expressed in time base units
9516
9517 @item r
9518 frame rate of the input video, NAN if the input frame rate is unknown
9519
9520 @item t
9521 timestamp expressed in seconds, NAN if the input timestamp is unknown
9522
9523 @item tb
9524 time base of the input video
9525 @end table
9526
9527 @subsection Examples
9528
9529 @itemize
9530 @item
9531 Set the hue to 90 degrees and the saturation to 1.0:
9532 @example
9533 hue=h=90:s=1
9534 @end example
9535
9536 @item
9537 Same command but expressing the hue in radians:
9538 @example
9539 hue=H=PI/2:s=1
9540 @end example
9541
9542 @item
9543 Rotate hue and make the saturation swing between 0
9544 and 2 over a period of 1 second:
9545 @example
9546 hue="H=2*PI*t: s=sin(2*PI*t)+1"
9547 @end example
9548
9549 @item
9550 Apply a 3 seconds saturation fade-in effect starting at 0:
9551 @example
9552 hue="s=min(t/3\,1)"
9553 @end example
9554
9555 The general fade-in expression can be written as:
9556 @example
9557 hue="s=min(0\, max((t-START)/DURATION\, 1))"
9558 @end example
9559
9560 @item
9561 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
9562 @example
9563 hue="s=max(0\, min(1\, (8-t)/3))"
9564 @end example
9565
9566 The general fade-out expression can be written as:
9567 @example
9568 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
9569 @end example
9570
9571 @end itemize
9572
9573 @subsection Commands
9574
9575 This filter supports the following commands:
9576 @table @option
9577 @item b
9578 @item s
9579 @item h
9580 @item H
9581 Modify the hue and/or the saturation and/or brightness of the input video.
9582 The command accepts the same syntax of the corresponding option.
9583
9584 If the specified expression is not valid, it is kept at its current
9585 value.
9586 @end table
9587
9588 @section hysteresis
9589
9590 Grow first stream into second stream by connecting components.
9591 This makes it possible to build more robust edge masks.
9592
9593 This filter accepts the following options:
9594
9595 @table @option
9596 @item planes
9597 Set which planes will be processed as bitmap, unprocessed planes will be
9598 copied from first stream.
9599 By default value 0xf, all planes will be processed.
9600
9601 @item threshold
9602 Set threshold which is used in filtering. If pixel component value is higher than
9603 this value filter algorithm for connecting components is activated.
9604 By default value is 0.
9605 @end table
9606
9607 @section idet
9608
9609 Detect video interlacing type.
9610
9611 This filter tries to detect if the input frames are interlaced, progressive,
9612 top or bottom field first. It will also try to detect fields that are
9613 repeated between adjacent frames (a sign of telecine).
9614
9615 Single frame detection considers only immediately adjacent frames when classifying each frame.
9616 Multiple frame detection incorporates the classification history of previous frames.
9617
9618 The filter will log these metadata values:
9619
9620 @table @option
9621 @item single.current_frame
9622 Detected type of current frame using single-frame detection. One of:
9623 ``tff'' (top field first), ``bff'' (bottom field first),
9624 ``progressive'', or ``undetermined''
9625
9626 @item single.tff
9627 Cumulative number of frames detected as top field first using single-frame detection.
9628
9629 @item multiple.tff
9630 Cumulative number of frames detected as top field first using multiple-frame detection.
9631
9632 @item single.bff
9633 Cumulative number of frames detected as bottom field first using single-frame detection.
9634
9635 @item multiple.current_frame
9636 Detected type of current frame using multiple-frame detection. One of:
9637 ``tff'' (top field first), ``bff'' (bottom field first),
9638 ``progressive'', or ``undetermined''
9639
9640 @item multiple.bff
9641 Cumulative number of frames detected as bottom field first using multiple-frame detection.
9642
9643 @item single.progressive
9644 Cumulative number of frames detected as progressive using single-frame detection.
9645
9646 @item multiple.progressive
9647 Cumulative number of frames detected as progressive using multiple-frame detection.
9648
9649 @item single.undetermined
9650 Cumulative number of frames that could not be classified using single-frame detection.
9651
9652 @item multiple.undetermined
9653 Cumulative number of frames that could not be classified using multiple-frame detection.
9654
9655 @item repeated.current_frame
9656 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
9657
9658 @item repeated.neither
9659 Cumulative number of frames with no repeated field.
9660
9661 @item repeated.top
9662 Cumulative number of frames with the top field repeated from the previous frame's top field.
9663
9664 @item repeated.bottom
9665 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
9666 @end table
9667
9668 The filter accepts the following options:
9669
9670 @table @option
9671 @item intl_thres
9672 Set interlacing threshold.
9673 @item prog_thres
9674 Set progressive threshold.
9675 @item rep_thres
9676 Threshold for repeated field detection.
9677 @item half_life
9678 Number of frames after which a given frame's contribution to the
9679 statistics is halved (i.e., it contributes only 0.5 to its
9680 classification). The default of 0 means that all frames seen are given
9681 full weight of 1.0 forever.
9682 @item analyze_interlaced_flag
9683 When this is not 0 then idet will use the specified number of frames to determine
9684 if the interlaced flag is accurate, it will not count undetermined frames.
9685 If the flag is found to be accurate it will be used without any further
9686 computations, if it is found to be inaccurate it will be cleared without any
9687 further computations. This allows inserting the idet filter as a low computational
9688 method to clean up the interlaced flag
9689 @end table
9690
9691 @section il
9692
9693 Deinterleave or interleave fields.
9694
9695 This filter allows one to process interlaced images fields without
9696 deinterlacing them. Deinterleaving splits the input frame into 2
9697 fields (so called half pictures). Odd lines are moved to the top
9698 half of the output image, even lines to the bottom half.
9699 You can process (filter) them independently and then re-interleave them.
9700
9701 The filter accepts the following options:
9702
9703 @table @option
9704 @item luma_mode, l
9705 @item chroma_mode, c
9706 @item alpha_mode, a
9707 Available values for @var{luma_mode}, @var{chroma_mode} and
9708 @var{alpha_mode} are:
9709
9710 @table @samp
9711 @item none
9712 Do nothing.
9713
9714 @item deinterleave, d
9715 Deinterleave fields, placing one above the other.
9716
9717 @item interleave, i
9718 Interleave fields. Reverse the effect of deinterleaving.
9719 @end table
9720 Default value is @code{none}.
9721
9722 @item luma_swap, ls
9723 @item chroma_swap, cs
9724 @item alpha_swap, as
9725 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
9726 @end table
9727
9728 @section inflate
9729
9730 Apply inflate effect to the video.
9731
9732 This filter replaces the pixel by the local(3x3) average by taking into account
9733 only values higher than the pixel.
9734
9735 It accepts the following options:
9736
9737 @table @option
9738 @item threshold0
9739 @item threshold1
9740 @item threshold2
9741 @item threshold3
9742 Limit the maximum change for each plane, default is 65535.
9743 If 0, plane will remain unchanged.
9744 @end table
9745
9746 @section interlace
9747
9748 Simple interlacing filter from progressive contents. This interleaves upper (or
9749 lower) lines from odd frames with lower (or upper) lines from even frames,
9750 halving the frame rate and preserving image height.
9751
9752 @example
9753    Original        Original             New Frame
9754    Frame 'j'      Frame 'j+1'             (tff)
9755   ==========      ===========       ==================
9756     Line 0  -------------------->    Frame 'j' Line 0
9757     Line 1          Line 1  ---->   Frame 'j+1' Line 1
9758     Line 2 --------------------->    Frame 'j' Line 2
9759     Line 3          Line 3  ---->   Frame 'j+1' Line 3
9760      ...             ...                   ...
9761 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
9762 @end example
9763
9764 It accepts the following optional parameters:
9765
9766 @table @option
9767 @item scan
9768 This determines whether the interlaced frame is taken from the even
9769 (tff - default) or odd (bff) lines of the progressive frame.
9770
9771 @item lowpass
9772 Vertical lowpass filter to avoid twitter interlacing and
9773 reduce moire patterns.
9774
9775 @table @samp
9776 @item 0, off
9777 Disable vertical lowpass filter
9778
9779 @item 1, linear
9780 Enable linear filter (default)
9781
9782 @item 2, complex
9783 Enable complex filter. This will slightly less reduce twitter and moire
9784 but better retain detail and subjective sharpness impression.
9785
9786 @end table
9787 @end table
9788
9789 @section kerndeint
9790
9791 Deinterlace input video by applying Donald Graft's adaptive kernel
9792 deinterling. Work on interlaced parts of a video to produce
9793 progressive frames.
9794
9795 The description of the accepted parameters follows.
9796
9797 @table @option
9798 @item thresh
9799 Set the threshold which affects the filter's tolerance when
9800 determining if a pixel line must be processed. It must be an integer
9801 in the range [0,255] and defaults to 10. A value of 0 will result in
9802 applying the process on every pixels.
9803
9804 @item map
9805 Paint pixels exceeding the threshold value to white if set to 1.
9806 Default is 0.
9807
9808 @item order
9809 Set the fields order. Swap fields if set to 1, leave fields alone if
9810 0. Default is 0.
9811
9812 @item sharp
9813 Enable additional sharpening if set to 1. Default is 0.
9814
9815 @item twoway
9816 Enable twoway sharpening if set to 1. Default is 0.
9817 @end table
9818
9819 @subsection Examples
9820
9821 @itemize
9822 @item
9823 Apply default values:
9824 @example
9825 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
9826 @end example
9827
9828 @item
9829 Enable additional sharpening:
9830 @example
9831 kerndeint=sharp=1
9832 @end example
9833
9834 @item
9835 Paint processed pixels in white:
9836 @example
9837 kerndeint=map=1
9838 @end example
9839 @end itemize
9840
9841 @section lenscorrection
9842
9843 Correct radial lens distortion
9844
9845 This filter can be used to correct for radial distortion as can result from the use
9846 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
9847 one can use tools available for example as part of opencv or simply trial-and-error.
9848 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
9849 and extract the k1 and k2 coefficients from the resulting matrix.
9850
9851 Note that effectively the same filter is available in the open-source tools Krita and
9852 Digikam from the KDE project.
9853
9854 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
9855 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
9856 brightness distribution, so you may want to use both filters together in certain
9857 cases, though you will have to take care of ordering, i.e. whether vignetting should
9858 be applied before or after lens correction.
9859
9860 @subsection Options
9861
9862 The filter accepts the following options:
9863
9864 @table @option
9865 @item cx
9866 Relative x-coordinate of the focal point of the image, and thereby the center of the
9867 distortion. This value has a range [0,1] and is expressed as fractions of the image
9868 width.
9869 @item cy
9870 Relative y-coordinate of the focal point of the image, and thereby the center of the
9871 distortion. This value has a range [0,1] and is expressed as fractions of the image
9872 height.
9873 @item k1
9874 Coefficient of the quadratic correction term. 0.5 means no correction.
9875 @item k2
9876 Coefficient of the double quadratic correction term. 0.5 means no correction.
9877 @end table
9878
9879 The formula that generates the correction is:
9880
9881 @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)
9882
9883 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
9884 distances from the focal point in the source and target images, respectively.
9885
9886 @section libvmaf
9887
9888 Obtain the VMAF (Video Multi-Method Assessment Fusion)
9889 score between two input videos.
9890
9891 The obtained VMAF score is printed through the logging system.
9892
9893 It requires Netflix's vmaf library (libvmaf) as a pre-requisite.
9894 After installing the library it can be enabled using:
9895 @code{./configure --enable-libvmaf}.
9896 If no model path is specified it uses the default model: @code{vmaf_v0.6.1.pkl}.
9897
9898 The filter has following options:
9899
9900 @table @option
9901 @item model_path
9902 Set the model path which is to be used for SVM.
9903 Default value: @code{"vmaf_v0.6.1.pkl"}
9904
9905 @item log_path
9906 Set the file path to be used to store logs.
9907
9908 @item log_fmt
9909 Set the format of the log file (xml or json).
9910
9911 @item enable_transform
9912 Enables transform for computing vmaf.
9913
9914 @item phone_model
9915 Invokes the phone model which will generate VMAF scores higher than in the
9916 regular model, which is more suitable for laptop, TV, etc. viewing conditions.
9917
9918 @item psnr
9919 Enables computing psnr along with vmaf.
9920
9921 @item ssim
9922 Enables computing ssim along with vmaf.
9923
9924 @item ms_ssim
9925 Enables computing ms_ssim along with vmaf.
9926
9927 @item pool
9928 Set the pool method (mean, min or harmonic mean) to be used for computing vmaf.
9929 @end table
9930
9931 This filter also supports the @ref{framesync} options.
9932
9933 On the below examples the input file @file{main.mpg} being processed is
9934 compared with the reference file @file{ref.mpg}.
9935
9936 @example
9937 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf -f null -
9938 @end example
9939
9940 Example with options:
9941 @example
9942 ffmpeg -i main.mpg -i ref.mpg -lavfi libvmaf="psnr=1:enable-transform=1" -f null -
9943 @end example
9944
9945 @section limiter
9946
9947 Limits the pixel components values to the specified range [min, max].
9948
9949 The filter accepts the following options:
9950
9951 @table @option
9952 @item min
9953 Lower bound. Defaults to the lowest allowed value for the input.
9954
9955 @item max
9956 Upper bound. Defaults to the highest allowed value for the input.
9957
9958 @item planes
9959 Specify which planes will be processed. Defaults to all available.
9960 @end table
9961
9962 @section loop
9963
9964 Loop video frames.
9965
9966 The filter accepts the following options:
9967
9968 @table @option
9969 @item loop
9970 Set the number of loops.
9971
9972 @item size
9973 Set maximal size in number of frames.
9974
9975 @item start
9976 Set first frame of loop.
9977 @end table
9978
9979 @anchor{lut3d}
9980 @section lut3d
9981
9982 Apply a 3D LUT to an input video.
9983
9984 The filter accepts the following options:
9985
9986 @table @option
9987 @item file
9988 Set the 3D LUT file name.
9989
9990 Currently supported formats:
9991 @table @samp
9992 @item 3dl
9993 AfterEffects
9994 @item cube
9995 Iridas
9996 @item dat
9997 DaVinci
9998 @item m3d
9999 Pandora
10000 @end table
10001 @item interp
10002 Select interpolation mode.
10003
10004 Available values are:
10005
10006 @table @samp
10007 @item nearest
10008 Use values from the nearest defined point.
10009 @item trilinear
10010 Interpolate values using the 8 points defining a cube.
10011 @item tetrahedral
10012 Interpolate values using a tetrahedron.
10013 @end table
10014 @end table
10015
10016 This filter also supports the @ref{framesync} options.
10017
10018 @section lumakey
10019
10020 Turn certain luma values into transparency.
10021
10022 The filter accepts the following options:
10023
10024 @table @option
10025 @item threshold
10026 Set the luma which will be used as base for transparency.
10027 Default value is @code{0}.
10028
10029 @item tolerance
10030 Set the range of luma values to be keyed out.
10031 Default value is @code{0}.
10032
10033 @item softness
10034 Set the range of softness. Default value is @code{0}.
10035 Use this to control gradual transition from zero to full transparency.
10036 @end table
10037
10038 @section lut, lutrgb, lutyuv
10039
10040 Compute a look-up table for binding each pixel component input value
10041 to an output value, and apply it to the input video.
10042
10043 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
10044 to an RGB input video.
10045
10046 These filters accept the following parameters:
10047 @table @option
10048 @item c0
10049 set first pixel component expression
10050 @item c1
10051 set second pixel component expression
10052 @item c2
10053 set third pixel component expression
10054 @item c3
10055 set fourth pixel component expression, corresponds to the alpha component
10056
10057 @item r
10058 set red component expression
10059 @item g
10060 set green component expression
10061 @item b
10062 set blue component expression
10063 @item a
10064 alpha component expression
10065
10066 @item y
10067 set Y/luminance component expression
10068 @item u
10069 set U/Cb component expression
10070 @item v
10071 set V/Cr component expression
10072 @end table
10073
10074 Each of them specifies the expression to use for computing the lookup table for
10075 the corresponding pixel component values.
10076
10077 The exact component associated to each of the @var{c*} options depends on the
10078 format in input.
10079
10080 The @var{lut} filter requires either YUV or RGB pixel formats in input,
10081 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
10082
10083 The expressions can contain the following constants and functions:
10084
10085 @table @option
10086 @item w
10087 @item h
10088 The input width and height.
10089
10090 @item val
10091 The input value for the pixel component.
10092
10093 @item clipval
10094 The input value, clipped to the @var{minval}-@var{maxval} range.
10095
10096 @item maxval
10097 The maximum value for the pixel component.
10098
10099 @item minval
10100 The minimum value for the pixel component.
10101
10102 @item negval
10103 The negated value for the pixel component value, clipped to the
10104 @var{minval}-@var{maxval} range; it corresponds to the expression
10105 "maxval-clipval+minval".
10106
10107 @item clip(val)
10108 The computed value in @var{val}, clipped to the
10109 @var{minval}-@var{maxval} range.
10110
10111 @item gammaval(gamma)
10112 The computed gamma correction value of the pixel component value,
10113 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
10114 expression
10115 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
10116
10117 @end table
10118
10119 All expressions default to "val".
10120
10121 @subsection Examples
10122
10123 @itemize
10124 @item
10125 Negate input video:
10126 @example
10127 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
10128 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
10129 @end example
10130
10131 The above is the same as:
10132 @example
10133 lutrgb="r=negval:g=negval:b=negval"
10134 lutyuv="y=negval:u=negval:v=negval"
10135 @end example
10136
10137 @item
10138 Negate luminance:
10139 @example
10140 lutyuv=y=negval
10141 @end example
10142
10143 @item
10144 Remove chroma components, turning the video into a graytone image:
10145 @example
10146 lutyuv="u=128:v=128"
10147 @end example
10148
10149 @item
10150 Apply a luma burning effect:
10151 @example
10152 lutyuv="y=2*val"
10153 @end example
10154
10155 @item
10156 Remove green and blue components:
10157 @example
10158 lutrgb="g=0:b=0"
10159 @end example
10160
10161 @item
10162 Set a constant alpha channel value on input:
10163 @example
10164 format=rgba,lutrgb=a="maxval-minval/2"
10165 @end example
10166
10167 @item
10168 Correct luminance gamma by a factor of 0.5:
10169 @example
10170 lutyuv=y=gammaval(0.5)
10171 @end example
10172
10173 @item
10174 Discard least significant bits of luma:
10175 @example
10176 lutyuv=y='bitand(val, 128+64+32)'
10177 @end example
10178
10179 @item
10180 Technicolor like effect:
10181 @example
10182 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
10183 @end example
10184 @end itemize
10185
10186 @section lut2, tlut2
10187
10188 The @code{lut2} filter takes two input streams and outputs one
10189 stream.
10190
10191 The @code{tlut2} (time lut2) filter takes two consecutive frames
10192 from one single stream.
10193
10194 This filter accepts the following parameters:
10195 @table @option
10196 @item c0
10197 set first pixel component expression
10198 @item c1
10199 set second pixel component expression
10200 @item c2
10201 set third pixel component expression
10202 @item c3
10203 set fourth pixel component expression, corresponds to the alpha component
10204 @end table
10205
10206 Each of them specifies the expression to use for computing the lookup table for
10207 the corresponding pixel component values.
10208
10209 The exact component associated to each of the @var{c*} options depends on the
10210 format in inputs.
10211
10212 The expressions can contain the following constants:
10213
10214 @table @option
10215 @item w
10216 @item h
10217 The input width and height.
10218
10219 @item x
10220 The first input value for the pixel component.
10221
10222 @item y
10223 The second input value for the pixel component.
10224
10225 @item bdx
10226 The first input video bit depth.
10227
10228 @item bdy
10229 The second input video bit depth.
10230 @end table
10231
10232 All expressions default to "x".
10233
10234 @subsection Examples
10235
10236 @itemize
10237 @item
10238 Highlight differences between two RGB video streams:
10239 @example
10240 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)'
10241 @end example
10242
10243 @item
10244 Highlight differences between two YUV video streams:
10245 @example
10246 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)'
10247 @end example
10248
10249 @item
10250 Show max difference between two video streams:
10251 @example
10252 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)))'
10253 @end example
10254 @end itemize
10255
10256 @section maskedclamp
10257
10258 Clamp the first input stream with the second input and third input stream.
10259
10260 Returns the value of first stream to be between second input
10261 stream - @code{undershoot} and third input stream + @code{overshoot}.
10262
10263 This filter accepts the following options:
10264 @table @option
10265 @item undershoot
10266 Default value is @code{0}.
10267
10268 @item overshoot
10269 Default value is @code{0}.
10270
10271 @item planes
10272 Set which planes will be processed as bitmap, unprocessed planes will be
10273 copied from first stream.
10274 By default value 0xf, all planes will be processed.
10275 @end table
10276
10277 @section maskedmerge
10278
10279 Merge the first input stream with the second input stream using per pixel
10280 weights in the third input stream.
10281
10282 A value of 0 in the third stream pixel component means that pixel component
10283 from first stream is returned unchanged, while maximum value (eg. 255 for
10284 8-bit videos) means that pixel component from second stream is returned
10285 unchanged. Intermediate values define the amount of merging between both
10286 input stream's pixel components.
10287
10288 This filter accepts the following options:
10289 @table @option
10290 @item planes
10291 Set which planes will be processed as bitmap, unprocessed planes will be
10292 copied from first stream.
10293 By default value 0xf, all planes will be processed.
10294 @end table
10295
10296 @section mcdeint
10297
10298 Apply motion-compensation deinterlacing.
10299
10300 It needs one field per frame as input and must thus be used together
10301 with yadif=1/3 or equivalent.
10302
10303 This filter accepts the following options:
10304 @table @option
10305 @item mode
10306 Set the deinterlacing mode.
10307
10308 It accepts one of the following values:
10309 @table @samp
10310 @item fast
10311 @item medium
10312 @item slow
10313 use iterative motion estimation
10314 @item extra_slow
10315 like @samp{slow}, but use multiple reference frames.
10316 @end table
10317 Default value is @samp{fast}.
10318
10319 @item parity
10320 Set the picture field parity assumed for the input video. It must be
10321 one of the following values:
10322
10323 @table @samp
10324 @item 0, tff
10325 assume top field first
10326 @item 1, bff
10327 assume bottom field first
10328 @end table
10329
10330 Default value is @samp{bff}.
10331
10332 @item qp
10333 Set per-block quantization parameter (QP) used by the internal
10334 encoder.
10335
10336 Higher values should result in a smoother motion vector field but less
10337 optimal individual vectors. Default value is 1.
10338 @end table
10339
10340 @section mergeplanes
10341
10342 Merge color channel components from several video streams.
10343
10344 The filter accepts up to 4 input streams, and merge selected input
10345 planes to the output video.
10346
10347 This filter accepts the following options:
10348 @table @option
10349 @item mapping
10350 Set input to output plane mapping. Default is @code{0}.
10351
10352 The mappings is specified as a bitmap. It should be specified as a
10353 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
10354 mapping for the first plane of the output stream. 'A' sets the number of
10355 the input stream to use (from 0 to 3), and 'a' the plane number of the
10356 corresponding input to use (from 0 to 3). The rest of the mappings is
10357 similar, 'Bb' describes the mapping for the output stream second
10358 plane, 'Cc' describes the mapping for the output stream third plane and
10359 'Dd' describes the mapping for the output stream fourth plane.
10360
10361 @item format
10362 Set output pixel format. Default is @code{yuva444p}.
10363 @end table
10364
10365 @subsection Examples
10366
10367 @itemize
10368 @item
10369 Merge three gray video streams of same width and height into single video stream:
10370 @example
10371 [a0][a1][a2]mergeplanes=0x001020:yuv444p
10372 @end example
10373
10374 @item
10375 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
10376 @example
10377 [a0][a1]mergeplanes=0x00010210:yuva444p
10378 @end example
10379
10380 @item
10381 Swap Y and A plane in yuva444p stream:
10382 @example
10383 format=yuva444p,mergeplanes=0x03010200:yuva444p
10384 @end example
10385
10386 @item
10387 Swap U and V plane in yuv420p stream:
10388 @example
10389 format=yuv420p,mergeplanes=0x000201:yuv420p
10390 @end example
10391
10392 @item
10393 Cast a rgb24 clip to yuv444p:
10394 @example
10395 format=rgb24,mergeplanes=0x000102:yuv444p
10396 @end example
10397 @end itemize
10398
10399 @section mestimate
10400
10401 Estimate and export motion vectors using block matching algorithms.
10402 Motion vectors are stored in frame side data to be used by other filters.
10403
10404 This filter accepts the following options:
10405 @table @option
10406 @item method
10407 Specify the motion estimation method. Accepts one of the following values:
10408
10409 @table @samp
10410 @item esa
10411 Exhaustive search algorithm.
10412 @item tss
10413 Three step search algorithm.
10414 @item tdls
10415 Two dimensional logarithmic search algorithm.
10416 @item ntss
10417 New three step search algorithm.
10418 @item fss
10419 Four step search algorithm.
10420 @item ds
10421 Diamond search algorithm.
10422 @item hexbs
10423 Hexagon-based search algorithm.
10424 @item epzs
10425 Enhanced predictive zonal search algorithm.
10426 @item umh
10427 Uneven multi-hexagon search algorithm.
10428 @end table
10429 Default value is @samp{esa}.
10430
10431 @item mb_size
10432 Macroblock size. Default @code{16}.
10433
10434 @item search_param
10435 Search parameter. Default @code{7}.
10436 @end table
10437
10438 @section midequalizer
10439
10440 Apply Midway Image Equalization effect using two video streams.
10441
10442 Midway Image Equalization adjusts a pair of images to have the same
10443 histogram, while maintaining their dynamics as much as possible. It's
10444 useful for e.g. matching exposures from a pair of stereo cameras.
10445
10446 This filter has two inputs and one output, which must be of same pixel format, but
10447 may be of different sizes. The output of filter is first input adjusted with
10448 midway histogram of both inputs.
10449
10450 This filter accepts the following option:
10451
10452 @table @option
10453 @item planes
10454 Set which planes to process. Default is @code{15}, which is all available planes.
10455 @end table
10456
10457 @section minterpolate
10458
10459 Convert the video to specified frame rate using motion interpolation.
10460
10461 This filter accepts the following options:
10462 @table @option
10463 @item fps
10464 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}.
10465
10466 @item mi_mode
10467 Motion interpolation mode. Following values are accepted:
10468 @table @samp
10469 @item dup
10470 Duplicate previous or next frame for interpolating new ones.
10471 @item blend
10472 Blend source frames. Interpolated frame is mean of previous and next frames.
10473 @item mci
10474 Motion compensated interpolation. Following options are effective when this mode is selected:
10475
10476 @table @samp
10477 @item mc_mode
10478 Motion compensation mode. Following values are accepted:
10479 @table @samp
10480 @item obmc
10481 Overlapped block motion compensation.
10482 @item aobmc
10483 Adaptive overlapped block motion compensation. Window weighting coefficients are controlled adaptively according to the reliabilities of the neighboring motion vectors to reduce oversmoothing.
10484 @end table
10485 Default mode is @samp{obmc}.
10486
10487 @item me_mode
10488 Motion estimation mode. Following values are accepted:
10489 @table @samp
10490 @item bidir
10491 Bidirectional motion estimation. Motion vectors are estimated for each source frame in both forward and backward directions.
10492 @item bilat
10493 Bilateral motion estimation. Motion vectors are estimated directly for interpolated frame.
10494 @end table
10495 Default mode is @samp{bilat}.
10496
10497 @item me
10498 The algorithm to be used for motion estimation. Following values are accepted:
10499 @table @samp
10500 @item esa
10501 Exhaustive search algorithm.
10502 @item tss
10503 Three step search algorithm.
10504 @item tdls
10505 Two dimensional logarithmic search algorithm.
10506 @item ntss
10507 New three step search algorithm.
10508 @item fss
10509 Four step search algorithm.
10510 @item ds
10511 Diamond search algorithm.
10512 @item hexbs
10513 Hexagon-based search algorithm.
10514 @item epzs
10515 Enhanced predictive zonal search algorithm.
10516 @item umh
10517 Uneven multi-hexagon search algorithm.
10518 @end table
10519 Default algorithm is @samp{epzs}.
10520
10521 @item mb_size
10522 Macroblock size. Default @code{16}.
10523
10524 @item search_param
10525 Motion estimation search parameter. Default @code{32}.
10526
10527 @item vsbmc
10528 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).
10529 @end table
10530 @end table
10531
10532 @item scd
10533 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:
10534 @table @samp
10535 @item none
10536 Disable scene change detection.
10537 @item fdiff
10538 Frame difference. Corresponding pixel values are compared and if it satisfies @var{scd_threshold} scene change is detected.
10539 @end table
10540 Default method is @samp{fdiff}.
10541
10542 @item scd_threshold
10543 Scene change detection threshold. Default is @code{5.0}.
10544 @end table
10545
10546 @section mpdecimate
10547
10548 Drop frames that do not differ greatly from the previous frame in
10549 order to reduce frame rate.
10550
10551 The main use of this filter is for very-low-bitrate encoding
10552 (e.g. streaming over dialup modem), but it could in theory be used for
10553 fixing movies that were inverse-telecined incorrectly.
10554
10555 A description of the accepted options follows.
10556
10557 @table @option
10558 @item max
10559 Set the maximum number of consecutive frames which can be dropped (if
10560 positive), or the minimum interval between dropped frames (if
10561 negative). If the value is 0, the frame is dropped disregarding the
10562 number of previous sequentially dropped frames.
10563
10564 Default value is 0.
10565
10566 @item hi
10567 @item lo
10568 @item frac
10569 Set the dropping threshold values.
10570
10571 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
10572 represent actual pixel value differences, so a threshold of 64
10573 corresponds to 1 unit of difference for each pixel, or the same spread
10574 out differently over the block.
10575
10576 A frame is a candidate for dropping if no 8x8 blocks differ by more
10577 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
10578 meaning the whole image) differ by more than a threshold of @option{lo}.
10579
10580 Default value for @option{hi} is 64*12, default value for @option{lo} is
10581 64*5, and default value for @option{frac} is 0.33.
10582 @end table
10583
10584
10585 @section negate
10586
10587 Negate input video.
10588
10589 It accepts an integer in input; if non-zero it negates the
10590 alpha component (if available). The default value in input is 0.
10591
10592 @section nlmeans
10593
10594 Denoise frames using Non-Local Means algorithm.
10595
10596 Each pixel is adjusted by looking for other pixels with similar contexts. This
10597 context similarity is defined by comparing their surrounding patches of size
10598 @option{p}x@option{p}. Patches are searched in an area of @option{r}x@option{r}
10599 around the pixel.
10600
10601 Note that the research area defines centers for patches, which means some
10602 patches will be made of pixels outside that research area.
10603
10604 The filter accepts the following options.
10605
10606 @table @option
10607 @item s
10608 Set denoising strength.
10609
10610 @item p
10611 Set patch size.
10612
10613 @item pc
10614 Same as @option{p} but for chroma planes.
10615
10616 The default value is @var{0} and means automatic.
10617
10618 @item r
10619 Set research size.
10620
10621 @item rc
10622 Same as @option{r} but for chroma planes.
10623
10624 The default value is @var{0} and means automatic.
10625 @end table
10626
10627 @section nnedi
10628
10629 Deinterlace video using neural network edge directed interpolation.
10630
10631 This filter accepts the following options:
10632
10633 @table @option
10634 @item weights
10635 Mandatory option, without binary file filter can not work.
10636 Currently file can be found here:
10637 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
10638
10639 @item deint
10640 Set which frames to deinterlace, by default it is @code{all}.
10641 Can be @code{all} or @code{interlaced}.
10642
10643 @item field
10644 Set mode of operation.
10645
10646 Can be one of the following:
10647
10648 @table @samp
10649 @item af
10650 Use frame flags, both fields.
10651 @item a
10652 Use frame flags, single field.
10653 @item t
10654 Use top field only.
10655 @item b
10656 Use bottom field only.
10657 @item tf
10658 Use both fields, top first.
10659 @item bf
10660 Use both fields, bottom first.
10661 @end table
10662
10663 @item planes
10664 Set which planes to process, by default filter process all frames.
10665
10666 @item nsize
10667 Set size of local neighborhood around each pixel, used by the predictor neural
10668 network.
10669
10670 Can be one of the following:
10671
10672 @table @samp
10673 @item s8x6
10674 @item s16x6
10675 @item s32x6
10676 @item s48x6
10677 @item s8x4
10678 @item s16x4
10679 @item s32x4
10680 @end table
10681
10682 @item nns
10683 Set the number of neurons in predictor neural network.
10684 Can be one of the following:
10685
10686 @table @samp
10687 @item n16
10688 @item n32
10689 @item n64
10690 @item n128
10691 @item n256
10692 @end table
10693
10694 @item qual
10695 Controls the number of different neural network predictions that are blended
10696 together to compute the final output value. Can be @code{fast}, default or
10697 @code{slow}.
10698
10699 @item etype
10700 Set which set of weights to use in the predictor.
10701 Can be one of the following:
10702
10703 @table @samp
10704 @item a
10705 weights trained to minimize absolute error
10706 @item s
10707 weights trained to minimize squared error
10708 @end table
10709
10710 @item pscrn
10711 Controls whether or not the prescreener neural network is used to decide
10712 which pixels should be processed by the predictor neural network and which
10713 can be handled by simple cubic interpolation.
10714 The prescreener is trained to know whether cubic interpolation will be
10715 sufficient for a pixel or whether it should be predicted by the predictor nn.
10716 The computational complexity of the prescreener nn is much less than that of
10717 the predictor nn. Since most pixels can be handled by cubic interpolation,
10718 using the prescreener generally results in much faster processing.
10719 The prescreener is pretty accurate, so the difference between using it and not
10720 using it is almost always unnoticeable.
10721
10722 Can be one of the following:
10723
10724 @table @samp
10725 @item none
10726 @item original
10727 @item new
10728 @end table
10729
10730 Default is @code{new}.
10731
10732 @item fapprox
10733 Set various debugging flags.
10734 @end table
10735
10736 @section noformat
10737
10738 Force libavfilter not to use any of the specified pixel formats for the
10739 input to the next filter.
10740
10741 It accepts the following parameters:
10742 @table @option
10743
10744 @item pix_fmts
10745 A '|'-separated list of pixel format names, such as
10746 pix_fmts=yuv420p|monow|rgb24".
10747
10748 @end table
10749
10750 @subsection Examples
10751
10752 @itemize
10753 @item
10754 Force libavfilter to use a format different from @var{yuv420p} for the
10755 input to the vflip filter:
10756 @example
10757 noformat=pix_fmts=yuv420p,vflip
10758 @end example
10759
10760 @item
10761 Convert the input video to any of the formats not contained in the list:
10762 @example
10763 noformat=yuv420p|yuv444p|yuv410p
10764 @end example
10765 @end itemize
10766
10767 @section noise
10768
10769 Add noise on video input frame.
10770
10771 The filter accepts the following options:
10772
10773 @table @option
10774 @item all_seed
10775 @item c0_seed
10776 @item c1_seed
10777 @item c2_seed
10778 @item c3_seed
10779 Set noise seed for specific pixel component or all pixel components in case
10780 of @var{all_seed}. Default value is @code{123457}.
10781
10782 @item all_strength, alls
10783 @item c0_strength, c0s
10784 @item c1_strength, c1s
10785 @item c2_strength, c2s
10786 @item c3_strength, c3s
10787 Set noise strength for specific pixel component or all pixel components in case
10788 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
10789
10790 @item all_flags, allf
10791 @item c0_flags, c0f
10792 @item c1_flags, c1f
10793 @item c2_flags, c2f
10794 @item c3_flags, c3f
10795 Set pixel component flags or set flags for all components if @var{all_flags}.
10796 Available values for component flags are:
10797 @table @samp
10798 @item a
10799 averaged temporal noise (smoother)
10800 @item p
10801 mix random noise with a (semi)regular pattern
10802 @item t
10803 temporal noise (noise pattern changes between frames)
10804 @item u
10805 uniform noise (gaussian otherwise)
10806 @end table
10807 @end table
10808
10809 @subsection Examples
10810
10811 Add temporal and uniform noise to input video:
10812 @example
10813 noise=alls=20:allf=t+u
10814 @end example
10815
10816 @section null
10817
10818 Pass the video source unchanged to the output.
10819
10820 @section ocr
10821 Optical Character Recognition
10822
10823 This filter uses Tesseract for optical character recognition.
10824
10825 It accepts the following options:
10826
10827 @table @option
10828 @item datapath
10829 Set datapath to tesseract data. Default is to use whatever was
10830 set at installation.
10831
10832 @item language
10833 Set language, default is "eng".
10834
10835 @item whitelist
10836 Set character whitelist.
10837
10838 @item blacklist
10839 Set character blacklist.
10840 @end table
10841
10842 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
10843
10844 @section ocv
10845
10846 Apply a video transform using libopencv.
10847
10848 To enable this filter, install the libopencv library and headers and
10849 configure FFmpeg with @code{--enable-libopencv}.
10850
10851 It accepts the following parameters:
10852
10853 @table @option
10854
10855 @item filter_name
10856 The name of the libopencv filter to apply.
10857
10858 @item filter_params
10859 The parameters to pass to the libopencv filter. If not specified, the default
10860 values are assumed.
10861
10862 @end table
10863
10864 Refer to the official libopencv documentation for more precise
10865 information:
10866 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
10867
10868 Several libopencv filters are supported; see the following subsections.
10869
10870 @anchor{dilate}
10871 @subsection dilate
10872
10873 Dilate an image by using a specific structuring element.
10874 It corresponds to the libopencv function @code{cvDilate}.
10875
10876 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
10877
10878 @var{struct_el} represents a structuring element, and has the syntax:
10879 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
10880
10881 @var{cols} and @var{rows} represent the number of columns and rows of
10882 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
10883 point, and @var{shape} the shape for the structuring element. @var{shape}
10884 must be "rect", "cross", "ellipse", or "custom".
10885
10886 If the value for @var{shape} is "custom", it must be followed by a
10887 string of the form "=@var{filename}". The file with name
10888 @var{filename} is assumed to represent a binary image, with each
10889 printable character corresponding to a bright pixel. When a custom
10890 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
10891 or columns and rows of the read file are assumed instead.
10892
10893 The default value for @var{struct_el} is "3x3+0x0/rect".
10894
10895 @var{nb_iterations} specifies the number of times the transform is
10896 applied to the image, and defaults to 1.
10897
10898 Some examples:
10899 @example
10900 # Use the default values
10901 ocv=dilate
10902
10903 # Dilate using a structuring element with a 5x5 cross, iterating two times
10904 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
10905
10906 # Read the shape from the file diamond.shape, iterating two times.
10907 # The file diamond.shape may contain a pattern of characters like this
10908 #   *
10909 #  ***
10910 # *****
10911 #  ***
10912 #   *
10913 # The specified columns and rows are ignored
10914 # but the anchor point coordinates are not
10915 ocv=dilate:0x0+2x2/custom=diamond.shape|2
10916 @end example
10917
10918 @subsection erode
10919
10920 Erode an image by using a specific structuring element.
10921 It corresponds to the libopencv function @code{cvErode}.
10922
10923 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
10924 with the same syntax and semantics as the @ref{dilate} filter.
10925
10926 @subsection smooth
10927
10928 Smooth the input video.
10929
10930 The filter takes the following parameters:
10931 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
10932
10933 @var{type} is the type of smooth filter to apply, and must be one of
10934 the following values: "blur", "blur_no_scale", "median", "gaussian",
10935 or "bilateral". The default value is "gaussian".
10936
10937 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
10938 depend on the smooth type. @var{param1} and
10939 @var{param2} accept integer positive values or 0. @var{param3} and
10940 @var{param4} accept floating point values.
10941
10942 The default value for @var{param1} is 3. The default value for the
10943 other parameters is 0.
10944
10945 These parameters correspond to the parameters assigned to the
10946 libopencv function @code{cvSmooth}.
10947
10948 @section oscilloscope
10949
10950 2D Video Oscilloscope.
10951
10952 Useful to measure spatial impulse, step responses, chroma delays, etc.
10953
10954 It accepts the following parameters:
10955
10956 @table @option
10957 @item x
10958 Set scope center x position.
10959
10960 @item y
10961 Set scope center y position.
10962
10963 @item s
10964 Set scope size, relative to frame diagonal.
10965
10966 @item t
10967 Set scope tilt/rotation.
10968
10969 @item o
10970 Set trace opacity.
10971
10972 @item tx
10973 Set trace center x position.
10974
10975 @item ty
10976 Set trace center y position.
10977
10978 @item tw
10979 Set trace width, relative to width of frame.
10980
10981 @item th
10982 Set trace height, relative to height of frame.
10983
10984 @item c
10985 Set which components to trace. By default it traces first three components.
10986
10987 @item g
10988 Draw trace grid. By default is enabled.
10989
10990 @item st
10991 Draw some statistics. By default is enabled.
10992
10993 @item sc
10994 Draw scope. By default is enabled.
10995 @end table
10996
10997 @subsection Examples
10998
10999 @itemize
11000 @item
11001 Inspect full first row of video frame.
11002 @example
11003 oscilloscope=x=0.5:y=0:s=1
11004 @end example
11005
11006 @item
11007 Inspect full last row of video frame.
11008 @example
11009 oscilloscope=x=0.5:y=1:s=1
11010 @end example
11011
11012 @item
11013 Inspect full 5th line of video frame of height 1080.
11014 @example
11015 oscilloscope=x=0.5:y=5/1080:s=1
11016 @end example
11017
11018 @item
11019 Inspect full last column of video frame.
11020 @example
11021 oscilloscope=x=1:y=0.5:s=1:t=1
11022 @end example
11023
11024 @end itemize
11025
11026 @anchor{overlay}
11027 @section overlay
11028
11029 Overlay one video on top of another.
11030
11031 It takes two inputs and has one output. The first input is the "main"
11032 video on which the second input is overlaid.
11033
11034 It accepts the following parameters:
11035
11036 A description of the accepted options follows.
11037
11038 @table @option
11039 @item x
11040 @item y
11041 Set the expression for the x and y coordinates of the overlaid video
11042 on the main video. Default value is "0" for both expressions. In case
11043 the expression is invalid, it is set to a huge value (meaning that the
11044 overlay will not be displayed within the output visible area).
11045
11046 @item eof_action
11047 See @ref{framesync}.
11048
11049 @item eval
11050 Set when the expressions for @option{x}, and @option{y} are evaluated.
11051
11052 It accepts the following values:
11053 @table @samp
11054 @item init
11055 only evaluate expressions once during the filter initialization or
11056 when a command is processed
11057
11058 @item frame
11059 evaluate expressions for each incoming frame
11060 @end table
11061
11062 Default value is @samp{frame}.
11063
11064 @item shortest
11065 See @ref{framesync}.
11066
11067 @item format
11068 Set the format for the output video.
11069
11070 It accepts the following values:
11071 @table @samp
11072 @item yuv420
11073 force YUV420 output
11074
11075 @item yuv422
11076 force YUV422 output
11077
11078 @item yuv444
11079 force YUV444 output
11080
11081 @item rgb
11082 force packed RGB output
11083
11084 @item gbrp
11085 force planar RGB output
11086
11087 @item auto
11088 automatically pick format
11089 @end table
11090
11091 Default value is @samp{yuv420}.
11092
11093 @item repeatlast
11094 See @ref{framesync}.
11095 @end table
11096
11097 The @option{x}, and @option{y} expressions can contain the following
11098 parameters.
11099
11100 @table @option
11101 @item main_w, W
11102 @item main_h, H
11103 The main input width and height.
11104
11105 @item overlay_w, w
11106 @item overlay_h, h
11107 The overlay input width and height.
11108
11109 @item x
11110 @item y
11111 The computed values for @var{x} and @var{y}. They are evaluated for
11112 each new frame.
11113
11114 @item hsub
11115 @item vsub
11116 horizontal and vertical chroma subsample values of the output
11117 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
11118 @var{vsub} is 1.
11119
11120 @item n
11121 the number of input frame, starting from 0
11122
11123 @item pos
11124 the position in the file of the input frame, NAN if unknown
11125
11126 @item t
11127 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
11128
11129 @end table
11130
11131 This filter also supports the @ref{framesync} options.
11132
11133 Note that the @var{n}, @var{pos}, @var{t} variables are available only
11134 when evaluation is done @emph{per frame}, and will evaluate to NAN
11135 when @option{eval} is set to @samp{init}.
11136
11137 Be aware that frames are taken from each input video in timestamp
11138 order, hence, if their initial timestamps differ, it is a good idea
11139 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
11140 have them begin in the same zero timestamp, as the example for
11141 the @var{movie} filter does.
11142
11143 You can chain together more overlays but you should test the
11144 efficiency of such approach.
11145
11146 @subsection Commands
11147
11148 This filter supports the following commands:
11149 @table @option
11150 @item x
11151 @item y
11152 Modify the x and y of the overlay input.
11153 The command accepts the same syntax of the corresponding option.
11154
11155 If the specified expression is not valid, it is kept at its current
11156 value.
11157 @end table
11158
11159 @subsection Examples
11160
11161 @itemize
11162 @item
11163 Draw the overlay at 10 pixels from the bottom right corner of the main
11164 video:
11165 @example
11166 overlay=main_w-overlay_w-10:main_h-overlay_h-10
11167 @end example
11168
11169 Using named options the example above becomes:
11170 @example
11171 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
11172 @end example
11173
11174 @item
11175 Insert a transparent PNG logo in the bottom left corner of the input,
11176 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
11177 @example
11178 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
11179 @end example
11180
11181 @item
11182 Insert 2 different transparent PNG logos (second logo on bottom
11183 right corner) using the @command{ffmpeg} tool:
11184 @example
11185 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
11186 @end example
11187
11188 @item
11189 Add a transparent color layer on top of the main video; @code{WxH}
11190 must specify the size of the main input to the overlay filter:
11191 @example
11192 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
11193 @end example
11194
11195 @item
11196 Play an original video and a filtered version (here with the deshake
11197 filter) side by side using the @command{ffplay} tool:
11198 @example
11199 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
11200 @end example
11201
11202 The above command is the same as:
11203 @example
11204 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
11205 @end example
11206
11207 @item
11208 Make a sliding overlay appearing from the left to the right top part of the
11209 screen starting since time 2:
11210 @example
11211 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
11212 @end example
11213
11214 @item
11215 Compose output by putting two input videos side to side:
11216 @example
11217 ffmpeg -i left.avi -i right.avi -filter_complex "
11218 nullsrc=size=200x100 [background];
11219 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
11220 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
11221 [background][left]       overlay=shortest=1       [background+left];
11222 [background+left][right] overlay=shortest=1:x=100 [left+right]
11223 "
11224 @end example
11225
11226 @item
11227 Mask 10-20 seconds of a video by applying the delogo filter to a section
11228 @example
11229 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
11230 -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]'
11231 masked.avi
11232 @end example
11233
11234 @item
11235 Chain several overlays in cascade:
11236 @example
11237 nullsrc=s=200x200 [bg];
11238 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
11239 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
11240 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
11241 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
11242 [in3] null,       [mid2] overlay=100:100 [out0]
11243 @end example
11244
11245 @end itemize
11246
11247 @section owdenoise
11248
11249 Apply Overcomplete Wavelet denoiser.
11250
11251 The filter accepts the following options:
11252
11253 @table @option
11254 @item depth
11255 Set depth.
11256
11257 Larger depth values will denoise lower frequency components more, but
11258 slow down filtering.
11259
11260 Must be an int in the range 8-16, default is @code{8}.
11261
11262 @item luma_strength, ls
11263 Set luma strength.
11264
11265 Must be a double value in the range 0-1000, default is @code{1.0}.
11266
11267 @item chroma_strength, cs
11268 Set chroma strength.
11269
11270 Must be a double value in the range 0-1000, default is @code{1.0}.
11271 @end table
11272
11273 @anchor{pad}
11274 @section pad
11275
11276 Add paddings to the input image, and place the original input at the
11277 provided @var{x}, @var{y} coordinates.
11278
11279 It accepts the following parameters:
11280
11281 @table @option
11282 @item width, w
11283 @item height, h
11284 Specify an expression for the size of the output image with the
11285 paddings added. If the value for @var{width} or @var{height} is 0, the
11286 corresponding input size is used for the output.
11287
11288 The @var{width} expression can reference the value set by the
11289 @var{height} expression, and vice versa.
11290
11291 The default value of @var{width} and @var{height} is 0.
11292
11293 @item x
11294 @item y
11295 Specify the offsets to place the input image at within the padded area,
11296 with respect to the top/left border of the output image.
11297
11298 The @var{x} expression can reference the value set by the @var{y}
11299 expression, and vice versa.
11300
11301 The default value of @var{x} and @var{y} is 0.
11302
11303 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
11304 so the input image is centered on the padded area.
11305
11306 @item color
11307 Specify the color of the padded area. For the syntax of this option,
11308 check the "Color" section in the ffmpeg-utils manual.
11309
11310 The default value of @var{color} is "black".
11311
11312 @item eval
11313 Specify when to evaluate  @var{width}, @var{height}, @var{x} and @var{y} expression.
11314
11315 It accepts the following values:
11316
11317 @table @samp
11318 @item init
11319 Only evaluate expressions once during the filter initialization or when
11320 a command is processed.
11321
11322 @item frame
11323 Evaluate expressions for each incoming frame.
11324
11325 @end table
11326
11327 Default value is @samp{init}.
11328
11329 @item aspect
11330 Pad to aspect instead to a resolution.
11331
11332 @end table
11333
11334 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
11335 options are expressions containing the following constants:
11336
11337 @table @option
11338 @item in_w
11339 @item in_h
11340 The input video width and height.
11341
11342 @item iw
11343 @item ih
11344 These are the same as @var{in_w} and @var{in_h}.
11345
11346 @item out_w
11347 @item out_h
11348 The output width and height (the size of the padded area), as
11349 specified by the @var{width} and @var{height} expressions.
11350
11351 @item ow
11352 @item oh
11353 These are the same as @var{out_w} and @var{out_h}.
11354
11355 @item x
11356 @item y
11357 The x and y offsets as specified by the @var{x} and @var{y}
11358 expressions, or NAN if not yet specified.
11359
11360 @item a
11361 same as @var{iw} / @var{ih}
11362
11363 @item sar
11364 input sample aspect ratio
11365
11366 @item dar
11367 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
11368
11369 @item hsub
11370 @item vsub
11371 The horizontal and vertical chroma subsample values. For example for the
11372 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11373 @end table
11374
11375 @subsection Examples
11376
11377 @itemize
11378 @item
11379 Add paddings with the color "violet" to the input video. The output video
11380 size is 640x480, and the top-left corner of the input video is placed at
11381 column 0, row 40
11382 @example
11383 pad=640:480:0:40:violet
11384 @end example
11385
11386 The example above is equivalent to the following command:
11387 @example
11388 pad=width=640:height=480:x=0:y=40:color=violet
11389 @end example
11390
11391 @item
11392 Pad the input to get an output with dimensions increased by 3/2,
11393 and put the input video at the center of the padded area:
11394 @example
11395 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
11396 @end example
11397
11398 @item
11399 Pad the input to get a squared output with size equal to the maximum
11400 value between the input width and height, and put the input video at
11401 the center of the padded area:
11402 @example
11403 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
11404 @end example
11405
11406 @item
11407 Pad the input to get a final w/h ratio of 16:9:
11408 @example
11409 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
11410 @end example
11411
11412 @item
11413 In case of anamorphic video, in order to set the output display aspect
11414 correctly, it is necessary to use @var{sar} in the expression,
11415 according to the relation:
11416 @example
11417 (ih * X / ih) * sar = output_dar
11418 X = output_dar / sar
11419 @end example
11420
11421 Thus the previous example needs to be modified to:
11422 @example
11423 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
11424 @end example
11425
11426 @item
11427 Double the output size and put the input video in the bottom-right
11428 corner of the output padded area:
11429 @example
11430 pad="2*iw:2*ih:ow-iw:oh-ih"
11431 @end example
11432 @end itemize
11433
11434 @anchor{palettegen}
11435 @section palettegen
11436
11437 Generate one palette for a whole video stream.
11438
11439 It accepts the following options:
11440
11441 @table @option
11442 @item max_colors
11443 Set the maximum number of colors to quantize in the palette.
11444 Note: the palette will still contain 256 colors; the unused palette entries
11445 will be black.
11446
11447 @item reserve_transparent
11448 Create a palette of 255 colors maximum and reserve the last one for
11449 transparency. Reserving the transparency color is useful for GIF optimization.
11450 If not set, the maximum of colors in the palette will be 256. You probably want
11451 to disable this option for a standalone image.
11452 Set by default.
11453
11454 @item transparency_color
11455 Set the color that will be used as background for transparency.
11456
11457 @item stats_mode
11458 Set statistics mode.
11459
11460 It accepts the following values:
11461 @table @samp
11462 @item full
11463 Compute full frame histograms.
11464 @item diff
11465 Compute histograms only for the part that differs from previous frame. This
11466 might be relevant to give more importance to the moving part of your input if
11467 the background is static.
11468 @item single
11469 Compute new histogram for each frame.
11470 @end table
11471
11472 Default value is @var{full}.
11473 @end table
11474
11475 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
11476 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
11477 color quantization of the palette. This information is also visible at
11478 @var{info} logging level.
11479
11480 @subsection Examples
11481
11482 @itemize
11483 @item
11484 Generate a representative palette of a given video using @command{ffmpeg}:
11485 @example
11486 ffmpeg -i input.mkv -vf palettegen palette.png
11487 @end example
11488 @end itemize
11489
11490 @section paletteuse
11491
11492 Use a palette to downsample an input video stream.
11493
11494 The filter takes two inputs: one video stream and a palette. The palette must
11495 be a 256 pixels image.
11496
11497 It accepts the following options:
11498
11499 @table @option
11500 @item dither
11501 Select dithering mode. Available algorithms are:
11502 @table @samp
11503 @item bayer
11504 Ordered 8x8 bayer dithering (deterministic)
11505 @item heckbert
11506 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
11507 Note: this dithering is sometimes considered "wrong" and is included as a
11508 reference.
11509 @item floyd_steinberg
11510 Floyd and Steingberg dithering (error diffusion)
11511 @item sierra2
11512 Frankie Sierra dithering v2 (error diffusion)
11513 @item sierra2_4a
11514 Frankie Sierra dithering v2 "Lite" (error diffusion)
11515 @end table
11516
11517 Default is @var{sierra2_4a}.
11518
11519 @item bayer_scale
11520 When @var{bayer} dithering is selected, this option defines the scale of the
11521 pattern (how much the crosshatch pattern is visible). A low value means more
11522 visible pattern for less banding, and higher value means less visible pattern
11523 at the cost of more banding.
11524
11525 The option must be an integer value in the range [0,5]. Default is @var{2}.
11526
11527 @item diff_mode
11528 If set, define the zone to process
11529
11530 @table @samp
11531 @item rectangle
11532 Only the changing rectangle will be reprocessed. This is similar to GIF
11533 cropping/offsetting compression mechanism. This option can be useful for speed
11534 if only a part of the image is changing, and has use cases such as limiting the
11535 scope of the error diffusal @option{dither} to the rectangle that bounds the
11536 moving scene (it leads to more deterministic output if the scene doesn't change
11537 much, and as a result less moving noise and better GIF compression).
11538 @end table
11539
11540 Default is @var{none}.
11541
11542 @item new
11543 Take new palette for each output frame.
11544
11545 @item alpha_threshold
11546 Sets the alpha threshold for transparency. Alpha values above this threshold
11547 will be treated as completely opaque, and values below this threshold will be
11548 treated as completely transparent.
11549
11550 The option must be an integer value in the range [0,255]. Default is @var{128}.
11551 @end table
11552
11553 @subsection Examples
11554
11555 @itemize
11556 @item
11557 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
11558 using @command{ffmpeg}:
11559 @example
11560 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
11561 @end example
11562 @end itemize
11563
11564 @section perspective
11565
11566 Correct perspective of video not recorded perpendicular to the screen.
11567
11568 A description of the accepted parameters follows.
11569
11570 @table @option
11571 @item x0
11572 @item y0
11573 @item x1
11574 @item y1
11575 @item x2
11576 @item y2
11577 @item x3
11578 @item y3
11579 Set coordinates expression for top left, top right, bottom left and bottom right corners.
11580 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
11581 If the @code{sense} option is set to @code{source}, then the specified points will be sent
11582 to the corners of the destination. If the @code{sense} option is set to @code{destination},
11583 then the corners of the source will be sent to the specified coordinates.
11584
11585 The expressions can use the following variables:
11586
11587 @table @option
11588 @item W
11589 @item H
11590 the width and height of video frame.
11591 @item in
11592 Input frame count.
11593 @item on
11594 Output frame count.
11595 @end table
11596
11597 @item interpolation
11598 Set interpolation for perspective correction.
11599
11600 It accepts the following values:
11601 @table @samp
11602 @item linear
11603 @item cubic
11604 @end table
11605
11606 Default value is @samp{linear}.
11607
11608 @item sense
11609 Set interpretation of coordinate options.
11610
11611 It accepts the following values:
11612 @table @samp
11613 @item 0, source
11614
11615 Send point in the source specified by the given coordinates to
11616 the corners of the destination.
11617
11618 @item 1, destination
11619
11620 Send the corners of the source to the point in the destination specified
11621 by the given coordinates.
11622
11623 Default value is @samp{source}.
11624 @end table
11625
11626 @item eval
11627 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
11628
11629 It accepts the following values:
11630 @table @samp
11631 @item init
11632 only evaluate expressions once during the filter initialization or
11633 when a command is processed
11634
11635 @item frame
11636 evaluate expressions for each incoming frame
11637 @end table
11638
11639 Default value is @samp{init}.
11640 @end table
11641
11642 @section phase
11643
11644 Delay interlaced video by one field time so that the field order changes.
11645
11646 The intended use is to fix PAL movies that have been captured with the
11647 opposite field order to the film-to-video transfer.
11648
11649 A description of the accepted parameters follows.
11650
11651 @table @option
11652 @item mode
11653 Set phase mode.
11654
11655 It accepts the following values:
11656 @table @samp
11657 @item t
11658 Capture field order top-first, transfer bottom-first.
11659 Filter will delay the bottom field.
11660
11661 @item b
11662 Capture field order bottom-first, transfer top-first.
11663 Filter will delay the top field.
11664
11665 @item p
11666 Capture and transfer with the same field order. This mode only exists
11667 for the documentation of the other options to refer to, but if you
11668 actually select it, the filter will faithfully do nothing.
11669
11670 @item a
11671 Capture field order determined automatically by field flags, transfer
11672 opposite.
11673 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
11674 basis using field flags. If no field information is available,
11675 then this works just like @samp{u}.
11676
11677 @item u
11678 Capture unknown or varying, transfer opposite.
11679 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
11680 analyzing the images and selecting the alternative that produces best
11681 match between the fields.
11682
11683 @item T
11684 Capture top-first, transfer unknown or varying.
11685 Filter selects among @samp{t} and @samp{p} using image analysis.
11686
11687 @item B
11688 Capture bottom-first, transfer unknown or varying.
11689 Filter selects among @samp{b} and @samp{p} using image analysis.
11690
11691 @item A
11692 Capture determined by field flags, transfer unknown or varying.
11693 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
11694 image analysis. If no field information is available, then this works just
11695 like @samp{U}. This is the default mode.
11696
11697 @item U
11698 Both capture and transfer unknown or varying.
11699 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
11700 @end table
11701 @end table
11702
11703 @section pixdesctest
11704
11705 Pixel format descriptor test filter, mainly useful for internal
11706 testing. The output video should be equal to the input video.
11707
11708 For example:
11709 @example
11710 format=monow, pixdesctest
11711 @end example
11712
11713 can be used to test the monowhite pixel format descriptor definition.
11714
11715 @section pixscope
11716
11717 Display sample values of color channels. Mainly useful for checking color
11718 and levels. Minimum supported resolution is 640x480.
11719
11720 The filters accept the following options:
11721
11722 @table @option
11723 @item x
11724 Set scope X position, relative offset on X axis.
11725
11726 @item y
11727 Set scope Y position, relative offset on Y axis.
11728
11729 @item w
11730 Set scope width.
11731
11732 @item h
11733 Set scope height.
11734
11735 @item o
11736 Set window opacity. This window also holds statistics about pixel area.
11737
11738 @item wx
11739 Set window X position, relative offset on X axis.
11740
11741 @item wy
11742 Set window Y position, relative offset on Y axis.
11743 @end table
11744
11745 @section pp
11746
11747 Enable the specified chain of postprocessing subfilters using libpostproc. This
11748 library should be automatically selected with a GPL build (@code{--enable-gpl}).
11749 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
11750 Each subfilter and some options have a short and a long name that can be used
11751 interchangeably, i.e. dr/dering are the same.
11752
11753 The filters accept the following options:
11754
11755 @table @option
11756 @item subfilters
11757 Set postprocessing subfilters string.
11758 @end table
11759
11760 All subfilters share common options to determine their scope:
11761
11762 @table @option
11763 @item a/autoq
11764 Honor the quality commands for this subfilter.
11765
11766 @item c/chrom
11767 Do chrominance filtering, too (default).
11768
11769 @item y/nochrom
11770 Do luminance filtering only (no chrominance).
11771
11772 @item n/noluma
11773 Do chrominance filtering only (no luminance).
11774 @end table
11775
11776 These options can be appended after the subfilter name, separated by a '|'.
11777
11778 Available subfilters are:
11779
11780 @table @option
11781 @item hb/hdeblock[|difference[|flatness]]
11782 Horizontal deblocking filter
11783 @table @option
11784 @item difference
11785 Difference factor where higher values mean more deblocking (default: @code{32}).
11786 @item flatness
11787 Flatness threshold where lower values mean more deblocking (default: @code{39}).
11788 @end table
11789
11790 @item vb/vdeblock[|difference[|flatness]]
11791 Vertical deblocking filter
11792 @table @option
11793 @item difference
11794 Difference factor where higher values mean more deblocking (default: @code{32}).
11795 @item flatness
11796 Flatness threshold where lower values mean more deblocking (default: @code{39}).
11797 @end table
11798
11799 @item ha/hadeblock[|difference[|flatness]]
11800 Accurate horizontal deblocking filter
11801 @table @option
11802 @item difference
11803 Difference factor where higher values mean more deblocking (default: @code{32}).
11804 @item flatness
11805 Flatness threshold where lower values mean more deblocking (default: @code{39}).
11806 @end table
11807
11808 @item va/vadeblock[|difference[|flatness]]
11809 Accurate vertical deblocking filter
11810 @table @option
11811 @item difference
11812 Difference factor where higher values mean more deblocking (default: @code{32}).
11813 @item flatness
11814 Flatness threshold where lower values mean more deblocking (default: @code{39}).
11815 @end table
11816 @end table
11817
11818 The horizontal and vertical deblocking filters share the difference and
11819 flatness values so you cannot set different horizontal and vertical
11820 thresholds.
11821
11822 @table @option
11823 @item h1/x1hdeblock
11824 Experimental horizontal deblocking filter
11825
11826 @item v1/x1vdeblock
11827 Experimental vertical deblocking filter
11828
11829 @item dr/dering
11830 Deringing filter
11831
11832 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
11833 @table @option
11834 @item threshold1
11835 larger -> stronger filtering
11836 @item threshold2
11837 larger -> stronger filtering
11838 @item threshold3
11839 larger -> stronger filtering
11840 @end table
11841
11842 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
11843 @table @option
11844 @item f/fullyrange
11845 Stretch luminance to @code{0-255}.
11846 @end table
11847
11848 @item lb/linblenddeint
11849 Linear blend deinterlacing filter that deinterlaces the given block by
11850 filtering all lines with a @code{(1 2 1)} filter.
11851
11852 @item li/linipoldeint
11853 Linear interpolating deinterlacing filter that deinterlaces the given block by
11854 linearly interpolating every second line.
11855
11856 @item ci/cubicipoldeint
11857 Cubic interpolating deinterlacing filter deinterlaces the given block by
11858 cubically interpolating every second line.
11859
11860 @item md/mediandeint
11861 Median deinterlacing filter that deinterlaces the given block by applying a
11862 median filter to every second line.
11863
11864 @item fd/ffmpegdeint
11865 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
11866 second line with a @code{(-1 4 2 4 -1)} filter.
11867
11868 @item l5/lowpass5
11869 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
11870 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
11871
11872 @item fq/forceQuant[|quantizer]
11873 Overrides the quantizer table from the input with the constant quantizer you
11874 specify.
11875 @table @option
11876 @item quantizer
11877 Quantizer to use
11878 @end table
11879
11880 @item de/default
11881 Default pp filter combination (@code{hb|a,vb|a,dr|a})
11882
11883 @item fa/fast
11884 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
11885
11886 @item ac
11887 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
11888 @end table
11889
11890 @subsection Examples
11891
11892 @itemize
11893 @item
11894 Apply horizontal and vertical deblocking, deringing and automatic
11895 brightness/contrast:
11896 @example
11897 pp=hb/vb/dr/al
11898 @end example
11899
11900 @item
11901 Apply default filters without brightness/contrast correction:
11902 @example
11903 pp=de/-al
11904 @end example
11905
11906 @item
11907 Apply default filters and temporal denoiser:
11908 @example
11909 pp=default/tmpnoise|1|2|3
11910 @end example
11911
11912 @item
11913 Apply deblocking on luminance only, and switch vertical deblocking on or off
11914 automatically depending on available CPU time:
11915 @example
11916 pp=hb|y/vb|a
11917 @end example
11918 @end itemize
11919
11920 @section pp7
11921 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
11922 similar to spp = 6 with 7 point DCT, where only the center sample is
11923 used after IDCT.
11924
11925 The filter accepts the following options:
11926
11927 @table @option
11928 @item qp
11929 Force a constant quantization parameter. It accepts an integer in range
11930 0 to 63. If not set, the filter will use the QP from the video stream
11931 (if available).
11932
11933 @item mode
11934 Set thresholding mode. Available modes are:
11935
11936 @table @samp
11937 @item hard
11938 Set hard thresholding.
11939 @item soft
11940 Set soft thresholding (better de-ringing effect, but likely blurrier).
11941 @item medium
11942 Set medium thresholding (good results, default).
11943 @end table
11944 @end table
11945
11946 @section premultiply
11947 Apply alpha premultiply effect to input video stream using first plane
11948 of second stream as alpha.
11949
11950 Both streams must have same dimensions and same pixel format.
11951
11952 The filter accepts the following option:
11953
11954 @table @option
11955 @item planes
11956 Set which planes will be processed, unprocessed planes will be copied.
11957 By default value 0xf, all planes will be processed.
11958
11959 @item inplace
11960 Do not require 2nd input for processing, instead use alpha plane from input stream.
11961 @end table
11962
11963 @section prewitt
11964 Apply prewitt operator to input video stream.
11965
11966 The filter accepts the following option:
11967
11968 @table @option
11969 @item planes
11970 Set which planes will be processed, unprocessed planes will be copied.
11971 By default value 0xf, all planes will be processed.
11972
11973 @item scale
11974 Set value which will be multiplied with filtered result.
11975
11976 @item delta
11977 Set value which will be added to filtered result.
11978 @end table
11979
11980 @section pseudocolor
11981
11982 Alter frame colors in video with pseudocolors.
11983
11984 This filter accept the following options:
11985
11986 @table @option
11987 @item c0
11988 set pixel first component expression
11989
11990 @item c1
11991 set pixel second component expression
11992
11993 @item c2
11994 set pixel third component expression
11995
11996 @item c3
11997 set pixel fourth component expression, corresponds to the alpha component
11998
11999 @item i
12000 set component to use as base for altering colors
12001 @end table
12002
12003 Each of them specifies the expression to use for computing the lookup table for
12004 the corresponding pixel component values.
12005
12006 The expressions can contain the following constants and functions:
12007
12008 @table @option
12009 @item w
12010 @item h
12011 The input width and height.
12012
12013 @item val
12014 The input value for the pixel component.
12015
12016 @item ymin, umin, vmin, amin
12017 The minimum allowed component value.
12018
12019 @item ymax, umax, vmax, amax
12020 The maximum allowed component value.
12021 @end table
12022
12023 All expressions default to "val".
12024
12025 @subsection Examples
12026
12027 @itemize
12028 @item
12029 Change too high luma values to gradient:
12030 @example
12031 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'"
12032 @end example
12033 @end itemize
12034
12035 @section psnr
12036
12037 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
12038 Ratio) between two input videos.
12039
12040 This filter takes in input two input videos, the first input is
12041 considered the "main" source and is passed unchanged to the
12042 output. The second input is used as a "reference" video for computing
12043 the PSNR.
12044
12045 Both video inputs must have the same resolution and pixel format for
12046 this filter to work correctly. Also it assumes that both inputs
12047 have the same number of frames, which are compared one by one.
12048
12049 The obtained average PSNR is printed through the logging system.
12050
12051 The filter stores the accumulated MSE (mean squared error) of each
12052 frame, and at the end of the processing it is averaged across all frames
12053 equally, and the following formula is applied to obtain the PSNR:
12054
12055 @example
12056 PSNR = 10*log10(MAX^2/MSE)
12057 @end example
12058
12059 Where MAX is the average of the maximum values of each component of the
12060 image.
12061
12062 The description of the accepted parameters follows.
12063
12064 @table @option
12065 @item stats_file, f
12066 If specified the filter will use the named file to save the PSNR of
12067 each individual frame. When filename equals "-" the data is sent to
12068 standard output.
12069
12070 @item stats_version
12071 Specifies which version of the stats file format to use. Details of
12072 each format are written below.
12073 Default value is 1.
12074
12075 @item stats_add_max
12076 Determines whether the max value is output to the stats log.
12077 Default value is 0.
12078 Requires stats_version >= 2. If this is set and stats_version < 2,
12079 the filter will return an error.
12080 @end table
12081
12082 This filter also supports the @ref{framesync} options.
12083
12084 The file printed if @var{stats_file} is selected, contains a sequence of
12085 key/value pairs of the form @var{key}:@var{value} for each compared
12086 couple of frames.
12087
12088 If a @var{stats_version} greater than 1 is specified, a header line precedes
12089 the list of per-frame-pair stats, with key value pairs following the frame
12090 format with the following parameters:
12091
12092 @table @option
12093 @item psnr_log_version
12094 The version of the log file format. Will match @var{stats_version}.
12095
12096 @item fields
12097 A comma separated list of the per-frame-pair parameters included in
12098 the log.
12099 @end table
12100
12101 A description of each shown per-frame-pair parameter follows:
12102
12103 @table @option
12104 @item n
12105 sequential number of the input frame, starting from 1
12106
12107 @item mse_avg
12108 Mean Square Error pixel-by-pixel average difference of the compared
12109 frames, averaged over all the image components.
12110
12111 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_g, mse_a
12112 Mean Square Error pixel-by-pixel average difference of the compared
12113 frames for the component specified by the suffix.
12114
12115 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
12116 Peak Signal to Noise ratio of the compared frames for the component
12117 specified by the suffix.
12118
12119 @item max_avg, max_y, max_u, max_v
12120 Maximum allowed value for each channel, and average over all
12121 channels.
12122 @end table
12123
12124 For example:
12125 @example
12126 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
12127 [main][ref] psnr="stats_file=stats.log" [out]
12128 @end example
12129
12130 On this example the input file being processed is compared with the
12131 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
12132 is stored in @file{stats.log}.
12133
12134 @anchor{pullup}
12135 @section pullup
12136
12137 Pulldown reversal (inverse telecine) filter, capable of handling mixed
12138 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
12139 content.
12140
12141 The pullup filter is designed to take advantage of future context in making
12142 its decisions. This filter is stateless in the sense that it does not lock
12143 onto a pattern to follow, but it instead looks forward to the following
12144 fields in order to identify matches and rebuild progressive frames.
12145
12146 To produce content with an even framerate, insert the fps filter after
12147 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
12148 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
12149
12150 The filter accepts the following options:
12151
12152 @table @option
12153 @item jl
12154 @item jr
12155 @item jt
12156 @item jb
12157 These options set the amount of "junk" to ignore at the left, right, top, and
12158 bottom of the image, respectively. Left and right are in units of 8 pixels,
12159 while top and bottom are in units of 2 lines.
12160 The default is 8 pixels on each side.
12161
12162 @item sb
12163 Set the strict breaks. Setting this option to 1 will reduce the chances of
12164 filter generating an occasional mismatched frame, but it may also cause an
12165 excessive number of frames to be dropped during high motion sequences.
12166 Conversely, setting it to -1 will make filter match fields more easily.
12167 This may help processing of video where there is slight blurring between
12168 the fields, but may also cause there to be interlaced frames in the output.
12169 Default value is @code{0}.
12170
12171 @item mp
12172 Set the metric plane to use. It accepts the following values:
12173 @table @samp
12174 @item l
12175 Use luma plane.
12176
12177 @item u
12178 Use chroma blue plane.
12179
12180 @item v
12181 Use chroma red plane.
12182 @end table
12183
12184 This option may be set to use chroma plane instead of the default luma plane
12185 for doing filter's computations. This may improve accuracy on very clean
12186 source material, but more likely will decrease accuracy, especially if there
12187 is chroma noise (rainbow effect) or any grayscale video.
12188 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
12189 load and make pullup usable in realtime on slow machines.
12190 @end table
12191
12192 For best results (without duplicated frames in the output file) it is
12193 necessary to change the output frame rate. For example, to inverse
12194 telecine NTSC input:
12195 @example
12196 ffmpeg -i input -vf pullup -r 24000/1001 ...
12197 @end example
12198
12199 @section qp
12200
12201 Change video quantization parameters (QP).
12202
12203 The filter accepts the following option:
12204
12205 @table @option
12206 @item qp
12207 Set expression for quantization parameter.
12208 @end table
12209
12210 The expression is evaluated through the eval API and can contain, among others,
12211 the following constants:
12212
12213 @table @var
12214 @item known
12215 1 if index is not 129, 0 otherwise.
12216
12217 @item qp
12218 Sequential index starting from -129 to 128.
12219 @end table
12220
12221 @subsection Examples
12222
12223 @itemize
12224 @item
12225 Some equation like:
12226 @example
12227 qp=2+2*sin(PI*qp)
12228 @end example
12229 @end itemize
12230
12231 @section random
12232
12233 Flush video frames from internal cache of frames into a random order.
12234 No frame is discarded.
12235 Inspired by @ref{frei0r} nervous filter.
12236
12237 @table @option
12238 @item frames
12239 Set size in number of frames of internal cache, in range from @code{2} to
12240 @code{512}. Default is @code{30}.
12241
12242 @item seed
12243 Set seed for random number generator, must be an integer included between
12244 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
12245 less than @code{0}, the filter will try to use a good random seed on a
12246 best effort basis.
12247 @end table
12248
12249 @section readeia608
12250
12251 Read closed captioning (EIA-608) information from the top lines of a video frame.
12252
12253 This filter adds frame metadata for @code{lavfi.readeia608.X.cc} and
12254 @code{lavfi.readeia608.X.line}, where @code{X} is the number of the identified line
12255 with EIA-608 data (starting from 0). A description of each metadata value follows:
12256
12257 @table @option
12258 @item lavfi.readeia608.X.cc
12259 The two bytes stored as EIA-608 data (printed in hexadecimal).
12260
12261 @item lavfi.readeia608.X.line
12262 The number of the line on which the EIA-608 data was identified and read.
12263 @end table
12264
12265 This filter accepts the following options:
12266
12267 @table @option
12268 @item scan_min
12269 Set the line to start scanning for EIA-608 data. Default is @code{0}.
12270
12271 @item scan_max
12272 Set the line to end scanning for EIA-608 data. Default is @code{29}.
12273
12274 @item mac
12275 Set minimal acceptable amplitude change for sync codes detection.
12276 Default is @code{0.2}. Allowed range is @code{[0.001 - 1]}.
12277
12278 @item spw
12279 Set the ratio of width reserved for sync code detection.
12280 Default is @code{0.27}. Allowed range is @code{[0.01 - 0.7]}.
12281
12282 @item mhd
12283 Set the max peaks height difference for sync code detection.
12284 Default is @code{0.1}. Allowed range is @code{[0.0 - 0.5]}.
12285
12286 @item mpd
12287 Set max peaks period difference for sync code detection.
12288 Default is @code{0.1}. Allowed range is @code{[0.0 - 0.5]}.
12289
12290 @item msd
12291 Set the first two max start code bits differences.
12292 Default is @code{0.02}. Allowed range is @code{[0.0 - 0.5]}.
12293
12294 @item bhd
12295 Set the minimum ratio of bits height compared to 3rd start code bit.
12296 Default is @code{0.75}. Allowed range is @code{[0.01 - 1]}.
12297
12298 @item th_w
12299 Set the white color threshold. Default is @code{0.35}. Allowed range is @code{[0.1 - 1]}.
12300
12301 @item th_b
12302 Set the black color threshold. Default is @code{0.15}. Allowed range is @code{[0.0 - 0.5]}.
12303
12304 @item chp
12305 Enable checking the parity bit. In the event of a parity error, the filter will output
12306 @code{0x00} for that character. Default is false.
12307 @end table
12308
12309 @subsection Examples
12310
12311 @itemize
12312 @item
12313 Output a csv with presentation time and the first two lines of identified EIA-608 captioning data.
12314 @example
12315 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
12316 @end example
12317 @end itemize
12318
12319 @section readvitc
12320
12321 Read vertical interval timecode (VITC) information from the top lines of a
12322 video frame.
12323
12324 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
12325 timecode value, if a valid timecode has been detected. Further metadata key
12326 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
12327 timecode data has been found or not.
12328
12329 This filter accepts the following options:
12330
12331 @table @option
12332 @item scan_max
12333 Set the maximum number of lines to scan for VITC data. If the value is set to
12334 @code{-1} the full video frame is scanned. Default is @code{45}.
12335
12336 @item thr_b
12337 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
12338 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
12339
12340 @item thr_w
12341 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
12342 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
12343 @end table
12344
12345 @subsection Examples
12346
12347 @itemize
12348 @item
12349 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
12350 draw @code{--:--:--:--} as a placeholder:
12351 @example
12352 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
12353 @end example
12354 @end itemize
12355
12356 @section remap
12357
12358 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
12359
12360 Destination pixel at position (X, Y) will be picked from source (x, y) position
12361 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
12362 value for pixel will be used for destination pixel.
12363
12364 Xmap and Ymap input video streams must be of same dimensions. Output video stream
12365 will have Xmap/Ymap video stream dimensions.
12366 Xmap and Ymap input video streams are 16bit depth, single channel.
12367
12368 @section removegrain
12369
12370 The removegrain filter is a spatial denoiser for progressive video.
12371
12372 @table @option
12373 @item m0
12374 Set mode for the first plane.
12375
12376 @item m1
12377 Set mode for the second plane.
12378
12379 @item m2
12380 Set mode for the third plane.
12381
12382 @item m3
12383 Set mode for the fourth plane.
12384 @end table
12385
12386 Range of mode is from 0 to 24. Description of each mode follows:
12387
12388 @table @var
12389 @item 0
12390 Leave input plane unchanged. Default.
12391
12392 @item 1
12393 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
12394
12395 @item 2
12396 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
12397
12398 @item 3
12399 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
12400
12401 @item 4
12402 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
12403 This is equivalent to a median filter.
12404
12405 @item 5
12406 Line-sensitive clipping giving the minimal change.
12407
12408 @item 6
12409 Line-sensitive clipping, intermediate.
12410
12411 @item 7
12412 Line-sensitive clipping, intermediate.
12413
12414 @item 8
12415 Line-sensitive clipping, intermediate.
12416
12417 @item 9
12418 Line-sensitive clipping on a line where the neighbours pixels are the closest.
12419
12420 @item 10
12421 Replaces the target pixel with the closest neighbour.
12422
12423 @item 11
12424 [1 2 1] horizontal and vertical kernel blur.
12425
12426 @item 12
12427 Same as mode 11.
12428
12429 @item 13
12430 Bob mode, interpolates top field from the line where the neighbours
12431 pixels are the closest.
12432
12433 @item 14
12434 Bob mode, interpolates bottom field from the line where the neighbours
12435 pixels are the closest.
12436
12437 @item 15
12438 Bob mode, interpolates top field. Same as 13 but with a more complicated
12439 interpolation formula.
12440
12441 @item 16
12442 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
12443 interpolation formula.
12444
12445 @item 17
12446 Clips the pixel with the minimum and maximum of respectively the maximum and
12447 minimum of each pair of opposite neighbour pixels.
12448
12449 @item 18
12450 Line-sensitive clipping using opposite neighbours whose greatest distance from
12451 the current pixel is minimal.
12452
12453 @item 19
12454 Replaces the pixel with the average of its 8 neighbours.
12455
12456 @item 20
12457 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
12458
12459 @item 21
12460 Clips pixels using the averages of opposite neighbour.
12461
12462 @item 22
12463 Same as mode 21 but simpler and faster.
12464
12465 @item 23
12466 Small edge and halo removal, but reputed useless.
12467
12468 @item 24
12469 Similar as 23.
12470 @end table
12471
12472 @section removelogo
12473
12474 Suppress a TV station logo, using an image file to determine which
12475 pixels comprise the logo. It works by filling in the pixels that
12476 comprise the logo with neighboring pixels.
12477
12478 The filter accepts the following options:
12479
12480 @table @option
12481 @item filename, f
12482 Set the filter bitmap file, which can be any image format supported by
12483 libavformat. The width and height of the image file must match those of the
12484 video stream being processed.
12485 @end table
12486
12487 Pixels in the provided bitmap image with a value of zero are not
12488 considered part of the logo, non-zero pixels are considered part of
12489 the logo. If you use white (255) for the logo and black (0) for the
12490 rest, you will be safe. For making the filter bitmap, it is
12491 recommended to take a screen capture of a black frame with the logo
12492 visible, and then using a threshold filter followed by the erode
12493 filter once or twice.
12494
12495 If needed, little splotches can be fixed manually. Remember that if
12496 logo pixels are not covered, the filter quality will be much
12497 reduced. Marking too many pixels as part of the logo does not hurt as
12498 much, but it will increase the amount of blurring needed to cover over
12499 the image and will destroy more information than necessary, and extra
12500 pixels will slow things down on a large logo.
12501
12502 @section repeatfields
12503
12504 This filter uses the repeat_field flag from the Video ES headers and hard repeats
12505 fields based on its value.
12506
12507 @section reverse
12508
12509 Reverse a video clip.
12510
12511 Warning: This filter requires memory to buffer the entire clip, so trimming
12512 is suggested.
12513
12514 @subsection Examples
12515
12516 @itemize
12517 @item
12518 Take the first 5 seconds of a clip, and reverse it.
12519 @example
12520 trim=end=5,reverse
12521 @end example
12522 @end itemize
12523
12524 @section roberts
12525 Apply roberts cross operator to input video stream.
12526
12527 The filter accepts the following option:
12528
12529 @table @option
12530 @item planes
12531 Set which planes will be processed, unprocessed planes will be copied.
12532 By default value 0xf, all planes will be processed.
12533
12534 @item scale
12535 Set value which will be multiplied with filtered result.
12536
12537 @item delta
12538 Set value which will be added to filtered result.
12539 @end table
12540
12541 @section rotate
12542
12543 Rotate video by an arbitrary angle expressed in radians.
12544
12545 The filter accepts the following options:
12546
12547 A description of the optional parameters follows.
12548 @table @option
12549 @item angle, a
12550 Set an expression for the angle by which to rotate the input video
12551 clockwise, expressed as a number of radians. A negative value will
12552 result in a counter-clockwise rotation. By default it is set to "0".
12553
12554 This expression is evaluated for each frame.
12555
12556 @item out_w, ow
12557 Set the output width expression, default value is "iw".
12558 This expression is evaluated just once during configuration.
12559
12560 @item out_h, oh
12561 Set the output height expression, default value is "ih".
12562 This expression is evaluated just once during configuration.
12563
12564 @item bilinear
12565 Enable bilinear interpolation if set to 1, a value of 0 disables
12566 it. Default value is 1.
12567
12568 @item fillcolor, c
12569 Set the color used to fill the output area not covered by the rotated
12570 image. For the general syntax of this option, check the "Color" section in the
12571 ffmpeg-utils manual. If the special value "none" is selected then no
12572 background is printed (useful for example if the background is never shown).
12573
12574 Default value is "black".
12575 @end table
12576
12577 The expressions for the angle and the output size can contain the
12578 following constants and functions:
12579
12580 @table @option
12581 @item n
12582 sequential number of the input frame, starting from 0. It is always NAN
12583 before the first frame is filtered.
12584
12585 @item t
12586 time in seconds of the input frame, it is set to 0 when the filter is
12587 configured. It is always NAN before the first frame is filtered.
12588
12589 @item hsub
12590 @item vsub
12591 horizontal and vertical chroma subsample values. For example for the
12592 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
12593
12594 @item in_w, iw
12595 @item in_h, ih
12596 the input video width and height
12597
12598 @item out_w, ow
12599 @item out_h, oh
12600 the output width and height, that is the size of the padded area as
12601 specified by the @var{width} and @var{height} expressions
12602
12603 @item rotw(a)
12604 @item roth(a)
12605 the minimal width/height required for completely containing the input
12606 video rotated by @var{a} radians.
12607
12608 These are only available when computing the @option{out_w} and
12609 @option{out_h} expressions.
12610 @end table
12611
12612 @subsection Examples
12613
12614 @itemize
12615 @item
12616 Rotate the input by PI/6 radians clockwise:
12617 @example
12618 rotate=PI/6
12619 @end example
12620
12621 @item
12622 Rotate the input by PI/6 radians counter-clockwise:
12623 @example
12624 rotate=-PI/6
12625 @end example
12626
12627 @item
12628 Rotate the input by 45 degrees clockwise:
12629 @example
12630 rotate=45*PI/180
12631 @end example
12632
12633 @item
12634 Apply a constant rotation with period T, starting from an angle of PI/3:
12635 @example
12636 rotate=PI/3+2*PI*t/T
12637 @end example
12638
12639 @item
12640 Make the input video rotation oscillating with a period of T
12641 seconds and an amplitude of A radians:
12642 @example
12643 rotate=A*sin(2*PI/T*t)
12644 @end example
12645
12646 @item
12647 Rotate the video, output size is chosen so that the whole rotating
12648 input video is always completely contained in the output:
12649 @example
12650 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
12651 @end example
12652
12653 @item
12654 Rotate the video, reduce the output size so that no background is ever
12655 shown:
12656 @example
12657 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
12658 @end example
12659 @end itemize
12660
12661 @subsection Commands
12662
12663 The filter supports the following commands:
12664
12665 @table @option
12666 @item a, angle
12667 Set the angle expression.
12668 The command accepts the same syntax of the corresponding option.
12669
12670 If the specified expression is not valid, it is kept at its current
12671 value.
12672 @end table
12673
12674 @section sab
12675
12676 Apply Shape Adaptive Blur.
12677
12678 The filter accepts the following options:
12679
12680 @table @option
12681 @item luma_radius, lr
12682 Set luma blur filter strength, must be a value in range 0.1-4.0, default
12683 value is 1.0. A greater value will result in a more blurred image, and
12684 in slower processing.
12685
12686 @item luma_pre_filter_radius, lpfr
12687 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
12688 value is 1.0.
12689
12690 @item luma_strength, ls
12691 Set luma maximum difference between pixels to still be considered, must
12692 be a value in the 0.1-100.0 range, default value is 1.0.
12693
12694 @item chroma_radius, cr
12695 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
12696 greater value will result in a more blurred image, and in slower
12697 processing.
12698
12699 @item chroma_pre_filter_radius, cpfr
12700 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
12701
12702 @item chroma_strength, cs
12703 Set chroma maximum difference between pixels to still be considered,
12704 must be a value in the -0.9-100.0 range.
12705 @end table
12706
12707 Each chroma option value, if not explicitly specified, is set to the
12708 corresponding luma option value.
12709
12710 @anchor{scale}
12711 @section scale
12712
12713 Scale (resize) the input video, using the libswscale library.
12714
12715 The scale filter forces the output display aspect ratio to be the same
12716 of the input, by changing the output sample aspect ratio.
12717
12718 If the input image format is different from the format requested by
12719 the next filter, the scale filter will convert the input to the
12720 requested format.
12721
12722 @subsection Options
12723 The filter accepts the following options, or any of the options
12724 supported by the libswscale scaler.
12725
12726 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
12727 the complete list of scaler options.
12728
12729 @table @option
12730 @item width, w
12731 @item height, h
12732 Set the output video dimension expression. Default value is the input
12733 dimension.
12734
12735 If the @var{width} or @var{w} value is 0, the input width is used for
12736 the output. If the @var{height} or @var{h} value is 0, the input height
12737 is used for the output.
12738
12739 If one and only one of the values is -n with n >= 1, the scale filter
12740 will use a value that maintains the aspect ratio of the input image,
12741 calculated from the other specified dimension. After that it will,
12742 however, make sure that the calculated dimension is divisible by n and
12743 adjust the value if necessary.
12744
12745 If both values are -n with n >= 1, the behavior will be identical to
12746 both values being set to 0 as previously detailed.
12747
12748 See below for the list of accepted constants for use in the dimension
12749 expression.
12750
12751 @item eval
12752 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
12753
12754 @table @samp
12755 @item init
12756 Only evaluate expressions once during the filter initialization or when a command is processed.
12757
12758 @item frame
12759 Evaluate expressions for each incoming frame.
12760
12761 @end table
12762
12763 Default value is @samp{init}.
12764
12765
12766 @item interl
12767 Set the interlacing mode. It accepts the following values:
12768
12769 @table @samp
12770 @item 1
12771 Force interlaced aware scaling.
12772
12773 @item 0
12774 Do not apply interlaced scaling.
12775
12776 @item -1
12777 Select interlaced aware scaling depending on whether the source frames
12778 are flagged as interlaced or not.
12779 @end table
12780
12781 Default value is @samp{0}.
12782
12783 @item flags
12784 Set libswscale scaling flags. See
12785 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
12786 complete list of values. If not explicitly specified the filter applies
12787 the default flags.
12788
12789
12790 @item param0, param1
12791 Set libswscale input parameters for scaling algorithms that need them. See
12792 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
12793 complete documentation. If not explicitly specified the filter applies
12794 empty parameters.
12795
12796
12797
12798 @item size, s
12799 Set the video size. For the syntax of this option, check the
12800 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12801
12802 @item in_color_matrix
12803 @item out_color_matrix
12804 Set in/output YCbCr color space type.
12805
12806 This allows the autodetected value to be overridden as well as allows forcing
12807 a specific value used for the output and encoder.
12808
12809 If not specified, the color space type depends on the pixel format.
12810
12811 Possible values:
12812
12813 @table @samp
12814 @item auto
12815 Choose automatically.
12816
12817 @item bt709
12818 Format conforming to International Telecommunication Union (ITU)
12819 Recommendation BT.709.
12820
12821 @item fcc
12822 Set color space conforming to the United States Federal Communications
12823 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
12824
12825 @item bt601
12826 Set color space conforming to:
12827
12828 @itemize
12829 @item
12830 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
12831
12832 @item
12833 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
12834
12835 @item
12836 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
12837
12838 @end itemize
12839
12840 @item smpte240m
12841 Set color space conforming to SMPTE ST 240:1999.
12842 @end table
12843
12844 @item in_range
12845 @item out_range
12846 Set in/output YCbCr sample range.
12847
12848 This allows the autodetected value to be overridden as well as allows forcing
12849 a specific value used for the output and encoder. If not specified, the
12850 range depends on the pixel format. Possible values:
12851
12852 @table @samp
12853 @item auto
12854 Choose automatically.
12855
12856 @item jpeg/full/pc
12857 Set full range (0-255 in case of 8-bit luma).
12858
12859 @item mpeg/tv
12860 Set "MPEG" range (16-235 in case of 8-bit luma).
12861 @end table
12862
12863 @item force_original_aspect_ratio
12864 Enable decreasing or increasing output video width or height if necessary to
12865 keep the original aspect ratio. Possible values:
12866
12867 @table @samp
12868 @item disable
12869 Scale the video as specified and disable this feature.
12870
12871 @item decrease
12872 The output video dimensions will automatically be decreased if needed.
12873
12874 @item increase
12875 The output video dimensions will automatically be increased if needed.
12876
12877 @end table
12878
12879 One useful instance of this option is that when you know a specific device's
12880 maximum allowed resolution, you can use this to limit the output video to
12881 that, while retaining the aspect ratio. For example, device A allows
12882 1280x720 playback, and your video is 1920x800. Using this option (set it to
12883 decrease) and specifying 1280x720 to the command line makes the output
12884 1280x533.
12885
12886 Please note that this is a different thing than specifying -1 for @option{w}
12887 or @option{h}, you still need to specify the output resolution for this option
12888 to work.
12889
12890 @end table
12891
12892 The values of the @option{w} and @option{h} options are expressions
12893 containing the following constants:
12894
12895 @table @var
12896 @item in_w
12897 @item in_h
12898 The input width and height
12899
12900 @item iw
12901 @item ih
12902 These are the same as @var{in_w} and @var{in_h}.
12903
12904 @item out_w
12905 @item out_h
12906 The output (scaled) width and height
12907
12908 @item ow
12909 @item oh
12910 These are the same as @var{out_w} and @var{out_h}
12911
12912 @item a
12913 The same as @var{iw} / @var{ih}
12914
12915 @item sar
12916 input sample aspect ratio
12917
12918 @item dar
12919 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
12920
12921 @item hsub
12922 @item vsub
12923 horizontal and vertical input chroma subsample values. For example for the
12924 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
12925
12926 @item ohsub
12927 @item ovsub
12928 horizontal and vertical output chroma subsample values. For example for the
12929 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
12930 @end table
12931
12932 @subsection Examples
12933
12934 @itemize
12935 @item
12936 Scale the input video to a size of 200x100
12937 @example
12938 scale=w=200:h=100
12939 @end example
12940
12941 This is equivalent to:
12942 @example
12943 scale=200:100
12944 @end example
12945
12946 or:
12947 @example
12948 scale=200x100
12949 @end example
12950
12951 @item
12952 Specify a size abbreviation for the output size:
12953 @example
12954 scale=qcif
12955 @end example
12956
12957 which can also be written as:
12958 @example
12959 scale=size=qcif
12960 @end example
12961
12962 @item
12963 Scale the input to 2x:
12964 @example
12965 scale=w=2*iw:h=2*ih
12966 @end example
12967
12968 @item
12969 The above is the same as:
12970 @example
12971 scale=2*in_w:2*in_h
12972 @end example
12973
12974 @item
12975 Scale the input to 2x with forced interlaced scaling:
12976 @example
12977 scale=2*iw:2*ih:interl=1
12978 @end example
12979
12980 @item
12981 Scale the input to half size:
12982 @example
12983 scale=w=iw/2:h=ih/2
12984 @end example
12985
12986 @item
12987 Increase the width, and set the height to the same size:
12988 @example
12989 scale=3/2*iw:ow
12990 @end example
12991
12992 @item
12993 Seek Greek harmony:
12994 @example
12995 scale=iw:1/PHI*iw
12996 scale=ih*PHI:ih
12997 @end example
12998
12999 @item
13000 Increase the height, and set the width to 3/2 of the height:
13001 @example
13002 scale=w=3/2*oh:h=3/5*ih
13003 @end example
13004
13005 @item
13006 Increase the size, making the size a multiple of the chroma
13007 subsample values:
13008 @example
13009 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
13010 @end example
13011
13012 @item
13013 Increase the width to a maximum of 500 pixels,
13014 keeping the same aspect ratio as the input:
13015 @example
13016 scale=w='min(500\, iw*3/2):h=-1'
13017 @end example
13018 @end itemize
13019
13020 @subsection Commands
13021
13022 This filter supports the following commands:
13023 @table @option
13024 @item width, w
13025 @item height, h
13026 Set the output video dimension expression.
13027 The command accepts the same syntax of the corresponding option.
13028
13029 If the specified expression is not valid, it is kept at its current
13030 value.
13031 @end table
13032
13033 @section scale_npp
13034
13035 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
13036 format conversion on CUDA video frames. Setting the output width and height
13037 works in the same way as for the @var{scale} filter.
13038
13039 The following additional options are accepted:
13040 @table @option
13041 @item format
13042 The pixel format of the output CUDA frames. If set to the string "same" (the
13043 default), the input format will be kept. Note that automatic format negotiation
13044 and conversion is not yet supported for hardware frames
13045
13046 @item interp_algo
13047 The interpolation algorithm used for resizing. One of the following:
13048 @table @option
13049 @item nn
13050 Nearest neighbour.
13051
13052 @item linear
13053 @item cubic
13054 @item cubic2p_bspline
13055 2-parameter cubic (B=1, C=0)
13056
13057 @item cubic2p_catmullrom
13058 2-parameter cubic (B=0, C=1/2)
13059
13060 @item cubic2p_b05c03
13061 2-parameter cubic (B=1/2, C=3/10)
13062
13063 @item super
13064 Supersampling
13065
13066 @item lanczos
13067 @end table
13068
13069 @end table
13070
13071 @section scale2ref
13072
13073 Scale (resize) the input video, based on a reference video.
13074
13075 See the scale filter for available options, scale2ref supports the same but
13076 uses the reference video instead of the main input as basis. scale2ref also
13077 supports the following additional constants for the @option{w} and
13078 @option{h} options:
13079
13080 @table @var
13081 @item main_w
13082 @item main_h
13083 The main input video's width and height
13084
13085 @item main_a
13086 The same as @var{main_w} / @var{main_h}
13087
13088 @item main_sar
13089 The main input video's sample aspect ratio
13090
13091 @item main_dar, mdar
13092 The main input video's display aspect ratio. Calculated from
13093 @code{(main_w / main_h) * main_sar}.
13094
13095 @item main_hsub
13096 @item main_vsub
13097 The main input video's horizontal and vertical chroma subsample values.
13098 For example for the pixel format "yuv422p" @var{hsub} is 2 and @var{vsub}
13099 is 1.
13100 @end table
13101
13102 @subsection Examples
13103
13104 @itemize
13105 @item
13106 Scale a subtitle stream (b) to match the main video (a) in size before overlaying
13107 @example
13108 'scale2ref[b][a];[a][b]overlay'
13109 @end example
13110 @end itemize
13111
13112 @anchor{selectivecolor}
13113 @section selectivecolor
13114
13115 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
13116 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
13117 by the "purity" of the color (that is, how saturated it already is).
13118
13119 This filter is similar to the Adobe Photoshop Selective Color tool.
13120
13121 The filter accepts the following options:
13122
13123 @table @option
13124 @item correction_method
13125 Select color correction method.
13126
13127 Available values are:
13128 @table @samp
13129 @item absolute
13130 Specified adjustments are applied "as-is" (added/subtracted to original pixel
13131 component value).
13132 @item relative
13133 Specified adjustments are relative to the original component value.
13134 @end table
13135 Default is @code{absolute}.
13136 @item reds
13137 Adjustments for red pixels (pixels where the red component is the maximum)
13138 @item yellows
13139 Adjustments for yellow pixels (pixels where the blue component is the minimum)
13140 @item greens
13141 Adjustments for green pixels (pixels where the green component is the maximum)
13142 @item cyans
13143 Adjustments for cyan pixels (pixels where the red component is the minimum)
13144 @item blues
13145 Adjustments for blue pixels (pixels where the blue component is the maximum)
13146 @item magentas
13147 Adjustments for magenta pixels (pixels where the green component is the minimum)
13148 @item whites
13149 Adjustments for white pixels (pixels where all components are greater than 128)
13150 @item neutrals
13151 Adjustments for all pixels except pure black and pure white
13152 @item blacks
13153 Adjustments for black pixels (pixels where all components are lesser than 128)
13154 @item psfile
13155 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
13156 @end table
13157
13158 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
13159 4 space separated floating point adjustment values in the [-1,1] range,
13160 respectively to adjust the amount of cyan, magenta, yellow and black for the
13161 pixels of its range.
13162
13163 @subsection Examples
13164
13165 @itemize
13166 @item
13167 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
13168 increase magenta by 27% in blue areas:
13169 @example
13170 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
13171 @end example
13172
13173 @item
13174 Use a Photoshop selective color preset:
13175 @example
13176 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
13177 @end example
13178 @end itemize
13179
13180 @anchor{separatefields}
13181 @section separatefields
13182
13183 The @code{separatefields} takes a frame-based video input and splits
13184 each frame into its components fields, producing a new half height clip
13185 with twice the frame rate and twice the frame count.
13186
13187 This filter use field-dominance information in frame to decide which
13188 of each pair of fields to place first in the output.
13189 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
13190
13191 @section setdar, setsar
13192
13193 The @code{setdar} filter sets the Display Aspect Ratio for the filter
13194 output video.
13195
13196 This is done by changing the specified Sample (aka Pixel) Aspect
13197 Ratio, according to the following equation:
13198 @example
13199 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
13200 @end example
13201
13202 Keep in mind that the @code{setdar} filter does not modify the pixel
13203 dimensions of the video frame. Also, the display aspect ratio set by
13204 this filter may be changed by later filters in the filterchain,
13205 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
13206 applied.
13207
13208 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
13209 the filter output video.
13210
13211 Note that as a consequence of the application of this filter, the
13212 output display aspect ratio will change according to the equation
13213 above.
13214
13215 Keep in mind that the sample aspect ratio set by the @code{setsar}
13216 filter may be changed by later filters in the filterchain, e.g. if
13217 another "setsar" or a "setdar" filter is applied.
13218
13219 It accepts the following parameters:
13220
13221 @table @option
13222 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
13223 Set the aspect ratio used by the filter.
13224
13225 The parameter can be a floating point number string, an expression, or
13226 a string of the form @var{num}:@var{den}, where @var{num} and
13227 @var{den} are the numerator and denominator of the aspect ratio. If
13228 the parameter is not specified, it is assumed the value "0".
13229 In case the form "@var{num}:@var{den}" is used, the @code{:} character
13230 should be escaped.
13231
13232 @item max
13233 Set the maximum integer value to use for expressing numerator and
13234 denominator when reducing the expressed aspect ratio to a rational.
13235 Default value is @code{100}.
13236
13237 @end table
13238
13239 The parameter @var{sar} is an expression containing
13240 the following constants:
13241
13242 @table @option
13243 @item E, PI, PHI
13244 These are approximated values for the mathematical constants e
13245 (Euler's number), pi (Greek pi), and phi (the golden ratio).
13246
13247 @item w, h
13248 The input width and height.
13249
13250 @item a
13251 These are the same as @var{w} / @var{h}.
13252
13253 @item sar
13254 The input sample aspect ratio.
13255
13256 @item dar
13257 The input display aspect ratio. It is the same as
13258 (@var{w} / @var{h}) * @var{sar}.
13259
13260 @item hsub, vsub
13261 Horizontal and vertical chroma subsample values. For example, for the
13262 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
13263 @end table
13264
13265 @subsection Examples
13266
13267 @itemize
13268
13269 @item
13270 To change the display aspect ratio to 16:9, specify one of the following:
13271 @example
13272 setdar=dar=1.77777
13273 setdar=dar=16/9
13274 @end example
13275
13276 @item
13277 To change the sample aspect ratio to 10:11, specify:
13278 @example
13279 setsar=sar=10/11
13280 @end example
13281
13282 @item
13283 To set a display aspect ratio of 16:9, and specify a maximum integer value of
13284 1000 in the aspect ratio reduction, use the command:
13285 @example
13286 setdar=ratio=16/9:max=1000
13287 @end example
13288
13289 @end itemize
13290
13291 @anchor{setfield}
13292 @section setfield
13293
13294 Force field for the output video frame.
13295
13296 The @code{setfield} filter marks the interlace type field for the
13297 output frames. It does not change the input frame, but only sets the
13298 corresponding property, which affects how the frame is treated by
13299 following filters (e.g. @code{fieldorder} or @code{yadif}).
13300
13301 The filter accepts the following options:
13302
13303 @table @option
13304
13305 @item mode
13306 Available values are:
13307
13308 @table @samp
13309 @item auto
13310 Keep the same field property.
13311
13312 @item bff
13313 Mark the frame as bottom-field-first.
13314
13315 @item tff
13316 Mark the frame as top-field-first.
13317
13318 @item prog
13319 Mark the frame as progressive.
13320 @end table
13321 @end table
13322
13323 @section showinfo
13324
13325 Show a line containing various information for each input video frame.
13326 The input video is not modified.
13327
13328 The shown line contains a sequence of key/value pairs of the form
13329 @var{key}:@var{value}.
13330
13331 The following values are shown in the output:
13332
13333 @table @option
13334 @item n
13335 The (sequential) number of the input frame, starting from 0.
13336
13337 @item pts
13338 The Presentation TimeStamp of the input frame, expressed as a number of
13339 time base units. The time base unit depends on the filter input pad.
13340
13341 @item pts_time
13342 The Presentation TimeStamp of the input frame, expressed as a number of
13343 seconds.
13344
13345 @item pos
13346 The position of the frame in the input stream, or -1 if this information is
13347 unavailable and/or meaningless (for example in case of synthetic video).
13348
13349 @item fmt
13350 The pixel format name.
13351
13352 @item sar
13353 The sample aspect ratio of the input frame, expressed in the form
13354 @var{num}/@var{den}.
13355
13356 @item s
13357 The size of the input frame. For the syntax of this option, check the
13358 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13359
13360 @item i
13361 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
13362 for bottom field first).
13363
13364 @item iskey
13365 This is 1 if the frame is a key frame, 0 otherwise.
13366
13367 @item type
13368 The picture type of the input frame ("I" for an I-frame, "P" for a
13369 P-frame, "B" for a B-frame, or "?" for an unknown type).
13370 Also refer to the documentation of the @code{AVPictureType} enum and of
13371 the @code{av_get_picture_type_char} function defined in
13372 @file{libavutil/avutil.h}.
13373
13374 @item checksum
13375 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
13376
13377 @item plane_checksum
13378 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
13379 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
13380 @end table
13381
13382 @section showpalette
13383
13384 Displays the 256 colors palette of each frame. This filter is only relevant for
13385 @var{pal8} pixel format frames.
13386
13387 It accepts the following option:
13388
13389 @table @option
13390 @item s
13391 Set the size of the box used to represent one palette color entry. Default is
13392 @code{30} (for a @code{30x30} pixel box).
13393 @end table
13394
13395 @section shuffleframes
13396
13397 Reorder and/or duplicate and/or drop video frames.
13398
13399 It accepts the following parameters:
13400
13401 @table @option
13402 @item mapping
13403 Set the destination indexes of input frames.
13404 This is space or '|' separated list of indexes that maps input frames to output
13405 frames. Number of indexes also sets maximal value that each index may have.
13406 '-1' index have special meaning and that is to drop frame.
13407 @end table
13408
13409 The first frame has the index 0. The default is to keep the input unchanged.
13410
13411 @subsection Examples
13412
13413 @itemize
13414 @item
13415 Swap second and third frame of every three frames of the input:
13416 @example
13417 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
13418 @end example
13419
13420 @item
13421 Swap 10th and 1st frame of every ten frames of the input:
13422 @example
13423 ffmpeg -i INPUT -vf "shuffleframes=9 1 2 3 4 5 6 7 8 0" OUTPUT
13424 @end example
13425 @end itemize
13426
13427 @section shuffleplanes
13428
13429 Reorder and/or duplicate video planes.
13430
13431 It accepts the following parameters:
13432
13433 @table @option
13434
13435 @item map0
13436 The index of the input plane to be used as the first output plane.
13437
13438 @item map1
13439 The index of the input plane to be used as the second output plane.
13440
13441 @item map2
13442 The index of the input plane to be used as the third output plane.
13443
13444 @item map3
13445 The index of the input plane to be used as the fourth output plane.
13446
13447 @end table
13448
13449 The first plane has the index 0. The default is to keep the input unchanged.
13450
13451 @subsection Examples
13452
13453 @itemize
13454 @item
13455 Swap the second and third planes of the input:
13456 @example
13457 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
13458 @end example
13459 @end itemize
13460
13461 @anchor{signalstats}
13462 @section signalstats
13463 Evaluate various visual metrics that assist in determining issues associated
13464 with the digitization of analog video media.
13465
13466 By default the filter will log these metadata values:
13467
13468 @table @option
13469 @item YMIN
13470 Display the minimal Y value contained within the input frame. Expressed in
13471 range of [0-255].
13472
13473 @item YLOW
13474 Display the Y value at the 10% percentile within the input frame. Expressed in
13475 range of [0-255].
13476
13477 @item YAVG
13478 Display the average Y value within the input frame. Expressed in range of
13479 [0-255].
13480
13481 @item YHIGH
13482 Display the Y value at the 90% percentile within the input frame. Expressed in
13483 range of [0-255].
13484
13485 @item YMAX
13486 Display the maximum Y value contained within the input frame. Expressed in
13487 range of [0-255].
13488
13489 @item UMIN
13490 Display the minimal U value contained within the input frame. Expressed in
13491 range of [0-255].
13492
13493 @item ULOW
13494 Display the U value at the 10% percentile within the input frame. Expressed in
13495 range of [0-255].
13496
13497 @item UAVG
13498 Display the average U value within the input frame. Expressed in range of
13499 [0-255].
13500
13501 @item UHIGH
13502 Display the U value at the 90% percentile within the input frame. Expressed in
13503 range of [0-255].
13504
13505 @item UMAX
13506 Display the maximum U value contained within the input frame. Expressed in
13507 range of [0-255].
13508
13509 @item VMIN
13510 Display the minimal V value contained within the input frame. Expressed in
13511 range of [0-255].
13512
13513 @item VLOW
13514 Display the V value at the 10% percentile within the input frame. Expressed in
13515 range of [0-255].
13516
13517 @item VAVG
13518 Display the average V value within the input frame. Expressed in range of
13519 [0-255].
13520
13521 @item VHIGH
13522 Display the V value at the 90% percentile within the input frame. Expressed in
13523 range of [0-255].
13524
13525 @item VMAX
13526 Display the maximum V value contained within the input frame. Expressed in
13527 range of [0-255].
13528
13529 @item SATMIN
13530 Display the minimal saturation value contained within the input frame.
13531 Expressed in range of [0-~181.02].
13532
13533 @item SATLOW
13534 Display the saturation value at the 10% percentile within the input frame.
13535 Expressed in range of [0-~181.02].
13536
13537 @item SATAVG
13538 Display the average saturation value within the input frame. Expressed in range
13539 of [0-~181.02].
13540
13541 @item SATHIGH
13542 Display the saturation value at the 90% percentile within the input frame.
13543 Expressed in range of [0-~181.02].
13544
13545 @item SATMAX
13546 Display the maximum saturation value contained within the input frame.
13547 Expressed in range of [0-~181.02].
13548
13549 @item HUEMED
13550 Display the median value for hue within the input frame. Expressed in range of
13551 [0-360].
13552
13553 @item HUEAVG
13554 Display the average value for hue within the input frame. Expressed in range of
13555 [0-360].
13556
13557 @item YDIF
13558 Display the average of sample value difference between all values of the Y
13559 plane in the current frame and corresponding values of the previous input frame.
13560 Expressed in range of [0-255].
13561
13562 @item UDIF
13563 Display the average of sample value difference between all values of the U
13564 plane in the current frame and corresponding values of the previous input frame.
13565 Expressed in range of [0-255].
13566
13567 @item VDIF
13568 Display the average of sample value difference between all values of the V
13569 plane in the current frame and corresponding values of the previous input frame.
13570 Expressed in range of [0-255].
13571
13572 @item YBITDEPTH
13573 Display bit depth of Y plane in current frame.
13574 Expressed in range of [0-16].
13575
13576 @item UBITDEPTH
13577 Display bit depth of U plane in current frame.
13578 Expressed in range of [0-16].
13579
13580 @item VBITDEPTH
13581 Display bit depth of V plane in current frame.
13582 Expressed in range of [0-16].
13583 @end table
13584
13585 The filter accepts the following options:
13586
13587 @table @option
13588 @item stat
13589 @item out
13590
13591 @option{stat} specify an additional form of image analysis.
13592 @option{out} output video with the specified type of pixel highlighted.
13593
13594 Both options accept the following values:
13595
13596 @table @samp
13597 @item tout
13598 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
13599 unlike the neighboring pixels of the same field. Examples of temporal outliers
13600 include the results of video dropouts, head clogs, or tape tracking issues.
13601
13602 @item vrep
13603 Identify @var{vertical line repetition}. Vertical line repetition includes
13604 similar rows of pixels within a frame. In born-digital video vertical line
13605 repetition is common, but this pattern is uncommon in video digitized from an
13606 analog source. When it occurs in video that results from the digitization of an
13607 analog source it can indicate concealment from a dropout compensator.
13608
13609 @item brng
13610 Identify pixels that fall outside of legal broadcast range.
13611 @end table
13612
13613 @item color, c
13614 Set the highlight color for the @option{out} option. The default color is
13615 yellow.
13616 @end table
13617
13618 @subsection Examples
13619
13620 @itemize
13621 @item
13622 Output data of various video metrics:
13623 @example
13624 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
13625 @end example
13626
13627 @item
13628 Output specific data about the minimum and maximum values of the Y plane per frame:
13629 @example
13630 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
13631 @end example
13632
13633 @item
13634 Playback video while highlighting pixels that are outside of broadcast range in red.
13635 @example
13636 ffplay example.mov -vf signalstats="out=brng:color=red"
13637 @end example
13638
13639 @item
13640 Playback video with signalstats metadata drawn over the frame.
13641 @example
13642 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
13643 @end example
13644
13645 The contents of signalstat_drawtext.txt used in the command are:
13646 @example
13647 time %@{pts:hms@}
13648 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
13649 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
13650 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
13651 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
13652
13653 @end example
13654 @end itemize
13655
13656 @anchor{signature}
13657 @section signature
13658
13659 Calculates the MPEG-7 Video Signature. The filter can handle more than one
13660 input. In this case the matching between the inputs can be calculated additionally.
13661 The filter always passes through the first input. The signature of each stream can
13662 be written into a file.
13663
13664 It accepts the following options:
13665
13666 @table @option
13667 @item detectmode
13668 Enable or disable the matching process.
13669
13670 Available values are:
13671
13672 @table @samp
13673 @item off
13674 Disable the calculation of a matching (default).
13675 @item full
13676 Calculate the matching for the whole video and output whether the whole video
13677 matches or only parts.
13678 @item fast
13679 Calculate only until a matching is found or the video ends. Should be faster in
13680 some cases.
13681 @end table
13682
13683 @item nb_inputs
13684 Set the number of inputs. The option value must be a non negative integer.
13685 Default value is 1.
13686
13687 @item filename
13688 Set the path to which the output is written. If there is more than one input,
13689 the path must be a prototype, i.e. must contain %d or %0nd (where n is a positive
13690 integer), that will be replaced with the input number. If no filename is
13691 specified, no output will be written. This is the default.
13692
13693 @item format
13694 Choose the output format.
13695
13696 Available values are:
13697
13698 @table @samp
13699 @item binary
13700 Use the specified binary representation (default).
13701 @item xml
13702 Use the specified xml representation.
13703 @end table
13704
13705 @item th_d
13706 Set threshold to detect one word as similar. The option value must be an integer
13707 greater than zero. The default value is 9000.
13708
13709 @item th_dc
13710 Set threshold to detect all words as similar. The option value must be an integer
13711 greater than zero. The default value is 60000.
13712
13713 @item th_xh
13714 Set threshold to detect frames as similar. The option value must be an integer
13715 greater than zero. The default value is 116.
13716
13717 @item th_di
13718 Set the minimum length of a sequence in frames to recognize it as matching
13719 sequence. The option value must be a non negative integer value.
13720 The default value is 0.
13721
13722 @item th_it
13723 Set the minimum relation, that matching frames to all frames must have.
13724 The option value must be a double value between 0 and 1. The default value is 0.5.
13725 @end table
13726
13727 @subsection Examples
13728
13729 @itemize
13730 @item
13731 To calculate the signature of an input video and store it in signature.bin:
13732 @example
13733 ffmpeg -i input.mkv -vf signature=filename=signature.bin -map 0:v -f null -
13734 @end example
13735
13736 @item
13737 To detect whether two videos match and store the signatures in XML format in
13738 signature0.xml and signature1.xml:
13739 @example
13740 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 -
13741 @end example
13742
13743 @end itemize
13744
13745 @anchor{smartblur}
13746 @section smartblur
13747
13748 Blur the input video without impacting the outlines.
13749
13750 It accepts the following options:
13751
13752 @table @option
13753 @item luma_radius, lr
13754 Set the luma radius. The option value must be a float number in
13755 the range [0.1,5.0] that specifies the variance of the gaussian filter
13756 used to blur the image (slower if larger). Default value is 1.0.
13757
13758 @item luma_strength, ls
13759 Set the luma strength. The option value must be a float number
13760 in the range [-1.0,1.0] that configures the blurring. A value included
13761 in [0.0,1.0] will blur the image whereas a value included in
13762 [-1.0,0.0] will sharpen the image. Default value is 1.0.
13763
13764 @item luma_threshold, lt
13765 Set the luma threshold used as a coefficient to determine
13766 whether a pixel should be blurred or not. The option value must be an
13767 integer in the range [-30,30]. A value of 0 will filter all the image,
13768 a value included in [0,30] will filter flat areas and a value included
13769 in [-30,0] will filter edges. Default value is 0.
13770
13771 @item chroma_radius, cr
13772 Set the chroma radius. The option value must be a float number in
13773 the range [0.1,5.0] that specifies the variance of the gaussian filter
13774 used to blur the image (slower if larger). Default value is @option{luma_radius}.
13775
13776 @item chroma_strength, cs
13777 Set the chroma strength. The option value must be a float number
13778 in the range [-1.0,1.0] that configures the blurring. A value included
13779 in [0.0,1.0] will blur the image whereas a value included in
13780 [-1.0,0.0] will sharpen the image. Default value is @option{luma_strength}.
13781
13782 @item chroma_threshold, ct
13783 Set the chroma threshold used as a coefficient to determine
13784 whether a pixel should be blurred or not. The option value must be an
13785 integer in the range [-30,30]. A value of 0 will filter all the image,
13786 a value included in [0,30] will filter flat areas and a value included
13787 in [-30,0] will filter edges. Default value is @option{luma_threshold}.
13788 @end table
13789
13790 If a chroma option is not explicitly set, the corresponding luma value
13791 is set.
13792
13793 @section ssim
13794
13795 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
13796
13797 This filter takes in input two input videos, the first input is
13798 considered the "main" source and is passed unchanged to the
13799 output. The second input is used as a "reference" video for computing
13800 the SSIM.
13801
13802 Both video inputs must have the same resolution and pixel format for
13803 this filter to work correctly. Also it assumes that both inputs
13804 have the same number of frames, which are compared one by one.
13805
13806 The filter stores the calculated SSIM of each frame.
13807
13808 The description of the accepted parameters follows.
13809
13810 @table @option
13811 @item stats_file, f
13812 If specified the filter will use the named file to save the SSIM of
13813 each individual frame. When filename equals "-" the data is sent to
13814 standard output.
13815 @end table
13816
13817 The file printed if @var{stats_file} is selected, contains a sequence of
13818 key/value pairs of the form @var{key}:@var{value} for each compared
13819 couple of frames.
13820
13821 A description of each shown parameter follows:
13822
13823 @table @option
13824 @item n
13825 sequential number of the input frame, starting from 1
13826
13827 @item Y, U, V, R, G, B
13828 SSIM of the compared frames for the component specified by the suffix.
13829
13830 @item All
13831 SSIM of the compared frames for the whole frame.
13832
13833 @item dB
13834 Same as above but in dB representation.
13835 @end table
13836
13837 This filter also supports the @ref{framesync} options.
13838
13839 For example:
13840 @example
13841 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
13842 [main][ref] ssim="stats_file=stats.log" [out]
13843 @end example
13844
13845 On this example the input file being processed is compared with the
13846 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
13847 is stored in @file{stats.log}.
13848
13849 Another example with both psnr and ssim at same time:
13850 @example
13851 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
13852 @end example
13853
13854 @section stereo3d
13855
13856 Convert between different stereoscopic image formats.
13857
13858 The filters accept the following options:
13859
13860 @table @option
13861 @item in
13862 Set stereoscopic image format of input.
13863
13864 Available values for input image formats are:
13865 @table @samp
13866 @item sbsl
13867 side by side parallel (left eye left, right eye right)
13868
13869 @item sbsr
13870 side by side crosseye (right eye left, left eye right)
13871
13872 @item sbs2l
13873 side by side parallel with half width resolution
13874 (left eye left, right eye right)
13875
13876 @item sbs2r
13877 side by side crosseye with half width resolution
13878 (right eye left, left eye right)
13879
13880 @item abl
13881 above-below (left eye above, right eye below)
13882
13883 @item abr
13884 above-below (right eye above, left eye below)
13885
13886 @item ab2l
13887 above-below with half height resolution
13888 (left eye above, right eye below)
13889
13890 @item ab2r
13891 above-below with half height resolution
13892 (right eye above, left eye below)
13893
13894 @item al
13895 alternating frames (left eye first, right eye second)
13896
13897 @item ar
13898 alternating frames (right eye first, left eye second)
13899
13900 @item irl
13901 interleaved rows (left eye has top row, right eye starts on next row)
13902
13903 @item irr
13904 interleaved rows (right eye has top row, left eye starts on next row)
13905
13906 @item icl
13907 interleaved columns, left eye first
13908
13909 @item icr
13910 interleaved columns, right eye first
13911
13912 Default value is @samp{sbsl}.
13913 @end table
13914
13915 @item out
13916 Set stereoscopic image format of output.
13917
13918 @table @samp
13919 @item sbsl
13920 side by side parallel (left eye left, right eye right)
13921
13922 @item sbsr
13923 side by side crosseye (right eye left, left eye right)
13924
13925 @item sbs2l
13926 side by side parallel with half width resolution
13927 (left eye left, right eye right)
13928
13929 @item sbs2r
13930 side by side crosseye with half width resolution
13931 (right eye left, left eye right)
13932
13933 @item abl
13934 above-below (left eye above, right eye below)
13935
13936 @item abr
13937 above-below (right eye above, left eye below)
13938
13939 @item ab2l
13940 above-below with half height resolution
13941 (left eye above, right eye below)
13942
13943 @item ab2r
13944 above-below with half height resolution
13945 (right eye above, left eye below)
13946
13947 @item al
13948 alternating frames (left eye first, right eye second)
13949
13950 @item ar
13951 alternating frames (right eye first, left eye second)
13952
13953 @item irl
13954 interleaved rows (left eye has top row, right eye starts on next row)
13955
13956 @item irr
13957 interleaved rows (right eye has top row, left eye starts on next row)
13958
13959 @item arbg
13960 anaglyph red/blue gray
13961 (red filter on left eye, blue filter on right eye)
13962
13963 @item argg
13964 anaglyph red/green gray
13965 (red filter on left eye, green filter on right eye)
13966
13967 @item arcg
13968 anaglyph red/cyan gray
13969 (red filter on left eye, cyan filter on right eye)
13970
13971 @item arch
13972 anaglyph red/cyan half colored
13973 (red filter on left eye, cyan filter on right eye)
13974
13975 @item arcc
13976 anaglyph red/cyan color
13977 (red filter on left eye, cyan filter on right eye)
13978
13979 @item arcd
13980 anaglyph red/cyan color optimized with the least squares projection of dubois
13981 (red filter on left eye, cyan filter on right eye)
13982
13983 @item agmg
13984 anaglyph green/magenta gray
13985 (green filter on left eye, magenta filter on right eye)
13986
13987 @item agmh
13988 anaglyph green/magenta half colored
13989 (green filter on left eye, magenta filter on right eye)
13990
13991 @item agmc
13992 anaglyph green/magenta colored
13993 (green filter on left eye, magenta filter on right eye)
13994
13995 @item agmd
13996 anaglyph green/magenta color optimized with the least squares projection of dubois
13997 (green filter on left eye, magenta filter on right eye)
13998
13999 @item aybg
14000 anaglyph yellow/blue gray
14001 (yellow filter on left eye, blue filter on right eye)
14002
14003 @item aybh
14004 anaglyph yellow/blue half colored
14005 (yellow filter on left eye, blue filter on right eye)
14006
14007 @item aybc
14008 anaglyph yellow/blue colored
14009 (yellow filter on left eye, blue filter on right eye)
14010
14011 @item aybd
14012 anaglyph yellow/blue color optimized with the least squares projection of dubois
14013 (yellow filter on left eye, blue filter on right eye)
14014
14015 @item ml
14016 mono output (left eye only)
14017
14018 @item mr
14019 mono output (right eye only)
14020
14021 @item chl
14022 checkerboard, left eye first
14023
14024 @item chr
14025 checkerboard, right eye first
14026
14027 @item icl
14028 interleaved columns, left eye first
14029
14030 @item icr
14031 interleaved columns, right eye first
14032
14033 @item hdmi
14034 HDMI frame pack
14035 @end table
14036
14037 Default value is @samp{arcd}.
14038 @end table
14039
14040 @subsection Examples
14041
14042 @itemize
14043 @item
14044 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
14045 @example
14046 stereo3d=sbsl:aybd
14047 @end example
14048
14049 @item
14050 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
14051 @example
14052 stereo3d=abl:sbsr
14053 @end example
14054 @end itemize
14055
14056 @section streamselect, astreamselect
14057 Select video or audio streams.
14058
14059 The filter accepts the following options:
14060
14061 @table @option
14062 @item inputs
14063 Set number of inputs. Default is 2.
14064
14065 @item map
14066 Set input indexes to remap to outputs.
14067 @end table
14068
14069 @subsection Commands
14070
14071 The @code{streamselect} and @code{astreamselect} filter supports the following
14072 commands:
14073
14074 @table @option
14075 @item map
14076 Set input indexes to remap to outputs.
14077 @end table
14078
14079 @subsection Examples
14080
14081 @itemize
14082 @item
14083 Select first 5 seconds 1st stream and rest of time 2nd stream:
14084 @example
14085 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
14086 @end example
14087
14088 @item
14089 Same as above, but for audio:
14090 @example
14091 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
14092 @end example
14093 @end itemize
14094
14095 @section sobel
14096 Apply sobel operator to input video stream.
14097
14098 The filter accepts the following option:
14099
14100 @table @option
14101 @item planes
14102 Set which planes will be processed, unprocessed planes will be copied.
14103 By default value 0xf, all planes will be processed.
14104
14105 @item scale
14106 Set value which will be multiplied with filtered result.
14107
14108 @item delta
14109 Set value which will be added to filtered result.
14110 @end table
14111
14112 @anchor{spp}
14113 @section spp
14114
14115 Apply a simple postprocessing filter that compresses and decompresses the image
14116 at several (or - in the case of @option{quality} level @code{6} - all) shifts
14117 and average the results.
14118
14119 The filter accepts the following options:
14120
14121 @table @option
14122 @item quality
14123 Set quality. This option defines the number of levels for averaging. It accepts
14124 an integer in the range 0-6. If set to @code{0}, the filter will have no
14125 effect. A value of @code{6} means the higher quality. For each increment of
14126 that value the speed drops by a factor of approximately 2.  Default value is
14127 @code{3}.
14128
14129 @item qp
14130 Force a constant quantization parameter. If not set, the filter will use the QP
14131 from the video stream (if available).
14132
14133 @item mode
14134 Set thresholding mode. Available modes are:
14135
14136 @table @samp
14137 @item hard
14138 Set hard thresholding (default).
14139 @item soft
14140 Set soft thresholding (better de-ringing effect, but likely blurrier).
14141 @end table
14142
14143 @item use_bframe_qp
14144 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
14145 option may cause flicker since the B-Frames have often larger QP. Default is
14146 @code{0} (not enabled).
14147 @end table
14148
14149 @anchor{subtitles}
14150 @section subtitles
14151
14152 Draw subtitles on top of input video using the libass library.
14153
14154 To enable compilation of this filter you need to configure FFmpeg with
14155 @code{--enable-libass}. This filter also requires a build with libavcodec and
14156 libavformat to convert the passed subtitles file to ASS (Advanced Substation
14157 Alpha) subtitles format.
14158
14159 The filter accepts the following options:
14160
14161 @table @option
14162 @item filename, f
14163 Set the filename of the subtitle file to read. It must be specified.
14164
14165 @item original_size
14166 Specify the size of the original video, the video for which the ASS file
14167 was composed. For the syntax of this option, check the
14168 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14169 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
14170 correctly scale the fonts if the aspect ratio has been changed.
14171
14172 @item fontsdir
14173 Set a directory path containing fonts that can be used by the filter.
14174 These fonts will be used in addition to whatever the font provider uses.
14175
14176 @item alpha
14177 Process alpha channel, by default alpha channel is untouched.
14178
14179 @item charenc
14180 Set subtitles input character encoding. @code{subtitles} filter only. Only
14181 useful if not UTF-8.
14182
14183 @item stream_index, si
14184 Set subtitles stream index. @code{subtitles} filter only.
14185
14186 @item force_style
14187 Override default style or script info parameters of the subtitles. It accepts a
14188 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
14189 @end table
14190
14191 If the first key is not specified, it is assumed that the first value
14192 specifies the @option{filename}.
14193
14194 For example, to render the file @file{sub.srt} on top of the input
14195 video, use the command:
14196 @example
14197 subtitles=sub.srt
14198 @end example
14199
14200 which is equivalent to:
14201 @example
14202 subtitles=filename=sub.srt
14203 @end example
14204
14205 To render the default subtitles stream from file @file{video.mkv}, use:
14206 @example
14207 subtitles=video.mkv
14208 @end example
14209
14210 To render the second subtitles stream from that file, use:
14211 @example
14212 subtitles=video.mkv:si=1
14213 @end example
14214
14215 To make the subtitles stream from @file{sub.srt} appear in transparent green
14216 @code{DejaVu Serif}, use:
14217 @example
14218 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HAA00FF00'
14219 @end example
14220
14221 @section super2xsai
14222
14223 Scale the input by 2x and smooth using the Super2xSaI (Scale and
14224 Interpolate) pixel art scaling algorithm.
14225
14226 Useful for enlarging pixel art images without reducing sharpness.
14227
14228 @section swaprect
14229
14230 Swap two rectangular objects in video.
14231
14232 This filter accepts the following options:
14233
14234 @table @option
14235 @item w
14236 Set object width.
14237
14238 @item h
14239 Set object height.
14240
14241 @item x1
14242 Set 1st rect x coordinate.
14243
14244 @item y1
14245 Set 1st rect y coordinate.
14246
14247 @item x2
14248 Set 2nd rect x coordinate.
14249
14250 @item y2
14251 Set 2nd rect y coordinate.
14252
14253 All expressions are evaluated once for each frame.
14254 @end table
14255
14256 The all options are expressions containing the following constants:
14257
14258 @table @option
14259 @item w
14260 @item h
14261 The input width and height.
14262
14263 @item a
14264 same as @var{w} / @var{h}
14265
14266 @item sar
14267 input sample aspect ratio
14268
14269 @item dar
14270 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
14271
14272 @item n
14273 The number of the input frame, starting from 0.
14274
14275 @item t
14276 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
14277
14278 @item pos
14279 the position in the file of the input frame, NAN if unknown
14280 @end table
14281
14282 @section swapuv
14283 Swap U & V plane.
14284
14285 @section telecine
14286
14287 Apply telecine process to the video.
14288
14289 This filter accepts the following options:
14290
14291 @table @option
14292 @item first_field
14293 @table @samp
14294 @item top, t
14295 top field first
14296 @item bottom, b
14297 bottom field first
14298 The default value is @code{top}.
14299 @end table
14300
14301 @item pattern
14302 A string of numbers representing the pulldown pattern you wish to apply.
14303 The default value is @code{23}.
14304 @end table
14305
14306 @example
14307 Some typical patterns:
14308
14309 NTSC output (30i):
14310 27.5p: 32222
14311 24p: 23 (classic)
14312 24p: 2332 (preferred)
14313 20p: 33
14314 18p: 334
14315 16p: 3444
14316
14317 PAL output (25i):
14318 27.5p: 12222
14319 24p: 222222222223 ("Euro pulldown")
14320 16.67p: 33
14321 16p: 33333334
14322 @end example
14323
14324 @section threshold
14325
14326 Apply threshold effect to video stream.
14327
14328 This filter needs four video streams to perform thresholding.
14329 First stream is stream we are filtering.
14330 Second stream is holding threshold values, third stream is holding min values,
14331 and last, fourth stream is holding max values.
14332
14333 The filter accepts the following option:
14334
14335 @table @option
14336 @item planes
14337 Set which planes will be processed, unprocessed planes will be copied.
14338 By default value 0xf, all planes will be processed.
14339 @end table
14340
14341 For example if first stream pixel's component value is less then threshold value
14342 of pixel component from 2nd threshold stream, third stream value will picked,
14343 otherwise fourth stream pixel component value will be picked.
14344
14345 Using color source filter one can perform various types of thresholding:
14346
14347 @subsection Examples
14348
14349 @itemize
14350 @item
14351 Binary threshold, using gray color as threshold:
14352 @example
14353 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=black -f lavfi -i color=white -lavfi threshold output.avi
14354 @end example
14355
14356 @item
14357 Inverted binary threshold, using gray color as threshold:
14358 @example
14359 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -f lavfi -i color=black -lavfi threshold output.avi
14360 @end example
14361
14362 @item
14363 Truncate binary threshold, using gray color as threshold:
14364 @example
14365 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=gray -lavfi threshold output.avi
14366 @end example
14367
14368 @item
14369 Threshold to zero, using gray color as threshold:
14370 @example
14371 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -i 320x240.avi -lavfi threshold output.avi
14372 @end example
14373
14374 @item
14375 Inverted threshold to zero, using gray color as threshold:
14376 @example
14377 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=white -lavfi threshold output.avi
14378 @end example
14379 @end itemize
14380
14381 @section thumbnail
14382 Select the most representative frame in a given sequence of consecutive frames.
14383
14384 The filter accepts the following options:
14385
14386 @table @option
14387 @item n
14388 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
14389 will pick one of them, and then handle the next batch of @var{n} frames until
14390 the end. Default is @code{100}.
14391 @end table
14392
14393 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
14394 value will result in a higher memory usage, so a high value is not recommended.
14395
14396 @subsection Examples
14397
14398 @itemize
14399 @item
14400 Extract one picture each 50 frames:
14401 @example
14402 thumbnail=50
14403 @end example
14404
14405 @item
14406 Complete example of a thumbnail creation with @command{ffmpeg}:
14407 @example
14408 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
14409 @end example
14410 @end itemize
14411
14412 @section tile
14413
14414 Tile several successive frames together.
14415
14416 The filter accepts the following options:
14417
14418 @table @option
14419
14420 @item layout
14421 Set the grid size (i.e. the number of lines and columns). For the syntax of
14422 this option, check the
14423 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
14424
14425 @item nb_frames
14426 Set the maximum number of frames to render in the given area. It must be less
14427 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
14428 the area will be used.
14429
14430 @item margin
14431 Set the outer border margin in pixels.
14432
14433 @item padding
14434 Set the inner border thickness (i.e. the number of pixels between frames). For
14435 more advanced padding options (such as having different values for the edges),
14436 refer to the pad video filter.
14437
14438 @item color
14439 Specify the color of the unused area. For the syntax of this option, check the
14440 "Color" section in the ffmpeg-utils manual. The default value of @var{color}
14441 is "black".
14442 @end table
14443
14444 @subsection Examples
14445
14446 @itemize
14447 @item
14448 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
14449 @example
14450 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
14451 @end example
14452 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
14453 duplicating each output frame to accommodate the originally detected frame
14454 rate.
14455
14456 @item
14457 Display @code{5} pictures in an area of @code{3x2} frames,
14458 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
14459 mixed flat and named options:
14460 @example
14461 tile=3x2:nb_frames=5:padding=7:margin=2
14462 @end example
14463 @end itemize
14464
14465 @section tinterlace
14466
14467 Perform various types of temporal field interlacing.
14468
14469 Frames are counted starting from 1, so the first input frame is
14470 considered odd.
14471
14472 The filter accepts the following options:
14473
14474 @table @option
14475
14476 @item mode
14477 Specify the mode of the interlacing. This option can also be specified
14478 as a value alone. See below for a list of values for this option.
14479
14480 Available values are:
14481
14482 @table @samp
14483 @item merge, 0
14484 Move odd frames into the upper field, even into the lower field,
14485 generating a double height frame at half frame rate.
14486 @example
14487  ------> time
14488 Input:
14489 Frame 1         Frame 2         Frame 3         Frame 4
14490
14491 11111           22222           33333           44444
14492 11111           22222           33333           44444
14493 11111           22222           33333           44444
14494 11111           22222           33333           44444
14495
14496 Output:
14497 11111                           33333
14498 22222                           44444
14499 11111                           33333
14500 22222                           44444
14501 11111                           33333
14502 22222                           44444
14503 11111                           33333
14504 22222                           44444
14505 @end example
14506
14507 @item drop_even, 1
14508 Only output odd frames, even frames are dropped, generating a frame with
14509 unchanged height at half frame rate.
14510
14511 @example
14512  ------> time
14513 Input:
14514 Frame 1         Frame 2         Frame 3         Frame 4
14515
14516 11111           22222           33333           44444
14517 11111           22222           33333           44444
14518 11111           22222           33333           44444
14519 11111           22222           33333           44444
14520
14521 Output:
14522 11111                           33333
14523 11111                           33333
14524 11111                           33333
14525 11111                           33333
14526 @end example
14527
14528 @item drop_odd, 2
14529 Only output even frames, odd frames are dropped, generating a frame with
14530 unchanged height at half frame rate.
14531
14532 @example
14533  ------> time
14534 Input:
14535 Frame 1         Frame 2         Frame 3         Frame 4
14536
14537 11111           22222           33333           44444
14538 11111           22222           33333           44444
14539 11111           22222           33333           44444
14540 11111           22222           33333           44444
14541
14542 Output:
14543                 22222                           44444
14544                 22222                           44444
14545                 22222                           44444
14546                 22222                           44444
14547 @end example
14548
14549 @item pad, 3
14550 Expand each frame to full height, but pad alternate lines with black,
14551 generating a frame with double height at the same input frame rate.
14552
14553 @example
14554  ------> time
14555 Input:
14556 Frame 1         Frame 2         Frame 3         Frame 4
14557
14558 11111           22222           33333           44444
14559 11111           22222           33333           44444
14560 11111           22222           33333           44444
14561 11111           22222           33333           44444
14562
14563 Output:
14564 11111           .....           33333           .....
14565 .....           22222           .....           44444
14566 11111           .....           33333           .....
14567 .....           22222           .....           44444
14568 11111           .....           33333           .....
14569 .....           22222           .....           44444
14570 11111           .....           33333           .....
14571 .....           22222           .....           44444
14572 @end example
14573
14574
14575 @item interleave_top, 4
14576 Interleave the upper field from odd frames with the lower field from
14577 even frames, generating a frame with unchanged height at half frame rate.
14578
14579 @example
14580  ------> time
14581 Input:
14582 Frame 1         Frame 2         Frame 3         Frame 4
14583
14584 11111<-         22222           33333<-         44444
14585 11111           22222<-         33333           44444<-
14586 11111<-         22222           33333<-         44444
14587 11111           22222<-         33333           44444<-
14588
14589 Output:
14590 11111                           33333
14591 22222                           44444
14592 11111                           33333
14593 22222                           44444
14594 @end example
14595
14596
14597 @item interleave_bottom, 5
14598 Interleave the lower field from odd frames with the upper field from
14599 even frames, generating a frame with unchanged height at half frame rate.
14600
14601 @example
14602  ------> time
14603 Input:
14604 Frame 1         Frame 2         Frame 3         Frame 4
14605
14606 11111           22222<-         33333           44444<-
14607 11111<-         22222           33333<-         44444
14608 11111           22222<-         33333           44444<-
14609 11111<-         22222           33333<-         44444
14610
14611 Output:
14612 22222                           44444
14613 11111                           33333
14614 22222                           44444
14615 11111                           33333
14616 @end example
14617
14618
14619 @item interlacex2, 6
14620 Double frame rate with unchanged height. Frames are inserted each
14621 containing the second temporal field from the previous input frame and
14622 the first temporal field from the next input frame. This mode relies on
14623 the top_field_first flag. Useful for interlaced video displays with no
14624 field synchronisation.
14625
14626 @example
14627  ------> time
14628 Input:
14629 Frame 1         Frame 2         Frame 3         Frame 4
14630
14631 11111           22222           33333           44444
14632  11111           22222           33333           44444
14633 11111           22222           33333           44444
14634  11111           22222           33333           44444
14635
14636 Output:
14637 11111   22222   22222   33333   33333   44444   44444
14638  11111   11111   22222   22222   33333   33333   44444
14639 11111   22222   22222   33333   33333   44444   44444
14640  11111   11111   22222   22222   33333   33333   44444
14641 @end example
14642
14643
14644 @item mergex2, 7
14645 Move odd frames into the upper field, even into the lower field,
14646 generating a double height frame at same frame rate.
14647
14648 @example
14649  ------> time
14650 Input:
14651 Frame 1         Frame 2         Frame 3         Frame 4
14652
14653 11111           22222           33333           44444
14654 11111           22222           33333           44444
14655 11111           22222           33333           44444
14656 11111           22222           33333           44444
14657
14658 Output:
14659 11111           33333           33333           55555
14660 22222           22222           44444           44444
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 @end example
14668
14669 @end table
14670
14671 Numeric values are deprecated but are accepted for backward
14672 compatibility reasons.
14673
14674 Default mode is @code{merge}.
14675
14676 @item flags
14677 Specify flags influencing the filter process.
14678
14679 Available value for @var{flags} is:
14680
14681 @table @option
14682 @item low_pass_filter, vlfp
14683 Enable linear vertical low-pass filtering in the filter.
14684 Vertical low-pass filtering is required when creating an interlaced
14685 destination from a progressive source which contains high-frequency
14686 vertical detail. Filtering will reduce interlace 'twitter' and Moire
14687 patterning.
14688
14689 @item complex_filter, cvlfp
14690 Enable complex vertical low-pass filtering.
14691 This will slightly less reduce interlace 'twitter' and Moire
14692 patterning but better retain detail and subjective sharpness impression.
14693
14694 @end table
14695
14696 Vertical low-pass filtering can only be enabled for @option{mode}
14697 @var{interleave_top} and @var{interleave_bottom}.
14698
14699 @end table
14700
14701 @section tonemap
14702 Tone map colors from different dynamic ranges.
14703
14704 This filter expects data in single precision floating point, as it needs to
14705 operate on (and can output) out-of-range values. Another filter, such as
14706 @ref{zscale}, is needed to convert the resulting frame to a usable format.
14707
14708 The tonemapping algorithms implemented only work on linear light, so input
14709 data should be linearized beforehand (and possibly correctly tagged).
14710
14711 @example
14712 ffmpeg -i INPUT -vf zscale=transfer=linear,tonemap=clip,zscale=transfer=bt709,format=yuv420p OUTPUT
14713 @end example
14714
14715 @subsection Options
14716 The filter accepts the following options.
14717
14718 @table @option
14719 @item tonemap
14720 Set the tone map algorithm to use.
14721
14722 Possible values are:
14723 @table @var
14724 @item none
14725 Do not apply any tone map, only desaturate overbright pixels.
14726
14727 @item clip
14728 Hard-clip any out-of-range values. Use it for perfect color accuracy for
14729 in-range values, while distorting out-of-range values.
14730
14731 @item linear
14732 Stretch the entire reference gamut to a linear multiple of the display.
14733
14734 @item gamma
14735 Fit a logarithmic transfer between the tone curves.
14736
14737 @item reinhard
14738 Preserve overall image brightness with a simple curve, using nonlinear
14739 contrast, which results in flattening details and degrading color accuracy.
14740
14741 @item hable
14742 Preserve both dark and bright details better than @var{reinhard}, at the cost
14743 of slightly darkening everything. Use it when detail preservation is more
14744 important than color and brightness accuracy.
14745
14746 @item mobius
14747 Smoothly map out-of-range values, while retaining contrast and colors for
14748 in-range material as much as possible. Use it when color accuracy is more
14749 important than detail preservation.
14750 @end table
14751
14752 Default is none.
14753
14754 @item param
14755 Tune the tone mapping algorithm.
14756
14757 This affects the following algorithms:
14758 @table @var
14759 @item none
14760 Ignored.
14761
14762 @item linear
14763 Specifies the scale factor to use while stretching.
14764 Default to 1.0.
14765
14766 @item gamma
14767 Specifies the exponent of the function.
14768 Default to 1.8.
14769
14770 @item clip
14771 Specify an extra linear coefficient to multiply into the signal before clipping.
14772 Default to 1.0.
14773
14774 @item reinhard
14775 Specify the local contrast coefficient at the display peak.
14776 Default to 0.5, which means that in-gamut values will be about half as bright
14777 as when clipping.
14778
14779 @item hable
14780 Ignored.
14781
14782 @item mobius
14783 Specify the transition point from linear to mobius transform. Every value
14784 below this point is guaranteed to be mapped 1:1. The higher the value, the
14785 more accurate the result will be, at the cost of losing bright details.
14786 Default to 0.3, which due to the steep initial slope still preserves in-range
14787 colors fairly accurately.
14788 @end table
14789
14790 @item desat
14791 Apply desaturation for highlights that exceed this level of brightness. The
14792 higher the parameter, the more color information will be preserved. This
14793 setting helps prevent unnaturally blown-out colors for super-highlights, by
14794 (smoothly) turning into white instead. This makes images feel more natural,
14795 at the cost of reducing information about out-of-range colors.
14796
14797 The default of 2.0 is somewhat conservative and will mostly just apply to
14798 skies or directly sunlit surfaces. A setting of 0.0 disables this option.
14799
14800 This option works only if the input frame has a supported color tag.
14801
14802 @item peak
14803 Override signal/nominal/reference peak with this value. Useful when the
14804 embedded peak information in display metadata is not reliable or when tone
14805 mapping from a lower range to a higher range.
14806 @end table
14807
14808 @section transpose
14809
14810 Transpose rows with columns in the input video and optionally flip it.
14811
14812 It accepts the following parameters:
14813
14814 @table @option
14815
14816 @item dir
14817 Specify the transposition direction.
14818
14819 Can assume the following values:
14820 @table @samp
14821 @item 0, 4, cclock_flip
14822 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
14823 @example
14824 L.R     L.l
14825 . . ->  . .
14826 l.r     R.r
14827 @end example
14828
14829 @item 1, 5, clock
14830 Rotate by 90 degrees clockwise, that is:
14831 @example
14832 L.R     l.L
14833 . . ->  . .
14834 l.r     r.R
14835 @end example
14836
14837 @item 2, 6, cclock
14838 Rotate by 90 degrees counterclockwise, that is:
14839 @example
14840 L.R     R.r
14841 . . ->  . .
14842 l.r     L.l
14843 @end example
14844
14845 @item 3, 7, clock_flip
14846 Rotate by 90 degrees clockwise and vertically flip, that is:
14847 @example
14848 L.R     r.R
14849 . . ->  . .
14850 l.r     l.L
14851 @end example
14852 @end table
14853
14854 For values between 4-7, the transposition is only done if the input
14855 video geometry is portrait and not landscape. These values are
14856 deprecated, the @code{passthrough} option should be used instead.
14857
14858 Numerical values are deprecated, and should be dropped in favor of
14859 symbolic constants.
14860
14861 @item passthrough
14862 Do not apply the transposition if the input geometry matches the one
14863 specified by the specified value. It accepts the following values:
14864 @table @samp
14865 @item none
14866 Always apply transposition.
14867 @item portrait
14868 Preserve portrait geometry (when @var{height} >= @var{width}).
14869 @item landscape
14870 Preserve landscape geometry (when @var{width} >= @var{height}).
14871 @end table
14872
14873 Default value is @code{none}.
14874 @end table
14875
14876 For example to rotate by 90 degrees clockwise and preserve portrait
14877 layout:
14878 @example
14879 transpose=dir=1:passthrough=portrait
14880 @end example
14881
14882 The command above can also be specified as:
14883 @example
14884 transpose=1:portrait
14885 @end example
14886
14887 @section trim
14888 Trim the input so that the output contains one continuous subpart of the input.
14889
14890 It accepts the following parameters:
14891 @table @option
14892 @item start
14893 Specify the time of the start of the kept section, i.e. the frame with the
14894 timestamp @var{start} will be the first frame in the output.
14895
14896 @item end
14897 Specify the time of the first frame that will be dropped, i.e. the frame
14898 immediately preceding the one with the timestamp @var{end} will be the last
14899 frame in the output.
14900
14901 @item start_pts
14902 This is the same as @var{start}, except this option sets the start timestamp
14903 in timebase units instead of seconds.
14904
14905 @item end_pts
14906 This is the same as @var{end}, except this option sets the end timestamp
14907 in timebase units instead of seconds.
14908
14909 @item duration
14910 The maximum duration of the output in seconds.
14911
14912 @item start_frame
14913 The number of the first frame that should be passed to the output.
14914
14915 @item end_frame
14916 The number of the first frame that should be dropped.
14917 @end table
14918
14919 @option{start}, @option{end}, and @option{duration} are expressed as time
14920 duration specifications; see
14921 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
14922 for the accepted syntax.
14923
14924 Note that the first two sets of the start/end options and the @option{duration}
14925 option look at the frame timestamp, while the _frame variants simply count the
14926 frames that pass through the filter. Also note that this filter does not modify
14927 the timestamps. If you wish for the output timestamps to start at zero, insert a
14928 setpts filter after the trim filter.
14929
14930 If multiple start or end options are set, this filter tries to be greedy and
14931 keep all the frames that match at least one of the specified constraints. To keep
14932 only the part that matches all the constraints at once, chain multiple trim
14933 filters.
14934
14935 The defaults are such that all the input is kept. So it is possible to set e.g.
14936 just the end values to keep everything before the specified time.
14937
14938 Examples:
14939 @itemize
14940 @item
14941 Drop everything except the second minute of input:
14942 @example
14943 ffmpeg -i INPUT -vf trim=60:120
14944 @end example
14945
14946 @item
14947 Keep only the first second:
14948 @example
14949 ffmpeg -i INPUT -vf trim=duration=1
14950 @end example
14951
14952 @end itemize
14953
14954 @section unpremultiply
14955 Apply alpha unpremultiply effect to input video stream using first plane
14956 of second stream as alpha.
14957
14958 Both streams must have same dimensions and same pixel format.
14959
14960 The filter accepts the following option:
14961
14962 @table @option
14963 @item planes
14964 Set which planes will be processed, unprocessed planes will be copied.
14965 By default value 0xf, all planes will be processed.
14966
14967 If the format has 1 or 2 components, then luma is bit 0.
14968 If the format has 3 or 4 components:
14969 for RGB formats bit 0 is green, bit 1 is blue and bit 2 is red;
14970 for YUV formats bit 0 is luma, bit 1 is chroma-U and bit 2 is chroma-V.
14971 If present, the alpha channel is always the last bit.
14972
14973 @item inplace
14974 Do not require 2nd input for processing, instead use alpha plane from input stream.
14975 @end table
14976
14977 @anchor{unsharp}
14978 @section unsharp
14979
14980 Sharpen or blur the input video.
14981
14982 It accepts the following parameters:
14983
14984 @table @option
14985 @item luma_msize_x, lx
14986 Set the luma matrix horizontal size. It must be an odd integer between
14987 3 and 23. The default value is 5.
14988
14989 @item luma_msize_y, ly
14990 Set the luma matrix vertical size. It must be an odd integer between 3
14991 and 23. The default value is 5.
14992
14993 @item luma_amount, la
14994 Set the luma effect strength. It must be a floating point number, reasonable
14995 values lay between -1.5 and 1.5.
14996
14997 Negative values will blur the input video, while positive values will
14998 sharpen it, a value of zero will disable the effect.
14999
15000 Default value is 1.0.
15001
15002 @item chroma_msize_x, cx
15003 Set the chroma matrix horizontal size. It must be an odd integer
15004 between 3 and 23. The default value is 5.
15005
15006 @item chroma_msize_y, cy
15007 Set the chroma matrix vertical size. It must be an odd integer
15008 between 3 and 23. The default value is 5.
15009
15010 @item chroma_amount, ca
15011 Set the chroma effect strength. It must be a floating point number, reasonable
15012 values lay between -1.5 and 1.5.
15013
15014 Negative values will blur the input video, while positive values will
15015 sharpen it, a value of zero will disable the effect.
15016
15017 Default value is 0.0.
15018
15019 @item opencl
15020 If set to 1, specify using OpenCL capabilities, only available if
15021 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
15022
15023 @end table
15024
15025 All parameters are optional and default to the equivalent of the
15026 string '5:5:1.0:5:5:0.0'.
15027
15028 @subsection Examples
15029
15030 @itemize
15031 @item
15032 Apply strong luma sharpen effect:
15033 @example
15034 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
15035 @end example
15036
15037 @item
15038 Apply a strong blur of both luma and chroma parameters:
15039 @example
15040 unsharp=7:7:-2:7:7:-2
15041 @end example
15042 @end itemize
15043
15044 @section uspp
15045
15046 Apply ultra slow/simple postprocessing filter that compresses and decompresses
15047 the image at several (or - in the case of @option{quality} level @code{8} - all)
15048 shifts and average the results.
15049
15050 The way this differs from the behavior of spp is that uspp actually encodes &
15051 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
15052 DCT similar to MJPEG.
15053
15054 The filter accepts the following options:
15055
15056 @table @option
15057 @item quality
15058 Set quality. This option defines the number of levels for averaging. It accepts
15059 an integer in the range 0-8. If set to @code{0}, the filter will have no
15060 effect. A value of @code{8} means the higher quality. For each increment of
15061 that value the speed drops by a factor of approximately 2.  Default value is
15062 @code{3}.
15063
15064 @item qp
15065 Force a constant quantization parameter. If not set, the filter will use the QP
15066 from the video stream (if available).
15067 @end table
15068
15069 @section vaguedenoiser
15070
15071 Apply a wavelet based denoiser.
15072
15073 It transforms each frame from the video input into the wavelet domain,
15074 using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
15075 the obtained coefficients. It does an inverse wavelet transform after.
15076 Due to wavelet properties, it should give a nice smoothed result, and
15077 reduced noise, without blurring picture features.
15078
15079 This filter accepts the following options:
15080
15081 @table @option
15082 @item threshold
15083 The filtering strength. The higher, the more filtered the video will be.
15084 Hard thresholding can use a higher threshold than soft thresholding
15085 before the video looks overfiltered. Default value is 2.
15086
15087 @item method
15088 The filtering method the filter will use.
15089
15090 It accepts the following values:
15091 @table @samp
15092 @item hard
15093 All values under the threshold will be zeroed.
15094
15095 @item soft
15096 All values under the threshold will be zeroed. All values above will be
15097 reduced by the threshold.
15098
15099 @item garrote
15100 Scales or nullifies coefficients - intermediary between (more) soft and
15101 (less) hard thresholding.
15102 @end table
15103
15104 Default is garrote.
15105
15106 @item nsteps
15107 Number of times, the wavelet will decompose the picture. Picture can't
15108 be decomposed beyond a particular point (typically, 8 for a 640x480
15109 frame - as 2^9 = 512 > 480). Valid values are integers between 1 and 32. Default value is 6.
15110
15111 @item percent
15112 Partial of full denoising (limited coefficients shrinking), from 0 to 100. Default value is 85.
15113
15114 @item planes
15115 A list of the planes to process. By default all planes are processed.
15116 @end table
15117
15118 @section vectorscope
15119
15120 Display 2 color component values in the two dimensional graph (which is called
15121 a vectorscope).
15122
15123 This filter accepts the following options:
15124
15125 @table @option
15126 @item mode, m
15127 Set vectorscope mode.
15128
15129 It accepts the following values:
15130 @table @samp
15131 @item gray
15132 Gray values are displayed on graph, higher brightness means more pixels have
15133 same component color value on location in graph. This is the default mode.
15134
15135 @item color
15136 Gray values are displayed on graph. Surrounding pixels values which are not
15137 present in video frame are drawn in gradient of 2 color components which are
15138 set by option @code{x} and @code{y}. The 3rd color component is static.
15139
15140 @item color2
15141 Actual color components values present in video frame are displayed on graph.
15142
15143 @item color3
15144 Similar as color2 but higher frequency of same values @code{x} and @code{y}
15145 on graph increases value of another color component, which is luminance by
15146 default values of @code{x} and @code{y}.
15147
15148 @item color4
15149 Actual colors present in video frame are displayed on graph. If two different
15150 colors map to same position on graph then color with higher value of component
15151 not present in graph is picked.
15152
15153 @item color5
15154 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
15155 component picked from radial gradient.
15156 @end table
15157
15158 @item x
15159 Set which color component will be represented on X-axis. Default is @code{1}.
15160
15161 @item y
15162 Set which color component will be represented on Y-axis. Default is @code{2}.
15163
15164 @item intensity, i
15165 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
15166 of color component which represents frequency of (X, Y) location in graph.
15167
15168 @item envelope, e
15169 @table @samp
15170 @item none
15171 No envelope, this is default.
15172
15173 @item instant
15174 Instant envelope, even darkest single pixel will be clearly highlighted.
15175
15176 @item peak
15177 Hold maximum and minimum values presented in graph over time. This way you
15178 can still spot out of range values without constantly looking at vectorscope.
15179
15180 @item peak+instant
15181 Peak and instant envelope combined together.
15182 @end table
15183
15184 @item graticule, g
15185 Set what kind of graticule to draw.
15186 @table @samp
15187 @item none
15188 @item green
15189 @item color
15190 @end table
15191
15192 @item opacity, o
15193 Set graticule opacity.
15194
15195 @item flags, f
15196 Set graticule flags.
15197
15198 @table @samp
15199 @item white
15200 Draw graticule for white point.
15201
15202 @item black
15203 Draw graticule for black point.
15204
15205 @item name
15206 Draw color points short names.
15207 @end table
15208
15209 @item bgopacity, b
15210 Set background opacity.
15211
15212 @item lthreshold, l
15213 Set low threshold for color component not represented on X or Y axis.
15214 Values lower than this value will be ignored. Default is 0.
15215 Note this value is multiplied with actual max possible value one pixel component
15216 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
15217 is 0.1 * 255 = 25.
15218
15219 @item hthreshold, h
15220 Set high threshold for color component not represented on X or Y axis.
15221 Values higher than this value will be ignored. Default is 1.
15222 Note this value is multiplied with actual max possible value one pixel component
15223 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
15224 is 0.9 * 255 = 230.
15225
15226 @item colorspace, c
15227 Set what kind of colorspace to use when drawing graticule.
15228 @table @samp
15229 @item auto
15230 @item 601
15231 @item 709
15232 @end table
15233 Default is auto.
15234 @end table
15235
15236 @anchor{vidstabdetect}
15237 @section vidstabdetect
15238
15239 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
15240 @ref{vidstabtransform} for pass 2.
15241
15242 This filter generates a file with relative translation and rotation
15243 transform information about subsequent frames, which is then used by
15244 the @ref{vidstabtransform} filter.
15245
15246 To enable compilation of this filter you need to configure FFmpeg with
15247 @code{--enable-libvidstab}.
15248
15249 This filter accepts the following options:
15250
15251 @table @option
15252 @item result
15253 Set the path to the file used to write the transforms information.
15254 Default value is @file{transforms.trf}.
15255
15256 @item shakiness
15257 Set how shaky the video is and how quick the camera is. It accepts an
15258 integer in the range 1-10, a value of 1 means little shakiness, a
15259 value of 10 means strong shakiness. Default value is 5.
15260
15261 @item accuracy
15262 Set the accuracy of the detection process. It must be a value in the
15263 range 1-15. A value of 1 means low accuracy, a value of 15 means high
15264 accuracy. Default value is 15.
15265
15266 @item stepsize
15267 Set stepsize of the search process. The region around minimum is
15268 scanned with 1 pixel resolution. Default value is 6.
15269
15270 @item mincontrast
15271 Set minimum contrast. Below this value a local measurement field is
15272 discarded. Must be a floating point value in the range 0-1. Default
15273 value is 0.3.
15274
15275 @item tripod
15276 Set reference frame number for tripod mode.
15277
15278 If enabled, the motion of the frames is compared to a reference frame
15279 in the filtered stream, identified by the specified number. The idea
15280 is to compensate all movements in a more-or-less static scene and keep
15281 the camera view absolutely still.
15282
15283 If set to 0, it is disabled. The frames are counted starting from 1.
15284
15285 @item show
15286 Show fields and transforms in the resulting frames. It accepts an
15287 integer in the range 0-2. Default value is 0, which disables any
15288 visualization.
15289 @end table
15290
15291 @subsection Examples
15292
15293 @itemize
15294 @item
15295 Use default values:
15296 @example
15297 vidstabdetect
15298 @end example
15299
15300 @item
15301 Analyze strongly shaky movie and put the results in file
15302 @file{mytransforms.trf}:
15303 @example
15304 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
15305 @end example
15306
15307 @item
15308 Visualize the result of internal transformations in the resulting
15309 video:
15310 @example
15311 vidstabdetect=show=1
15312 @end example
15313
15314 @item
15315 Analyze a video with medium shakiness using @command{ffmpeg}:
15316 @example
15317 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
15318 @end example
15319 @end itemize
15320
15321 @anchor{vidstabtransform}
15322 @section vidstabtransform
15323
15324 Video stabilization/deshaking: pass 2 of 2,
15325 see @ref{vidstabdetect} for pass 1.
15326
15327 Read a file with transform information for each frame and
15328 apply/compensate them. Together with the @ref{vidstabdetect}
15329 filter this can be used to deshake videos. See also
15330 @url{http://public.hronopik.de/vid.stab}. It is important to also use
15331 the @ref{unsharp} filter, see below.
15332
15333 To enable compilation of this filter you need to configure FFmpeg with
15334 @code{--enable-libvidstab}.
15335
15336 @subsection Options
15337
15338 @table @option
15339 @item input
15340 Set path to the file used to read the transforms. Default value is
15341 @file{transforms.trf}.
15342
15343 @item smoothing
15344 Set the number of frames (value*2 + 1) used for lowpass filtering the
15345 camera movements. Default value is 10.
15346
15347 For example a number of 10 means that 21 frames are used (10 in the
15348 past and 10 in the future) to smoothen the motion in the video. A
15349 larger value leads to a smoother video, but limits the acceleration of
15350 the camera (pan/tilt movements). 0 is a special case where a static
15351 camera is simulated.
15352
15353 @item optalgo
15354 Set the camera path optimization algorithm.
15355
15356 Accepted values are:
15357 @table @samp
15358 @item gauss
15359 gaussian kernel low-pass filter on camera motion (default)
15360 @item avg
15361 averaging on transformations
15362 @end table
15363
15364 @item maxshift
15365 Set maximal number of pixels to translate frames. Default value is -1,
15366 meaning no limit.
15367
15368 @item maxangle
15369 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
15370 value is -1, meaning no limit.
15371
15372 @item crop
15373 Specify how to deal with borders that may be visible due to movement
15374 compensation.
15375
15376 Available values are:
15377 @table @samp
15378 @item keep
15379 keep image information from previous frame (default)
15380 @item black
15381 fill the border black
15382 @end table
15383
15384 @item invert
15385 Invert transforms if set to 1. Default value is 0.
15386
15387 @item relative
15388 Consider transforms as relative to previous frame if set to 1,
15389 absolute if set to 0. Default value is 0.
15390
15391 @item zoom
15392 Set percentage to zoom. A positive value will result in a zoom-in
15393 effect, a negative value in a zoom-out effect. Default value is 0 (no
15394 zoom).
15395
15396 @item optzoom
15397 Set optimal zooming to avoid borders.
15398
15399 Accepted values are:
15400 @table @samp
15401 @item 0
15402 disabled
15403 @item 1
15404 optimal static zoom value is determined (only very strong movements
15405 will lead to visible borders) (default)
15406 @item 2
15407 optimal adaptive zoom value is determined (no borders will be
15408 visible), see @option{zoomspeed}
15409 @end table
15410
15411 Note that the value given at zoom is added to the one calculated here.
15412
15413 @item zoomspeed
15414 Set percent to zoom maximally each frame (enabled when
15415 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
15416 0.25.
15417
15418 @item interpol
15419 Specify type of interpolation.
15420
15421 Available values are:
15422 @table @samp
15423 @item no
15424 no interpolation
15425 @item linear
15426 linear only horizontal
15427 @item bilinear
15428 linear in both directions (default)
15429 @item bicubic
15430 cubic in both directions (slow)
15431 @end table
15432
15433 @item tripod
15434 Enable virtual tripod mode if set to 1, which is equivalent to
15435 @code{relative=0:smoothing=0}. Default value is 0.
15436
15437 Use also @code{tripod} option of @ref{vidstabdetect}.
15438
15439 @item debug
15440 Increase log verbosity if set to 1. Also the detected global motions
15441 are written to the temporary file @file{global_motions.trf}. Default
15442 value is 0.
15443 @end table
15444
15445 @subsection Examples
15446
15447 @itemize
15448 @item
15449 Use @command{ffmpeg} for a typical stabilization with default values:
15450 @example
15451 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
15452 @end example
15453
15454 Note the use of the @ref{unsharp} filter which is always recommended.
15455
15456 @item
15457 Zoom in a bit more and load transform data from a given file:
15458 @example
15459 vidstabtransform=zoom=5:input="mytransforms.trf"
15460 @end example
15461
15462 @item
15463 Smoothen the video even more:
15464 @example
15465 vidstabtransform=smoothing=30
15466 @end example
15467 @end itemize
15468
15469 @section vflip
15470
15471 Flip the input video vertically.
15472
15473 For example, to vertically flip a video with @command{ffmpeg}:
15474 @example
15475 ffmpeg -i in.avi -vf "vflip" out.avi
15476 @end example
15477
15478 @anchor{vignette}
15479 @section vignette
15480
15481 Make or reverse a natural vignetting effect.
15482
15483 The filter accepts the following options:
15484
15485 @table @option
15486 @item angle, a
15487 Set lens angle expression as a number of radians.
15488
15489 The value is clipped in the @code{[0,PI/2]} range.
15490
15491 Default value: @code{"PI/5"}
15492
15493 @item x0
15494 @item y0
15495 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
15496 by default.
15497
15498 @item mode
15499 Set forward/backward mode.
15500
15501 Available modes are:
15502 @table @samp
15503 @item forward
15504 The larger the distance from the central point, the darker the image becomes.
15505
15506 @item backward
15507 The larger the distance from the central point, the brighter the image becomes.
15508 This can be used to reverse a vignette effect, though there is no automatic
15509 detection to extract the lens @option{angle} and other settings (yet). It can
15510 also be used to create a burning effect.
15511 @end table
15512
15513 Default value is @samp{forward}.
15514
15515 @item eval
15516 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
15517
15518 It accepts the following values:
15519 @table @samp
15520 @item init
15521 Evaluate expressions only once during the filter initialization.
15522
15523 @item frame
15524 Evaluate expressions for each incoming frame. This is way slower than the
15525 @samp{init} mode since it requires all the scalers to be re-computed, but it
15526 allows advanced dynamic expressions.
15527 @end table
15528
15529 Default value is @samp{init}.
15530
15531 @item dither
15532 Set dithering to reduce the circular banding effects. Default is @code{1}
15533 (enabled).
15534
15535 @item aspect
15536 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
15537 Setting this value to the SAR of the input will make a rectangular vignetting
15538 following the dimensions of the video.
15539
15540 Default is @code{1/1}.
15541 @end table
15542
15543 @subsection Expressions
15544
15545 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
15546 following parameters.
15547
15548 @table @option
15549 @item w
15550 @item h
15551 input width and height
15552
15553 @item n
15554 the number of input frame, starting from 0
15555
15556 @item pts
15557 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
15558 @var{TB} units, NAN if undefined
15559
15560 @item r
15561 frame rate of the input video, NAN if the input frame rate is unknown
15562
15563 @item t
15564 the PTS (Presentation TimeStamp) of the filtered video frame,
15565 expressed in seconds, NAN if undefined
15566
15567 @item tb
15568 time base of the input video
15569 @end table
15570
15571
15572 @subsection Examples
15573
15574 @itemize
15575 @item
15576 Apply simple strong vignetting effect:
15577 @example
15578 vignette=PI/4
15579 @end example
15580
15581 @item
15582 Make a flickering vignetting:
15583 @example
15584 vignette='PI/4+random(1)*PI/50':eval=frame
15585 @end example
15586
15587 @end itemize
15588
15589 @section vmafmotion
15590
15591 Obtain the average vmaf motion score of a video.
15592 It is one of the component filters of VMAF.
15593
15594 The obtained average motion score is printed through the logging system.
15595
15596 In the below example the input file @file{ref.mpg} is being processed and score
15597 is computed.
15598
15599 @example
15600 ffmpeg -i ref.mpg -lavfi vmafmotion -f null -
15601 @end example
15602
15603 @section vstack
15604 Stack input videos vertically.
15605
15606 All streams must be of same pixel format and of same width.
15607
15608 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
15609 to create same output.
15610
15611 The filter accept the following option:
15612
15613 @table @option
15614 @item inputs
15615 Set number of input streams. Default is 2.
15616
15617 @item shortest
15618 If set to 1, force the output to terminate when the shortest input
15619 terminates. Default value is 0.
15620 @end table
15621
15622 @section w3fdif
15623
15624 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
15625 Deinterlacing Filter").
15626
15627 Based on the process described by Martin Weston for BBC R&D, and
15628 implemented based on the de-interlace algorithm written by Jim
15629 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
15630 uses filter coefficients calculated by BBC R&D.
15631
15632 There are two sets of filter coefficients, so called "simple":
15633 and "complex". Which set of filter coefficients is used can
15634 be set by passing an optional parameter:
15635
15636 @table @option
15637 @item filter
15638 Set the interlacing filter coefficients. Accepts one of the following values:
15639
15640 @table @samp
15641 @item simple
15642 Simple filter coefficient set.
15643 @item complex
15644 More-complex filter coefficient set.
15645 @end table
15646 Default value is @samp{complex}.
15647
15648 @item deint
15649 Specify which frames to deinterlace. Accept one of the following values:
15650
15651 @table @samp
15652 @item all
15653 Deinterlace all frames,
15654 @item interlaced
15655 Only deinterlace frames marked as interlaced.
15656 @end table
15657
15658 Default value is @samp{all}.
15659 @end table
15660
15661 @section waveform
15662 Video waveform monitor.
15663
15664 The waveform monitor plots color component intensity. By default luminance
15665 only. Each column of the waveform corresponds to a column of pixels in the
15666 source video.
15667
15668 It accepts the following options:
15669
15670 @table @option
15671 @item mode, m
15672 Can be either @code{row}, or @code{column}. Default is @code{column}.
15673 In row mode, the graph on the left side represents color component value 0 and
15674 the right side represents value = 255. In column mode, the top side represents
15675 color component value = 0 and bottom side represents value = 255.
15676
15677 @item intensity, i
15678 Set intensity. Smaller values are useful to find out how many values of the same
15679 luminance are distributed across input rows/columns.
15680 Default value is @code{0.04}. Allowed range is [0, 1].
15681
15682 @item mirror, r
15683 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
15684 In mirrored mode, higher values will be represented on the left
15685 side for @code{row} mode and at the top for @code{column} mode. Default is
15686 @code{1} (mirrored).
15687
15688 @item display, d
15689 Set display mode.
15690 It accepts the following values:
15691 @table @samp
15692 @item overlay
15693 Presents information identical to that in the @code{parade}, except
15694 that the graphs representing color components are superimposed directly
15695 over one another.
15696
15697 This display mode makes it easier to spot relative differences or similarities
15698 in overlapping areas of the color components that are supposed to be identical,
15699 such as neutral whites, grays, or blacks.
15700
15701 @item stack
15702 Display separate graph for the color components side by side in
15703 @code{row} mode or one below the other in @code{column} mode.
15704
15705 @item parade
15706 Display separate graph for the color components side by side in
15707 @code{column} mode or one below the other in @code{row} mode.
15708
15709 Using this display mode makes it easy to spot color casts in the highlights
15710 and shadows of an image, by comparing the contours of the top and the bottom
15711 graphs of each waveform. Since whites, grays, and blacks are characterized
15712 by exactly equal amounts of red, green, and blue, neutral areas of the picture
15713 should display three waveforms of roughly equal width/height. If not, the
15714 correction is easy to perform by making level adjustments the three waveforms.
15715 @end table
15716 Default is @code{stack}.
15717
15718 @item components, c
15719 Set which color components to display. Default is 1, which means only luminance
15720 or red color component if input is in RGB colorspace. If is set for example to
15721 7 it will display all 3 (if) available color components.
15722
15723 @item envelope, e
15724 @table @samp
15725 @item none
15726 No envelope, this is default.
15727
15728 @item instant
15729 Instant envelope, minimum and maximum values presented in graph will be easily
15730 visible even with small @code{step} value.
15731
15732 @item peak
15733 Hold minimum and maximum values presented in graph across time. This way you
15734 can still spot out of range values without constantly looking at waveforms.
15735
15736 @item peak+instant
15737 Peak and instant envelope combined together.
15738 @end table
15739
15740 @item filter, f
15741 @table @samp
15742 @item lowpass
15743 No filtering, this is default.
15744
15745 @item flat
15746 Luma and chroma combined together.
15747
15748 @item aflat
15749 Similar as above, but shows difference between blue and red chroma.
15750
15751 @item chroma
15752 Displays only chroma.
15753
15754 @item color
15755 Displays actual color value on waveform.
15756
15757 @item acolor
15758 Similar as above, but with luma showing frequency of chroma values.
15759 @end table
15760
15761 @item graticule, g
15762 Set which graticule to display.
15763
15764 @table @samp
15765 @item none
15766 Do not display graticule.
15767
15768 @item green
15769 Display green graticule showing legal broadcast ranges.
15770 @end table
15771
15772 @item opacity, o
15773 Set graticule opacity.
15774
15775 @item flags, fl
15776 Set graticule flags.
15777
15778 @table @samp
15779 @item numbers
15780 Draw numbers above lines. By default enabled.
15781
15782 @item dots
15783 Draw dots instead of lines.
15784 @end table
15785
15786 @item scale, s
15787 Set scale used for displaying graticule.
15788
15789 @table @samp
15790 @item digital
15791 @item millivolts
15792 @item ire
15793 @end table
15794 Default is digital.
15795
15796 @item bgopacity, b
15797 Set background opacity.
15798 @end table
15799
15800 @section weave, doubleweave
15801
15802 The @code{weave} takes a field-based video input and join
15803 each two sequential fields into single frame, producing a new double
15804 height clip with half the frame rate and half the frame count.
15805
15806 The @code{doubleweave} works same as @code{weave} but without
15807 halving frame rate and frame count.
15808
15809 It accepts the following option:
15810
15811 @table @option
15812 @item first_field
15813 Set first field. Available values are:
15814
15815 @table @samp
15816 @item top, t
15817 Set the frame as top-field-first.
15818
15819 @item bottom, b
15820 Set the frame as bottom-field-first.
15821 @end table
15822 @end table
15823
15824 @subsection Examples
15825
15826 @itemize
15827 @item
15828 Interlace video using @ref{select} and @ref{separatefields} filter:
15829 @example
15830 separatefields,select=eq(mod(n,4),0)+eq(mod(n,4),3),weave
15831 @end example
15832 @end itemize
15833
15834 @section xbr
15835 Apply the xBR high-quality magnification filter which is designed for pixel
15836 art. It follows a set of edge-detection rules, see
15837 @url{http://www.libretro.com/forums/viewtopic.php?f=6&t=134}.
15838
15839 It accepts the following option:
15840
15841 @table @option
15842 @item n
15843 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
15844 @code{3xBR} and @code{4} for @code{4xBR}.
15845 Default is @code{3}.
15846 @end table
15847
15848 @anchor{yadif}
15849 @section yadif
15850
15851 Deinterlace the input video ("yadif" means "yet another deinterlacing
15852 filter").
15853
15854 It accepts the following parameters:
15855
15856
15857 @table @option
15858
15859 @item mode
15860 The interlacing mode to adopt. It accepts one of the following values:
15861
15862 @table @option
15863 @item 0, send_frame
15864 Output one frame for each frame.
15865 @item 1, send_field
15866 Output one frame for each field.
15867 @item 2, send_frame_nospatial
15868 Like @code{send_frame}, but it skips the spatial interlacing check.
15869 @item 3, send_field_nospatial
15870 Like @code{send_field}, but it skips the spatial interlacing check.
15871 @end table
15872
15873 The default value is @code{send_frame}.
15874
15875 @item parity
15876 The picture field parity assumed for the input interlaced video. It accepts one
15877 of the following values:
15878
15879 @table @option
15880 @item 0, tff
15881 Assume the top field is first.
15882 @item 1, bff
15883 Assume the bottom field is first.
15884 @item -1, auto
15885 Enable automatic detection of field parity.
15886 @end table
15887
15888 The default value is @code{auto}.
15889 If the interlacing is unknown or the decoder does not export this information,
15890 top field first will be assumed.
15891
15892 @item deint
15893 Specify which frames to deinterlace. Accept one of the following
15894 values:
15895
15896 @table @option
15897 @item 0, all
15898 Deinterlace all frames.
15899 @item 1, interlaced
15900 Only deinterlace frames marked as interlaced.
15901 @end table
15902
15903 The default value is @code{all}.
15904 @end table
15905
15906 @section zoompan
15907
15908 Apply Zoom & Pan effect.
15909
15910 This filter accepts the following options:
15911
15912 @table @option
15913 @item zoom, z
15914 Set the zoom expression. Default is 1.
15915
15916 @item x
15917 @item y
15918 Set the x and y expression. Default is 0.
15919
15920 @item d
15921 Set the duration expression in number of frames.
15922 This sets for how many number of frames effect will last for
15923 single input image.
15924
15925 @item s
15926 Set the output image size, default is 'hd720'.
15927
15928 @item fps
15929 Set the output frame rate, default is '25'.
15930 @end table
15931
15932 Each expression can contain the following constants:
15933
15934 @table @option
15935 @item in_w, iw
15936 Input width.
15937
15938 @item in_h, ih
15939 Input height.
15940
15941 @item out_w, ow
15942 Output width.
15943
15944 @item out_h, oh
15945 Output height.
15946
15947 @item in
15948 Input frame count.
15949
15950 @item on
15951 Output frame count.
15952
15953 @item x
15954 @item y
15955 Last calculated 'x' and 'y' position from 'x' and 'y' expression
15956 for current input frame.
15957
15958 @item px
15959 @item py
15960 'x' and 'y' of last output frame of previous input frame or 0 when there was
15961 not yet such frame (first input frame).
15962
15963 @item zoom
15964 Last calculated zoom from 'z' expression for current input frame.
15965
15966 @item pzoom
15967 Last calculated zoom of last output frame of previous input frame.
15968
15969 @item duration
15970 Number of output frames for current input frame. Calculated from 'd' expression
15971 for each input frame.
15972
15973 @item pduration
15974 number of output frames created for previous input frame
15975
15976 @item a
15977 Rational number: input width / input height
15978
15979 @item sar
15980 sample aspect ratio
15981
15982 @item dar
15983 display aspect ratio
15984
15985 @end table
15986
15987 @subsection Examples
15988
15989 @itemize
15990 @item
15991 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
15992 @example
15993 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
15994 @end example
15995
15996 @item
15997 Zoom-in up to 1.5 and pan always at center of picture:
15998 @example
15999 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
16000 @end example
16001
16002 @item
16003 Same as above but without pausing:
16004 @example
16005 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
16006 @end example
16007 @end itemize
16008
16009 @anchor{zscale}
16010 @section zscale
16011 Scale (resize) the input video, using the z.lib library:
16012 https://github.com/sekrit-twc/zimg.
16013
16014 The zscale filter forces the output display aspect ratio to be the same
16015 as the input, by changing the output sample aspect ratio.
16016
16017 If the input image format is different from the format requested by
16018 the next filter, the zscale filter will convert the input to the
16019 requested format.
16020
16021 @subsection Options
16022 The filter accepts the following options.
16023
16024 @table @option
16025 @item width, w
16026 @item height, h
16027 Set the output video dimension expression. Default value is the input
16028 dimension.
16029
16030 If the @var{width} or @var{w} value is 0, the input width is used for
16031 the output. If the @var{height} or @var{h} value is 0, the input height
16032 is used for the output.
16033
16034 If one and only one of the values is -n with n >= 1, the zscale filter
16035 will use a value that maintains the aspect ratio of the input image,
16036 calculated from the other specified dimension. After that it will,
16037 however, make sure that the calculated dimension is divisible by n and
16038 adjust the value if necessary.
16039
16040 If both values are -n with n >= 1, the behavior will be identical to
16041 both values being set to 0 as previously detailed.
16042
16043 See below for the list of accepted constants for use in the dimension
16044 expression.
16045
16046 @item size, s
16047 Set the video size. For the syntax of this option, check the
16048 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16049
16050 @item dither, d
16051 Set the dither type.
16052
16053 Possible values are:
16054 @table @var
16055 @item none
16056 @item ordered
16057 @item random
16058 @item error_diffusion
16059 @end table
16060
16061 Default is none.
16062
16063 @item filter, f
16064 Set the resize filter type.
16065
16066 Possible values are:
16067 @table @var
16068 @item point
16069 @item bilinear
16070 @item bicubic
16071 @item spline16
16072 @item spline36
16073 @item lanczos
16074 @end table
16075
16076 Default is bilinear.
16077
16078 @item range, r
16079 Set the color range.
16080
16081 Possible values are:
16082 @table @var
16083 @item input
16084 @item limited
16085 @item full
16086 @end table
16087
16088 Default is same as input.
16089
16090 @item primaries, p
16091 Set the color primaries.
16092
16093 Possible values are:
16094 @table @var
16095 @item input
16096 @item 709
16097 @item unspecified
16098 @item 170m
16099 @item 240m
16100 @item 2020
16101 @end table
16102
16103 Default is same as input.
16104
16105 @item transfer, t
16106 Set the transfer characteristics.
16107
16108 Possible values are:
16109 @table @var
16110 @item input
16111 @item 709
16112 @item unspecified
16113 @item 601
16114 @item linear
16115 @item 2020_10
16116 @item 2020_12
16117 @item smpte2084
16118 @item iec61966-2-1
16119 @item arib-std-b67
16120 @end table
16121
16122 Default is same as input.
16123
16124 @item matrix, m
16125 Set the colorspace matrix.
16126
16127 Possible value are:
16128 @table @var
16129 @item input
16130 @item 709
16131 @item unspecified
16132 @item 470bg
16133 @item 170m
16134 @item 2020_ncl
16135 @item 2020_cl
16136 @end table
16137
16138 Default is same as input.
16139
16140 @item rangein, rin
16141 Set the input color range.
16142
16143 Possible values are:
16144 @table @var
16145 @item input
16146 @item limited
16147 @item full
16148 @end table
16149
16150 Default is same as input.
16151
16152 @item primariesin, pin
16153 Set the input color primaries.
16154
16155 Possible values are:
16156 @table @var
16157 @item input
16158 @item 709
16159 @item unspecified
16160 @item 170m
16161 @item 240m
16162 @item 2020
16163 @end table
16164
16165 Default is same as input.
16166
16167 @item transferin, tin
16168 Set the input transfer characteristics.
16169
16170 Possible values are:
16171 @table @var
16172 @item input
16173 @item 709
16174 @item unspecified
16175 @item 601
16176 @item linear
16177 @item 2020_10
16178 @item 2020_12
16179 @end table
16180
16181 Default is same as input.
16182
16183 @item matrixin, min
16184 Set the input colorspace matrix.
16185
16186 Possible value are:
16187 @table @var
16188 @item input
16189 @item 709
16190 @item unspecified
16191 @item 470bg
16192 @item 170m
16193 @item 2020_ncl
16194 @item 2020_cl
16195 @end table
16196
16197 @item chromal, c
16198 Set the output chroma location.
16199
16200 Possible values are:
16201 @table @var
16202 @item input
16203 @item left
16204 @item center
16205 @item topleft
16206 @item top
16207 @item bottomleft
16208 @item bottom
16209 @end table
16210
16211 @item chromalin, cin
16212 Set the input chroma location.
16213
16214 Possible values are:
16215 @table @var
16216 @item input
16217 @item left
16218 @item center
16219 @item topleft
16220 @item top
16221 @item bottomleft
16222 @item bottom
16223 @end table
16224
16225 @item npl
16226 Set the nominal peak luminance.
16227 @end table
16228
16229 The values of the @option{w} and @option{h} options are expressions
16230 containing the following constants:
16231
16232 @table @var
16233 @item in_w
16234 @item in_h
16235 The input width and height
16236
16237 @item iw
16238 @item ih
16239 These are the same as @var{in_w} and @var{in_h}.
16240
16241 @item out_w
16242 @item out_h
16243 The output (scaled) width and height
16244
16245 @item ow
16246 @item oh
16247 These are the same as @var{out_w} and @var{out_h}
16248
16249 @item a
16250 The same as @var{iw} / @var{ih}
16251
16252 @item sar
16253 input sample aspect ratio
16254
16255 @item dar
16256 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
16257
16258 @item hsub
16259 @item vsub
16260 horizontal and vertical input chroma subsample values. For example for the
16261 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16262
16263 @item ohsub
16264 @item ovsub
16265 horizontal and vertical output chroma subsample values. For example for the
16266 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
16267 @end table
16268
16269 @table @option
16270 @end table
16271
16272 @c man end VIDEO FILTERS
16273
16274 @chapter Video Sources
16275 @c man begin VIDEO SOURCES
16276
16277 Below is a description of the currently available video sources.
16278
16279 @section buffer
16280
16281 Buffer video frames, and make them available to the filter chain.
16282
16283 This source is mainly intended for a programmatic use, in particular
16284 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
16285
16286 It accepts the following parameters:
16287
16288 @table @option
16289
16290 @item video_size
16291 Specify the size (width and height) of the buffered video frames. For the
16292 syntax of this option, check the
16293 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16294
16295 @item width
16296 The input video width.
16297
16298 @item height
16299 The input video height.
16300
16301 @item pix_fmt
16302 A string representing the pixel format of the buffered video frames.
16303 It may be a number corresponding to a pixel format, or a pixel format
16304 name.
16305
16306 @item time_base
16307 Specify the timebase assumed by the timestamps of the buffered frames.
16308
16309 @item frame_rate
16310 Specify the frame rate expected for the video stream.
16311
16312 @item pixel_aspect, sar
16313 The sample (pixel) aspect ratio of the input video.
16314
16315 @item sws_param
16316 Specify the optional parameters to be used for the scale filter which
16317 is automatically inserted when an input change is detected in the
16318 input size or format.
16319
16320 @item hw_frames_ctx
16321 When using a hardware pixel format, this should be a reference to an
16322 AVHWFramesContext describing input frames.
16323 @end table
16324
16325 For example:
16326 @example
16327 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
16328 @end example
16329
16330 will instruct the source to accept video frames with size 320x240 and
16331 with format "yuv410p", assuming 1/24 as the timestamps timebase and
16332 square pixels (1:1 sample aspect ratio).
16333 Since the pixel format with name "yuv410p" corresponds to the number 6
16334 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
16335 this example corresponds to:
16336 @example
16337 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
16338 @end example
16339
16340 Alternatively, the options can be specified as a flat string, but this
16341 syntax is deprecated:
16342
16343 @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}]
16344
16345 @section cellauto
16346
16347 Create a pattern generated by an elementary cellular automaton.
16348
16349 The initial state of the cellular automaton can be defined through the
16350 @option{filename} and @option{pattern} options. If such options are
16351 not specified an initial state is created randomly.
16352
16353 At each new frame a new row in the video is filled with the result of
16354 the cellular automaton next generation. The behavior when the whole
16355 frame is filled is defined by the @option{scroll} option.
16356
16357 This source accepts the following options:
16358
16359 @table @option
16360 @item filename, f
16361 Read the initial cellular automaton state, i.e. the starting row, from
16362 the specified file.
16363 In the file, each non-whitespace character is considered an alive
16364 cell, a newline will terminate the row, and further characters in the
16365 file will be ignored.
16366
16367 @item pattern, p
16368 Read the initial cellular automaton state, i.e. the starting row, from
16369 the specified string.
16370
16371 Each non-whitespace character in the string is considered an alive
16372 cell, a newline will terminate the row, and further characters in the
16373 string will be ignored.
16374
16375 @item rate, r
16376 Set the video rate, that is the number of frames generated per second.
16377 Default is 25.
16378
16379 @item random_fill_ratio, ratio
16380 Set the random fill ratio for the initial cellular automaton row. It
16381 is a floating point number value ranging from 0 to 1, defaults to
16382 1/PHI.
16383
16384 This option is ignored when a file or a pattern is specified.
16385
16386 @item random_seed, seed
16387 Set the seed for filling randomly the initial row, must be an integer
16388 included between 0 and UINT32_MAX. If not specified, or if explicitly
16389 set to -1, the filter will try to use a good random seed on a best
16390 effort basis.
16391
16392 @item rule
16393 Set the cellular automaton rule, it is a number ranging from 0 to 255.
16394 Default value is 110.
16395
16396 @item size, s
16397 Set the size of the output video. For the syntax of this option, check the
16398 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16399
16400 If @option{filename} or @option{pattern} is specified, the size is set
16401 by default to the width of the specified initial state row, and the
16402 height is set to @var{width} * PHI.
16403
16404 If @option{size} is set, it must contain the width of the specified
16405 pattern string, and the specified pattern will be centered in the
16406 larger row.
16407
16408 If a filename or a pattern string is not specified, the size value
16409 defaults to "320x518" (used for a randomly generated initial state).
16410
16411 @item scroll
16412 If set to 1, scroll the output upward when all the rows in the output
16413 have been already filled. If set to 0, the new generated row will be
16414 written over the top row just after the bottom row is filled.
16415 Defaults to 1.
16416
16417 @item start_full, full
16418 If set to 1, completely fill the output with generated rows before
16419 outputting the first frame.
16420 This is the default behavior, for disabling set the value to 0.
16421
16422 @item stitch
16423 If set to 1, stitch the left and right row edges together.
16424 This is the default behavior, for disabling set the value to 0.
16425 @end table
16426
16427 @subsection Examples
16428
16429 @itemize
16430 @item
16431 Read the initial state from @file{pattern}, and specify an output of
16432 size 200x400.
16433 @example
16434 cellauto=f=pattern:s=200x400
16435 @end example
16436
16437 @item
16438 Generate a random initial row with a width of 200 cells, with a fill
16439 ratio of 2/3:
16440 @example
16441 cellauto=ratio=2/3:s=200x200
16442 @end example
16443
16444 @item
16445 Create a pattern generated by rule 18 starting by a single alive cell
16446 centered on an initial row with width 100:
16447 @example
16448 cellauto=p=@@:s=100x400:full=0:rule=18
16449 @end example
16450
16451 @item
16452 Specify a more elaborated initial pattern:
16453 @example
16454 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
16455 @end example
16456
16457 @end itemize
16458
16459 @anchor{coreimagesrc}
16460 @section coreimagesrc
16461 Video source generated on GPU using Apple's CoreImage API on OSX.
16462
16463 This video source is a specialized version of the @ref{coreimage} video filter.
16464 Use a core image generator at the beginning of the applied filterchain to
16465 generate the content.
16466
16467 The coreimagesrc video source accepts the following options:
16468 @table @option
16469 @item list_generators
16470 List all available generators along with all their respective options as well as
16471 possible minimum and maximum values along with the default values.
16472 @example
16473 list_generators=true
16474 @end example
16475
16476 @item size, s
16477 Specify the size of the sourced video. For the syntax of this option, check the
16478 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16479 The default value is @code{320x240}.
16480
16481 @item rate, r
16482 Specify the frame rate of the sourced video, as the number of frames
16483 generated per second. It has to be a string in the format
16484 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
16485 number or a valid video frame rate abbreviation. The default value is
16486 "25".
16487
16488 @item sar
16489 Set the sample aspect ratio of the sourced video.
16490
16491 @item duration, d
16492 Set the duration of the sourced video. See
16493 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
16494 for the accepted syntax.
16495
16496 If not specified, or the expressed duration is negative, the video is
16497 supposed to be generated forever.
16498 @end table
16499
16500 Additionally, all options of the @ref{coreimage} video filter are accepted.
16501 A complete filterchain can be used for further processing of the
16502 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
16503 and examples for details.
16504
16505 @subsection Examples
16506
16507 @itemize
16508
16509 @item
16510 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
16511 given as complete and escaped command-line for Apple's standard bash shell:
16512 @example
16513 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
16514 @end example
16515 This example is equivalent to the QRCode example of @ref{coreimage} without the
16516 need for a nullsrc video source.
16517 @end itemize
16518
16519
16520 @section mandelbrot
16521
16522 Generate a Mandelbrot set fractal, and progressively zoom towards the
16523 point specified with @var{start_x} and @var{start_y}.
16524
16525 This source accepts the following options:
16526
16527 @table @option
16528
16529 @item end_pts
16530 Set the terminal pts value. Default value is 400.
16531
16532 @item end_scale
16533 Set the terminal scale value.
16534 Must be a floating point value. Default value is 0.3.
16535
16536 @item inner
16537 Set the inner coloring mode, that is the algorithm used to draw the
16538 Mandelbrot fractal internal region.
16539
16540 It shall assume one of the following values:
16541 @table @option
16542 @item black
16543 Set black mode.
16544 @item convergence
16545 Show time until convergence.
16546 @item mincol
16547 Set color based on point closest to the origin of the iterations.
16548 @item period
16549 Set period mode.
16550 @end table
16551
16552 Default value is @var{mincol}.
16553
16554 @item bailout
16555 Set the bailout value. Default value is 10.0.
16556
16557 @item maxiter
16558 Set the maximum of iterations performed by the rendering
16559 algorithm. Default value is 7189.
16560
16561 @item outer
16562 Set outer coloring mode.
16563 It shall assume one of following values:
16564 @table @option
16565 @item iteration_count
16566 Set iteration cound mode.
16567 @item normalized_iteration_count
16568 set normalized iteration count mode.
16569 @end table
16570 Default value is @var{normalized_iteration_count}.
16571
16572 @item rate, r
16573 Set frame rate, expressed as number of frames per second. Default
16574 value is "25".
16575
16576 @item size, s
16577 Set frame size. For the syntax of this option, check the "Video
16578 size" section in the ffmpeg-utils manual. Default value is "640x480".
16579
16580 @item start_scale
16581 Set the initial scale value. Default value is 3.0.
16582
16583 @item start_x
16584 Set the initial x position. Must be a floating point value between
16585 -100 and 100. Default value is -0.743643887037158704752191506114774.
16586
16587 @item start_y
16588 Set the initial y position. Must be a floating point value between
16589 -100 and 100. Default value is -0.131825904205311970493132056385139.
16590 @end table
16591
16592 @section mptestsrc
16593
16594 Generate various test patterns, as generated by the MPlayer test filter.
16595
16596 The size of the generated video is fixed, and is 256x256.
16597 This source is useful in particular for testing encoding features.
16598
16599 This source accepts the following options:
16600
16601 @table @option
16602
16603 @item rate, r
16604 Specify the frame rate of the sourced video, as the number of frames
16605 generated per second. It has to be a string in the format
16606 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
16607 number or a valid video frame rate abbreviation. The default value is
16608 "25".
16609
16610 @item duration, d
16611 Set the duration of the sourced video. See
16612 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
16613 for the accepted syntax.
16614
16615 If not specified, or the expressed duration is negative, the video is
16616 supposed to be generated forever.
16617
16618 @item test, t
16619
16620 Set the number or the name of the test to perform. Supported tests are:
16621 @table @option
16622 @item dc_luma
16623 @item dc_chroma
16624 @item freq_luma
16625 @item freq_chroma
16626 @item amp_luma
16627 @item amp_chroma
16628 @item cbp
16629 @item mv
16630 @item ring1
16631 @item ring2
16632 @item all
16633
16634 @end table
16635
16636 Default value is "all", which will cycle through the list of all tests.
16637 @end table
16638
16639 Some examples:
16640 @example
16641 mptestsrc=t=dc_luma
16642 @end example
16643
16644 will generate a "dc_luma" test pattern.
16645
16646 @section frei0r_src
16647
16648 Provide a frei0r source.
16649
16650 To enable compilation of this filter you need to install the frei0r
16651 header and configure FFmpeg with @code{--enable-frei0r}.
16652
16653 This source accepts the following parameters:
16654
16655 @table @option
16656
16657 @item size
16658 The size of the video to generate. For the syntax of this option, check the
16659 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16660
16661 @item framerate
16662 The framerate of the generated video. It may be a string of the form
16663 @var{num}/@var{den} or a frame rate abbreviation.
16664
16665 @item filter_name
16666 The name to the frei0r source to load. For more information regarding frei0r and
16667 how to set the parameters, read the @ref{frei0r} section in the video filters
16668 documentation.
16669
16670 @item filter_params
16671 A '|'-separated list of parameters to pass to the frei0r source.
16672
16673 @end table
16674
16675 For example, to generate a frei0r partik0l source with size 200x200
16676 and frame rate 10 which is overlaid on the overlay filter main input:
16677 @example
16678 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
16679 @end example
16680
16681 @section life
16682
16683 Generate a life pattern.
16684
16685 This source is based on a generalization of John Conway's life game.
16686
16687 The sourced input represents a life grid, each pixel represents a cell
16688 which can be in one of two possible states, alive or dead. Every cell
16689 interacts with its eight neighbours, which are the cells that are
16690 horizontally, vertically, or diagonally adjacent.
16691
16692 At each interaction the grid evolves according to the adopted rule,
16693 which specifies the number of neighbor alive cells which will make a
16694 cell stay alive or born. The @option{rule} option allows one to specify
16695 the rule to adopt.
16696
16697 This source accepts the following options:
16698
16699 @table @option
16700 @item filename, f
16701 Set the file from which to read the initial grid state. In the file,
16702 each non-whitespace character is considered an alive cell, and newline
16703 is used to delimit the end of each row.
16704
16705 If this option is not specified, the initial grid is generated
16706 randomly.
16707
16708 @item rate, r
16709 Set the video rate, that is the number of frames generated per second.
16710 Default is 25.
16711
16712 @item random_fill_ratio, ratio
16713 Set the random fill ratio for the initial random grid. It is a
16714 floating point number value ranging from 0 to 1, defaults to 1/PHI.
16715 It is ignored when a file is specified.
16716
16717 @item random_seed, seed
16718 Set the seed for filling the initial random grid, must be an integer
16719 included between 0 and UINT32_MAX. If not specified, or if explicitly
16720 set to -1, the filter will try to use a good random seed on a best
16721 effort basis.
16722
16723 @item rule
16724 Set the life rule.
16725
16726 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
16727 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
16728 @var{NS} specifies the number of alive neighbor cells which make a
16729 live cell stay alive, and @var{NB} the number of alive neighbor cells
16730 which make a dead cell to become alive (i.e. to "born").
16731 "s" and "b" can be used in place of "S" and "B", respectively.
16732
16733 Alternatively a rule can be specified by an 18-bits integer. The 9
16734 high order bits are used to encode the next cell state if it is alive
16735 for each number of neighbor alive cells, the low order bits specify
16736 the rule for "borning" new cells. Higher order bits encode for an
16737 higher number of neighbor cells.
16738 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
16739 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
16740
16741 Default value is "S23/B3", which is the original Conway's game of life
16742 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
16743 cells, and will born a new cell if there are three alive cells around
16744 a dead cell.
16745
16746 @item size, s
16747 Set the size of the output video. For the syntax of this option, check the
16748 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16749
16750 If @option{filename} is specified, the size is set by default to the
16751 same size of the input file. If @option{size} is set, it must contain
16752 the size specified in the input file, and the initial grid defined in
16753 that file is centered in the larger resulting area.
16754
16755 If a filename is not specified, the size value defaults to "320x240"
16756 (used for a randomly generated initial grid).
16757
16758 @item stitch
16759 If set to 1, stitch the left and right grid edges together, and the
16760 top and bottom edges also. Defaults to 1.
16761
16762 @item mold
16763 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
16764 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
16765 value from 0 to 255.
16766
16767 @item life_color
16768 Set the color of living (or new born) cells.
16769
16770 @item death_color
16771 Set the color of dead cells. If @option{mold} is set, this is the first color
16772 used to represent a dead cell.
16773
16774 @item mold_color
16775 Set mold color, for definitely dead and moldy cells.
16776
16777 For the syntax of these 3 color options, check the "Color" section in the
16778 ffmpeg-utils manual.
16779 @end table
16780
16781 @subsection Examples
16782
16783 @itemize
16784 @item
16785 Read a grid from @file{pattern}, and center it on a grid of size
16786 300x300 pixels:
16787 @example
16788 life=f=pattern:s=300x300
16789 @end example
16790
16791 @item
16792 Generate a random grid of size 200x200, with a fill ratio of 2/3:
16793 @example
16794 life=ratio=2/3:s=200x200
16795 @end example
16796
16797 @item
16798 Specify a custom rule for evolving a randomly generated grid:
16799 @example
16800 life=rule=S14/B34
16801 @end example
16802
16803 @item
16804 Full example with slow death effect (mold) using @command{ffplay}:
16805 @example
16806 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
16807 @end example
16808 @end itemize
16809
16810 @anchor{allrgb}
16811 @anchor{allyuv}
16812 @anchor{color}
16813 @anchor{haldclutsrc}
16814 @anchor{nullsrc}
16815 @anchor{rgbtestsrc}
16816 @anchor{smptebars}
16817 @anchor{smptehdbars}
16818 @anchor{testsrc}
16819 @anchor{testsrc2}
16820 @anchor{yuvtestsrc}
16821 @section allrgb, allyuv, color, haldclutsrc, nullsrc, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
16822
16823 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
16824
16825 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
16826
16827 The @code{color} source provides an uniformly colored input.
16828
16829 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
16830 @ref{haldclut} filter.
16831
16832 The @code{nullsrc} source returns unprocessed video frames. It is
16833 mainly useful to be employed in analysis / debugging tools, or as the
16834 source for filters which ignore the input data.
16835
16836 The @code{rgbtestsrc} source generates an RGB test pattern useful for
16837 detecting RGB vs BGR issues. You should see a red, green and blue
16838 stripe from top to bottom.
16839
16840 The @code{smptebars} source generates a color bars pattern, based on
16841 the SMPTE Engineering Guideline EG 1-1990.
16842
16843 The @code{smptehdbars} source generates a color bars pattern, based on
16844 the SMPTE RP 219-2002.
16845
16846 The @code{testsrc} source generates a test video pattern, showing a
16847 color pattern, a scrolling gradient and a timestamp. This is mainly
16848 intended for testing purposes.
16849
16850 The @code{testsrc2} source is similar to testsrc, but supports more
16851 pixel formats instead of just @code{rgb24}. This allows using it as an
16852 input for other tests without requiring a format conversion.
16853
16854 The @code{yuvtestsrc} source generates an YUV test pattern. You should
16855 see a y, cb and cr stripe from top to bottom.
16856
16857 The sources accept the following parameters:
16858
16859 @table @option
16860
16861 @item alpha
16862 Specify the alpha (opacity) of the background, only available in the
16863 @code{testsrc2} source. The value must be between 0 (fully transparent) and
16864 255 (fully opaque, the default).
16865
16866 @item color, c
16867 Specify the color of the source, only available in the @code{color}
16868 source. For the syntax of this option, check the "Color" section in the
16869 ffmpeg-utils manual.
16870
16871 @item level
16872 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
16873 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
16874 pixels to be used as identity matrix for 3D lookup tables. Each component is
16875 coded on a @code{1/(N*N)} scale.
16876
16877 @item size, s
16878 Specify the size of the sourced video. For the syntax of this option, check the
16879 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16880 The default value is @code{320x240}.
16881
16882 This option is not available with the @code{haldclutsrc} filter.
16883
16884 @item rate, r
16885 Specify the frame rate of the sourced video, as the number of frames
16886 generated per second. It has to be a string in the format
16887 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
16888 number or a valid video frame rate abbreviation. The default value is
16889 "25".
16890
16891 @item sar
16892 Set the sample aspect ratio of the sourced video.
16893
16894 @item duration, d
16895 Set the duration of the sourced video. See
16896 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
16897 for the accepted syntax.
16898
16899 If not specified, or the expressed duration is negative, the video is
16900 supposed to be generated forever.
16901
16902 @item decimals, n
16903 Set the number of decimals to show in the timestamp, only available in the
16904 @code{testsrc} source.
16905
16906 The displayed timestamp value will correspond to the original
16907 timestamp value multiplied by the power of 10 of the specified
16908 value. Default value is 0.
16909 @end table
16910
16911 For example the following:
16912 @example
16913 testsrc=duration=5.3:size=qcif:rate=10
16914 @end example
16915
16916 will generate a video with a duration of 5.3 seconds, with size
16917 176x144 and a frame rate of 10 frames per second.
16918
16919 The following graph description will generate a red source
16920 with an opacity of 0.2, with size "qcif" and a frame rate of 10
16921 frames per second.
16922 @example
16923 color=c=red@@0.2:s=qcif:r=10
16924 @end example
16925
16926 If the input content is to be ignored, @code{nullsrc} can be used. The
16927 following command generates noise in the luminance plane by employing
16928 the @code{geq} filter:
16929 @example
16930 nullsrc=s=256x256, geq=random(1)*255:128:128
16931 @end example
16932
16933 @subsection Commands
16934
16935 The @code{color} source supports the following commands:
16936
16937 @table @option
16938 @item c, color
16939 Set the color of the created image. Accepts the same syntax of the
16940 corresponding @option{color} option.
16941 @end table
16942
16943 @c man end VIDEO SOURCES
16944
16945 @chapter Video Sinks
16946 @c man begin VIDEO SINKS
16947
16948 Below is a description of the currently available video sinks.
16949
16950 @section buffersink
16951
16952 Buffer video frames, and make them available to the end of the filter
16953 graph.
16954
16955 This sink is mainly intended for programmatic use, in particular
16956 through the interface defined in @file{libavfilter/buffersink.h}
16957 or the options system.
16958
16959 It accepts a pointer to an AVBufferSinkContext structure, which
16960 defines the incoming buffers' formats, to be passed as the opaque
16961 parameter to @code{avfilter_init_filter} for initialization.
16962
16963 @section nullsink
16964
16965 Null video sink: do absolutely nothing with the input video. It is
16966 mainly useful as a template and for use in analysis / debugging
16967 tools.
16968
16969 @c man end VIDEO SINKS
16970
16971 @chapter Multimedia Filters
16972 @c man begin MULTIMEDIA FILTERS
16973
16974 Below is a description of the currently available multimedia filters.
16975
16976 @section abitscope
16977
16978 Convert input audio to a video output, displaying the audio bit scope.
16979
16980 The filter accepts the following options:
16981
16982 @table @option
16983 @item rate, r
16984 Set frame rate, expressed as number of frames per second. Default
16985 value is "25".
16986
16987 @item size, s
16988 Specify the video size for the output. For the syntax of this option, check the
16989 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16990 Default value is @code{1024x256}.
16991
16992 @item colors
16993 Specify list of colors separated by space or by '|' which will be used to
16994 draw channels. Unrecognized or missing colors will be replaced
16995 by white color.
16996 @end table
16997
16998 @section ahistogram
16999
17000 Convert input audio to a video output, displaying the volume histogram.
17001
17002 The filter accepts the following options:
17003
17004 @table @option
17005 @item dmode
17006 Specify how histogram is calculated.
17007
17008 It accepts the following values:
17009 @table @samp
17010 @item single
17011 Use single histogram for all channels.
17012 @item separate
17013 Use separate histogram for each channel.
17014 @end table
17015 Default is @code{single}.
17016
17017 @item rate, r
17018 Set frame rate, expressed as number of frames per second. Default
17019 value is "25".
17020
17021 @item size, s
17022 Specify the video size for the output. For the syntax of this option, check the
17023 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17024 Default value is @code{hd720}.
17025
17026 @item scale
17027 Set display scale.
17028
17029 It accepts the following values:
17030 @table @samp
17031 @item log
17032 logarithmic
17033 @item sqrt
17034 square root
17035 @item cbrt
17036 cubic root
17037 @item lin
17038 linear
17039 @item rlog
17040 reverse logarithmic
17041 @end table
17042 Default is @code{log}.
17043
17044 @item ascale
17045 Set amplitude scale.
17046
17047 It accepts the following values:
17048 @table @samp
17049 @item log
17050 logarithmic
17051 @item lin
17052 linear
17053 @end table
17054 Default is @code{log}.
17055
17056 @item acount
17057 Set how much frames to accumulate in histogram.
17058 Defauls is 1. Setting this to -1 accumulates all frames.
17059
17060 @item rheight
17061 Set histogram ratio of window height.
17062
17063 @item slide
17064 Set sonogram sliding.
17065
17066 It accepts the following values:
17067 @table @samp
17068 @item replace
17069 replace old rows with new ones.
17070 @item scroll
17071 scroll from top to bottom.
17072 @end table
17073 Default is @code{replace}.
17074 @end table
17075
17076 @section aphasemeter
17077
17078 Convert input audio to a video output, displaying the audio phase.
17079
17080 The filter accepts the following options:
17081
17082 @table @option
17083 @item rate, r
17084 Set the output frame rate. Default value is @code{25}.
17085
17086 @item size, s
17087 Set the video size for the output. For the syntax of this option, check the
17088 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17089 Default value is @code{800x400}.
17090
17091 @item rc
17092 @item gc
17093 @item bc
17094 Specify the red, green, blue contrast. Default values are @code{2},
17095 @code{7} and @code{1}.
17096 Allowed range is @code{[0, 255]}.
17097
17098 @item mpc
17099 Set color which will be used for drawing median phase. If color is
17100 @code{none} which is default, no median phase value will be drawn.
17101
17102 @item video
17103 Enable video output. Default is enabled.
17104 @end table
17105
17106 The filter also exports the frame metadata @code{lavfi.aphasemeter.phase} which
17107 represents mean phase of current audio frame. Value is in range @code{[-1, 1]}.
17108 The @code{-1} means left and right channels are completely out of phase and
17109 @code{1} means channels are in phase.
17110
17111 @section avectorscope
17112
17113 Convert input audio to a video output, representing the audio vector
17114 scope.
17115
17116 The filter is used to measure the difference between channels of stereo
17117 audio stream. A monoaural signal, consisting of identical left and right
17118 signal, results in straight vertical line. Any stereo separation is visible
17119 as a deviation from this line, creating a Lissajous figure.
17120 If the straight (or deviation from it) but horizontal line appears this
17121 indicates that the left and right channels are out of phase.
17122
17123 The filter accepts the following options:
17124
17125 @table @option
17126 @item mode, m
17127 Set the vectorscope mode.
17128
17129 Available values are:
17130 @table @samp
17131 @item lissajous
17132 Lissajous rotated by 45 degrees.
17133
17134 @item lissajous_xy
17135 Same as above but not rotated.
17136
17137 @item polar
17138 Shape resembling half of circle.
17139 @end table
17140
17141 Default value is @samp{lissajous}.
17142
17143 @item size, s
17144 Set the video size for the output. For the syntax of this option, check the
17145 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17146 Default value is @code{400x400}.
17147
17148 @item rate, r
17149 Set the output frame rate. Default value is @code{25}.
17150
17151 @item rc
17152 @item gc
17153 @item bc
17154 @item ac
17155 Specify the red, green, blue and alpha contrast. Default values are @code{40},
17156 @code{160}, @code{80} and @code{255}.
17157 Allowed range is @code{[0, 255]}.
17158
17159 @item rf
17160 @item gf
17161 @item bf
17162 @item af
17163 Specify the red, green, blue and alpha fade. Default values are @code{15},
17164 @code{10}, @code{5} and @code{5}.
17165 Allowed range is @code{[0, 255]}.
17166
17167 @item zoom
17168 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[0, 10]}.
17169 Values lower than @var{1} will auto adjust zoom factor to maximal possible value.
17170
17171 @item draw
17172 Set the vectorscope drawing mode.
17173
17174 Available values are:
17175 @table @samp
17176 @item dot
17177 Draw dot for each sample.
17178
17179 @item line
17180 Draw line between previous and current sample.
17181 @end table
17182
17183 Default value is @samp{dot}.
17184
17185 @item scale
17186 Specify amplitude scale of audio samples.
17187
17188 Available values are:
17189 @table @samp
17190 @item lin
17191 Linear.
17192
17193 @item sqrt
17194 Square root.
17195
17196 @item cbrt
17197 Cubic root.
17198
17199 @item log
17200 Logarithmic.
17201 @end table
17202
17203 @end table
17204
17205 @subsection Examples
17206
17207 @itemize
17208 @item
17209 Complete example using @command{ffplay}:
17210 @example
17211 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
17212              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
17213 @end example
17214 @end itemize
17215
17216 @section bench, abench
17217
17218 Benchmark part of a filtergraph.
17219
17220 The filter accepts the following options:
17221
17222 @table @option
17223 @item action
17224 Start or stop a timer.
17225
17226 Available values are:
17227 @table @samp
17228 @item start
17229 Get the current time, set it as frame metadata (using the key
17230 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
17231
17232 @item stop
17233 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
17234 the input frame metadata to get the time difference. Time difference, average,
17235 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
17236 @code{min}) are then printed. The timestamps are expressed in seconds.
17237 @end table
17238 @end table
17239
17240 @subsection Examples
17241
17242 @itemize
17243 @item
17244 Benchmark @ref{selectivecolor} filter:
17245 @example
17246 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
17247 @end example
17248 @end itemize
17249
17250 @section concat
17251
17252 Concatenate audio and video streams, joining them together one after the
17253 other.
17254
17255 The filter works on segments of synchronized video and audio streams. All
17256 segments must have the same number of streams of each type, and that will
17257 also be the number of streams at output.
17258
17259 The filter accepts the following options:
17260
17261 @table @option
17262
17263 @item n
17264 Set the number of segments. Default is 2.
17265
17266 @item v
17267 Set the number of output video streams, that is also the number of video
17268 streams in each segment. Default is 1.
17269
17270 @item a
17271 Set the number of output audio streams, that is also the number of audio
17272 streams in each segment. Default is 0.
17273
17274 @item unsafe
17275 Activate unsafe mode: do not fail if segments have a different format.
17276
17277 @end table
17278
17279 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
17280 @var{a} audio outputs.
17281
17282 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
17283 segment, in the same order as the outputs, then the inputs for the second
17284 segment, etc.
17285
17286 Related streams do not always have exactly the same duration, for various
17287 reasons including codec frame size or sloppy authoring. For that reason,
17288 related synchronized streams (e.g. a video and its audio track) should be
17289 concatenated at once. The concat filter will use the duration of the longest
17290 stream in each segment (except the last one), and if necessary pad shorter
17291 audio streams with silence.
17292
17293 For this filter to work correctly, all segments must start at timestamp 0.
17294
17295 All corresponding streams must have the same parameters in all segments; the
17296 filtering system will automatically select a common pixel format for video
17297 streams, and a common sample format, sample rate and channel layout for
17298 audio streams, but other settings, such as resolution, must be converted
17299 explicitly by the user.
17300
17301 Different frame rates are acceptable but will result in variable frame rate
17302 at output; be sure to configure the output file to handle it.
17303
17304 @subsection Examples
17305
17306 @itemize
17307 @item
17308 Concatenate an opening, an episode and an ending, all in bilingual version
17309 (video in stream 0, audio in streams 1 and 2):
17310 @example
17311 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
17312   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
17313    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
17314   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
17315 @end example
17316
17317 @item
17318 Concatenate two parts, handling audio and video separately, using the
17319 (a)movie sources, and adjusting the resolution:
17320 @example
17321 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
17322 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
17323 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
17324 @end example
17325 Note that a desync will happen at the stitch if the audio and video streams
17326 do not have exactly the same duration in the first file.
17327
17328 @end itemize
17329
17330 @section drawgraph, adrawgraph
17331
17332 Draw a graph using input video or audio metadata.
17333
17334 It accepts the following parameters:
17335
17336 @table @option
17337 @item m1
17338 Set 1st frame metadata key from which metadata values will be used to draw a graph.
17339
17340 @item fg1
17341 Set 1st foreground color expression.
17342
17343 @item m2
17344 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
17345
17346 @item fg2
17347 Set 2nd foreground color expression.
17348
17349 @item m3
17350 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
17351
17352 @item fg3
17353 Set 3rd foreground color expression.
17354
17355 @item m4
17356 Set 4th frame metadata key from which metadata values will be used to draw a graph.
17357
17358 @item fg4
17359 Set 4th foreground color expression.
17360
17361 @item min
17362 Set minimal value of metadata value.
17363
17364 @item max
17365 Set maximal value of metadata value.
17366
17367 @item bg
17368 Set graph background color. Default is white.
17369
17370 @item mode
17371 Set graph mode.
17372
17373 Available values for mode is:
17374 @table @samp
17375 @item bar
17376 @item dot
17377 @item line
17378 @end table
17379
17380 Default is @code{line}.
17381
17382 @item slide
17383 Set slide mode.
17384
17385 Available values for slide is:
17386 @table @samp
17387 @item frame
17388 Draw new frame when right border is reached.
17389
17390 @item replace
17391 Replace old columns with new ones.
17392
17393 @item scroll
17394 Scroll from right to left.
17395
17396 @item rscroll
17397 Scroll from left to right.
17398
17399 @item picture
17400 Draw single picture.
17401 @end table
17402
17403 Default is @code{frame}.
17404
17405 @item size
17406 Set size of graph video. For the syntax of this option, check the
17407 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17408 The default value is @code{900x256}.
17409
17410 The foreground color expressions can use the following variables:
17411 @table @option
17412 @item MIN
17413 Minimal value of metadata value.
17414
17415 @item MAX
17416 Maximal value of metadata value.
17417
17418 @item VAL
17419 Current metadata key value.
17420 @end table
17421
17422 The color is defined as 0xAABBGGRR.
17423 @end table
17424
17425 Example using metadata from @ref{signalstats} filter:
17426 @example
17427 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
17428 @end example
17429
17430 Example using metadata from @ref{ebur128} filter:
17431 @example
17432 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
17433 @end example
17434
17435 @anchor{ebur128}
17436 @section ebur128
17437
17438 EBU R128 scanner filter. This filter takes an audio stream as input and outputs
17439 it unchanged. By default, it logs a message at a frequency of 10Hz with the
17440 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
17441 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
17442
17443 The filter also has a video output (see the @var{video} option) with a real
17444 time graph to observe the loudness evolution. The graphic contains the logged
17445 message mentioned above, so it is not printed anymore when this option is set,
17446 unless the verbose logging is set. The main graphing area contains the
17447 short-term loudness (3 seconds of analysis), and the gauge on the right is for
17448 the momentary loudness (400 milliseconds).
17449
17450 More information about the Loudness Recommendation EBU R128 on
17451 @url{http://tech.ebu.ch/loudness}.
17452
17453 The filter accepts the following options:
17454
17455 @table @option
17456
17457 @item video
17458 Activate the video output. The audio stream is passed unchanged whether this
17459 option is set or no. The video stream will be the first output stream if
17460 activated. Default is @code{0}.
17461
17462 @item size
17463 Set the video size. This option is for video only. For the syntax of this
17464 option, check the
17465 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17466 Default and minimum resolution is @code{640x480}.
17467
17468 @item meter
17469 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
17470 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
17471 other integer value between this range is allowed.
17472
17473 @item metadata
17474 Set metadata injection. If set to @code{1}, the audio input will be segmented
17475 into 100ms output frames, each of them containing various loudness information
17476 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
17477
17478 Default is @code{0}.
17479
17480 @item framelog
17481 Force the frame logging level.
17482
17483 Available values are:
17484 @table @samp
17485 @item info
17486 information logging level
17487 @item verbose
17488 verbose logging level
17489 @end table
17490
17491 By default, the logging level is set to @var{info}. If the @option{video} or
17492 the @option{metadata} options are set, it switches to @var{verbose}.
17493
17494 @item peak
17495 Set peak mode(s).
17496
17497 Available modes can be cumulated (the option is a @code{flag} type). Possible
17498 values are:
17499 @table @samp
17500 @item none
17501 Disable any peak mode (default).
17502 @item sample
17503 Enable sample-peak mode.
17504
17505 Simple peak mode looking for the higher sample value. It logs a message
17506 for sample-peak (identified by @code{SPK}).
17507 @item true
17508 Enable true-peak mode.
17509
17510 If enabled, the peak lookup is done on an over-sampled version of the input
17511 stream for better peak accuracy. It logs a message for true-peak.
17512 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
17513 This mode requires a build with @code{libswresample}.
17514 @end table
17515
17516 @item dualmono
17517 Treat mono input files as "dual mono". If a mono file is intended for playback
17518 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
17519 If set to @code{true}, this option will compensate for this effect.
17520 Multi-channel input files are not affected by this option.
17521
17522 @item panlaw
17523 Set a specific pan law to be used for the measurement of dual mono files.
17524 This parameter is optional, and has a default value of -3.01dB.
17525 @end table
17526
17527 @subsection Examples
17528
17529 @itemize
17530 @item
17531 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
17532 @example
17533 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
17534 @end example
17535
17536 @item
17537 Run an analysis with @command{ffmpeg}:
17538 @example
17539 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
17540 @end example
17541 @end itemize
17542
17543 @section interleave, ainterleave
17544
17545 Temporally interleave frames from several inputs.
17546
17547 @code{interleave} works with video inputs, @code{ainterleave} with audio.
17548
17549 These filters read frames from several inputs and send the oldest
17550 queued frame to the output.
17551
17552 Input streams must have well defined, monotonically increasing frame
17553 timestamp values.
17554
17555 In order to submit one frame to output, these filters need to enqueue
17556 at least one frame for each input, so they cannot work in case one
17557 input is not yet terminated and will not receive incoming frames.
17558
17559 For example consider the case when one input is a @code{select} filter
17560 which always drops input frames. The @code{interleave} filter will keep
17561 reading from that input, but it will never be able to send new frames
17562 to output until the input sends an end-of-stream signal.
17563
17564 Also, depending on inputs synchronization, the filters will drop
17565 frames in case one input receives more frames than the other ones, and
17566 the queue is already filled.
17567
17568 These filters accept the following options:
17569
17570 @table @option
17571 @item nb_inputs, n
17572 Set the number of different inputs, it is 2 by default.
17573 @end table
17574
17575 @subsection Examples
17576
17577 @itemize
17578 @item
17579 Interleave frames belonging to different streams using @command{ffmpeg}:
17580 @example
17581 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
17582 @end example
17583
17584 @item
17585 Add flickering blur effect:
17586 @example
17587 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
17588 @end example
17589 @end itemize
17590
17591 @section metadata, ametadata
17592
17593 Manipulate frame metadata.
17594
17595 This filter accepts the following options:
17596
17597 @table @option
17598 @item mode
17599 Set mode of operation of the filter.
17600
17601 Can be one of the following:
17602
17603 @table @samp
17604 @item select
17605 If both @code{value} and @code{key} is set, select frames
17606 which have such metadata. If only @code{key} is set, select
17607 every frame that has such key in metadata.
17608
17609 @item add
17610 Add new metadata @code{key} and @code{value}. If key is already available
17611 do nothing.
17612
17613 @item modify
17614 Modify value of already present key.
17615
17616 @item delete
17617 If @code{value} is set, delete only keys that have such value.
17618 Otherwise, delete key. If @code{key} is not set, delete all metadata values in
17619 the frame.
17620
17621 @item print
17622 Print key and its value if metadata was found. If @code{key} is not set print all
17623 metadata values available in frame.
17624 @end table
17625
17626 @item key
17627 Set key used with all modes. Must be set for all modes except @code{print} and @code{delete}.
17628
17629 @item value
17630 Set metadata value which will be used. This option is mandatory for
17631 @code{modify} and @code{add} mode.
17632
17633 @item function
17634 Which function to use when comparing metadata value and @code{value}.
17635
17636 Can be one of following:
17637
17638 @table @samp
17639 @item same_str
17640 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
17641
17642 @item starts_with
17643 Values are interpreted as strings, returns true if metadata value starts with
17644 the @code{value} option string.
17645
17646 @item less
17647 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
17648
17649 @item equal
17650 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
17651
17652 @item greater
17653 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
17654
17655 @item expr
17656 Values are interpreted as floats, returns true if expression from option @code{expr}
17657 evaluates to true.
17658 @end table
17659
17660 @item expr
17661 Set expression which is used when @code{function} is set to @code{expr}.
17662 The expression is evaluated through the eval API and can contain the following
17663 constants:
17664
17665 @table @option
17666 @item VALUE1
17667 Float representation of @code{value} from metadata key.
17668
17669 @item VALUE2
17670 Float representation of @code{value} as supplied by user in @code{value} option.
17671 @end table
17672
17673 @item file
17674 If specified in @code{print} mode, output is written to the named file. Instead of
17675 plain filename any writable url can be specified. Filename ``-'' is a shorthand
17676 for standard output. If @code{file} option is not set, output is written to the log
17677 with AV_LOG_INFO loglevel.
17678
17679 @end table
17680
17681 @subsection Examples
17682
17683 @itemize
17684 @item
17685 Print all metadata values for frames with key @code{lavfi.signalstats.YDIF} with values
17686 between 0 and 1.
17687 @example
17688 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
17689 @end example
17690 @item
17691 Print silencedetect output to file @file{metadata.txt}.
17692 @example
17693 silencedetect,ametadata=mode=print:file=metadata.txt
17694 @end example
17695 @item
17696 Direct all metadata to a pipe with file descriptor 4.
17697 @example
17698 metadata=mode=print:file='pipe\:4'
17699 @end example
17700 @end itemize
17701
17702 @section perms, aperms
17703
17704 Set read/write permissions for the output frames.
17705
17706 These filters are mainly aimed at developers to test direct path in the
17707 following filter in the filtergraph.
17708
17709 The filters accept the following options:
17710
17711 @table @option
17712 @item mode
17713 Select the permissions mode.
17714
17715 It accepts the following values:
17716 @table @samp
17717 @item none
17718 Do nothing. This is the default.
17719 @item ro
17720 Set all the output frames read-only.
17721 @item rw
17722 Set all the output frames directly writable.
17723 @item toggle
17724 Make the frame read-only if writable, and writable if read-only.
17725 @item random
17726 Set each output frame read-only or writable randomly.
17727 @end table
17728
17729 @item seed
17730 Set the seed for the @var{random} mode, must be an integer included between
17731 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
17732 @code{-1}, the filter will try to use a good random seed on a best effort
17733 basis.
17734 @end table
17735
17736 Note: in case of auto-inserted filter between the permission filter and the
17737 following one, the permission might not be received as expected in that
17738 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
17739 perms/aperms filter can avoid this problem.
17740
17741 @section realtime, arealtime
17742
17743 Slow down filtering to match real time approximately.
17744
17745 These filters will pause the filtering for a variable amount of time to
17746 match the output rate with the input timestamps.
17747 They are similar to the @option{re} option to @code{ffmpeg}.
17748
17749 They accept the following options:
17750
17751 @table @option
17752 @item limit
17753 Time limit for the pauses. Any pause longer than that will be considered
17754 a timestamp discontinuity and reset the timer. Default is 2 seconds.
17755 @end table
17756
17757 @anchor{select}
17758 @section select, aselect
17759
17760 Select frames to pass in output.
17761
17762 This filter accepts the following options:
17763
17764 @table @option
17765
17766 @item expr, e
17767 Set expression, which is evaluated for each input frame.
17768
17769 If the expression is evaluated to zero, the frame is discarded.
17770
17771 If the evaluation result is negative or NaN, the frame is sent to the
17772 first output; otherwise it is sent to the output with index
17773 @code{ceil(val)-1}, assuming that the input index starts from 0.
17774
17775 For example a value of @code{1.2} corresponds to the output with index
17776 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
17777
17778 @item outputs, n
17779 Set the number of outputs. The output to which to send the selected
17780 frame is based on the result of the evaluation. Default value is 1.
17781 @end table
17782
17783 The expression can contain the following constants:
17784
17785 @table @option
17786 @item n
17787 The (sequential) number of the filtered frame, starting from 0.
17788
17789 @item selected_n
17790 The (sequential) number of the selected frame, starting from 0.
17791
17792 @item prev_selected_n
17793 The sequential number of the last selected frame. It's NAN if undefined.
17794
17795 @item TB
17796 The timebase of the input timestamps.
17797
17798 @item pts
17799 The PTS (Presentation TimeStamp) of the filtered video frame,
17800 expressed in @var{TB} units. It's NAN if undefined.
17801
17802 @item t
17803 The PTS of the filtered video frame,
17804 expressed in seconds. It's NAN if undefined.
17805
17806 @item prev_pts
17807 The PTS of the previously filtered video frame. It's NAN if undefined.
17808
17809 @item prev_selected_pts
17810 The PTS of the last previously filtered video frame. It's NAN if undefined.
17811
17812 @item prev_selected_t
17813 The PTS of the last previously selected video frame, expressed in seconds. It's NAN if undefined.
17814
17815 @item start_pts
17816 The PTS of the first video frame in the video. It's NAN if undefined.
17817
17818 @item start_t
17819 The time of the first video frame in the video. It's NAN if undefined.
17820
17821 @item pict_type @emph{(video only)}
17822 The type of the filtered frame. It can assume one of the following
17823 values:
17824 @table @option
17825 @item I
17826 @item P
17827 @item B
17828 @item S
17829 @item SI
17830 @item SP
17831 @item BI
17832 @end table
17833
17834 @item interlace_type @emph{(video only)}
17835 The frame interlace type. It can assume one of the following values:
17836 @table @option
17837 @item PROGRESSIVE
17838 The frame is progressive (not interlaced).
17839 @item TOPFIRST
17840 The frame is top-field-first.
17841 @item BOTTOMFIRST
17842 The frame is bottom-field-first.
17843 @end table
17844
17845 @item consumed_sample_n @emph{(audio only)}
17846 the number of selected samples before the current frame
17847
17848 @item samples_n @emph{(audio only)}
17849 the number of samples in the current frame
17850
17851 @item sample_rate @emph{(audio only)}
17852 the input sample rate
17853
17854 @item key
17855 This is 1 if the filtered frame is a key-frame, 0 otherwise.
17856
17857 @item pos
17858 the position in the file of the filtered frame, -1 if the information
17859 is not available (e.g. for synthetic video)
17860
17861 @item scene @emph{(video only)}
17862 value between 0 and 1 to indicate a new scene; a low value reflects a low
17863 probability for the current frame to introduce a new scene, while a higher
17864 value means the current frame is more likely to be one (see the example below)
17865
17866 @item concatdec_select
17867 The concat demuxer can select only part of a concat input file by setting an
17868 inpoint and an outpoint, but the output packets may not be entirely contained
17869 in the selected interval. By using this variable, it is possible to skip frames
17870 generated by the concat demuxer which are not exactly contained in the selected
17871 interval.
17872
17873 This works by comparing the frame pts against the @var{lavf.concat.start_time}
17874 and the @var{lavf.concat.duration} packet metadata values which are also
17875 present in the decoded frames.
17876
17877 The @var{concatdec_select} variable is -1 if the frame pts is at least
17878 start_time and either the duration metadata is missing or the frame pts is less
17879 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
17880 missing.
17881
17882 That basically means that an input frame is selected if its pts is within the
17883 interval set by the concat demuxer.
17884
17885 @end table
17886
17887 The default value of the select expression is "1".
17888
17889 @subsection Examples
17890
17891 @itemize
17892 @item
17893 Select all frames in input:
17894 @example
17895 select
17896 @end example
17897
17898 The example above is the same as:
17899 @example
17900 select=1
17901 @end example
17902
17903 @item
17904 Skip all frames:
17905 @example
17906 select=0
17907 @end example
17908
17909 @item
17910 Select only I-frames:
17911 @example
17912 select='eq(pict_type\,I)'
17913 @end example
17914
17915 @item
17916 Select one frame every 100:
17917 @example
17918 select='not(mod(n\,100))'
17919 @end example
17920
17921 @item
17922 Select only frames contained in the 10-20 time interval:
17923 @example
17924 select=between(t\,10\,20)
17925 @end example
17926
17927 @item
17928 Select only I-frames contained in the 10-20 time interval:
17929 @example
17930 select=between(t\,10\,20)*eq(pict_type\,I)
17931 @end example
17932
17933 @item
17934 Select frames with a minimum distance of 10 seconds:
17935 @example
17936 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
17937 @end example
17938
17939 @item
17940 Use aselect to select only audio frames with samples number > 100:
17941 @example
17942 aselect='gt(samples_n\,100)'
17943 @end example
17944
17945 @item
17946 Create a mosaic of the first scenes:
17947 @example
17948 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
17949 @end example
17950
17951 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
17952 choice.
17953
17954 @item
17955 Send even and odd frames to separate outputs, and compose them:
17956 @example
17957 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
17958 @end example
17959
17960 @item
17961 Select useful frames from an ffconcat file which is using inpoints and
17962 outpoints but where the source files are not intra frame only.
17963 @example
17964 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
17965 @end example
17966 @end itemize
17967
17968 @section sendcmd, asendcmd
17969
17970 Send commands to filters in the filtergraph.
17971
17972 These filters read commands to be sent to other filters in the
17973 filtergraph.
17974
17975 @code{sendcmd} must be inserted between two video filters,
17976 @code{asendcmd} must be inserted between two audio filters, but apart
17977 from that they act the same way.
17978
17979 The specification of commands can be provided in the filter arguments
17980 with the @var{commands} option, or in a file specified by the
17981 @var{filename} option.
17982
17983 These filters accept the following options:
17984 @table @option
17985 @item commands, c
17986 Set the commands to be read and sent to the other filters.
17987 @item filename, f
17988 Set the filename of the commands to be read and sent to the other
17989 filters.
17990 @end table
17991
17992 @subsection Commands syntax
17993
17994 A commands description consists of a sequence of interval
17995 specifications, comprising a list of commands to be executed when a
17996 particular event related to that interval occurs. The occurring event
17997 is typically the current frame time entering or leaving a given time
17998 interval.
17999
18000 An interval is specified by the following syntax:
18001 @example
18002 @var{START}[-@var{END}] @var{COMMANDS};
18003 @end example
18004
18005 The time interval is specified by the @var{START} and @var{END} times.
18006 @var{END} is optional and defaults to the maximum time.
18007
18008 The current frame time is considered within the specified interval if
18009 it is included in the interval [@var{START}, @var{END}), that is when
18010 the time is greater or equal to @var{START} and is lesser than
18011 @var{END}.
18012
18013 @var{COMMANDS} consists of a sequence of one or more command
18014 specifications, separated by ",", relating to that interval.  The
18015 syntax of a command specification is given by:
18016 @example
18017 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
18018 @end example
18019
18020 @var{FLAGS} is optional and specifies the type of events relating to
18021 the time interval which enable sending the specified command, and must
18022 be a non-null sequence of identifier flags separated by "+" or "|" and
18023 enclosed between "[" and "]".
18024
18025 The following flags are recognized:
18026 @table @option
18027 @item enter
18028 The command is sent when the current frame timestamp enters the
18029 specified interval. In other words, the command is sent when the
18030 previous frame timestamp was not in the given interval, and the
18031 current is.
18032
18033 @item leave
18034 The command is sent when the current frame timestamp leaves the
18035 specified interval. In other words, the command is sent when the
18036 previous frame timestamp was in the given interval, and the
18037 current is not.
18038 @end table
18039
18040 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
18041 assumed.
18042
18043 @var{TARGET} specifies the target of the command, usually the name of
18044 the filter class or a specific filter instance name.
18045
18046 @var{COMMAND} specifies the name of the command for the target filter.
18047
18048 @var{ARG} is optional and specifies the optional list of argument for
18049 the given @var{COMMAND}.
18050
18051 Between one interval specification and another, whitespaces, or
18052 sequences of characters starting with @code{#} until the end of line,
18053 are ignored and can be used to annotate comments.
18054
18055 A simplified BNF description of the commands specification syntax
18056 follows:
18057 @example
18058 @var{COMMAND_FLAG}  ::= "enter" | "leave"
18059 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
18060 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
18061 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
18062 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
18063 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
18064 @end example
18065
18066 @subsection Examples
18067
18068 @itemize
18069 @item
18070 Specify audio tempo change at second 4:
18071 @example
18072 asendcmd=c='4.0 atempo tempo 1.5',atempo
18073 @end example
18074
18075 @item
18076 Target a specific filter instance:
18077 @example
18078 asendcmd=c='4.0 atempo@@my tempo 1.5',atempo@@my
18079 @end example
18080
18081 @item
18082 Specify a list of drawtext and hue commands in a file.
18083 @example
18084 # show text in the interval 5-10
18085 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
18086          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
18087
18088 # desaturate the image in the interval 15-20
18089 15.0-20.0 [enter] hue s 0,
18090           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
18091           [leave] hue s 1,
18092           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
18093
18094 # apply an exponential saturation fade-out effect, starting from time 25
18095 25 [enter] hue s exp(25-t)
18096 @end example
18097
18098 A filtergraph allowing to read and process the above command list
18099 stored in a file @file{test.cmd}, can be specified with:
18100 @example
18101 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
18102 @end example
18103 @end itemize
18104
18105 @anchor{setpts}
18106 @section setpts, asetpts
18107
18108 Change the PTS (presentation timestamp) of the input frames.
18109
18110 @code{setpts} works on video frames, @code{asetpts} on audio frames.
18111
18112 This filter accepts the following options:
18113
18114 @table @option
18115
18116 @item expr
18117 The expression which is evaluated for each frame to construct its timestamp.
18118
18119 @end table
18120
18121 The expression is evaluated through the eval API and can contain the following
18122 constants:
18123
18124 @table @option
18125 @item FRAME_RATE
18126 frame rate, only defined for constant frame-rate video
18127
18128 @item PTS
18129 The presentation timestamp in input
18130
18131 @item N
18132 The count of the input frame for video or the number of consumed samples,
18133 not including the current frame for audio, starting from 0.
18134
18135 @item NB_CONSUMED_SAMPLES
18136 The number of consumed samples, not including the current frame (only
18137 audio)
18138
18139 @item NB_SAMPLES, S
18140 The number of samples in the current frame (only audio)
18141
18142 @item SAMPLE_RATE, SR
18143 The audio sample rate.
18144
18145 @item STARTPTS
18146 The PTS of the first frame.
18147
18148 @item STARTT
18149 the time in seconds of the first frame
18150
18151 @item INTERLACED
18152 State whether the current frame is interlaced.
18153
18154 @item T
18155 the time in seconds of the current frame
18156
18157 @item POS
18158 original position in the file of the frame, or undefined if undefined
18159 for the current frame
18160
18161 @item PREV_INPTS
18162 The previous input PTS.
18163
18164 @item PREV_INT
18165 previous input time in seconds
18166
18167 @item PREV_OUTPTS
18168 The previous output PTS.
18169
18170 @item PREV_OUTT
18171 previous output time in seconds
18172
18173 @item RTCTIME
18174 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
18175 instead.
18176
18177 @item RTCSTART
18178 The wallclock (RTC) time at the start of the movie in microseconds.
18179
18180 @item TB
18181 The timebase of the input timestamps.
18182
18183 @end table
18184
18185 @subsection Examples
18186
18187 @itemize
18188 @item
18189 Start counting PTS from zero
18190 @example
18191 setpts=PTS-STARTPTS
18192 @end example
18193
18194 @item
18195 Apply fast motion effect:
18196 @example
18197 setpts=0.5*PTS
18198 @end example
18199
18200 @item
18201 Apply slow motion effect:
18202 @example
18203 setpts=2.0*PTS
18204 @end example
18205
18206 @item
18207 Set fixed rate of 25 frames per second:
18208 @example
18209 setpts=N/(25*TB)
18210 @end example
18211
18212 @item
18213 Set fixed rate 25 fps with some jitter:
18214 @example
18215 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
18216 @end example
18217
18218 @item
18219 Apply an offset of 10 seconds to the input PTS:
18220 @example
18221 setpts=PTS+10/TB
18222 @end example
18223
18224 @item
18225 Generate timestamps from a "live source" and rebase onto the current timebase:
18226 @example
18227 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
18228 @end example
18229
18230 @item
18231 Generate timestamps by counting samples:
18232 @example
18233 asetpts=N/SR/TB
18234 @end example
18235
18236 @end itemize
18237
18238 @section settb, asettb
18239
18240 Set the timebase to use for the output frames timestamps.
18241 It is mainly useful for testing timebase configuration.
18242
18243 It accepts the following parameters:
18244
18245 @table @option
18246
18247 @item expr, tb
18248 The expression which is evaluated into the output timebase.
18249
18250 @end table
18251
18252 The value for @option{tb} is an arithmetic expression representing a
18253 rational. The expression can contain the constants "AVTB" (the default
18254 timebase), "intb" (the input timebase) and "sr" (the sample rate,
18255 audio only). Default value is "intb".
18256
18257 @subsection Examples
18258
18259 @itemize
18260 @item
18261 Set the timebase to 1/25:
18262 @example
18263 settb=expr=1/25
18264 @end example
18265
18266 @item
18267 Set the timebase to 1/10:
18268 @example
18269 settb=expr=0.1
18270 @end example
18271
18272 @item
18273 Set the timebase to 1001/1000:
18274 @example
18275 settb=1+0.001
18276 @end example
18277
18278 @item
18279 Set the timebase to 2*intb:
18280 @example
18281 settb=2*intb
18282 @end example
18283
18284 @item
18285 Set the default timebase value:
18286 @example
18287 settb=AVTB
18288 @end example
18289 @end itemize
18290
18291 @section showcqt
18292 Convert input audio to a video output representing frequency spectrum
18293 logarithmically using Brown-Puckette constant Q transform algorithm with
18294 direct frequency domain coefficient calculation (but the transform itself
18295 is not really constant Q, instead the Q factor is actually variable/clamped),
18296 with musical tone scale, from E0 to D#10.
18297
18298 The filter accepts the following options:
18299
18300 @table @option
18301 @item size, s
18302 Specify the video size for the output. It must be even. For the syntax of this option,
18303 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18304 Default value is @code{1920x1080}.
18305
18306 @item fps, rate, r
18307 Set the output frame rate. Default value is @code{25}.
18308
18309 @item bar_h
18310 Set the bargraph height. It must be even. Default value is @code{-1} which
18311 computes the bargraph height automatically.
18312
18313 @item axis_h
18314 Set the axis height. It must be even. Default value is @code{-1} which computes
18315 the axis height automatically.
18316
18317 @item sono_h
18318 Set the sonogram height. It must be even. Default value is @code{-1} which
18319 computes the sonogram height automatically.
18320
18321 @item fullhd
18322 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
18323 instead. Default value is @code{1}.
18324
18325 @item sono_v, volume
18326 Specify the sonogram volume expression. It can contain variables:
18327 @table @option
18328 @item bar_v
18329 the @var{bar_v} evaluated expression
18330 @item frequency, freq, f
18331 the frequency where it is evaluated
18332 @item timeclamp, tc
18333 the value of @var{timeclamp} option
18334 @end table
18335 and functions:
18336 @table @option
18337 @item a_weighting(f)
18338 A-weighting of equal loudness
18339 @item b_weighting(f)
18340 B-weighting of equal loudness
18341 @item c_weighting(f)
18342 C-weighting of equal loudness.
18343 @end table
18344 Default value is @code{16}.
18345
18346 @item bar_v, volume2
18347 Specify the bargraph volume expression. It can contain variables:
18348 @table @option
18349 @item sono_v
18350 the @var{sono_v} evaluated expression
18351 @item frequency, freq, f
18352 the frequency where it is evaluated
18353 @item timeclamp, tc
18354 the value of @var{timeclamp} option
18355 @end table
18356 and functions:
18357 @table @option
18358 @item a_weighting(f)
18359 A-weighting of equal loudness
18360 @item b_weighting(f)
18361 B-weighting of equal loudness
18362 @item c_weighting(f)
18363 C-weighting of equal loudness.
18364 @end table
18365 Default value is @code{sono_v}.
18366
18367 @item sono_g, gamma
18368 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
18369 higher gamma makes the spectrum having more range. Default value is @code{3}.
18370 Acceptable range is @code{[1, 7]}.
18371
18372 @item bar_g, gamma2
18373 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
18374 @code{[1, 7]}.
18375
18376 @item bar_t
18377 Specify the bargraph transparency level. Lower value makes the bargraph sharper.
18378 Default value is @code{1}. Acceptable range is @code{[0, 1]}.
18379
18380 @item timeclamp, tc
18381 Specify the transform timeclamp. At low frequency, there is trade-off between
18382 accuracy in time domain and frequency domain. If timeclamp is lower,
18383 event in time domain is represented more accurately (such as fast bass drum),
18384 otherwise event in frequency domain is represented more accurately
18385 (such as bass guitar). Acceptable range is @code{[0.002, 1]}. Default value is @code{0.17}.
18386
18387 @item attack
18388 Set attack time in seconds. The default is @code{0} (disabled). Otherwise, it
18389 limits future samples by applying asymmetric windowing in time domain, useful
18390 when low latency is required. Accepted range is @code{[0, 1]}.
18391
18392 @item basefreq
18393 Specify the transform base frequency. Default value is @code{20.01523126408007475},
18394 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
18395
18396 @item endfreq
18397 Specify the transform end frequency. Default value is @code{20495.59681441799654},
18398 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
18399
18400 @item coeffclamp
18401 This option is deprecated and ignored.
18402
18403 @item tlength
18404 Specify the transform length in time domain. Use this option to control accuracy
18405 trade-off between time domain and frequency domain at every frequency sample.
18406 It can contain variables:
18407 @table @option
18408 @item frequency, freq, f
18409 the frequency where it is evaluated
18410 @item timeclamp, tc
18411 the value of @var{timeclamp} option.
18412 @end table
18413 Default value is @code{384*tc/(384+tc*f)}.
18414
18415 @item count
18416 Specify the transform count for every video frame. Default value is @code{6}.
18417 Acceptable range is @code{[1, 30]}.
18418
18419 @item fcount
18420 Specify the transform count for every single pixel. Default value is @code{0},
18421 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
18422
18423 @item fontfile
18424 Specify font file for use with freetype to draw the axis. If not specified,
18425 use embedded font. Note that drawing with font file or embedded font is not
18426 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
18427 option instead.
18428
18429 @item font
18430 Specify fontconfig pattern. This has lower priority than @var{fontfile}.
18431 The : in the pattern may be replaced by | to avoid unnecessary escaping.
18432
18433 @item fontcolor
18434 Specify font color expression. This is arithmetic expression that should return
18435 integer value 0xRRGGBB. It can contain variables:
18436 @table @option
18437 @item frequency, freq, f
18438 the frequency where it is evaluated
18439 @item timeclamp, tc
18440 the value of @var{timeclamp} option
18441 @end table
18442 and functions:
18443 @table @option
18444 @item midi(f)
18445 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
18446 @item r(x), g(x), b(x)
18447 red, green, and blue value of intensity x.
18448 @end table
18449 Default value is @code{st(0, (midi(f)-59.5)/12);
18450 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
18451 r(1-ld(1)) + b(ld(1))}.
18452
18453 @item axisfile
18454 Specify image file to draw the axis. This option override @var{fontfile} and
18455 @var{fontcolor} option.
18456
18457 @item axis, text
18458 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
18459 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
18460 Default value is @code{1}.
18461
18462 @item csp
18463 Set colorspace. The accepted values are:
18464 @table @samp
18465 @item unspecified
18466 Unspecified (default)
18467
18468 @item bt709
18469 BT.709
18470
18471 @item fcc
18472 FCC
18473
18474 @item bt470bg
18475 BT.470BG or BT.601-6 625
18476
18477 @item smpte170m
18478 SMPTE-170M or BT.601-6 525
18479
18480 @item smpte240m
18481 SMPTE-240M
18482
18483 @item bt2020ncl
18484 BT.2020 with non-constant luminance
18485
18486 @end table
18487
18488 @item cscheme
18489 Set spectrogram color scheme. This is list of floating point values with format
18490 @code{left_r|left_g|left_b|right_r|right_g|right_b}.
18491 The default is @code{1|0.5|0|0|0.5|1}.
18492
18493 @end table
18494
18495 @subsection Examples
18496
18497 @itemize
18498 @item
18499 Playing audio while showing the spectrum:
18500 @example
18501 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
18502 @end example
18503
18504 @item
18505 Same as above, but with frame rate 30 fps:
18506 @example
18507 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
18508 @end example
18509
18510 @item
18511 Playing at 1280x720:
18512 @example
18513 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
18514 @end example
18515
18516 @item
18517 Disable sonogram display:
18518 @example
18519 sono_h=0
18520 @end example
18521
18522 @item
18523 A1 and its harmonics: A1, A2, (near)E3, A3:
18524 @example
18525 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),
18526                  asplit[a][out1]; [a] showcqt [out0]'
18527 @end example
18528
18529 @item
18530 Same as above, but with more accuracy in frequency domain:
18531 @example
18532 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),
18533                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
18534 @end example
18535
18536 @item
18537 Custom volume:
18538 @example
18539 bar_v=10:sono_v=bar_v*a_weighting(f)
18540 @end example
18541
18542 @item
18543 Custom gamma, now spectrum is linear to the amplitude.
18544 @example
18545 bar_g=2:sono_g=2
18546 @end example
18547
18548 @item
18549 Custom tlength equation:
18550 @example
18551 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)))'
18552 @end example
18553
18554 @item
18555 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
18556 @example
18557 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
18558 @end example
18559
18560 @item
18561 Custom font using fontconfig:
18562 @example
18563 font='Courier New,Monospace,mono|bold'
18564 @end example
18565
18566 @item
18567 Custom frequency range with custom axis using image file:
18568 @example
18569 axisfile=myaxis.png:basefreq=40:endfreq=10000
18570 @end example
18571 @end itemize
18572
18573 @section showfreqs
18574
18575 Convert input audio to video output representing the audio power spectrum.
18576 Audio amplitude is on Y-axis while frequency is on X-axis.
18577
18578 The filter accepts the following options:
18579
18580 @table @option
18581 @item size, s
18582 Specify size of video. For the syntax of this option, check the
18583 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18584 Default is @code{1024x512}.
18585
18586 @item mode
18587 Set display mode.
18588 This set how each frequency bin will be represented.
18589
18590 It accepts the following values:
18591 @table @samp
18592 @item line
18593 @item bar
18594 @item dot
18595 @end table
18596 Default is @code{bar}.
18597
18598 @item ascale
18599 Set amplitude scale.
18600
18601 It accepts the following values:
18602 @table @samp
18603 @item lin
18604 Linear scale.
18605
18606 @item sqrt
18607 Square root scale.
18608
18609 @item cbrt
18610 Cubic root scale.
18611
18612 @item log
18613 Logarithmic scale.
18614 @end table
18615 Default is @code{log}.
18616
18617 @item fscale
18618 Set frequency scale.
18619
18620 It accepts the following values:
18621 @table @samp
18622 @item lin
18623 Linear scale.
18624
18625 @item log
18626 Logarithmic scale.
18627
18628 @item rlog
18629 Reverse logarithmic scale.
18630 @end table
18631 Default is @code{lin}.
18632
18633 @item win_size
18634 Set window size.
18635
18636 It accepts the following values:
18637 @table @samp
18638 @item w16
18639 @item w32
18640 @item w64
18641 @item w128
18642 @item w256
18643 @item w512
18644 @item w1024
18645 @item w2048
18646 @item w4096
18647 @item w8192
18648 @item w16384
18649 @item w32768
18650 @item w65536
18651 @end table
18652 Default is @code{w2048}
18653
18654 @item win_func
18655 Set windowing function.
18656
18657 It accepts the following values:
18658 @table @samp
18659 @item rect
18660 @item bartlett
18661 @item hanning
18662 @item hamming
18663 @item blackman
18664 @item welch
18665 @item flattop
18666 @item bharris
18667 @item bnuttall
18668 @item bhann
18669 @item sine
18670 @item nuttall
18671 @item lanczos
18672 @item gauss
18673 @item tukey
18674 @item dolph
18675 @item cauchy
18676 @item parzen
18677 @item poisson
18678 @end table
18679 Default is @code{hanning}.
18680
18681 @item overlap
18682 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
18683 which means optimal overlap for selected window function will be picked.
18684
18685 @item averaging
18686 Set time averaging. Setting this to 0 will display current maximal peaks.
18687 Default is @code{1}, which means time averaging is disabled.
18688
18689 @item colors
18690 Specify list of colors separated by space or by '|' which will be used to
18691 draw channel frequencies. Unrecognized or missing colors will be replaced
18692 by white color.
18693
18694 @item cmode
18695 Set channel display mode.
18696
18697 It accepts the following values:
18698 @table @samp
18699 @item combined
18700 @item separate
18701 @end table
18702 Default is @code{combined}.
18703
18704 @item minamp
18705 Set minimum amplitude used in @code{log} amplitude scaler.
18706
18707 @end table
18708
18709 @anchor{showspectrum}
18710 @section showspectrum
18711
18712 Convert input audio to a video output, representing the audio frequency
18713 spectrum.
18714
18715 The filter accepts the following options:
18716
18717 @table @option
18718 @item size, s
18719 Specify the video size for the output. For the syntax of this option, check the
18720 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18721 Default value is @code{640x512}.
18722
18723 @item slide
18724 Specify how the spectrum should slide along the window.
18725
18726 It accepts the following values:
18727 @table @samp
18728 @item replace
18729 the samples start again on the left when they reach the right
18730 @item scroll
18731 the samples scroll from right to left
18732 @item fullframe
18733 frames are only produced when the samples reach the right
18734 @item rscroll
18735 the samples scroll from left to right
18736 @end table
18737
18738 Default value is @code{replace}.
18739
18740 @item mode
18741 Specify display mode.
18742
18743 It accepts the following values:
18744 @table @samp
18745 @item combined
18746 all channels are displayed in the same row
18747 @item separate
18748 all channels are displayed in separate rows
18749 @end table
18750
18751 Default value is @samp{combined}.
18752
18753 @item color
18754 Specify display color mode.
18755
18756 It accepts the following values:
18757 @table @samp
18758 @item channel
18759 each channel is displayed in a separate color
18760 @item intensity
18761 each channel is displayed using the same color scheme
18762 @item rainbow
18763 each channel is displayed using the rainbow color scheme
18764 @item moreland
18765 each channel is displayed using the moreland color scheme
18766 @item nebulae
18767 each channel is displayed using the nebulae color scheme
18768 @item fire
18769 each channel is displayed using the fire color scheme
18770 @item fiery
18771 each channel is displayed using the fiery color scheme
18772 @item fruit
18773 each channel is displayed using the fruit color scheme
18774 @item cool
18775 each channel is displayed using the cool color scheme
18776 @end table
18777
18778 Default value is @samp{channel}.
18779
18780 @item scale
18781 Specify scale used for calculating intensity color values.
18782
18783 It accepts the following values:
18784 @table @samp
18785 @item lin
18786 linear
18787 @item sqrt
18788 square root, default
18789 @item cbrt
18790 cubic root
18791 @item log
18792 logarithmic
18793 @item 4thrt
18794 4th root
18795 @item 5thrt
18796 5th root
18797 @end table
18798
18799 Default value is @samp{sqrt}.
18800
18801 @item saturation
18802 Set saturation modifier for displayed colors. Negative values provide
18803 alternative color scheme. @code{0} is no saturation at all.
18804 Saturation must be in [-10.0, 10.0] range.
18805 Default value is @code{1}.
18806
18807 @item win_func
18808 Set window function.
18809
18810 It accepts the following values:
18811 @table @samp
18812 @item rect
18813 @item bartlett
18814 @item hann
18815 @item hanning
18816 @item hamming
18817 @item blackman
18818 @item welch
18819 @item flattop
18820 @item bharris
18821 @item bnuttall
18822 @item bhann
18823 @item sine
18824 @item nuttall
18825 @item lanczos
18826 @item gauss
18827 @item tukey
18828 @item dolph
18829 @item cauchy
18830 @item parzen
18831 @item poisson
18832 @end table
18833
18834 Default value is @code{hann}.
18835
18836 @item orientation
18837 Set orientation of time vs frequency axis. Can be @code{vertical} or
18838 @code{horizontal}. Default is @code{vertical}.
18839
18840 @item overlap
18841 Set ratio of overlap window. Default value is @code{0}.
18842 When value is @code{1} overlap is set to recommended size for specific
18843 window function currently used.
18844
18845 @item gain
18846 Set scale gain for calculating intensity color values.
18847 Default value is @code{1}.
18848
18849 @item data
18850 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
18851
18852 @item rotation
18853 Set color rotation, must be in [-1.0, 1.0] range.
18854 Default value is @code{0}.
18855 @end table
18856
18857 The usage is very similar to the showwaves filter; see the examples in that
18858 section.
18859
18860 @subsection Examples
18861
18862 @itemize
18863 @item
18864 Large window with logarithmic color scaling:
18865 @example
18866 showspectrum=s=1280x480:scale=log
18867 @end example
18868
18869 @item
18870 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
18871 @example
18872 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
18873              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
18874 @end example
18875 @end itemize
18876
18877 @section showspectrumpic
18878
18879 Convert input audio to a single video frame, representing the audio frequency
18880 spectrum.
18881
18882 The filter accepts the following options:
18883
18884 @table @option
18885 @item size, s
18886 Specify the video size for the output. For the syntax of this option, check the
18887 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18888 Default value is @code{4096x2048}.
18889
18890 @item mode
18891 Specify display mode.
18892
18893 It accepts the following values:
18894 @table @samp
18895 @item combined
18896 all channels are displayed in the same row
18897 @item separate
18898 all channels are displayed in separate rows
18899 @end table
18900 Default value is @samp{combined}.
18901
18902 @item color
18903 Specify display color mode.
18904
18905 It accepts the following values:
18906 @table @samp
18907 @item channel
18908 each channel is displayed in a separate color
18909 @item intensity
18910 each channel is displayed using the same color scheme
18911 @item rainbow
18912 each channel is displayed using the rainbow color scheme
18913 @item moreland
18914 each channel is displayed using the moreland color scheme
18915 @item nebulae
18916 each channel is displayed using the nebulae color scheme
18917 @item fire
18918 each channel is displayed using the fire color scheme
18919 @item fiery
18920 each channel is displayed using the fiery color scheme
18921 @item fruit
18922 each channel is displayed using the fruit color scheme
18923 @item cool
18924 each channel is displayed using the cool color scheme
18925 @end table
18926 Default value is @samp{intensity}.
18927
18928 @item scale
18929 Specify scale used for calculating intensity color values.
18930
18931 It accepts the following values:
18932 @table @samp
18933 @item lin
18934 linear
18935 @item sqrt
18936 square root, default
18937 @item cbrt
18938 cubic root
18939 @item log
18940 logarithmic
18941 @item 4thrt
18942 4th root
18943 @item 5thrt
18944 5th root
18945 @end table
18946 Default value is @samp{log}.
18947
18948 @item saturation
18949 Set saturation modifier for displayed colors. Negative values provide
18950 alternative color scheme. @code{0} is no saturation at all.
18951 Saturation must be in [-10.0, 10.0] range.
18952 Default value is @code{1}.
18953
18954 @item win_func
18955 Set window function.
18956
18957 It accepts the following values:
18958 @table @samp
18959 @item rect
18960 @item bartlett
18961 @item hann
18962 @item hanning
18963 @item hamming
18964 @item blackman
18965 @item welch
18966 @item flattop
18967 @item bharris
18968 @item bnuttall
18969 @item bhann
18970 @item sine
18971 @item nuttall
18972 @item lanczos
18973 @item gauss
18974 @item tukey
18975 @item dolph
18976 @item cauchy
18977 @item parzen
18978 @item poisson
18979 @end table
18980 Default value is @code{hann}.
18981
18982 @item orientation
18983 Set orientation of time vs frequency axis. Can be @code{vertical} or
18984 @code{horizontal}. Default is @code{vertical}.
18985
18986 @item gain
18987 Set scale gain for calculating intensity color values.
18988 Default value is @code{1}.
18989
18990 @item legend
18991 Draw time and frequency axes and legends. Default is enabled.
18992
18993 @item rotation
18994 Set color rotation, must be in [-1.0, 1.0] range.
18995 Default value is @code{0}.
18996 @end table
18997
18998 @subsection Examples
18999
19000 @itemize
19001 @item
19002 Extract an audio spectrogram of a whole audio track
19003 in a 1024x1024 picture using @command{ffmpeg}:
19004 @example
19005 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
19006 @end example
19007 @end itemize
19008
19009 @section showvolume
19010
19011 Convert input audio volume to a video output.
19012
19013 The filter accepts the following options:
19014
19015 @table @option
19016 @item rate, r
19017 Set video rate.
19018
19019 @item b
19020 Set border width, allowed range is [0, 5]. Default is 1.
19021
19022 @item w
19023 Set channel width, allowed range is [80, 8192]. Default is 400.
19024
19025 @item h
19026 Set channel height, allowed range is [1, 900]. Default is 20.
19027
19028 @item f
19029 Set fade, allowed range is [0.001, 1]. Default is 0.95.
19030
19031 @item c
19032 Set volume color expression.
19033
19034 The expression can use the following variables:
19035
19036 @table @option
19037 @item VOLUME
19038 Current max volume of channel in dB.
19039
19040 @item PEAK
19041 Current peak.
19042
19043 @item CHANNEL
19044 Current channel number, starting from 0.
19045 @end table
19046
19047 @item t
19048 If set, displays channel names. Default is enabled.
19049
19050 @item v
19051 If set, displays volume values. Default is enabled.
19052
19053 @item o
19054 Set orientation, can be @code{horizontal} or @code{vertical},
19055 default is @code{horizontal}.
19056
19057 @item s
19058 Set step size, allowed range s [0, 5]. Default is 0, which means
19059 step is disabled.
19060 @end table
19061
19062 @section showwaves
19063
19064 Convert input audio to a video output, representing the samples waves.
19065
19066 The filter accepts the following options:
19067
19068 @table @option
19069 @item size, s
19070 Specify the video size for the output. For the syntax of this option, check the
19071 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19072 Default value is @code{600x240}.
19073
19074 @item mode
19075 Set display mode.
19076
19077 Available values are:
19078 @table @samp
19079 @item point
19080 Draw a point for each sample.
19081
19082 @item line
19083 Draw a vertical line for each sample.
19084
19085 @item p2p
19086 Draw a point for each sample and a line between them.
19087
19088 @item cline
19089 Draw a centered vertical line for each sample.
19090 @end table
19091
19092 Default value is @code{point}.
19093
19094 @item n
19095 Set the number of samples which are printed on the same column. A
19096 larger value will decrease the frame rate. Must be a positive
19097 integer. This option can be set only if the value for @var{rate}
19098 is not explicitly specified.
19099
19100 @item rate, r
19101 Set the (approximate) output frame rate. This is done by setting the
19102 option @var{n}. Default value is "25".
19103
19104 @item split_channels
19105 Set if channels should be drawn separately or overlap. Default value is 0.
19106
19107 @item colors
19108 Set colors separated by '|' which are going to be used for drawing of each channel.
19109
19110 @item scale
19111 Set amplitude scale.
19112
19113 Available values are:
19114 @table @samp
19115 @item lin
19116 Linear.
19117
19118 @item log
19119 Logarithmic.
19120
19121 @item sqrt
19122 Square root.
19123
19124 @item cbrt
19125 Cubic root.
19126 @end table
19127
19128 Default is linear.
19129 @end table
19130
19131 @subsection Examples
19132
19133 @itemize
19134 @item
19135 Output the input file audio and the corresponding video representation
19136 at the same time:
19137 @example
19138 amovie=a.mp3,asplit[out0],showwaves[out1]
19139 @end example
19140
19141 @item
19142 Create a synthetic signal and show it with showwaves, forcing a
19143 frame rate of 30 frames per second:
19144 @example
19145 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
19146 @end example
19147 @end itemize
19148
19149 @section showwavespic
19150
19151 Convert input audio to a single video frame, representing the samples waves.
19152
19153 The filter accepts the following options:
19154
19155 @table @option
19156 @item size, s
19157 Specify the video size for the output. For the syntax of this option, check the
19158 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
19159 Default value is @code{600x240}.
19160
19161 @item split_channels
19162 Set if channels should be drawn separately or overlap. Default value is 0.
19163
19164 @item colors
19165 Set colors separated by '|' which are going to be used for drawing of each channel.
19166
19167 @item scale
19168 Set amplitude scale.
19169
19170 Available values are:
19171 @table @samp
19172 @item lin
19173 Linear.
19174
19175 @item log
19176 Logarithmic.
19177
19178 @item sqrt
19179 Square root.
19180
19181 @item cbrt
19182 Cubic root.
19183 @end table
19184
19185 Default is linear.
19186 @end table
19187
19188 @subsection Examples
19189
19190 @itemize
19191 @item
19192 Extract a channel split representation of the wave form of a whole audio track
19193 in a 1024x800 picture using @command{ffmpeg}:
19194 @example
19195 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
19196 @end example
19197 @end itemize
19198
19199 @section sidedata, asidedata
19200
19201 Delete frame side data, or select frames based on it.
19202
19203 This filter accepts the following options:
19204
19205 @table @option
19206 @item mode
19207 Set mode of operation of the filter.
19208
19209 Can be one of the following:
19210
19211 @table @samp
19212 @item select
19213 Select every frame with side data of @code{type}.
19214
19215 @item delete
19216 Delete side data of @code{type}. If @code{type} is not set, delete all side
19217 data in the frame.
19218
19219 @end table
19220
19221 @item type
19222 Set side data type used with all modes. Must be set for @code{select} mode. For
19223 the list of frame side data types, refer to the @code{AVFrameSideDataType} enum
19224 in @file{libavutil/frame.h}. For example, to choose
19225 @code{AV_FRAME_DATA_PANSCAN} side data, you must specify @code{PANSCAN}.
19226
19227 @end table
19228
19229 @section spectrumsynth
19230
19231 Sythesize audio from 2 input video spectrums, first input stream represents
19232 magnitude across time and second represents phase across time.
19233 The filter will transform from frequency domain as displayed in videos back
19234 to time domain as presented in audio output.
19235
19236 This filter is primarily created for reversing processed @ref{showspectrum}
19237 filter outputs, but can synthesize sound from other spectrograms too.
19238 But in such case results are going to be poor if the phase data is not
19239 available, because in such cases phase data need to be recreated, usually
19240 its just recreated from random noise.
19241 For best results use gray only output (@code{channel} color mode in
19242 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
19243 @code{lin} scale for phase video. To produce phase, for 2nd video, use
19244 @code{data} option. Inputs videos should generally use @code{fullframe}
19245 slide mode as that saves resources needed for decoding video.
19246
19247 The filter accepts the following options:
19248
19249 @table @option
19250 @item sample_rate
19251 Specify sample rate of output audio, the sample rate of audio from which
19252 spectrum was generated may differ.
19253
19254 @item channels
19255 Set number of channels represented in input video spectrums.
19256
19257 @item scale
19258 Set scale which was used when generating magnitude input spectrum.
19259 Can be @code{lin} or @code{log}. Default is @code{log}.
19260
19261 @item slide
19262 Set slide which was used when generating inputs spectrums.
19263 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
19264 Default is @code{fullframe}.
19265
19266 @item win_func
19267 Set window function used for resynthesis.
19268
19269 @item overlap
19270 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
19271 which means optimal overlap for selected window function will be picked.
19272
19273 @item orientation
19274 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
19275 Default is @code{vertical}.
19276 @end table
19277
19278 @subsection Examples
19279
19280 @itemize
19281 @item
19282 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
19283 then resynthesize videos back to audio with spectrumsynth:
19284 @example
19285 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
19286 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
19287 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
19288 @end example
19289 @end itemize
19290
19291 @section split, asplit
19292
19293 Split input into several identical outputs.
19294
19295 @code{asplit} works with audio input, @code{split} with video.
19296
19297 The filter accepts a single parameter which specifies the number of outputs. If
19298 unspecified, it defaults to 2.
19299
19300 @subsection Examples
19301
19302 @itemize
19303 @item
19304 Create two separate outputs from the same input:
19305 @example
19306 [in] split [out0][out1]
19307 @end example
19308
19309 @item
19310 To create 3 or more outputs, you need to specify the number of
19311 outputs, like in:
19312 @example
19313 [in] asplit=3 [out0][out1][out2]
19314 @end example
19315
19316 @item
19317 Create two separate outputs from the same input, one cropped and
19318 one padded:
19319 @example
19320 [in] split [splitout1][splitout2];
19321 [splitout1] crop=100:100:0:0    [cropout];
19322 [splitout2] pad=200:200:100:100 [padout];
19323 @end example
19324
19325 @item
19326 Create 5 copies of the input audio with @command{ffmpeg}:
19327 @example
19328 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
19329 @end example
19330 @end itemize
19331
19332 @section zmq, azmq
19333
19334 Receive commands sent through a libzmq client, and forward them to
19335 filters in the filtergraph.
19336
19337 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
19338 must be inserted between two video filters, @code{azmq} between two
19339 audio filters.
19340
19341 To enable these filters you need to install the libzmq library and
19342 headers and configure FFmpeg with @code{--enable-libzmq}.
19343
19344 For more information about libzmq see:
19345 @url{http://www.zeromq.org/}
19346
19347 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
19348 receives messages sent through a network interface defined by the
19349 @option{bind_address} option.
19350
19351 The received message must be in the form:
19352 @example
19353 @var{TARGET} @var{COMMAND} [@var{ARG}]
19354 @end example
19355
19356 @var{TARGET} specifies the target of the command, usually the name of
19357 the filter class or a specific filter instance name.
19358
19359 @var{COMMAND} specifies the name of the command for the target filter.
19360
19361 @var{ARG} is optional and specifies the optional argument list for the
19362 given @var{COMMAND}.
19363
19364 Upon reception, the message is processed and the corresponding command
19365 is injected into the filtergraph. Depending on the result, the filter
19366 will send a reply to the client, adopting the format:
19367 @example
19368 @var{ERROR_CODE} @var{ERROR_REASON}
19369 @var{MESSAGE}
19370 @end example
19371
19372 @var{MESSAGE} is optional.
19373
19374 @subsection Examples
19375
19376 Look at @file{tools/zmqsend} for an example of a zmq client which can
19377 be used to send commands processed by these filters.
19378
19379 Consider the following filtergraph generated by @command{ffplay}
19380 @example
19381 ffplay -dumpgraph 1 -f lavfi "
19382 color=s=100x100:c=red  [l];
19383 color=s=100x100:c=blue [r];
19384 nullsrc=s=200x100, zmq [bg];
19385 [bg][l]   overlay      [bg+l];
19386 [bg+l][r] overlay=x=100 "
19387 @end example
19388
19389 To change the color of the left side of the video, the following
19390 command can be used:
19391 @example
19392 echo Parsed_color_0 c yellow | tools/zmqsend
19393 @end example
19394
19395 To change the right side:
19396 @example
19397 echo Parsed_color_1 c pink | tools/zmqsend
19398 @end example
19399
19400 @c man end MULTIMEDIA FILTERS
19401
19402 @chapter Multimedia Sources
19403 @c man begin MULTIMEDIA SOURCES
19404
19405 Below is a description of the currently available multimedia sources.
19406
19407 @section amovie
19408
19409 This is the same as @ref{movie} source, except it selects an audio
19410 stream by default.
19411
19412 @anchor{movie}
19413 @section movie
19414
19415 Read audio and/or video stream(s) from a movie container.
19416
19417 It accepts the following parameters:
19418
19419 @table @option
19420 @item filename
19421 The name of the resource to read (not necessarily a file; it can also be a
19422 device or a stream accessed through some protocol).
19423
19424 @item format_name, f
19425 Specifies the format assumed for the movie to read, and can be either
19426 the name of a container or an input device. If not specified, the
19427 format is guessed from @var{movie_name} or by probing.
19428
19429 @item seek_point, sp
19430 Specifies the seek point in seconds. The frames will be output
19431 starting from this seek point. The parameter is evaluated with
19432 @code{av_strtod}, so the numerical value may be suffixed by an IS
19433 postfix. The default value is "0".
19434
19435 @item streams, s
19436 Specifies the streams to read. Several streams can be specified,
19437 separated by "+". The source will then have as many outputs, in the
19438 same order. The syntax is explained in the ``Stream specifiers''
19439 section in the ffmpeg manual. Two special names, "dv" and "da" specify
19440 respectively the default (best suited) video and audio stream. Default
19441 is "dv", or "da" if the filter is called as "amovie".
19442
19443 @item stream_index, si
19444 Specifies the index of the video stream to read. If the value is -1,
19445 the most suitable video stream will be automatically selected. The default
19446 value is "-1". Deprecated. If the filter is called "amovie", it will select
19447 audio instead of video.
19448
19449 @item loop
19450 Specifies how many times to read the stream in sequence.
19451 If the value is 0, the stream will be looped infinitely.
19452 Default value is "1".
19453
19454 Note that when the movie is looped the source timestamps are not
19455 changed, so it will generate non monotonically increasing timestamps.
19456
19457 @item discontinuity
19458 Specifies the time difference between frames above which the point is
19459 considered a timestamp discontinuity which is removed by adjusting the later
19460 timestamps.
19461 @end table
19462
19463 It allows overlaying a second video on top of the main input of
19464 a filtergraph, as shown in this graph:
19465 @example
19466 input -----------> deltapts0 --> overlay --> output
19467                                     ^
19468                                     |
19469 movie --> scale--> deltapts1 -------+
19470 @end example
19471 @subsection Examples
19472
19473 @itemize
19474 @item
19475 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
19476 on top of the input labelled "in":
19477 @example
19478 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
19479 [in] setpts=PTS-STARTPTS [main];
19480 [main][over] overlay=16:16 [out]
19481 @end example
19482
19483 @item
19484 Read from a video4linux2 device, and overlay it on top of the input
19485 labelled "in":
19486 @example
19487 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
19488 [in] setpts=PTS-STARTPTS [main];
19489 [main][over] overlay=16:16 [out]
19490 @end example
19491
19492 @item
19493 Read the first video stream and the audio stream with id 0x81 from
19494 dvd.vob; the video is connected to the pad named "video" and the audio is
19495 connected to the pad named "audio":
19496 @example
19497 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
19498 @end example
19499 @end itemize
19500
19501 @subsection Commands
19502
19503 Both movie and amovie support the following commands:
19504 @table @option
19505 @item seek
19506 Perform seek using "av_seek_frame".
19507 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
19508 @itemize
19509 @item
19510 @var{stream_index}: If stream_index is -1, a default
19511 stream is selected, and @var{timestamp} is automatically converted
19512 from AV_TIME_BASE units to the stream specific time_base.
19513 @item
19514 @var{timestamp}: Timestamp in AVStream.time_base units
19515 or, if no stream is specified, in AV_TIME_BASE units.
19516 @item
19517 @var{flags}: Flags which select direction and seeking mode.
19518 @end itemize
19519
19520 @item get_duration
19521 Get movie duration in AV_TIME_BASE units.
19522
19523 @end table
19524
19525 @c man end MULTIMEDIA SOURCES