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