]> git.sesse.net Git - ffmpeg/blob - doc/filters.texi
avfilter/aeval: free input frame on error
[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{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.
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{LINKLABEL}        ::= "[" @var{NAME} "]"
216 @var{LINKLABELS}       ::= @var{LINKLABEL} [@var{LINKLABELS}]
217 @var{FILTER_ARGUMENTS} ::= sequence of chars (possibly quoted)
218 @var{FILTER}           ::= [@var{LINKLABELS}] @var{NAME} ["=" @var{FILTER_ARGUMENTS}] [@var{LINKLABELS}]
219 @var{FILTERCHAIN}      ::= @var{FILTER} [,@var{FILTERCHAIN}]
220 @var{FILTERGRAPH}      ::= [sws_flags=@var{flags};] @var{FILTERCHAIN} [;@var{FILTERGRAPH}]
221 @end example
222
223 @section Notes on filtergraph escaping
224
225 Filtergraph description composition entails several levels of
226 escaping. See @ref{quoting_and_escaping,,the "Quoting and escaping"
227 section in the ffmpeg-utils(1) manual,ffmpeg-utils} for more
228 information about the employed escaping procedure.
229
230 A first level escaping affects the content of each filter option
231 value, which may contain the special character @code{:} used to
232 separate values, or one of the escaping characters @code{\'}.
233
234 A second level escaping affects the whole filter description, which
235 may contain the escaping characters @code{\'} or the special
236 characters @code{[],;} used by the filtergraph description.
237
238 Finally, when you specify a filtergraph on a shell commandline, you
239 need to perform a third level escaping for the shell special
240 characters contained within it.
241
242 For example, consider the following string to be embedded in
243 the @ref{drawtext} filter description @option{text} value:
244 @example
245 this is a 'string': may contain one, or more, special characters
246 @end example
247
248 This string contains the @code{'} special escaping character, and the
249 @code{:} special character, so it needs to be escaped in this way:
250 @example
251 text=this is a \'string\'\: may contain one, or more, special characters
252 @end example
253
254 A second level of escaping is required when embedding the filter
255 description in a filtergraph description, in order to escape all the
256 filtergraph special characters. Thus the example above becomes:
257 @example
258 drawtext=text=this is a \\\'string\\\'\\: may contain one\, or more\, special characters
259 @end example
260 (note that in addition to the @code{\'} escaping special characters,
261 also @code{,} needs to be escaped).
262
263 Finally an additional level of escaping is needed when writing the
264 filtergraph description in a shell command, which depends on the
265 escaping rules of the adopted shell. For example, assuming that
266 @code{\} is special and needs to be escaped with another @code{\}, the
267 previous string will finally result in:
268 @example
269 -vf "drawtext=text=this is a \\\\\\'string\\\\\\'\\\\: may contain one\\, or more\\, special characters"
270 @end example
271
272 @chapter Timeline editing
273
274 Some filters support a generic @option{enable} option. For the filters
275 supporting timeline editing, this option can be set to an expression which is
276 evaluated before sending a frame to the filter. If the evaluation is non-zero,
277 the filter will be enabled, otherwise the frame will be sent unchanged to the
278 next filter in the filtergraph.
279
280 The expression accepts the following values:
281 @table @samp
282 @item t
283 timestamp expressed in seconds, NAN if the input timestamp is unknown
284
285 @item n
286 sequential number of the input frame, starting from 0
287
288 @item pos
289 the position in the file of the input frame, NAN if unknown
290
291 @item w
292 @item h
293 width and height of the input frame if video
294 @end table
295
296 Additionally, these filters support an @option{enable} command that can be used
297 to re-define the expression.
298
299 Like any other filtering option, the @option{enable} option follows the same
300 rules.
301
302 For example, to enable a blur filter (@ref{smartblur}) from 10 seconds to 3
303 minutes, and a @ref{curves} filter starting at 3 seconds:
304 @example
305 smartblur = enable='between(t,10,3*60)',
306 curves    = enable='gte(t,3)' : preset=cross_process
307 @end example
308
309 See @code{ffmpeg -filters} to view which filters have timeline support.
310
311 @c man end FILTERGRAPH DESCRIPTION
312
313 @chapter Audio Filters
314 @c man begin AUDIO FILTERS
315
316 When you configure your FFmpeg build, you can disable any of the
317 existing filters using @code{--disable-filters}.
318 The configure output will show the audio filters included in your
319 build.
320
321 Below is a description of the currently available audio filters.
322
323 @section acompressor
324
325 A compressor is mainly used to reduce the dynamic range of a signal.
326 Especially modern music is mostly compressed at a high ratio to
327 improve the overall loudness. It's done to get the highest attention
328 of a listener, "fatten" the sound and bring more "power" to the track.
329 If a signal is compressed too much it may sound dull or "dead"
330 afterwards or it may start to "pump" (which could be a powerful effect
331 but can also destroy a track completely).
332 The right compression is the key to reach a professional sound and is
333 the high art of mixing and mastering. Because of its complex settings
334 it may take a long time to get the right feeling for this kind of effect.
335
336 Compression is done by detecting the volume above a chosen level
337 @code{threshold} and dividing it by the factor set with @code{ratio}.
338 So if you set the threshold to -12dB and your signal reaches -6dB a ratio
339 of 2:1 will result in a signal at -9dB. Because an exact manipulation of
340 the signal would cause distortion of the waveform the reduction can be
341 levelled over the time. This is done by setting "Attack" and "Release".
342 @code{attack} determines how long the signal has to rise above the threshold
343 before any reduction will occur and @code{release} sets the time the signal
344 has to fall below the threshold to reduce the reduction again. Shorter signals
345 than the chosen attack time will be left untouched.
346 The overall reduction of the signal can be made up afterwards with the
347 @code{makeup} setting. So compressing the peaks of a signal about 6dB and
348 raising the makeup to this level results in a signal twice as loud than the
349 source. To gain a softer entry in the compression the @code{knee} flattens the
350 hard edge at the threshold in the range of the chosen decibels.
351
352 The filter accepts the following options:
353
354 @table @option
355 @item level_in
356 Set input gain. Default is 1. Range is between 0.015625 and 64.
357
358 @item threshold
359 If a signal of second stream rises above this level it will affect the gain
360 reduction of the first stream.
361 By default it is 0.125. Range is between 0.00097563 and 1.
362
363 @item ratio
364 Set a ratio by which the signal is reduced. 1:2 means that if the level
365 rose 4dB above the threshold, it will be only 2dB above after the reduction.
366 Default is 2. Range is between 1 and 20.
367
368 @item attack
369 Amount of milliseconds the signal has to rise above the threshold before gain
370 reduction starts. Default is 20. Range is between 0.01 and 2000.
371
372 @item release
373 Amount of milliseconds the signal has to fall below the threshold before
374 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
375
376 @item makeup
377 Set the amount by how much signal will be amplified after processing.
378 Default is 2. Range is from 1 and 64.
379
380 @item knee
381 Curve the sharp knee around the threshold to enter gain reduction more softly.
382 Default is 2.82843. Range is between 1 and 8.
383
384 @item link
385 Choose if the @code{average} level between all channels of input stream
386 or the louder(@code{maximum}) channel of input stream affects the
387 reduction. Default is @code{average}.
388
389 @item detection
390 Should the exact signal be taken in case of @code{peak} or an RMS one in case
391 of @code{rms}. Default is @code{rms} which is mostly smoother.
392
393 @item mix
394 How much to use compressed signal in output. Default is 1.
395 Range is between 0 and 1.
396 @end table
397
398 @section acopy
399
400 Copy the input audio source unchanged to the output. This is mainly useful for
401 testing purposes.
402
403 @section acrossfade
404
405 Apply cross fade from one input audio stream to another input audio stream.
406 The cross fade is applied for specified duration near the end of first stream.
407
408 The filter accepts the following options:
409
410 @table @option
411 @item nb_samples, ns
412 Specify the number of samples for which the cross fade effect has to last.
413 At the end of the cross fade effect the first input audio will be completely
414 silent. Default is 44100.
415
416 @item duration, d
417 Specify the duration of the cross fade effect. See
418 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
419 for the accepted syntax.
420 By default the duration is determined by @var{nb_samples}.
421 If set this option is used instead of @var{nb_samples}.
422
423 @item overlap, o
424 Should first stream end overlap with second stream start. Default is enabled.
425
426 @item curve1
427 Set curve for cross fade transition for first stream.
428
429 @item curve2
430 Set curve for cross fade transition for second stream.
431
432 For description of available curve types see @ref{afade} filter description.
433 @end table
434
435 @subsection Examples
436
437 @itemize
438 @item
439 Cross fade from one input to another:
440 @example
441 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:c1=exp:c2=exp output.flac
442 @end example
443
444 @item
445 Cross fade from one input to another but without overlapping:
446 @example
447 ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:o=0:c1=exp:c2=exp output.flac
448 @end example
449 @end itemize
450
451 @section acrusher
452
453 Reduce audio bit resolution.
454
455 This filter is bit crusher with enhanced functionality. A bit crusher
456 is used to audibly reduce number of bits an audio signal is sampled
457 with. This doesn't change the bit depth at all, it just produces the
458 effect. Material reduced in bit depth sounds more harsh and "digital".
459 This filter is able to even round to continuous values instead of discrete
460 bit depths.
461 Additionally it has a D/C offset which results in different crushing of
462 the lower and the upper half of the signal.
463 An Anti-Aliasing setting is able to produce "softer" crushing sounds.
464
465 Another feature of this filter is the logarithmic mode.
466 This setting switches from linear distances between bits to logarithmic ones.
467 The result is a much more "natural" sounding crusher which doesn't gate low
468 signals for example. The human ear has a logarithmic perception, too
469 so this kind of crushing is much more pleasant.
470 Logarithmic crushing is also able to get anti-aliased.
471
472 The filter accepts the following options:
473
474 @table @option
475 @item level_in
476 Set level in.
477
478 @item level_out
479 Set level out.
480
481 @item bits
482 Set bit reduction.
483
484 @item mix
485 Set mixing amount.
486
487 @item mode
488 Can be linear: @code{lin} or logarithmic: @code{log}.
489
490 @item dc
491 Set DC.
492
493 @item aa
494 Set anti-aliasing.
495
496 @item samples
497 Set sample reduction.
498
499 @item lfo
500 Enable LFO. By default disabled.
501
502 @item lforange
503 Set LFO range.
504
505 @item lforate
506 Set LFO rate.
507 @end table
508
509 @section adelay
510
511 Delay one or more audio channels.
512
513 Samples in delayed channel are filled with silence.
514
515 The filter accepts the following option:
516
517 @table @option
518 @item delays
519 Set list of delays in milliseconds for each channel separated by '|'.
520 At least one delay greater than 0 should be provided.
521 Unused delays will be silently ignored. If number of given delays is
522 smaller than number of channels all remaining channels will not be delayed.
523 If you want to delay exact number of samples, append 'S' to number.
524 @end table
525
526 @subsection Examples
527
528 @itemize
529 @item
530 Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
531 the second channel (and any other channels that may be present) unchanged.
532 @example
533 adelay=1500|0|500
534 @end example
535
536 @item
537 Delay second channel by 500 samples, the third channel by 700 samples and leave
538 the first channel (and any other channels that may be present) unchanged.
539 @example
540 adelay=0|500S|700S
541 @end example
542 @end itemize
543
544 @section aecho
545
546 Apply echoing to the input audio.
547
548 Echoes are reflected sound and can occur naturally amongst mountains
549 (and sometimes large buildings) when talking or shouting; digital echo
550 effects emulate this behaviour and are often used to help fill out the
551 sound of a single instrument or vocal. The time difference between the
552 original signal and the reflection is the @code{delay}, and the
553 loudness of the reflected signal is the @code{decay}.
554 Multiple echoes can have different delays and decays.
555
556 A description of the accepted parameters follows.
557
558 @table @option
559 @item in_gain
560 Set input gain of reflected signal. Default is @code{0.6}.
561
562 @item out_gain
563 Set output gain of reflected signal. Default is @code{0.3}.
564
565 @item delays
566 Set list of time intervals in milliseconds between original signal and reflections
567 separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
568 Default is @code{1000}.
569
570 @item decays
571 Set list of loudnesses of reflected signals separated by '|'.
572 Allowed range for each @code{decay} is @code{(0 - 1.0]}.
573 Default is @code{0.5}.
574 @end table
575
576 @subsection Examples
577
578 @itemize
579 @item
580 Make it sound as if there are twice as many instruments as are actually playing:
581 @example
582 aecho=0.8:0.88:60:0.4
583 @end example
584
585 @item
586 If delay is very short, then it sound like a (metallic) robot playing music:
587 @example
588 aecho=0.8:0.88:6:0.4
589 @end example
590
591 @item
592 A longer delay will sound like an open air concert in the mountains:
593 @example
594 aecho=0.8:0.9:1000:0.3
595 @end example
596
597 @item
598 Same as above but with one more mountain:
599 @example
600 aecho=0.8:0.9:1000|1800:0.3|0.25
601 @end example
602 @end itemize
603
604 @section aemphasis
605 Audio emphasis filter creates or restores material directly taken from LPs or
606 emphased CDs with different filter curves. E.g. to store music on vinyl the
607 signal has to be altered by a filter first to even out the disadvantages of
608 this recording medium.
609 Once the material is played back the inverse filter has to be applied to
610 restore the distortion of the frequency response.
611
612 The filter accepts the following options:
613
614 @table @option
615 @item level_in
616 Set input gain.
617
618 @item level_out
619 Set output gain.
620
621 @item mode
622 Set filter mode. For restoring material use @code{reproduction} mode, otherwise
623 use @code{production} mode. Default is @code{reproduction} mode.
624
625 @item type
626 Set filter type. Selects medium. Can be one of the following:
627
628 @table @option
629 @item col
630 select Columbia.
631 @item emi
632 select EMI.
633 @item bsi
634 select BSI (78RPM).
635 @item riaa
636 select RIAA.
637 @item cd
638 select Compact Disc (CD).
639 @item 50fm
640 select 50µs (FM).
641 @item 75fm
642 select 75µs (FM).
643 @item 50kf
644 select 50µs (FM-KF).
645 @item 75kf
646 select 75µs (FM-KF).
647 @end table
648 @end table
649
650 @section aeval
651
652 Modify an audio signal according to the specified expressions.
653
654 This filter accepts one or more expressions (one for each channel),
655 which are evaluated and used to modify a corresponding audio signal.
656
657 It accepts the following parameters:
658
659 @table @option
660 @item exprs
661 Set the '|'-separated expressions list for each separate channel. If
662 the number of input channels is greater than the number of
663 expressions, the last specified expression is used for the remaining
664 output channels.
665
666 @item channel_layout, c
667 Set output channel layout. If not specified, the channel layout is
668 specified by the number of expressions. If set to @samp{same}, it will
669 use by default the same input channel layout.
670 @end table
671
672 Each expression in @var{exprs} can contain the following constants and functions:
673
674 @table @option
675 @item ch
676 channel number of the current expression
677
678 @item n
679 number of the evaluated sample, starting from 0
680
681 @item s
682 sample rate
683
684 @item t
685 time of the evaluated sample expressed in seconds
686
687 @item nb_in_channels
688 @item nb_out_channels
689 input and output number of channels
690
691 @item val(CH)
692 the value of input channel with number @var{CH}
693 @end table
694
695 Note: this filter is slow. For faster processing you should use a
696 dedicated filter.
697
698 @subsection Examples
699
700 @itemize
701 @item
702 Half volume:
703 @example
704 aeval=val(ch)/2:c=same
705 @end example
706
707 @item
708 Invert phase of the second channel:
709 @example
710 aeval=val(0)|-val(1)
711 @end example
712 @end itemize
713
714 @anchor{afade}
715 @section afade
716
717 Apply fade-in/out effect to input audio.
718
719 A description of the accepted parameters follows.
720
721 @table @option
722 @item type, t
723 Specify the effect type, can be either @code{in} for fade-in, or
724 @code{out} for a fade-out effect. Default is @code{in}.
725
726 @item start_sample, ss
727 Specify the number of the start sample for starting to apply the fade
728 effect. Default is 0.
729
730 @item nb_samples, ns
731 Specify the number of samples for which the fade effect has to last. At
732 the end of the fade-in effect the output audio will have the same
733 volume as the input audio, at the end of the fade-out transition
734 the output audio will be silence. Default is 44100.
735
736 @item start_time, st
737 Specify the start time of the fade effect. Default is 0.
738 The value must be specified as a time duration; see
739 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
740 for the accepted syntax.
741 If set this option is used instead of @var{start_sample}.
742
743 @item duration, d
744 Specify the duration of the fade effect. See
745 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
746 for the accepted syntax.
747 At the end of the fade-in effect the output audio will have the same
748 volume as the input audio, at the end of the fade-out transition
749 the output audio will be silence.
750 By default the duration is determined by @var{nb_samples}.
751 If set this option is used instead of @var{nb_samples}.
752
753 @item curve
754 Set curve for fade transition.
755
756 It accepts the following values:
757 @table @option
758 @item tri
759 select triangular, linear slope (default)
760 @item qsin
761 select quarter of sine wave
762 @item hsin
763 select half of sine wave
764 @item esin
765 select exponential sine wave
766 @item log
767 select logarithmic
768 @item ipar
769 select inverted parabola
770 @item qua
771 select quadratic
772 @item cub
773 select cubic
774 @item squ
775 select square root
776 @item cbr
777 select cubic root
778 @item par
779 select parabola
780 @item exp
781 select exponential
782 @item iqsin
783 select inverted quarter of sine wave
784 @item ihsin
785 select inverted half of sine wave
786 @item dese
787 select double-exponential seat
788 @item desi
789 select double-exponential sigmoid
790 @end table
791 @end table
792
793 @subsection Examples
794
795 @itemize
796 @item
797 Fade in first 15 seconds of audio:
798 @example
799 afade=t=in:ss=0:d=15
800 @end example
801
802 @item
803 Fade out last 25 seconds of a 900 seconds audio:
804 @example
805 afade=t=out:st=875:d=25
806 @end example
807 @end itemize
808
809 @section afftfilt
810 Apply arbitrary expressions to samples in frequency domain.
811
812 @table @option
813 @item real
814 Set frequency domain real expression for each separate channel separated
815 by '|'. Default is "1".
816 If the number of input channels is greater than the number of
817 expressions, the last specified expression is used for the remaining
818 output channels.
819
820 @item imag
821 Set frequency domain imaginary expression for each separate channel
822 separated by '|'. If not set, @var{real} option is used.
823
824 Each expression in @var{real} and @var{imag} can contain the following
825 constants:
826
827 @table @option
828 @item sr
829 sample rate
830
831 @item b
832 current frequency bin number
833
834 @item nb
835 number of available bins
836
837 @item ch
838 channel number of the current expression
839
840 @item chs
841 number of channels
842
843 @item pts
844 current frame pts
845 @end table
846
847 @item win_size
848 Set window size.
849
850 It accepts the following values:
851 @table @samp
852 @item w16
853 @item w32
854 @item w64
855 @item w128
856 @item w256
857 @item w512
858 @item w1024
859 @item w2048
860 @item w4096
861 @item w8192
862 @item w16384
863 @item w32768
864 @item w65536
865 @end table
866 Default is @code{w4096}
867
868 @item win_func
869 Set window function. Default is @code{hann}.
870
871 @item overlap
872 Set window overlap. If set to 1, the recommended overlap for selected
873 window function will be picked. Default is @code{0.75}.
874 @end table
875
876 @subsection Examples
877
878 @itemize
879 @item
880 Leave almost only low frequencies in audio:
881 @example
882 afftfilt="1-clip((b/nb)*b,0,1)"
883 @end example
884 @end itemize
885
886 @section afir
887
888 Apply an arbitrary Frequency Impulse Response filter.
889
890 This filter is designed for applying long FIR filters,
891 up to 30 seconds long.
892
893 It can be used as component for digital crossover filters,
894 room equalization, cross talk cancellation, wavefield synthesis,
895 auralization, ambiophonics and ambisonics.
896
897 This filter uses second stream as FIR coefficients.
898 If second stream holds single channel, it will be used
899 for all input channels in first stream, otherwise
900 number of channels in second stream must be same as
901 number of channels in first stream.
902
903 It accepts the following parameters:
904
905 @table @option
906 @item dry
907 Set dry gain. This sets input gain.
908
909 @item wet
910 Set wet gain. This sets final output gain.
911
912 @item length
913 Set Impulse Response filter length. Default is 1, which means whole IR is processed.
914
915 @item again
916 Enable applying gain measured from power of IR.
917 @end table
918
919 @subsection Examples
920
921 @itemize
922 @item
923 Apply reverb to stream using mono IR file as second input, complete command using ffmpeg:
924 @example
925 ffmpeg -i input.wav -i middle_tunnel_1way_mono.wav -lavfi afir output.wav
926 @end example
927 @end itemize
928
929 @anchor{aformat}
930 @section aformat
931
932 Set output format constraints for the input audio. The framework will
933 negotiate the most appropriate format to minimize conversions.
934
935 It accepts the following parameters:
936 @table @option
937
938 @item sample_fmts
939 A '|'-separated list of requested sample formats.
940
941 @item sample_rates
942 A '|'-separated list of requested sample rates.
943
944 @item channel_layouts
945 A '|'-separated list of requested channel layouts.
946
947 See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
948 for the required syntax.
949 @end table
950
951 If a parameter is omitted, all values are allowed.
952
953 Force the output to either unsigned 8-bit or signed 16-bit stereo
954 @example
955 aformat=sample_fmts=u8|s16:channel_layouts=stereo
956 @end example
957
958 @section agate
959
960 A gate is mainly used to reduce lower parts of a signal. This kind of signal
961 processing reduces disturbing noise between useful signals.
962
963 Gating is done by detecting the volume below a chosen level @var{threshold}
964 and dividing it by the factor set with @var{ratio}. The bottom of the noise
965 floor is set via @var{range}. Because an exact manipulation of the signal
966 would cause distortion of the waveform the reduction can be levelled over
967 time. This is done by setting @var{attack} and @var{release}.
968
969 @var{attack} determines how long the signal has to fall below the threshold
970 before any reduction will occur and @var{release} sets the time the signal
971 has to rise above the threshold to reduce the reduction again.
972 Shorter signals than the chosen attack time will be left untouched.
973
974 @table @option
975 @item level_in
976 Set input level before filtering.
977 Default is 1. Allowed range is from 0.015625 to 64.
978
979 @item range
980 Set the level of gain reduction when the signal is below the threshold.
981 Default is 0.06125. Allowed range is from 0 to 1.
982
983 @item threshold
984 If a signal rises above this level the gain reduction is released.
985 Default is 0.125. Allowed range is from 0 to 1.
986
987 @item ratio
988 Set a ratio by which the signal is reduced.
989 Default is 2. Allowed range is from 1 to 9000.
990
991 @item attack
992 Amount of milliseconds the signal has to rise above the threshold before gain
993 reduction stops.
994 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
995
996 @item release
997 Amount of milliseconds the signal has to fall below the threshold before the
998 reduction is increased again. Default is 250 milliseconds.
999 Allowed range is from 0.01 to 9000.
1000
1001 @item makeup
1002 Set amount of amplification of signal after processing.
1003 Default is 1. Allowed range is from 1 to 64.
1004
1005 @item knee
1006 Curve the sharp knee around the threshold to enter gain reduction more softly.
1007 Default is 2.828427125. Allowed range is from 1 to 8.
1008
1009 @item detection
1010 Choose if exact signal should be taken for detection or an RMS like one.
1011 Default is @code{rms}. Can be @code{peak} or @code{rms}.
1012
1013 @item link
1014 Choose if the average level between all channels or the louder channel affects
1015 the reduction.
1016 Default is @code{average}. Can be @code{average} or @code{maximum}.
1017 @end table
1018
1019 @section alimiter
1020
1021 The limiter prevents an input signal from rising over a desired threshold.
1022 This limiter uses lookahead technology to prevent your signal from distorting.
1023 It means that there is a small delay after the signal is processed. Keep in mind
1024 that the delay it produces is the attack time you set.
1025
1026 The filter accepts the following options:
1027
1028 @table @option
1029 @item level_in
1030 Set input gain. Default is 1.
1031
1032 @item level_out
1033 Set output gain. Default is 1.
1034
1035 @item limit
1036 Don't let signals above this level pass the limiter. Default is 1.
1037
1038 @item attack
1039 The limiter will reach its attenuation level in this amount of time in
1040 milliseconds. Default is 5 milliseconds.
1041
1042 @item release
1043 Come back from limiting to attenuation 1.0 in this amount of milliseconds.
1044 Default is 50 milliseconds.
1045
1046 @item asc
1047 When gain reduction is always needed ASC takes care of releasing to an
1048 average reduction level rather than reaching a reduction of 0 in the release
1049 time.
1050
1051 @item asc_level
1052 Select how much the release time is affected by ASC, 0 means nearly no changes
1053 in release time while 1 produces higher release times.
1054
1055 @item level
1056 Auto level output signal. Default is enabled.
1057 This normalizes audio back to 0dB if enabled.
1058 @end table
1059
1060 Depending on picked setting it is recommended to upsample input 2x or 4x times
1061 with @ref{aresample} before applying this filter.
1062
1063 @section allpass
1064
1065 Apply a two-pole all-pass filter with central frequency (in Hz)
1066 @var{frequency}, and filter-width @var{width}.
1067 An all-pass filter changes the audio's frequency to phase relationship
1068 without changing its frequency to amplitude relationship.
1069
1070 The filter accepts the following options:
1071
1072 @table @option
1073 @item frequency, f
1074 Set frequency in Hz.
1075
1076 @item width_type
1077 Set method to specify band-width of filter.
1078 @table @option
1079 @item h
1080 Hz
1081 @item q
1082 Q-Factor
1083 @item o
1084 octave
1085 @item s
1086 slope
1087 @end table
1088
1089 @item width, w
1090 Specify the band-width of a filter in width_type units.
1091
1092 @item channels, c
1093 Specify which channels to filter, by default all available are filtered.
1094 @end table
1095
1096 @section aloop
1097
1098 Loop audio samples.
1099
1100 The filter accepts the following options:
1101
1102 @table @option
1103 @item loop
1104 Set the number of loops.
1105
1106 @item size
1107 Set maximal number of samples.
1108
1109 @item start
1110 Set first sample of loop.
1111 @end table
1112
1113 @anchor{amerge}
1114 @section amerge
1115
1116 Merge two or more audio streams into a single multi-channel stream.
1117
1118 The filter accepts the following options:
1119
1120 @table @option
1121
1122 @item inputs
1123 Set the number of inputs. Default is 2.
1124
1125 @end table
1126
1127 If the channel layouts of the inputs are disjoint, and therefore compatible,
1128 the channel layout of the output will be set accordingly and the channels
1129 will be reordered as necessary. If the channel layouts of the inputs are not
1130 disjoint, the output will have all the channels of the first input then all
1131 the channels of the second input, in that order, and the channel layout of
1132 the output will be the default value corresponding to the total number of
1133 channels.
1134
1135 For example, if the first input is in 2.1 (FL+FR+LF) and the second input
1136 is FC+BL+BR, then the output will be in 5.1, with the channels in the
1137 following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
1138 first input, b1 is the first channel of the second input).
1139
1140 On the other hand, if both input are in stereo, the output channels will be
1141 in the default order: a1, a2, b1, b2, and the channel layout will be
1142 arbitrarily set to 4.0, which may or may not be the expected value.
1143
1144 All inputs must have the same sample rate, and format.
1145
1146 If inputs do not have the same duration, the output will stop with the
1147 shortest.
1148
1149 @subsection Examples
1150
1151 @itemize
1152 @item
1153 Merge two mono files into a stereo stream:
1154 @example
1155 amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
1156 @end example
1157
1158 @item
1159 Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
1160 @example
1161 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
1162 @end example
1163 @end itemize
1164
1165 @section amix
1166
1167 Mixes multiple audio inputs into a single output.
1168
1169 Note that this filter only supports float samples (the @var{amerge}
1170 and @var{pan} audio filters support many formats). If the @var{amix}
1171 input has integer samples then @ref{aresample} will be automatically
1172 inserted to perform the conversion to float samples.
1173
1174 For example
1175 @example
1176 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
1177 @end example
1178 will mix 3 input audio streams to a single output with the same duration as the
1179 first input and a dropout transition time of 3 seconds.
1180
1181 It accepts the following parameters:
1182 @table @option
1183
1184 @item inputs
1185 The number of inputs. If unspecified, it defaults to 2.
1186
1187 @item duration
1188 How to determine the end-of-stream.
1189 @table @option
1190
1191 @item longest
1192 The duration of the longest input. (default)
1193
1194 @item shortest
1195 The duration of the shortest input.
1196
1197 @item first
1198 The duration of the first input.
1199
1200 @end table
1201
1202 @item dropout_transition
1203 The transition time, in seconds, for volume renormalization when an input
1204 stream ends. The default value is 2 seconds.
1205
1206 @end table
1207
1208 @section anequalizer
1209
1210 High-order parametric multiband equalizer for each channel.
1211
1212 It accepts the following parameters:
1213 @table @option
1214 @item params
1215
1216 This option string is in format:
1217 "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
1218 Each equalizer band is separated by '|'.
1219
1220 @table @option
1221 @item chn
1222 Set channel number to which equalization will be applied.
1223 If input doesn't have that channel the entry is ignored.
1224
1225 @item f
1226 Set central frequency for band.
1227 If input doesn't have that frequency the entry is ignored.
1228
1229 @item w
1230 Set band width in hertz.
1231
1232 @item g
1233 Set band gain in dB.
1234
1235 @item t
1236 Set filter type for band, optional, can be:
1237
1238 @table @samp
1239 @item 0
1240 Butterworth, this is default.
1241
1242 @item 1
1243 Chebyshev type 1.
1244
1245 @item 2
1246 Chebyshev type 2.
1247 @end table
1248 @end table
1249
1250 @item curves
1251 With this option activated frequency response of anequalizer is displayed
1252 in video stream.
1253
1254 @item size
1255 Set video stream size. Only useful if curves option is activated.
1256
1257 @item mgain
1258 Set max gain that will be displayed. Only useful if curves option is activated.
1259 Setting this to a reasonable value makes it possible to display gain which is derived from
1260 neighbour bands which are too close to each other and thus produce higher gain
1261 when both are activated.
1262
1263 @item fscale
1264 Set frequency scale used to draw frequency response in video output.
1265 Can be linear or logarithmic. Default is logarithmic.
1266
1267 @item colors
1268 Set color for each channel curve which is going to be displayed in video stream.
1269 This is list of color names separated by space or by '|'.
1270 Unrecognised or missing colors will be replaced by white color.
1271 @end table
1272
1273 @subsection Examples
1274
1275 @itemize
1276 @item
1277 Lower gain by 10 of central frequency 200Hz and width 100 Hz
1278 for first 2 channels using Chebyshev type 1 filter:
1279 @example
1280 anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
1281 @end example
1282 @end itemize
1283
1284 @subsection Commands
1285
1286 This filter supports the following commands:
1287 @table @option
1288 @item change
1289 Alter existing filter parameters.
1290 Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
1291
1292 @var{fN} is existing filter number, starting from 0, if no such filter is available
1293 error is returned.
1294 @var{freq} set new frequency parameter.
1295 @var{width} set new width parameter in herz.
1296 @var{gain} set new gain parameter in dB.
1297
1298 Full filter invocation with asendcmd may look like this:
1299 asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
1300 @end table
1301
1302 @section anull
1303
1304 Pass the audio source unchanged to the output.
1305
1306 @section apad
1307
1308 Pad the end of an audio stream with silence.
1309
1310 This can be used together with @command{ffmpeg} @option{-shortest} to
1311 extend audio streams to the same length as the video stream.
1312
1313 A description of the accepted options follows.
1314
1315 @table @option
1316 @item packet_size
1317 Set silence packet size. Default value is 4096.
1318
1319 @item pad_len
1320 Set the number of samples of silence to add to the end. After the
1321 value is reached, the stream is terminated. This option is mutually
1322 exclusive with @option{whole_len}.
1323
1324 @item whole_len
1325 Set the minimum total number of samples in the output audio stream. If
1326 the value is longer than the input audio length, silence is added to
1327 the end, until the value is reached. This option is mutually exclusive
1328 with @option{pad_len}.
1329 @end table
1330
1331 If neither the @option{pad_len} nor the @option{whole_len} option is
1332 set, the filter will add silence to the end of the input stream
1333 indefinitely.
1334
1335 @subsection Examples
1336
1337 @itemize
1338 @item
1339 Add 1024 samples of silence to the end of the input:
1340 @example
1341 apad=pad_len=1024
1342 @end example
1343
1344 @item
1345 Make sure the audio output will contain at least 10000 samples, pad
1346 the input with silence if required:
1347 @example
1348 apad=whole_len=10000
1349 @end example
1350
1351 @item
1352 Use @command{ffmpeg} to pad the audio input with silence, so that the
1353 video stream will always result the shortest and will be converted
1354 until the end in the output file when using the @option{shortest}
1355 option:
1356 @example
1357 ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
1358 @end example
1359 @end itemize
1360
1361 @section aphaser
1362 Add a phasing effect to the input audio.
1363
1364 A phaser filter creates series of peaks and troughs in the frequency spectrum.
1365 The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
1366
1367 A description of the accepted parameters follows.
1368
1369 @table @option
1370 @item in_gain
1371 Set input gain. Default is 0.4.
1372
1373 @item out_gain
1374 Set output gain. Default is 0.74
1375
1376 @item delay
1377 Set delay in milliseconds. Default is 3.0.
1378
1379 @item decay
1380 Set decay. Default is 0.4.
1381
1382 @item speed
1383 Set modulation speed in Hz. Default is 0.5.
1384
1385 @item type
1386 Set modulation type. Default is triangular.
1387
1388 It accepts the following values:
1389 @table @samp
1390 @item triangular, t
1391 @item sinusoidal, s
1392 @end table
1393 @end table
1394
1395 @section apulsator
1396
1397 Audio pulsator is something between an autopanner and a tremolo.
1398 But it can produce funny stereo effects as well. Pulsator changes the volume
1399 of the left and right channel based on a LFO (low frequency oscillator) with
1400 different waveforms and shifted phases.
1401 This filter have the ability to define an offset between left and right
1402 channel. An offset of 0 means that both LFO shapes match each other.
1403 The left and right channel are altered equally - a conventional tremolo.
1404 An offset of 50% means that the shape of the right channel is exactly shifted
1405 in phase (or moved backwards about half of the frequency) - pulsator acts as
1406 an autopanner. At 1 both curves match again. Every setting in between moves the
1407 phase shift gapless between all stages and produces some "bypassing" sounds with
1408 sine and triangle waveforms. The more you set the offset near 1 (starting from
1409 the 0.5) the faster the signal passes from the left to the right speaker.
1410
1411 The filter accepts the following options:
1412
1413 @table @option
1414 @item level_in
1415 Set input gain. By default it is 1. Range is [0.015625 - 64].
1416
1417 @item level_out
1418 Set output gain. By default it is 1. Range is [0.015625 - 64].
1419
1420 @item mode
1421 Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
1422 sawup or sawdown. Default is sine.
1423
1424 @item amount
1425 Set modulation. Define how much of original signal is affected by the LFO.
1426
1427 @item offset_l
1428 Set left channel offset. Default is 0. Allowed range is [0 - 1].
1429
1430 @item offset_r
1431 Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
1432
1433 @item width
1434 Set pulse width. Default is 1. Allowed range is [0 - 2].
1435
1436 @item timing
1437 Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
1438
1439 @item bpm
1440 Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
1441 is set to bpm.
1442
1443 @item ms
1444 Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
1445 is set to ms.
1446
1447 @item hz
1448 Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
1449 if timing is set to hz.
1450 @end table
1451
1452 @anchor{aresample}
1453 @section aresample
1454
1455 Resample the input audio to the specified parameters, using the
1456 libswresample library. If none are specified then the filter will
1457 automatically convert between its input and output.
1458
1459 This filter is also able to stretch/squeeze the audio data to make it match
1460 the timestamps or to inject silence / cut out audio to make it match the
1461 timestamps, do a combination of both or do neither.
1462
1463 The filter accepts the syntax
1464 [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
1465 expresses a sample rate and @var{resampler_options} is a list of
1466 @var{key}=@var{value} pairs, separated by ":". See the
1467 @ref{Resampler Options,,the "Resampler Options" section in the
1468 ffmpeg-resampler(1) manual,ffmpeg-resampler}
1469 for the complete list of supported options.
1470
1471 @subsection Examples
1472
1473 @itemize
1474 @item
1475 Resample the input audio to 44100Hz:
1476 @example
1477 aresample=44100
1478 @end example
1479
1480 @item
1481 Stretch/squeeze samples to the given timestamps, with a maximum of 1000
1482 samples per second compensation:
1483 @example
1484 aresample=async=1000
1485 @end example
1486 @end itemize
1487
1488 @section areverse
1489
1490 Reverse an audio clip.
1491
1492 Warning: This filter requires memory to buffer the entire clip, so trimming
1493 is suggested.
1494
1495 @subsection Examples
1496
1497 @itemize
1498 @item
1499 Take the first 5 seconds of a clip, and reverse it.
1500 @example
1501 atrim=end=5,areverse
1502 @end example
1503 @end itemize
1504
1505 @section asetnsamples
1506
1507 Set the number of samples per each output audio frame.
1508
1509 The last output packet may contain a different number of samples, as
1510 the filter will flush all the remaining samples when the input audio
1511 signals its end.
1512
1513 The filter accepts the following options:
1514
1515 @table @option
1516
1517 @item nb_out_samples, n
1518 Set the number of frames per each output audio frame. The number is
1519 intended as the number of samples @emph{per each channel}.
1520 Default value is 1024.
1521
1522 @item pad, p
1523 If set to 1, the filter will pad the last audio frame with zeroes, so
1524 that the last frame will contain the same number of samples as the
1525 previous ones. Default value is 1.
1526 @end table
1527
1528 For example, to set the number of per-frame samples to 1234 and
1529 disable padding for the last frame, use:
1530 @example
1531 asetnsamples=n=1234:p=0
1532 @end example
1533
1534 @section asetrate
1535
1536 Set the sample rate without altering the PCM data.
1537 This will result in a change of speed and pitch.
1538
1539 The filter accepts the following options:
1540
1541 @table @option
1542 @item sample_rate, r
1543 Set the output sample rate. Default is 44100 Hz.
1544 @end table
1545
1546 @section ashowinfo
1547
1548 Show a line containing various information for each input audio frame.
1549 The input audio is not modified.
1550
1551 The shown line contains a sequence of key/value pairs of the form
1552 @var{key}:@var{value}.
1553
1554 The following values are shown in the output:
1555
1556 @table @option
1557 @item n
1558 The (sequential) number of the input frame, starting from 0.
1559
1560 @item pts
1561 The presentation timestamp of the input frame, in time base units; the time base
1562 depends on the filter input pad, and is usually 1/@var{sample_rate}.
1563
1564 @item pts_time
1565 The presentation timestamp of the input frame in seconds.
1566
1567 @item pos
1568 position of the frame in the input stream, -1 if this information in
1569 unavailable and/or meaningless (for example in case of synthetic audio)
1570
1571 @item fmt
1572 The sample format.
1573
1574 @item chlayout
1575 The channel layout.
1576
1577 @item rate
1578 The sample rate for the audio frame.
1579
1580 @item nb_samples
1581 The number of samples (per channel) in the frame.
1582
1583 @item checksum
1584 The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
1585 audio, the data is treated as if all the planes were concatenated.
1586
1587 @item plane_checksums
1588 A list of Adler-32 checksums for each data plane.
1589 @end table
1590
1591 @anchor{astats}
1592 @section astats
1593
1594 Display time domain statistical information about the audio channels.
1595 Statistics are calculated and displayed for each audio channel and,
1596 where applicable, an overall figure is also given.
1597
1598 It accepts the following option:
1599 @table @option
1600 @item length
1601 Short window length in seconds, used for peak and trough RMS measurement.
1602 Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.1 - 10]}.
1603
1604 @item metadata
1605
1606 Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
1607 where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
1608 disabled.
1609
1610 Available keys for each channel are:
1611 DC_offset
1612 Min_level
1613 Max_level
1614 Min_difference
1615 Max_difference
1616 Mean_difference
1617 RMS_difference
1618 Peak_level
1619 RMS_peak
1620 RMS_trough
1621 Crest_factor
1622 Flat_factor
1623 Peak_count
1624 Bit_depth
1625
1626 and for Overall:
1627 DC_offset
1628 Min_level
1629 Max_level
1630 Min_difference
1631 Max_difference
1632 Mean_difference
1633 RMS_difference
1634 Peak_level
1635 RMS_level
1636 RMS_peak
1637 RMS_trough
1638 Flat_factor
1639 Peak_count
1640 Bit_depth
1641 Number_of_samples
1642
1643 For example full key look like this @code{lavfi.astats.1.DC_offset} or
1644 this @code{lavfi.astats.Overall.Peak_count}.
1645
1646 For description what each key means read below.
1647
1648 @item reset
1649 Set number of frame after which stats are going to be recalculated.
1650 Default is disabled.
1651 @end table
1652
1653 A description of each shown parameter follows:
1654
1655 @table @option
1656 @item DC offset
1657 Mean amplitude displacement from zero.
1658
1659 @item Min level
1660 Minimal sample level.
1661
1662 @item Max level
1663 Maximal sample level.
1664
1665 @item Min difference
1666 Minimal difference between two consecutive samples.
1667
1668 @item Max difference
1669 Maximal difference between two consecutive samples.
1670
1671 @item Mean difference
1672 Mean difference between two consecutive samples.
1673 The average of each difference between two consecutive samples.
1674
1675 @item RMS difference
1676 Root Mean Square difference between two consecutive samples.
1677
1678 @item Peak level dB
1679 @item RMS level dB
1680 Standard peak and RMS level measured in dBFS.
1681
1682 @item RMS peak dB
1683 @item RMS trough dB
1684 Peak and trough values for RMS level measured over a short window.
1685
1686 @item Crest factor
1687 Standard ratio of peak to RMS level (note: not in dB).
1688
1689 @item Flat factor
1690 Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
1691 (i.e. either @var{Min level} or @var{Max level}).
1692
1693 @item Peak count
1694 Number of occasions (not the number of samples) that the signal attained either
1695 @var{Min level} or @var{Max level}.
1696
1697 @item Bit depth
1698 Overall bit depth of audio. Number of bits used for each sample.
1699 @end table
1700
1701 @section atempo
1702
1703 Adjust audio tempo.
1704
1705 The filter accepts exactly one parameter, the audio tempo. If not
1706 specified then the filter will assume nominal 1.0 tempo. Tempo must
1707 be in the [0.5, 2.0] range.
1708
1709 @subsection Examples
1710
1711 @itemize
1712 @item
1713 Slow down audio to 80% tempo:
1714 @example
1715 atempo=0.8
1716 @end example
1717
1718 @item
1719 To speed up audio to 125% tempo:
1720 @example
1721 atempo=1.25
1722 @end example
1723 @end itemize
1724
1725 @section atrim
1726
1727 Trim the input so that the output contains one continuous subpart of the input.
1728
1729 It accepts the following parameters:
1730 @table @option
1731 @item start
1732 Timestamp (in seconds) of the start of the section to keep. I.e. the audio
1733 sample with the timestamp @var{start} will be the first sample in the output.
1734
1735 @item end
1736 Specify time of the first audio sample that will be dropped, i.e. the
1737 audio sample immediately preceding the one with the timestamp @var{end} will be
1738 the last sample in the output.
1739
1740 @item start_pts
1741 Same as @var{start}, except this option sets the start timestamp in samples
1742 instead of seconds.
1743
1744 @item end_pts
1745 Same as @var{end}, except this option sets the end timestamp in samples instead
1746 of seconds.
1747
1748 @item duration
1749 The maximum duration of the output in seconds.
1750
1751 @item start_sample
1752 The number of the first sample that should be output.
1753
1754 @item end_sample
1755 The number of the first sample that should be dropped.
1756 @end table
1757
1758 @option{start}, @option{end}, and @option{duration} are expressed as time
1759 duration specifications; see
1760 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
1761
1762 Note that the first two sets of the start/end options and the @option{duration}
1763 option look at the frame timestamp, while the _sample options simply count the
1764 samples that pass through the filter. So start/end_pts and start/end_sample will
1765 give different results when the timestamps are wrong, inexact or do not start at
1766 zero. Also note that this filter does not modify the timestamps. If you wish
1767 to have the output timestamps start at zero, insert the asetpts filter after the
1768 atrim filter.
1769
1770 If multiple start or end options are set, this filter tries to be greedy and
1771 keep all samples that match at least one of the specified constraints. To keep
1772 only the part that matches all the constraints at once, chain multiple atrim
1773 filters.
1774
1775 The defaults are such that all the input is kept. So it is possible to set e.g.
1776 just the end values to keep everything before the specified time.
1777
1778 Examples:
1779 @itemize
1780 @item
1781 Drop everything except the second minute of input:
1782 @example
1783 ffmpeg -i INPUT -af atrim=60:120
1784 @end example
1785
1786 @item
1787 Keep only the first 1000 samples:
1788 @example
1789 ffmpeg -i INPUT -af atrim=end_sample=1000
1790 @end example
1791
1792 @end itemize
1793
1794 @section bandpass
1795
1796 Apply a two-pole Butterworth band-pass filter with central
1797 frequency @var{frequency}, and (3dB-point) band-width width.
1798 The @var{csg} option selects a constant skirt gain (peak gain = Q)
1799 instead of the default: constant 0dB peak gain.
1800 The filter roll off at 6dB per octave (20dB per decade).
1801
1802 The filter accepts the following options:
1803
1804 @table @option
1805 @item frequency, f
1806 Set the filter's central frequency. Default is @code{3000}.
1807
1808 @item csg
1809 Constant skirt gain if set to 1. Defaults to 0.
1810
1811 @item width_type
1812 Set method to specify band-width of filter.
1813 @table @option
1814 @item h
1815 Hz
1816 @item q
1817 Q-Factor
1818 @item o
1819 octave
1820 @item s
1821 slope
1822 @end table
1823
1824 @item width, w
1825 Specify the band-width of a filter in width_type units.
1826
1827 @item channels, c
1828 Specify which channels to filter, by default all available are filtered.
1829 @end table
1830
1831 @section bandreject
1832
1833 Apply a two-pole Butterworth band-reject filter with central
1834 frequency @var{frequency}, and (3dB-point) band-width @var{width}.
1835 The filter roll off at 6dB per octave (20dB per decade).
1836
1837 The filter accepts the following options:
1838
1839 @table @option
1840 @item frequency, f
1841 Set the filter's central frequency. Default is @code{3000}.
1842
1843 @item width_type
1844 Set method to specify band-width of filter.
1845 @table @option
1846 @item h
1847 Hz
1848 @item q
1849 Q-Factor
1850 @item o
1851 octave
1852 @item s
1853 slope
1854 @end table
1855
1856 @item width, w
1857 Specify the band-width of a filter in width_type units.
1858
1859 @item channels, c
1860 Specify which channels to filter, by default all available are filtered.
1861 @end table
1862
1863 @section bass
1864
1865 Boost or cut the bass (lower) frequencies of the audio using a two-pole
1866 shelving filter with a response similar to that of a standard
1867 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
1868
1869 The filter accepts the following options:
1870
1871 @table @option
1872 @item gain, g
1873 Give the gain at 0 Hz. Its useful range is about -20
1874 (for a large cut) to +20 (for a large boost).
1875 Beware of clipping when using a positive gain.
1876
1877 @item frequency, f
1878 Set the filter's central frequency and so can be used
1879 to extend or reduce the frequency range to be boosted or cut.
1880 The default value is @code{100} Hz.
1881
1882 @item width_type
1883 Set method to specify band-width of filter.
1884 @table @option
1885 @item h
1886 Hz
1887 @item q
1888 Q-Factor
1889 @item o
1890 octave
1891 @item s
1892 slope
1893 @end table
1894
1895 @item width, w
1896 Determine how steep is the filter's shelf transition.
1897
1898 @item channels, c
1899 Specify which channels to filter, by default all available are filtered.
1900 @end table
1901
1902 @section biquad
1903
1904 Apply a biquad IIR filter with the given coefficients.
1905 Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
1906 are the numerator and denominator coefficients respectively.
1907 and @var{channels}, @var{c} specify which channels to filter, by default all
1908 available are filtered.
1909
1910 @section bs2b
1911 Bauer stereo to binaural transformation, which improves headphone listening of
1912 stereo audio records.
1913
1914 It accepts the following parameters:
1915 @table @option
1916
1917 @item profile
1918 Pre-defined crossfeed level.
1919 @table @option
1920
1921 @item default
1922 Default level (fcut=700, feed=50).
1923
1924 @item cmoy
1925 Chu Moy circuit (fcut=700, feed=60).
1926
1927 @item jmeier
1928 Jan Meier circuit (fcut=650, feed=95).
1929
1930 @end table
1931
1932 @item fcut
1933 Cut frequency (in Hz).
1934
1935 @item feed
1936 Feed level (in Hz).
1937
1938 @end table
1939
1940 @section channelmap
1941
1942 Remap input channels to new locations.
1943
1944 It accepts the following parameters:
1945 @table @option
1946 @item map
1947 Map channels from input to output. The argument is a '|'-separated list of
1948 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
1949 @var{in_channel} form. @var{in_channel} can be either the name of the input
1950 channel (e.g. FL for front left) or its index in the input channel layout.
1951 @var{out_channel} is the name of the output channel or its index in the output
1952 channel layout. If @var{out_channel} is not given then it is implicitly an
1953 index, starting with zero and increasing by one for each mapping.
1954
1955 @item channel_layout
1956 The channel layout of the output stream.
1957 @end table
1958
1959 If no mapping is present, the filter will implicitly map input channels to
1960 output channels, preserving indices.
1961
1962 For example, assuming a 5.1+downmix input MOV file,
1963 @example
1964 ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
1965 @end example
1966 will create an output WAV file tagged as stereo from the downmix channels of
1967 the input.
1968
1969 To fix a 5.1 WAV improperly encoded in AAC's native channel order
1970 @example
1971 ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
1972 @end example
1973
1974 @section channelsplit
1975
1976 Split each channel from an input audio stream into a separate output stream.
1977
1978 It accepts the following parameters:
1979 @table @option
1980 @item channel_layout
1981 The channel layout of the input stream. The default is "stereo".
1982 @end table
1983
1984 For example, assuming a stereo input MP3 file,
1985 @example
1986 ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
1987 @end example
1988 will create an output Matroska file with two audio streams, one containing only
1989 the left channel and the other the right channel.
1990
1991 Split a 5.1 WAV file into per-channel files:
1992 @example
1993 ffmpeg -i in.wav -filter_complex
1994 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
1995 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
1996 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
1997 side_right.wav
1998 @end example
1999
2000 @section chorus
2001 Add a chorus effect to the audio.
2002
2003 Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
2004
2005 Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
2006 constant, with chorus, it is varied using using sinusoidal or triangular modulation.
2007 The modulation depth defines the range the modulated delay is played before or after
2008 the delay. Hence the delayed sound will sound slower or faster, that is the delayed
2009 sound tuned around the original one, like in a chorus where some vocals are slightly
2010 off key.
2011
2012 It accepts the following parameters:
2013 @table @option
2014 @item in_gain
2015 Set input gain. Default is 0.4.
2016
2017 @item out_gain
2018 Set output gain. Default is 0.4.
2019
2020 @item delays
2021 Set delays. A typical delay is around 40ms to 60ms.
2022
2023 @item decays
2024 Set decays.
2025
2026 @item speeds
2027 Set speeds.
2028
2029 @item depths
2030 Set depths.
2031 @end table
2032
2033 @subsection Examples
2034
2035 @itemize
2036 @item
2037 A single delay:
2038 @example
2039 chorus=0.7:0.9:55:0.4:0.25:2
2040 @end example
2041
2042 @item
2043 Two delays:
2044 @example
2045 chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
2046 @end example
2047
2048 @item
2049 Fuller sounding chorus with three delays:
2050 @example
2051 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
2052 @end example
2053 @end itemize
2054
2055 @section compand
2056 Compress or expand the audio's dynamic range.
2057
2058 It accepts the following parameters:
2059
2060 @table @option
2061
2062 @item attacks
2063 @item decays
2064 A list of times in seconds for each channel over which the instantaneous level
2065 of the input signal is averaged to determine its volume. @var{attacks} refers to
2066 increase of volume and @var{decays} refers to decrease of volume. For most
2067 situations, the attack time (response to the audio getting louder) should be
2068 shorter than the decay time, because the human ear is more sensitive to sudden
2069 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
2070 a typical value for decay is 0.8 seconds.
2071 If specified number of attacks & decays is lower than number of channels, the last
2072 set attack/decay will be used for all remaining channels.
2073
2074 @item points
2075 A list of points for the transfer function, specified in dB relative to the
2076 maximum possible signal amplitude. Each key points list must be defined using
2077 the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
2078 @code{x0/y0 x1/y1 x2/y2 ....}
2079
2080 The input values must be in strictly increasing order but the transfer function
2081 does not have to be monotonically rising. The point @code{0/0} is assumed but
2082 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
2083 function are @code{-70/-70|-60/-20}.
2084
2085 @item soft-knee
2086 Set the curve radius in dB for all joints. It defaults to 0.01.
2087
2088 @item gain
2089 Set the additional gain in dB to be applied at all points on the transfer
2090 function. This allows for easy adjustment of the overall gain.
2091 It defaults to 0.
2092
2093 @item volume
2094 Set an initial volume, in dB, to be assumed for each channel when filtering
2095 starts. This permits the user to supply a nominal level initially, so that, for
2096 example, a very large gain is not applied to initial signal levels before the
2097 companding has begun to operate. A typical value for audio which is initially
2098 quiet is -90 dB. It defaults to 0.
2099
2100 @item delay
2101 Set a delay, in seconds. The input audio is analyzed immediately, but audio is
2102 delayed before being fed to the volume adjuster. Specifying a delay
2103 approximately equal to the attack/decay times allows the filter to effectively
2104 operate in predictive rather than reactive mode. It defaults to 0.
2105
2106 @end table
2107
2108 @subsection Examples
2109
2110 @itemize
2111 @item
2112 Make music with both quiet and loud passages suitable for listening to in a
2113 noisy environment:
2114 @example
2115 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
2116 @end example
2117
2118 Another example for audio with whisper and explosion parts:
2119 @example
2120 compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
2121 @end example
2122
2123 @item
2124 A noise gate for when the noise is at a lower level than the signal:
2125 @example
2126 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
2127 @end example
2128
2129 @item
2130 Here is another noise gate, this time for when the noise is at a higher level
2131 than the signal (making it, in some ways, similar to squelch):
2132 @example
2133 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
2134 @end example
2135
2136 @item
2137 2:1 compression starting at -6dB:
2138 @example
2139 compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
2140 @end example
2141
2142 @item
2143 2:1 compression starting at -9dB:
2144 @example
2145 compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
2146 @end example
2147
2148 @item
2149 2:1 compression starting at -12dB:
2150 @example
2151 compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
2152 @end example
2153
2154 @item
2155 2:1 compression starting at -18dB:
2156 @example
2157 compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
2158 @end example
2159
2160 @item
2161 3:1 compression starting at -15dB:
2162 @example
2163 compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
2164 @end example
2165
2166 @item
2167 Compressor/Gate:
2168 @example
2169 compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
2170 @end example
2171
2172 @item
2173 Expander:
2174 @example
2175 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
2176 @end example
2177
2178 @item
2179 Hard limiter at -6dB:
2180 @example
2181 compand=attacks=0:points=-80/-80|-6/-6|20/-6
2182 @end example
2183
2184 @item
2185 Hard limiter at -12dB:
2186 @example
2187 compand=attacks=0:points=-80/-80|-12/-12|20/-12
2188 @end example
2189
2190 @item
2191 Hard noise gate at -35 dB:
2192 @example
2193 compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
2194 @end example
2195
2196 @item
2197 Soft limiter:
2198 @example
2199 compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
2200 @end example
2201 @end itemize
2202
2203 @section compensationdelay
2204
2205 Compensation Delay Line is a metric based delay to compensate differing
2206 positions of microphones or speakers.
2207
2208 For example, you have recorded guitar with two microphones placed in
2209 different location. Because the front of sound wave has fixed speed in
2210 normal conditions, the phasing of microphones can vary and depends on
2211 their location and interposition. The best sound mix can be achieved when
2212 these microphones are in phase (synchronized). Note that distance of
2213 ~30 cm between microphones makes one microphone to capture signal in
2214 antiphase to another microphone. That makes the final mix sounding moody.
2215 This filter helps to solve phasing problems by adding different delays
2216 to each microphone track and make them synchronized.
2217
2218 The best result can be reached when you take one track as base and
2219 synchronize other tracks one by one with it.
2220 Remember that synchronization/delay tolerance depends on sample rate, too.
2221 Higher sample rates will give more tolerance.
2222
2223 It accepts the following parameters:
2224
2225 @table @option
2226 @item mm
2227 Set millimeters distance. This is compensation distance for fine tuning.
2228 Default is 0.
2229
2230 @item cm
2231 Set cm distance. This is compensation distance for tightening distance setup.
2232 Default is 0.
2233
2234 @item m
2235 Set meters distance. This is compensation distance for hard distance setup.
2236 Default is 0.
2237
2238 @item dry
2239 Set dry amount. Amount of unprocessed (dry) signal.
2240 Default is 0.
2241
2242 @item wet
2243 Set wet amount. Amount of processed (wet) signal.
2244 Default is 1.
2245
2246 @item temp
2247 Set temperature degree in Celsius. This is the temperature of the environment.
2248 Default is 20.
2249 @end table
2250
2251 @section crystalizer
2252 Simple algorithm to expand audio dynamic range.
2253
2254 The filter accepts the following options:
2255
2256 @table @option
2257 @item i
2258 Sets the intensity of effect (default: 2.0). Must be in range between 0.0
2259 (unchanged sound) to 10.0 (maximum effect).
2260
2261 @item c
2262 Enable clipping. By default is enabled.
2263 @end table
2264
2265 @section dcshift
2266 Apply a DC shift to the audio.
2267
2268 This can be useful to remove a DC offset (caused perhaps by a hardware problem
2269 in the recording chain) from the audio. The effect of a DC offset is reduced
2270 headroom and hence volume. The @ref{astats} filter can be used to determine if
2271 a signal has a DC offset.
2272
2273 @table @option
2274 @item shift
2275 Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
2276 the audio.
2277
2278 @item limitergain
2279 Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
2280 used to prevent clipping.
2281 @end table
2282
2283 @section dynaudnorm
2284 Dynamic Audio Normalizer.
2285
2286 This filter applies a certain amount of gain to the input audio in order
2287 to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
2288 contrast to more "simple" normalization algorithms, the Dynamic Audio
2289 Normalizer *dynamically* re-adjusts the gain factor to the input audio.
2290 This allows for applying extra gain to the "quiet" sections of the audio
2291 while avoiding distortions or clipping the "loud" sections. In other words:
2292 The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
2293 sections, in the sense that the volume of each section is brought to the
2294 same target level. Note, however, that the Dynamic Audio Normalizer achieves
2295 this goal *without* applying "dynamic range compressing". It will retain 100%
2296 of the dynamic range *within* each section of the audio file.
2297
2298 @table @option
2299 @item f
2300 Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
2301 Default is 500 milliseconds.
2302 The Dynamic Audio Normalizer processes the input audio in small chunks,
2303 referred to as frames. This is required, because a peak magnitude has no
2304 meaning for just a single sample value. Instead, we need to determine the
2305 peak magnitude for a contiguous sequence of sample values. While a "standard"
2306 normalizer would simply use the peak magnitude of the complete file, the
2307 Dynamic Audio Normalizer determines the peak magnitude individually for each
2308 frame. The length of a frame is specified in milliseconds. By default, the
2309 Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
2310 been found to give good results with most files.
2311 Note that the exact frame length, in number of samples, will be determined
2312 automatically, based on the sampling rate of the individual input audio file.
2313
2314 @item g
2315 Set the Gaussian filter window size. In range from 3 to 301, must be odd
2316 number. Default is 31.
2317 Probably the most important parameter of the Dynamic Audio Normalizer is the
2318 @code{window size} of the Gaussian smoothing filter. The filter's window size
2319 is specified in frames, centered around the current frame. For the sake of
2320 simplicity, this must be an odd number. Consequently, the default value of 31
2321 takes into account the current frame, as well as the 15 preceding frames and
2322 the 15 subsequent frames. Using a larger window results in a stronger
2323 smoothing effect and thus in less gain variation, i.e. slower gain
2324 adaptation. Conversely, using a smaller window results in a weaker smoothing
2325 effect and thus in more gain variation, i.e. faster gain adaptation.
2326 In other words, the more you increase this value, the more the Dynamic Audio
2327 Normalizer will behave like a "traditional" normalization filter. On the
2328 contrary, the more you decrease this value, the more the Dynamic Audio
2329 Normalizer will behave like a dynamic range compressor.
2330
2331 @item p
2332 Set the target peak value. This specifies the highest permissible magnitude
2333 level for the normalized audio input. This filter will try to approach the
2334 target peak magnitude as closely as possible, but at the same time it also
2335 makes sure that the normalized signal will never exceed the peak magnitude.
2336 A frame's maximum local gain factor is imposed directly by the target peak
2337 magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
2338 It is not recommended to go above this value.
2339
2340 @item m
2341 Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
2342 The Dynamic Audio Normalizer determines the maximum possible (local) gain
2343 factor for each input frame, i.e. the maximum gain factor that does not
2344 result in clipping or distortion. The maximum gain factor is determined by
2345 the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
2346 additionally bounds the frame's maximum gain factor by a predetermined
2347 (global) maximum gain factor. This is done in order to avoid excessive gain
2348 factors in "silent" or almost silent frames. By default, the maximum gain
2349 factor is 10.0, For most inputs the default value should be sufficient and
2350 it usually is not recommended to increase this value. Though, for input
2351 with an extremely low overall volume level, it may be necessary to allow even
2352 higher gain factors. Note, however, that the Dynamic Audio Normalizer does
2353 not simply apply a "hard" threshold (i.e. cut off values above the threshold).
2354 Instead, a "sigmoid" threshold function will be applied. This way, the
2355 gain factors will smoothly approach the threshold value, but never exceed that
2356 value.
2357
2358 @item r
2359 Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
2360 By default, the Dynamic Audio Normalizer performs "peak" normalization.
2361 This means that the maximum local gain factor for each frame is defined
2362 (only) by the frame's highest magnitude sample. This way, the samples can
2363 be amplified as much as possible without exceeding the maximum signal
2364 level, i.e. without clipping. Optionally, however, the Dynamic Audio
2365 Normalizer can also take into account the frame's root mean square,
2366 abbreviated RMS. In electrical engineering, the RMS is commonly used to
2367 determine the power of a time-varying signal. It is therefore considered
2368 that the RMS is a better approximation of the "perceived loudness" than
2369 just looking at the signal's peak magnitude. Consequently, by adjusting all
2370 frames to a constant RMS value, a uniform "perceived loudness" can be
2371 established. If a target RMS value has been specified, a frame's local gain
2372 factor is defined as the factor that would result in exactly that RMS value.
2373 Note, however, that the maximum local gain factor is still restricted by the
2374 frame's highest magnitude sample, in order to prevent clipping.
2375
2376 @item n
2377 Enable channels coupling. By default is enabled.
2378 By default, the Dynamic Audio Normalizer will amplify all channels by the same
2379 amount. This means the same gain factor will be applied to all channels, i.e.
2380 the maximum possible gain factor is determined by the "loudest" channel.
2381 However, in some recordings, it may happen that the volume of the different
2382 channels is uneven, e.g. one channel may be "quieter" than the other one(s).
2383 In this case, this option can be used to disable the channel coupling. This way,
2384 the gain factor will be determined independently for each channel, depending
2385 only on the individual channel's highest magnitude sample. This allows for
2386 harmonizing the volume of the different channels.
2387
2388 @item c
2389 Enable DC bias correction. By default is disabled.
2390 An audio signal (in the time domain) is a sequence of sample values.
2391 In the Dynamic Audio Normalizer these sample values are represented in the
2392 -1.0 to 1.0 range, regardless of the original input format. Normally, the
2393 audio signal, or "waveform", should be centered around the zero point.
2394 That means if we calculate the mean value of all samples in a file, or in a
2395 single frame, then the result should be 0.0 or at least very close to that
2396 value. If, however, there is a significant deviation of the mean value from
2397 0.0, in either positive or negative direction, this is referred to as a
2398 DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
2399 Audio Normalizer provides optional DC bias correction.
2400 With DC bias correction enabled, the Dynamic Audio Normalizer will determine
2401 the mean value, or "DC correction" offset, of each input frame and subtract
2402 that value from all of the frame's sample values which ensures those samples
2403 are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
2404 boundaries, the DC correction offset values will be interpolated smoothly
2405 between neighbouring frames.
2406
2407 @item b
2408 Enable alternative boundary mode. By default is disabled.
2409 The Dynamic Audio Normalizer takes into account a certain neighbourhood
2410 around each frame. This includes the preceding frames as well as the
2411 subsequent frames. However, for the "boundary" frames, located at the very
2412 beginning and at the very end of the audio file, not all neighbouring
2413 frames are available. In particular, for the first few frames in the audio
2414 file, the preceding frames are not known. And, similarly, for the last few
2415 frames in the audio file, the subsequent frames are not known. Thus, the
2416 question arises which gain factors should be assumed for the missing frames
2417 in the "boundary" region. The Dynamic Audio Normalizer implements two modes
2418 to deal with this situation. The default boundary mode assumes a gain factor
2419 of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
2420 "fade out" at the beginning and at the end of the input, respectively.
2421
2422 @item s
2423 Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
2424 By default, the Dynamic Audio Normalizer does not apply "traditional"
2425 compression. This means that signal peaks will not be pruned and thus the
2426 full dynamic range will be retained within each local neighbourhood. However,
2427 in some cases it may be desirable to combine the Dynamic Audio Normalizer's
2428 normalization algorithm with a more "traditional" compression.
2429 For this purpose, the Dynamic Audio Normalizer provides an optional compression
2430 (thresholding) function. If (and only if) the compression feature is enabled,
2431 all input frames will be processed by a soft knee thresholding function prior
2432 to the actual normalization process. Put simply, the thresholding function is
2433 going to prune all samples whose magnitude exceeds a certain threshold value.
2434 However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
2435 value. Instead, the threshold value will be adjusted for each individual
2436 frame.
2437 In general, smaller parameters result in stronger compression, and vice versa.
2438 Values below 3.0 are not recommended, because audible distortion may appear.
2439 @end table
2440
2441 @section earwax
2442
2443 Make audio easier to listen to on headphones.
2444
2445 This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
2446 so that when listened to on headphones the stereo image is moved from
2447 inside your head (standard for headphones) to outside and in front of
2448 the listener (standard for speakers).
2449
2450 Ported from SoX.
2451
2452 @section equalizer
2453
2454 Apply a two-pole peaking equalisation (EQ) filter. With this
2455 filter, the signal-level at and around a selected frequency can
2456 be increased or decreased, whilst (unlike bandpass and bandreject
2457 filters) that at all other frequencies is unchanged.
2458
2459 In order to produce complex equalisation curves, this filter can
2460 be given several times, each with a different central frequency.
2461
2462 The filter accepts the following options:
2463
2464 @table @option
2465 @item frequency, f
2466 Set the filter's central frequency in Hz.
2467
2468 @item width_type
2469 Set method to specify band-width of filter.
2470 @table @option
2471 @item h
2472 Hz
2473 @item q
2474 Q-Factor
2475 @item o
2476 octave
2477 @item s
2478 slope
2479 @end table
2480
2481 @item width, w
2482 Specify the band-width of a filter in width_type units.
2483
2484 @item gain, g
2485 Set the required gain or attenuation in dB.
2486 Beware of clipping when using a positive gain.
2487
2488 @item channels, c
2489 Specify which channels to filter, by default all available are filtered.
2490 @end table
2491
2492 @subsection Examples
2493 @itemize
2494 @item
2495 Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
2496 @example
2497 equalizer=f=1000:width_type=h:width=200:g=-10
2498 @end example
2499
2500 @item
2501 Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
2502 @example
2503 equalizer=f=1000:width_type=q:width=1:g=2,equalizer=f=100:width_type=q:width=2:g=-5
2504 @end example
2505 @end itemize
2506
2507 @section extrastereo
2508
2509 Linearly increases the difference between left and right channels which
2510 adds some sort of "live" effect to playback.
2511
2512 The filter accepts the following options:
2513
2514 @table @option
2515 @item m
2516 Sets the difference coefficient (default: 2.5). 0.0 means mono sound
2517 (average of both channels), with 1.0 sound will be unchanged, with
2518 -1.0 left and right channels will be swapped.
2519
2520 @item c
2521 Enable clipping. By default is enabled.
2522 @end table
2523
2524 @section firequalizer
2525 Apply FIR Equalization using arbitrary frequency response.
2526
2527 The filter accepts the following option:
2528
2529 @table @option
2530 @item gain
2531 Set gain curve equation (in dB). The expression can contain variables:
2532 @table @option
2533 @item f
2534 the evaluated frequency
2535 @item sr
2536 sample rate
2537 @item ch
2538 channel number, set to 0 when multichannels evaluation is disabled
2539 @item chid
2540 channel id, see libavutil/channel_layout.h, set to the first channel id when
2541 multichannels evaluation is disabled
2542 @item chs
2543 number of channels
2544 @item chlayout
2545 channel_layout, see libavutil/channel_layout.h
2546
2547 @end table
2548 and functions:
2549 @table @option
2550 @item gain_interpolate(f)
2551 interpolate gain on frequency f based on gain_entry
2552 @item cubic_interpolate(f)
2553 same as gain_interpolate, but smoother
2554 @end table
2555 This option is also available as command. Default is @code{gain_interpolate(f)}.
2556
2557 @item gain_entry
2558 Set gain entry for gain_interpolate function. The expression can
2559 contain functions:
2560 @table @option
2561 @item entry(f, g)
2562 store gain entry at frequency f with value g
2563 @end table
2564 This option is also available as command.
2565
2566 @item delay
2567 Set filter delay in seconds. Higher value means more accurate.
2568 Default is @code{0.01}.
2569
2570 @item accuracy
2571 Set filter accuracy in Hz. Lower value means more accurate.
2572 Default is @code{5}.
2573
2574 @item wfunc
2575 Set window function. Acceptable values are:
2576 @table @option
2577 @item rectangular
2578 rectangular window, useful when gain curve is already smooth
2579 @item hann
2580 hann window (default)
2581 @item hamming
2582 hamming window
2583 @item blackman
2584 blackman window
2585 @item nuttall3
2586 3-terms continuous 1st derivative nuttall window
2587 @item mnuttall3
2588 minimum 3-terms discontinuous nuttall window
2589 @item nuttall
2590 4-terms continuous 1st derivative nuttall window
2591 @item bnuttall
2592 minimum 4-terms discontinuous nuttall (blackman-nuttall) window
2593 @item bharris
2594 blackman-harris window
2595 @item tukey
2596 tukey window
2597 @end table
2598
2599 @item fixed
2600 If enabled, use fixed number of audio samples. This improves speed when
2601 filtering with large delay. Default is disabled.
2602
2603 @item multi
2604 Enable multichannels evaluation on gain. Default is disabled.
2605
2606 @item zero_phase
2607 Enable zero phase mode by subtracting timestamp to compensate delay.
2608 Default is disabled.
2609
2610 @item scale
2611 Set scale used by gain. Acceptable values are:
2612 @table @option
2613 @item linlin
2614 linear frequency, linear gain
2615 @item linlog
2616 linear frequency, logarithmic (in dB) gain (default)
2617 @item loglin
2618 logarithmic (in octave scale where 20 Hz is 0) frequency, linear gain
2619 @item loglog
2620 logarithmic frequency, logarithmic gain
2621 @end table
2622
2623 @item dumpfile
2624 Set file for dumping, suitable for gnuplot.
2625
2626 @item dumpscale
2627 Set scale for dumpfile. Acceptable values are same with scale option.
2628 Default is linlog.
2629
2630 @item fft2
2631 Enable 2-channel convolution using complex FFT. This improves speed significantly.
2632 Default is disabled.
2633 @end table
2634
2635 @subsection Examples
2636 @itemize
2637 @item
2638 lowpass at 1000 Hz:
2639 @example
2640 firequalizer=gain='if(lt(f,1000), 0, -INF)'
2641 @end example
2642 @item
2643 lowpass at 1000 Hz with gain_entry:
2644 @example
2645 firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
2646 @end example
2647 @item
2648 custom equalization:
2649 @example
2650 firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
2651 @end example
2652 @item
2653 higher delay with zero phase to compensate delay:
2654 @example
2655 firequalizer=delay=0.1:fixed=on:zero_phase=on
2656 @end example
2657 @item
2658 lowpass on left channel, highpass on right channel:
2659 @example
2660 firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
2661 :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
2662 @end example
2663 @end itemize
2664
2665 @section flanger
2666 Apply a flanging effect to the audio.
2667
2668 The filter accepts the following options:
2669
2670 @table @option
2671 @item delay
2672 Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
2673
2674 @item depth
2675 Set added swep delay in milliseconds. Range from 0 to 10. Default value is 2.
2676
2677 @item regen
2678 Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
2679 Default value is 0.
2680
2681 @item width
2682 Set percentage of delayed signal mixed with original. Range from 0 to 100.
2683 Default value is 71.
2684
2685 @item speed
2686 Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
2687
2688 @item shape
2689 Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
2690 Default value is @var{sinusoidal}.
2691
2692 @item phase
2693 Set swept wave percentage-shift for multi channel. Range from 0 to 100.
2694 Default value is 25.
2695
2696 @item interp
2697 Set delay-line interpolation, @var{linear} or @var{quadratic}.
2698 Default is @var{linear}.
2699 @end table
2700
2701 @section hdcd
2702
2703 Decodes High Definition Compatible Digital (HDCD) data. A 16-bit PCM stream with
2704 embedded HDCD codes is expanded into a 20-bit PCM stream.
2705
2706 The filter supports the Peak Extend and Low-level Gain Adjustment features
2707 of HDCD, and detects the Transient Filter flag.
2708
2709 @example
2710 ffmpeg -i HDCD16.flac -af hdcd OUT24.flac
2711 @end example
2712
2713 When using the filter with wav, note the default encoding for wav is 16-bit,
2714 so the resulting 20-bit stream will be truncated back to 16-bit. Use something
2715 like @command{-acodec pcm_s24le} after the filter to get 24-bit PCM output.
2716 @example
2717 ffmpeg -i HDCD16.wav -af hdcd OUT16.wav
2718 ffmpeg -i HDCD16.wav -af hdcd -acodec pcm_s24le OUT24.wav
2719 @end example
2720
2721 The filter accepts the following options:
2722
2723 @table @option
2724 @item disable_autoconvert
2725 Disable any automatic format conversion or resampling in the filter graph.
2726
2727 @item process_stereo
2728 Process the stereo channels together. If target_gain does not match between
2729 channels, consider it invalid and use the last valid target_gain.
2730
2731 @item cdt_ms
2732 Set the code detect timer period in ms.
2733
2734 @item force_pe
2735 Always extend peaks above -3dBFS even if PE isn't signaled.
2736
2737 @item analyze_mode
2738 Replace audio with a solid tone and adjust the amplitude to signal some
2739 specific aspect of the decoding process. The output file can be loaded in
2740 an audio editor alongside the original to aid analysis.
2741
2742 @code{analyze_mode=pe:force_pe=true} can be used to see all samples above the PE level.
2743
2744 Modes are:
2745 @table @samp
2746 @item 0, off
2747 Disabled
2748 @item 1, lle
2749 Gain adjustment level at each sample
2750 @item 2, pe
2751 Samples where peak extend occurs
2752 @item 3, cdt
2753 Samples where the code detect timer is active
2754 @item 4, tgm
2755 Samples where the target gain does not match between channels
2756 @end table
2757 @end table
2758
2759 @section highpass
2760
2761 Apply a high-pass filter with 3dB point frequency.
2762 The filter can be either single-pole, or double-pole (the default).
2763 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
2764
2765 The filter accepts the following options:
2766
2767 @table @option
2768 @item frequency, f
2769 Set frequency in Hz. Default is 3000.
2770
2771 @item poles, p
2772 Set number of poles. Default is 2.
2773
2774 @item width_type
2775 Set method to specify band-width of filter.
2776 @table @option
2777 @item h
2778 Hz
2779 @item q
2780 Q-Factor
2781 @item o
2782 octave
2783 @item s
2784 slope
2785 @end table
2786
2787 @item width, w
2788 Specify the band-width of a filter in width_type units.
2789 Applies only to double-pole filter.
2790 The default is 0.707q and gives a Butterworth response.
2791
2792 @item channels, c
2793 Specify which channels to filter, by default all available are filtered.
2794 @end table
2795
2796 @section join
2797
2798 Join multiple input streams into one multi-channel stream.
2799
2800 It accepts the following parameters:
2801 @table @option
2802
2803 @item inputs
2804 The number of input streams. It defaults to 2.
2805
2806 @item channel_layout
2807 The desired output channel layout. It defaults to stereo.
2808
2809 @item map
2810 Map channels from inputs to output. The argument is a '|'-separated list of
2811 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
2812 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
2813 can be either the name of the input channel (e.g. FL for front left) or its
2814 index in the specified input stream. @var{out_channel} is the name of the output
2815 channel.
2816 @end table
2817
2818 The filter will attempt to guess the mappings when they are not specified
2819 explicitly. It does so by first trying to find an unused matching input channel
2820 and if that fails it picks the first unused input channel.
2821
2822 Join 3 inputs (with properly set channel layouts):
2823 @example
2824 ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
2825 @end example
2826
2827 Build a 5.1 output from 6 single-channel streams:
2828 @example
2829 ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
2830 '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'
2831 out
2832 @end example
2833
2834 @section ladspa
2835
2836 Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
2837
2838 To enable compilation of this filter you need to configure FFmpeg with
2839 @code{--enable-ladspa}.
2840
2841 @table @option
2842 @item file, f
2843 Specifies the name of LADSPA plugin library to load. If the environment
2844 variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
2845 each one of the directories specified by the colon separated list in
2846 @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
2847 this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
2848 @file{/usr/lib/ladspa/}.
2849
2850 @item plugin, p
2851 Specifies the plugin within the library. Some libraries contain only
2852 one plugin, but others contain many of them. If this is not set filter
2853 will list all available plugins within the specified library.
2854
2855 @item controls, c
2856 Set the '|' separated list of controls which are zero or more floating point
2857 values that determine the behavior of the loaded plugin (for example delay,
2858 threshold or gain).
2859 Controls need to be defined using the following syntax:
2860 c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
2861 @var{valuei} is the value set on the @var{i}-th control.
2862 Alternatively they can be also defined using the following syntax:
2863 @var{value0}|@var{value1}|@var{value2}|..., where
2864 @var{valuei} is the value set on the @var{i}-th control.
2865 If @option{controls} is set to @code{help}, all available controls and
2866 their valid ranges are printed.
2867
2868 @item sample_rate, s
2869 Specify the sample rate, default to 44100. Only used if plugin have
2870 zero inputs.
2871
2872 @item nb_samples, n
2873 Set the number of samples per channel per each output frame, default
2874 is 1024. Only used if plugin have zero inputs.
2875
2876 @item duration, d
2877 Set the minimum duration of the sourced audio. See
2878 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
2879 for the accepted syntax.
2880 Note that the resulting duration may be greater than the specified duration,
2881 as the generated audio is always cut at the end of a complete frame.
2882 If not specified, or the expressed duration is negative, the audio is
2883 supposed to be generated forever.
2884 Only used if plugin have zero inputs.
2885
2886 @end table
2887
2888 @subsection Examples
2889
2890 @itemize
2891 @item
2892 List all available plugins within amp (LADSPA example plugin) library:
2893 @example
2894 ladspa=file=amp
2895 @end example
2896
2897 @item
2898 List all available controls and their valid ranges for @code{vcf_notch}
2899 plugin from @code{VCF} library:
2900 @example
2901 ladspa=f=vcf:p=vcf_notch:c=help
2902 @end example
2903
2904 @item
2905 Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
2906 plugin library:
2907 @example
2908 ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
2909 @end example
2910
2911 @item
2912 Add reverberation to the audio using TAP-plugins
2913 (Tom's Audio Processing plugins):
2914 @example
2915 ladspa=file=tap_reverb:tap_reverb
2916 @end example
2917
2918 @item
2919 Generate white noise, with 0.2 amplitude:
2920 @example
2921 ladspa=file=cmt:noise_source_white:c=c0=.2
2922 @end example
2923
2924 @item
2925 Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
2926 @code{C* Audio Plugin Suite} (CAPS) library:
2927 @example
2928 ladspa=file=caps:Click:c=c1=20'
2929 @end example
2930
2931 @item
2932 Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
2933 @example
2934 ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
2935 @end example
2936
2937 @item
2938 Increase volume by 20dB using fast lookahead limiter from Steve Harris
2939 @code{SWH Plugins} collection:
2940 @example
2941 ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
2942 @end example
2943
2944 @item
2945 Attenuate low frequencies using Multiband EQ from Steve Harris
2946 @code{SWH Plugins} collection:
2947 @example
2948 ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
2949 @end example
2950 @end itemize
2951
2952 @subsection Commands
2953
2954 This filter supports the following commands:
2955 @table @option
2956 @item cN
2957 Modify the @var{N}-th control value.
2958
2959 If the specified value is not valid, it is ignored and prior one is kept.
2960 @end table
2961
2962 @section loudnorm
2963
2964 EBU R128 loudness normalization. Includes both dynamic and linear normalization modes.
2965 Support for both single pass (livestreams, files) and double pass (files) modes.
2966 This algorithm can target IL, LRA, and maximum true peak.
2967
2968 The filter accepts the following options:
2969
2970 @table @option
2971 @item I, i
2972 Set integrated loudness target.
2973 Range is -70.0 - -5.0. Default value is -24.0.
2974
2975 @item LRA, lra
2976 Set loudness range target.
2977 Range is 1.0 - 20.0. Default value is 7.0.
2978
2979 @item TP, tp
2980 Set maximum true peak.
2981 Range is -9.0 - +0.0. Default value is -2.0.
2982
2983 @item measured_I, measured_i
2984 Measured IL of input file.
2985 Range is -99.0 - +0.0.
2986
2987 @item measured_LRA, measured_lra
2988 Measured LRA of input file.
2989 Range is  0.0 - 99.0.
2990
2991 @item measured_TP, measured_tp
2992 Measured true peak of input file.
2993 Range is  -99.0 - +99.0.
2994
2995 @item measured_thresh
2996 Measured threshold of input file.
2997 Range is -99.0 - +0.0.
2998
2999 @item offset
3000 Set offset gain. Gain is applied before the true-peak limiter.
3001 Range is  -99.0 - +99.0. Default is +0.0.
3002
3003 @item linear
3004 Normalize linearly if possible.
3005 measured_I, measured_LRA, measured_TP, and measured_thresh must also
3006 to be specified in order to use this mode.
3007 Options are true or false. Default is true.
3008
3009 @item dual_mono
3010 Treat mono input files as "dual-mono". If a mono file is intended for playback
3011 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
3012 If set to @code{true}, this option will compensate for this effect.
3013 Multi-channel input files are not affected by this option.
3014 Options are true or false. Default is false.
3015
3016 @item print_format
3017 Set print format for stats. Options are summary, json, or none.
3018 Default value is none.
3019 @end table
3020
3021 @section lowpass
3022
3023 Apply a low-pass filter with 3dB point frequency.
3024 The filter can be either single-pole or double-pole (the default).
3025 The filter roll off at 6dB per pole per octave (20dB per pole per decade).
3026
3027 The filter accepts the following options:
3028
3029 @table @option
3030 @item frequency, f
3031 Set frequency in Hz. Default is 500.
3032
3033 @item poles, p
3034 Set number of poles. Default is 2.
3035
3036 @item width_type
3037 Set method to specify band-width of filter.
3038 @table @option
3039 @item h
3040 Hz
3041 @item q
3042 Q-Factor
3043 @item o
3044 octave
3045 @item s
3046 slope
3047 @end table
3048
3049 @item width, w
3050 Specify the band-width of a filter in width_type units.
3051 Applies only to double-pole filter.
3052 The default is 0.707q and gives a Butterworth response.
3053
3054 @item channels, c
3055 Specify which channels to filter, by default all available are filtered.
3056 @end table
3057
3058 @subsection Examples
3059 @itemize
3060 @item
3061 Lowpass only LFE channel, it LFE is not present it does nothing:
3062 @example
3063 lowpass=c=LFE
3064 @end example
3065 @end itemize
3066
3067 @anchor{pan}
3068 @section pan
3069
3070 Mix channels with specific gain levels. The filter accepts the output
3071 channel layout followed by a set of channels definitions.
3072
3073 This filter is also designed to efficiently remap the channels of an audio
3074 stream.
3075
3076 The filter accepts parameters of the form:
3077 "@var{l}|@var{outdef}|@var{outdef}|..."
3078
3079 @table @option
3080 @item l
3081 output channel layout or number of channels
3082
3083 @item outdef
3084 output channel specification, of the form:
3085 "@var{out_name}=[@var{gain}*]@var{in_name}[(+-)[@var{gain}*]@var{in_name}...]"
3086
3087 @item out_name
3088 output channel to define, either a channel name (FL, FR, etc.) or a channel
3089 number (c0, c1, etc.)
3090
3091 @item gain
3092 multiplicative coefficient for the channel, 1 leaving the volume unchanged
3093
3094 @item in_name
3095 input channel to use, see out_name for details; it is not possible to mix
3096 named and numbered input channels
3097 @end table
3098
3099 If the `=' in a channel specification is replaced by `<', then the gains for
3100 that specification will be renormalized so that the total is 1, thus
3101 avoiding clipping noise.
3102
3103 @subsection Mixing examples
3104
3105 For example, if you want to down-mix from stereo to mono, but with a bigger
3106 factor for the left channel:
3107 @example
3108 pan=1c|c0=0.9*c0+0.1*c1
3109 @end example
3110
3111 A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
3112 7-channels surround:
3113 @example
3114 pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
3115 @end example
3116
3117 Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
3118 that should be preferred (see "-ac" option) unless you have very specific
3119 needs.
3120
3121 @subsection Remapping examples
3122
3123 The channel remapping will be effective if, and only if:
3124
3125 @itemize
3126 @item gain coefficients are zeroes or ones,
3127 @item only one input per channel output,
3128 @end itemize
3129
3130 If all these conditions are satisfied, the filter will notify the user ("Pure
3131 channel mapping detected"), and use an optimized and lossless method to do the
3132 remapping.
3133
3134 For example, if you have a 5.1 source and want a stereo audio stream by
3135 dropping the extra channels:
3136 @example
3137 pan="stereo| c0=FL | c1=FR"
3138 @end example
3139
3140 Given the same source, you can also switch front left and front right channels
3141 and keep the input channel layout:
3142 @example
3143 pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
3144 @end example
3145
3146 If the input is a stereo audio stream, you can mute the front left channel (and
3147 still keep the stereo channel layout) with:
3148 @example
3149 pan="stereo|c1=c1"
3150 @end example
3151
3152 Still with a stereo audio stream input, you can copy the right channel in both
3153 front left and right:
3154 @example
3155 pan="stereo| c0=FR | c1=FR"
3156 @end example
3157
3158 @section replaygain
3159
3160 ReplayGain scanner filter. This filter takes an audio stream as an input and
3161 outputs it unchanged.
3162 At end of filtering it displays @code{track_gain} and @code{track_peak}.
3163
3164 @section resample
3165
3166 Convert the audio sample format, sample rate and channel layout. It is
3167 not meant to be used directly.
3168
3169 @section rubberband
3170 Apply time-stretching and pitch-shifting with librubberband.
3171
3172 The filter accepts the following options:
3173
3174 @table @option
3175 @item tempo
3176 Set tempo scale factor.
3177
3178 @item pitch
3179 Set pitch scale factor.
3180
3181 @item transients
3182 Set transients detector.
3183 Possible values are:
3184 @table @var
3185 @item crisp
3186 @item mixed
3187 @item smooth
3188 @end table
3189
3190 @item detector
3191 Set detector.
3192 Possible values are:
3193 @table @var
3194 @item compound
3195 @item percussive
3196 @item soft
3197 @end table
3198
3199 @item phase
3200 Set phase.
3201 Possible values are:
3202 @table @var
3203 @item laminar
3204 @item independent
3205 @end table
3206
3207 @item window
3208 Set processing window size.
3209 Possible values are:
3210 @table @var
3211 @item standard
3212 @item short
3213 @item long
3214 @end table
3215
3216 @item smoothing
3217 Set smoothing.
3218 Possible values are:
3219 @table @var
3220 @item off
3221 @item on
3222 @end table
3223
3224 @item formant
3225 Enable formant preservation when shift pitching.
3226 Possible values are:
3227 @table @var
3228 @item shifted
3229 @item preserved
3230 @end table
3231
3232 @item pitchq
3233 Set pitch quality.
3234 Possible values are:
3235 @table @var
3236 @item quality
3237 @item speed
3238 @item consistency
3239 @end table
3240
3241 @item channels
3242 Set channels.
3243 Possible values are:
3244 @table @var
3245 @item apart
3246 @item together
3247 @end table
3248 @end table
3249
3250 @section sidechaincompress
3251
3252 This filter acts like normal compressor but has the ability to compress
3253 detected signal using second input signal.
3254 It needs two input streams and returns one output stream.
3255 First input stream will be processed depending on second stream signal.
3256 The filtered signal then can be filtered with other filters in later stages of
3257 processing. See @ref{pan} and @ref{amerge} filter.
3258
3259 The filter accepts the following options:
3260
3261 @table @option
3262 @item level_in
3263 Set input gain. Default is 1. Range is between 0.015625 and 64.
3264
3265 @item threshold
3266 If a signal of second stream raises above this level it will affect the gain
3267 reduction of first stream.
3268 By default is 0.125. Range is between 0.00097563 and 1.
3269
3270 @item ratio
3271 Set a ratio about which the signal is reduced. 1:2 means that if the level
3272 raised 4dB above the threshold, it will be only 2dB above after the reduction.
3273 Default is 2. Range is between 1 and 20.
3274
3275 @item attack
3276 Amount of milliseconds the signal has to rise above the threshold before gain
3277 reduction starts. Default is 20. Range is between 0.01 and 2000.
3278
3279 @item release
3280 Amount of milliseconds the signal has to fall below the threshold before
3281 reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
3282
3283 @item makeup
3284 Set the amount by how much signal will be amplified after processing.
3285 Default is 2. Range is from 1 and 64.
3286
3287 @item knee
3288 Curve the sharp knee around the threshold to enter gain reduction more softly.
3289 Default is 2.82843. Range is between 1 and 8.
3290
3291 @item link
3292 Choose if the @code{average} level between all channels of side-chain stream
3293 or the louder(@code{maximum}) channel of side-chain stream affects the
3294 reduction. Default is @code{average}.
3295
3296 @item detection
3297 Should the exact signal be taken in case of @code{peak} or an RMS one in case
3298 of @code{rms}. Default is @code{rms} which is mainly smoother.
3299
3300 @item level_sc
3301 Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
3302
3303 @item mix
3304 How much to use compressed signal in output. Default is 1.
3305 Range is between 0 and 1.
3306 @end table
3307
3308 @subsection Examples
3309
3310 @itemize
3311 @item
3312 Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
3313 depending on the signal of 2nd input and later compressed signal to be
3314 merged with 2nd input:
3315 @example
3316 ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
3317 @end example
3318 @end itemize
3319
3320 @section sidechaingate
3321
3322 A sidechain gate acts like a normal (wideband) gate but has the ability to
3323 filter the detected signal before sending it to the gain reduction stage.
3324 Normally a gate uses the full range signal to detect a level above the
3325 threshold.
3326 For example: If you cut all lower frequencies from your sidechain signal
3327 the gate will decrease the volume of your track only if not enough highs
3328 appear. With this technique you are able to reduce the resonation of a
3329 natural drum or remove "rumbling" of muted strokes from a heavily distorted
3330 guitar.
3331 It needs two input streams and returns one output stream.
3332 First input stream will be processed depending on second stream signal.
3333
3334 The filter accepts the following options:
3335
3336 @table @option
3337 @item level_in
3338 Set input level before filtering.
3339 Default is 1. Allowed range is from 0.015625 to 64.
3340
3341 @item range
3342 Set the level of gain reduction when the signal is below the threshold.
3343 Default is 0.06125. Allowed range is from 0 to 1.
3344
3345 @item threshold
3346 If a signal rises above this level the gain reduction is released.
3347 Default is 0.125. Allowed range is from 0 to 1.
3348
3349 @item ratio
3350 Set a ratio about which the signal is reduced.
3351 Default is 2. Allowed range is from 1 to 9000.
3352
3353 @item attack
3354 Amount of milliseconds the signal has to rise above the threshold before gain
3355 reduction stops.
3356 Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
3357
3358 @item release
3359 Amount of milliseconds the signal has to fall below the threshold before the
3360 reduction is increased again. Default is 250 milliseconds.
3361 Allowed range is from 0.01 to 9000.
3362
3363 @item makeup
3364 Set amount of amplification of signal after processing.
3365 Default is 1. Allowed range is from 1 to 64.
3366
3367 @item knee
3368 Curve the sharp knee around the threshold to enter gain reduction more softly.
3369 Default is 2.828427125. Allowed range is from 1 to 8.
3370
3371 @item detection
3372 Choose if exact signal should be taken for detection or an RMS like one.
3373 Default is rms. Can be peak or rms.
3374
3375 @item link
3376 Choose if the average level between all channels or the louder channel affects
3377 the reduction.
3378 Default is average. Can be average or maximum.
3379
3380 @item level_sc
3381 Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
3382 @end table
3383
3384 @section silencedetect
3385
3386 Detect silence in an audio stream.
3387
3388 This filter logs a message when it detects that the input audio volume is less
3389 or equal to a noise tolerance value for a duration greater or equal to the
3390 minimum detected noise duration.
3391
3392 The printed times and duration are expressed in seconds.
3393
3394 The filter accepts the following options:
3395
3396 @table @option
3397 @item duration, d
3398 Set silence duration until notification (default is 2 seconds).
3399
3400 @item noise, n
3401 Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
3402 specified value) or amplitude ratio. Default is -60dB, or 0.001.
3403 @end table
3404
3405 @subsection Examples
3406
3407 @itemize
3408 @item
3409 Detect 5 seconds of silence with -50dB noise tolerance:
3410 @example
3411 silencedetect=n=-50dB:d=5
3412 @end example
3413
3414 @item
3415 Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
3416 tolerance in @file{silence.mp3}:
3417 @example
3418 ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
3419 @end example
3420 @end itemize
3421
3422 @section silenceremove
3423
3424 Remove silence from the beginning, middle or end of the audio.
3425
3426 The filter accepts the following options:
3427
3428 @table @option
3429 @item start_periods
3430 This value is used to indicate if audio should be trimmed at beginning of
3431 the audio. A value of zero indicates no silence should be trimmed from the
3432 beginning. When specifying a non-zero value, it trims audio up until it
3433 finds non-silence. Normally, when trimming silence from beginning of audio
3434 the @var{start_periods} will be @code{1} but it can be increased to higher
3435 values to trim all audio up to specific count of non-silence periods.
3436 Default value is @code{0}.
3437
3438 @item start_duration
3439 Specify the amount of time that non-silence must be detected before it stops
3440 trimming audio. By increasing the duration, bursts of noises can be treated
3441 as silence and trimmed off. Default value is @code{0}.
3442
3443 @item start_threshold
3444 This indicates what sample value should be treated as silence. For digital
3445 audio, a value of @code{0} may be fine but for audio recorded from analog,
3446 you may wish to increase the value to account for background noise.
3447 Can be specified in dB (in case "dB" is appended to the specified value)
3448 or amplitude ratio. Default value is @code{0}.
3449
3450 @item stop_periods
3451 Set the count for trimming silence from the end of audio.
3452 To remove silence from the middle of a file, specify a @var{stop_periods}
3453 that is negative. This value is then treated as a positive value and is
3454 used to indicate the effect should restart processing as specified by
3455 @var{start_periods}, making it suitable for removing periods of silence
3456 in the middle of the audio.
3457 Default value is @code{0}.
3458
3459 @item stop_duration
3460 Specify a duration of silence that must exist before audio is not copied any
3461 more. By specifying a higher duration, silence that is wanted can be left in
3462 the audio.
3463 Default value is @code{0}.
3464
3465 @item stop_threshold
3466 This is the same as @option{start_threshold} but for trimming silence from
3467 the end of audio.
3468 Can be specified in dB (in case "dB" is appended to the specified value)
3469 or amplitude ratio. Default value is @code{0}.
3470
3471 @item leave_silence
3472 This indicates that @var{stop_duration} length of audio should be left intact
3473 at the beginning of each period of silence.
3474 For example, if you want to remove long pauses between words but do not want
3475 to remove the pauses completely. Default value is @code{0}.
3476
3477 @item detection
3478 Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
3479 and works better with digital silence which is exactly 0.
3480 Default value is @code{rms}.
3481
3482 @item window
3483 Set ratio used to calculate size of window for detecting silence.
3484 Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
3485 @end table
3486
3487 @subsection Examples
3488
3489 @itemize
3490 @item
3491 The following example shows how this filter can be used to start a recording
3492 that does not contain the delay at the start which usually occurs between
3493 pressing the record button and the start of the performance:
3494 @example
3495 silenceremove=1:5:0.02
3496 @end example
3497
3498 @item
3499 Trim all silence encountered from beginning to end where there is more than 1
3500 second of silence in audio:
3501 @example
3502 silenceremove=0:0:0:-1:1:-90dB
3503 @end example
3504 @end itemize
3505
3506 @section sofalizer
3507
3508 SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
3509 loudspeakers around the user for binaural listening via headphones (audio
3510 formats up to 9 channels supported).
3511 The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
3512 SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
3513 Austrian Academy of Sciences.
3514
3515 To enable compilation of this filter you need to configure FFmpeg with
3516 @code{--enable-netcdf}.
3517
3518 The filter accepts the following options:
3519
3520 @table @option
3521 @item sofa
3522 Set the SOFA file used for rendering.
3523
3524 @item gain
3525 Set gain applied to audio. Value is in dB. Default is 0.
3526
3527 @item rotation
3528 Set rotation of virtual loudspeakers in deg. Default is 0.
3529
3530 @item elevation
3531 Set elevation of virtual speakers in deg. Default is 0.
3532
3533 @item radius
3534 Set distance in meters between loudspeakers and the listener with near-field
3535 HRTFs. Default is 1.
3536
3537 @item type
3538 Set processing type. Can be @var{time} or @var{freq}. @var{time} is
3539 processing audio in time domain which is slow.
3540 @var{freq} is processing audio in frequency domain which is fast.
3541 Default is @var{freq}.
3542
3543 @item speakers
3544 Set custom positions of virtual loudspeakers. Syntax for this option is:
3545 <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
3546 Each virtual loudspeaker is described with short channel name following with
3547 azimuth and elevation in degreees.
3548 Each virtual loudspeaker description is separated by '|'.
3549 For example to override front left and front right channel positions use:
3550 'speakers=FL 45 15|FR 345 15'.
3551 Descriptions with unrecognised channel names are ignored.
3552 @end table
3553
3554 @subsection Examples
3555
3556 @itemize
3557 @item
3558 Using ClubFritz6 sofa file:
3559 @example
3560 sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
3561 @end example
3562
3563 @item
3564 Using ClubFritz12 sofa file and bigger radius with small rotation:
3565 @example
3566 sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
3567 @end example
3568
3569 @item
3570 Similar as above but with custom speaker positions for front left, front right, back left and back right
3571 and also with custom gain:
3572 @example
3573 "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|BL 135|BR 225:gain=28"
3574 @end example
3575 @end itemize
3576
3577 @section stereotools
3578
3579 This filter has some handy utilities to manage stereo signals, for converting
3580 M/S stereo recordings to L/R signal while having control over the parameters
3581 or spreading the stereo image of master track.
3582
3583 The filter accepts the following options:
3584
3585 @table @option
3586 @item level_in
3587 Set input level before filtering for both channels. Defaults is 1.
3588 Allowed range is from 0.015625 to 64.
3589
3590 @item level_out
3591 Set output level after filtering for both channels. Defaults is 1.
3592 Allowed range is from 0.015625 to 64.
3593
3594 @item balance_in
3595 Set input balance between both channels. Default is 0.
3596 Allowed range is from -1 to 1.
3597
3598 @item balance_out
3599 Set output balance between both channels. Default is 0.
3600 Allowed range is from -1 to 1.
3601
3602 @item softclip
3603 Enable softclipping. Results in analog distortion instead of harsh digital 0dB
3604 clipping. Disabled by default.
3605
3606 @item mutel
3607 Mute the left channel. Disabled by default.
3608
3609 @item muter
3610 Mute the right channel. Disabled by default.
3611
3612 @item phasel
3613 Change the phase of the left channel. Disabled by default.
3614
3615 @item phaser
3616 Change the phase of the right channel. Disabled by default.
3617
3618 @item mode
3619 Set stereo mode. Available values are:
3620
3621 @table @samp
3622 @item lr>lr
3623 Left/Right to Left/Right, this is default.
3624
3625 @item lr>ms
3626 Left/Right to Mid/Side.
3627
3628 @item ms>lr
3629 Mid/Side to Left/Right.
3630
3631 @item lr>ll
3632 Left/Right to Left/Left.
3633
3634 @item lr>rr
3635 Left/Right to Right/Right.
3636
3637 @item lr>l+r
3638 Left/Right to Left + Right.
3639
3640 @item lr>rl
3641 Left/Right to Right/Left.
3642 @end table
3643
3644 @item slev
3645 Set level of side signal. Default is 1.
3646 Allowed range is from 0.015625 to 64.
3647
3648 @item sbal
3649 Set balance of side signal. Default is 0.
3650 Allowed range is from -1 to 1.
3651
3652 @item mlev
3653 Set level of the middle signal. Default is 1.
3654 Allowed range is from 0.015625 to 64.
3655
3656 @item mpan
3657 Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
3658
3659 @item base
3660 Set stereo base between mono and inversed channels. Default is 0.
3661 Allowed range is from -1 to 1.
3662
3663 @item delay
3664 Set delay in milliseconds how much to delay left from right channel and
3665 vice versa. Default is 0. Allowed range is from -20 to 20.
3666
3667 @item sclevel
3668 Set S/C level. Default is 1. Allowed range is from 1 to 100.
3669
3670 @item phase
3671 Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
3672 @end table
3673
3674 @subsection Examples
3675
3676 @itemize
3677 @item
3678 Apply karaoke like effect:
3679 @example
3680 stereotools=mlev=0.015625
3681 @end example
3682
3683 @item
3684 Convert M/S signal to L/R:
3685 @example
3686 "stereotools=mode=ms>lr"
3687 @end example
3688 @end itemize
3689
3690 @section stereowiden
3691
3692 This filter enhance the stereo effect by suppressing signal common to both
3693 channels and by delaying the signal of left into right and vice versa,
3694 thereby widening the stereo effect.
3695
3696 The filter accepts the following options:
3697
3698 @table @option
3699 @item delay
3700 Time in milliseconds of the delay of left signal into right and vice versa.
3701 Default is 20 milliseconds.
3702
3703 @item feedback
3704 Amount of gain in delayed signal into right and vice versa. Gives a delay
3705 effect of left signal in right output and vice versa which gives widening
3706 effect. Default is 0.3.
3707
3708 @item crossfeed
3709 Cross feed of left into right with inverted phase. This helps in suppressing
3710 the mono. If the value is 1 it will cancel all the signal common to both
3711 channels. Default is 0.3.
3712
3713 @item drymix
3714 Set level of input signal of original channel. Default is 0.8.
3715 @end table
3716
3717 @section treble
3718
3719 Boost or cut treble (upper) frequencies of the audio using a two-pole
3720 shelving filter with a response similar to that of a standard
3721 hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
3722
3723 The filter accepts the following options:
3724
3725 @table @option
3726 @item gain, g
3727 Give the gain at whichever is the lower of ~22 kHz and the
3728 Nyquist frequency. Its useful range is about -20 (for a large cut)
3729 to +20 (for a large boost). Beware of clipping when using a positive gain.
3730
3731 @item frequency, f
3732 Set the filter's central frequency and so can be used
3733 to extend or reduce the frequency range to be boosted or cut.
3734 The default value is @code{3000} Hz.
3735
3736 @item width_type
3737 Set method to specify band-width of filter.
3738 @table @option
3739 @item h
3740 Hz
3741 @item q
3742 Q-Factor
3743 @item o
3744 octave
3745 @item s
3746 slope
3747 @end table
3748
3749 @item width, w
3750 Determine how steep is the filter's shelf transition.
3751
3752 @item channels, c
3753 Specify which channels to filter, by default all available are filtered.
3754 @end table
3755
3756 @section tremolo
3757
3758 Sinusoidal amplitude modulation.
3759
3760 The filter accepts the following options:
3761
3762 @table @option
3763 @item f
3764 Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
3765 (20 Hz or lower) will result in a tremolo effect.
3766 This filter may also be used as a ring modulator by specifying
3767 a modulation frequency higher than 20 Hz.
3768 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
3769
3770 @item d
3771 Depth of modulation as a percentage. Range is 0.0 - 1.0.
3772 Default value is 0.5.
3773 @end table
3774
3775 @section vibrato
3776
3777 Sinusoidal phase modulation.
3778
3779 The filter accepts the following options:
3780
3781 @table @option
3782 @item f
3783 Modulation frequency in Hertz.
3784 Range is 0.1 - 20000.0. Default value is 5.0 Hz.
3785
3786 @item d
3787 Depth of modulation as a percentage. Range is 0.0 - 1.0.
3788 Default value is 0.5.
3789 @end table
3790
3791 @section volume
3792
3793 Adjust the input audio volume.
3794
3795 It accepts the following parameters:
3796 @table @option
3797
3798 @item volume
3799 Set audio volume expression.
3800
3801 Output values are clipped to the maximum value.
3802
3803 The output audio volume is given by the relation:
3804 @example
3805 @var{output_volume} = @var{volume} * @var{input_volume}
3806 @end example
3807
3808 The default value for @var{volume} is "1.0".
3809
3810 @item precision
3811 This parameter represents the mathematical precision.
3812
3813 It determines which input sample formats will be allowed, which affects the
3814 precision of the volume scaling.
3815
3816 @table @option
3817 @item fixed
3818 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
3819 @item float
3820 32-bit floating-point; this limits input sample format to FLT. (default)
3821 @item double
3822 64-bit floating-point; this limits input sample format to DBL.
3823 @end table
3824
3825 @item replaygain
3826 Choose the behaviour on encountering ReplayGain side data in input frames.
3827
3828 @table @option
3829 @item drop
3830 Remove ReplayGain side data, ignoring its contents (the default).
3831
3832 @item ignore
3833 Ignore ReplayGain side data, but leave it in the frame.
3834
3835 @item track
3836 Prefer the track gain, if present.
3837
3838 @item album
3839 Prefer the album gain, if present.
3840 @end table
3841
3842 @item replaygain_preamp
3843 Pre-amplification gain in dB to apply to the selected replaygain gain.
3844
3845 Default value for @var{replaygain_preamp} is 0.0.
3846
3847 @item eval
3848 Set when the volume expression is evaluated.
3849
3850 It accepts the following values:
3851 @table @samp
3852 @item once
3853 only evaluate expression once during the filter initialization, or
3854 when the @samp{volume} command is sent
3855
3856 @item frame
3857 evaluate expression for each incoming frame
3858 @end table
3859
3860 Default value is @samp{once}.
3861 @end table
3862
3863 The volume expression can contain the following parameters.
3864
3865 @table @option
3866 @item n
3867 frame number (starting at zero)
3868 @item nb_channels
3869 number of channels
3870 @item nb_consumed_samples
3871 number of samples consumed by the filter
3872 @item nb_samples
3873 number of samples in the current frame
3874 @item pos
3875 original frame position in the file
3876 @item pts
3877 frame PTS
3878 @item sample_rate
3879 sample rate
3880 @item startpts
3881 PTS at start of stream
3882 @item startt
3883 time at start of stream
3884 @item t
3885 frame time
3886 @item tb
3887 timestamp timebase
3888 @item volume
3889 last set volume value
3890 @end table
3891
3892 Note that when @option{eval} is set to @samp{once} only the
3893 @var{sample_rate} and @var{tb} variables are available, all other
3894 variables will evaluate to NAN.
3895
3896 @subsection Commands
3897
3898 This filter supports the following commands:
3899 @table @option
3900 @item volume
3901 Modify the volume expression.
3902 The command accepts the same syntax of the corresponding option.
3903
3904 If the specified expression is not valid, it is kept at its current
3905 value.
3906 @item replaygain_noclip
3907 Prevent clipping by limiting the gain applied.
3908
3909 Default value for @var{replaygain_noclip} is 1.
3910
3911 @end table
3912
3913 @subsection Examples
3914
3915 @itemize
3916 @item
3917 Halve the input audio volume:
3918 @example
3919 volume=volume=0.5
3920 volume=volume=1/2
3921 volume=volume=-6.0206dB
3922 @end example
3923
3924 In all the above example the named key for @option{volume} can be
3925 omitted, for example like in:
3926 @example
3927 volume=0.5
3928 @end example
3929
3930 @item
3931 Increase input audio power by 6 decibels using fixed-point precision:
3932 @example
3933 volume=volume=6dB:precision=fixed
3934 @end example
3935
3936 @item
3937 Fade volume after time 10 with an annihilation period of 5 seconds:
3938 @example
3939 volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
3940 @end example
3941 @end itemize
3942
3943 @section volumedetect
3944
3945 Detect the volume of the input video.
3946
3947 The filter has no parameters. The input is not modified. Statistics about
3948 the volume will be printed in the log when the input stream end is reached.
3949
3950 In particular it will show the mean volume (root mean square), maximum
3951 volume (on a per-sample basis), and the beginning of a histogram of the
3952 registered volume values (from the maximum value to a cumulated 1/1000 of
3953 the samples).
3954
3955 All volumes are in decibels relative to the maximum PCM value.
3956
3957 @subsection Examples
3958
3959 Here is an excerpt of the output:
3960 @example
3961 [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
3962 [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
3963 [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
3964 [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
3965 [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
3966 [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
3967 [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
3968 [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
3969 [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
3970 @end example
3971
3972 It means that:
3973 @itemize
3974 @item
3975 The mean square energy is approximately -27 dB, or 10^-2.7.
3976 @item
3977 The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
3978 @item
3979 There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
3980 @end itemize
3981
3982 In other words, raising the volume by +4 dB does not cause any clipping,
3983 raising it by +5 dB causes clipping for 6 samples, etc.
3984
3985 @c man end AUDIO FILTERS
3986
3987 @chapter Audio Sources
3988 @c man begin AUDIO SOURCES
3989
3990 Below is a description of the currently available audio sources.
3991
3992 @section abuffer
3993
3994 Buffer audio frames, and make them available to the filter chain.
3995
3996 This source is mainly intended for a programmatic use, in particular
3997 through the interface defined in @file{libavfilter/asrc_abuffer.h}.
3998
3999 It accepts the following parameters:
4000 @table @option
4001
4002 @item time_base
4003 The timebase which will be used for timestamps of submitted frames. It must be
4004 either a floating-point number or in @var{numerator}/@var{denominator} form.
4005
4006 @item sample_rate
4007 The sample rate of the incoming audio buffers.
4008
4009 @item sample_fmt
4010 The sample format of the incoming audio buffers.
4011 Either a sample format name or its corresponding integer representation from
4012 the enum AVSampleFormat in @file{libavutil/samplefmt.h}
4013
4014 @item channel_layout
4015 The channel layout of the incoming audio buffers.
4016 Either a channel layout name from channel_layout_map in
4017 @file{libavutil/channel_layout.c} or its corresponding integer representation
4018 from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
4019
4020 @item channels
4021 The number of channels of the incoming audio buffers.
4022 If both @var{channels} and @var{channel_layout} are specified, then they
4023 must be consistent.
4024
4025 @end table
4026
4027 @subsection Examples
4028
4029 @example
4030 abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
4031 @end example
4032
4033 will instruct the source to accept planar 16bit signed stereo at 44100Hz.
4034 Since the sample format with name "s16p" corresponds to the number
4035 6 and the "stereo" channel layout corresponds to the value 0x3, this is
4036 equivalent to:
4037 @example
4038 abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
4039 @end example
4040
4041 @section aevalsrc
4042
4043 Generate an audio signal specified by an expression.
4044
4045 This source accepts in input one or more expressions (one for each
4046 channel), which are evaluated and used to generate a corresponding
4047 audio signal.
4048
4049 This source accepts the following options:
4050
4051 @table @option
4052 @item exprs
4053 Set the '|'-separated expressions list for each separate channel. In case the
4054 @option{channel_layout} option is not specified, the selected channel layout
4055 depends on the number of provided expressions. Otherwise the last
4056 specified expression is applied to the remaining output channels.
4057
4058 @item channel_layout, c
4059 Set the channel layout. The number of channels in the specified layout
4060 must be equal to the number of specified expressions.
4061
4062 @item duration, d
4063 Set the minimum duration of the sourced audio. See
4064 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
4065 for the accepted syntax.
4066 Note that the resulting duration may be greater than the specified
4067 duration, as the generated audio is always cut at the end of a
4068 complete frame.
4069
4070 If not specified, or the expressed duration is negative, the audio is
4071 supposed to be generated forever.
4072
4073 @item nb_samples, n
4074 Set the number of samples per channel per each output frame,
4075 default to 1024.
4076
4077 @item sample_rate, s
4078 Specify the sample rate, default to 44100.
4079 @end table
4080
4081 Each expression in @var{exprs} can contain the following constants:
4082
4083 @table @option
4084 @item n
4085 number of the evaluated sample, starting from 0
4086
4087 @item t
4088 time of the evaluated sample expressed in seconds, starting from 0
4089
4090 @item s
4091 sample rate
4092
4093 @end table
4094
4095 @subsection Examples
4096
4097 @itemize
4098 @item
4099 Generate silence:
4100 @example
4101 aevalsrc=0
4102 @end example
4103
4104 @item
4105 Generate a sin signal with frequency of 440 Hz, set sample rate to
4106 8000 Hz:
4107 @example
4108 aevalsrc="sin(440*2*PI*t):s=8000"
4109 @end example
4110
4111 @item
4112 Generate a two channels signal, specify the channel layout (Front
4113 Center + Back Center) explicitly:
4114 @example
4115 aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
4116 @end example
4117
4118 @item
4119 Generate white noise:
4120 @example
4121 aevalsrc="-2+random(0)"
4122 @end example
4123
4124 @item
4125 Generate an amplitude modulated signal:
4126 @example
4127 aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
4128 @end example
4129
4130 @item
4131 Generate 2.5 Hz binaural beats on a 360 Hz carrier:
4132 @example
4133 aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
4134 @end example
4135
4136 @end itemize
4137
4138 @section anullsrc
4139
4140 The null audio source, return unprocessed audio frames. It is mainly useful
4141 as a template and to be employed in analysis / debugging tools, or as
4142 the source for filters which ignore the input data (for example the sox
4143 synth filter).
4144
4145 This source accepts the following options:
4146
4147 @table @option
4148
4149 @item channel_layout, cl
4150
4151 Specifies the channel layout, and can be either an integer or a string
4152 representing a channel layout. The default value of @var{channel_layout}
4153 is "stereo".
4154
4155 Check the channel_layout_map definition in
4156 @file{libavutil/channel_layout.c} for the mapping between strings and
4157 channel layout values.
4158
4159 @item sample_rate, r
4160 Specifies the sample rate, and defaults to 44100.
4161
4162 @item nb_samples, n
4163 Set the number of samples per requested frames.
4164
4165 @end table
4166
4167 @subsection Examples
4168
4169 @itemize
4170 @item
4171 Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
4172 @example
4173 anullsrc=r=48000:cl=4
4174 @end example
4175
4176 @item
4177 Do the same operation with a more obvious syntax:
4178 @example
4179 anullsrc=r=48000:cl=mono
4180 @end example
4181 @end itemize
4182
4183 All the parameters need to be explicitly defined.
4184
4185 @section flite
4186
4187 Synthesize a voice utterance using the libflite library.
4188
4189 To enable compilation of this filter you need to configure FFmpeg with
4190 @code{--enable-libflite}.
4191
4192 Note that the flite library is not thread-safe.
4193
4194 The filter accepts the following options:
4195
4196 @table @option
4197
4198 @item list_voices
4199 If set to 1, list the names of the available voices and exit
4200 immediately. Default value is 0.
4201
4202 @item nb_samples, n
4203 Set the maximum number of samples per frame. Default value is 512.
4204
4205 @item textfile
4206 Set the filename containing the text to speak.
4207
4208 @item text
4209 Set the text to speak.
4210
4211 @item voice, v
4212 Set the voice to use for the speech synthesis. Default value is
4213 @code{kal}. See also the @var{list_voices} option.
4214 @end table
4215
4216 @subsection Examples
4217
4218 @itemize
4219 @item
4220 Read from file @file{speech.txt}, and synthesize the text using the
4221 standard flite voice:
4222 @example
4223 flite=textfile=speech.txt
4224 @end example
4225
4226 @item
4227 Read the specified text selecting the @code{slt} voice:
4228 @example
4229 flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
4230 @end example
4231
4232 @item
4233 Input text to ffmpeg:
4234 @example
4235 ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
4236 @end example
4237
4238 @item
4239 Make @file{ffplay} speak the specified text, using @code{flite} and
4240 the @code{lavfi} device:
4241 @example
4242 ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
4243 @end example
4244 @end itemize
4245
4246 For more information about libflite, check:
4247 @url{http://www.speech.cs.cmu.edu/flite/}
4248
4249 @section anoisesrc
4250
4251 Generate a noise audio signal.
4252
4253 The filter accepts the following options:
4254
4255 @table @option
4256 @item sample_rate, r
4257 Specify the sample rate. Default value is 48000 Hz.
4258
4259 @item amplitude, a
4260 Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
4261 is 1.0.
4262
4263 @item duration, d
4264 Specify the duration of the generated audio stream. Not specifying this option
4265 results in noise with an infinite length.
4266
4267 @item color, colour, c
4268 Specify the color of noise. Available noise colors are white, pink, and brown.
4269 Default color is white.
4270
4271 @item seed, s
4272 Specify a value used to seed the PRNG.
4273
4274 @item nb_samples, n
4275 Set the number of samples per each output frame, default is 1024.
4276 @end table
4277
4278 @subsection Examples
4279
4280 @itemize
4281
4282 @item
4283 Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
4284 @example
4285 anoisesrc=d=60:c=pink:r=44100:a=0.5
4286 @end example
4287 @end itemize
4288
4289 @section sine
4290
4291 Generate an audio signal made of a sine wave with amplitude 1/8.
4292
4293 The audio signal is bit-exact.
4294
4295 The filter accepts the following options:
4296
4297 @table @option
4298
4299 @item frequency, f
4300 Set the carrier frequency. Default is 440 Hz.
4301
4302 @item beep_factor, b
4303 Enable a periodic beep every second with frequency @var{beep_factor} times
4304 the carrier frequency. Default is 0, meaning the beep is disabled.
4305
4306 @item sample_rate, r
4307 Specify the sample rate, default is 44100.
4308
4309 @item duration, d
4310 Specify the duration of the generated audio stream.
4311
4312 @item samples_per_frame
4313 Set the number of samples per output frame.
4314
4315 The expression can contain the following constants:
4316
4317 @table @option
4318 @item n
4319 The (sequential) number of the output audio frame, starting from 0.
4320
4321 @item pts
4322 The PTS (Presentation TimeStamp) of the output audio frame,
4323 expressed in @var{TB} units.
4324
4325 @item t
4326 The PTS of the output audio frame, expressed in seconds.
4327
4328 @item TB
4329 The timebase of the output audio frames.
4330 @end table
4331
4332 Default is @code{1024}.
4333 @end table
4334
4335 @subsection Examples
4336
4337 @itemize
4338
4339 @item
4340 Generate a simple 440 Hz sine wave:
4341 @example
4342 sine
4343 @end example
4344
4345 @item
4346 Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
4347 @example
4348 sine=220:4:d=5
4349 sine=f=220:b=4:d=5
4350 sine=frequency=220:beep_factor=4:duration=5
4351 @end example
4352
4353 @item
4354 Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
4355 pattern:
4356 @example
4357 sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
4358 @end example
4359 @end itemize
4360
4361 @c man end AUDIO SOURCES
4362
4363 @chapter Audio Sinks
4364 @c man begin AUDIO SINKS
4365
4366 Below is a description of the currently available audio sinks.
4367
4368 @section abuffersink
4369
4370 Buffer audio frames, and make them available to the end of filter chain.
4371
4372 This sink is mainly intended for programmatic use, in particular
4373 through the interface defined in @file{libavfilter/buffersink.h}
4374 or the options system.
4375
4376 It accepts a pointer to an AVABufferSinkContext structure, which
4377 defines the incoming buffers' formats, to be passed as the opaque
4378 parameter to @code{avfilter_init_filter} for initialization.
4379 @section anullsink
4380
4381 Null audio sink; do absolutely nothing with the input audio. It is
4382 mainly useful as a template and for use in analysis / debugging
4383 tools.
4384
4385 @c man end AUDIO SINKS
4386
4387 @chapter Video Filters
4388 @c man begin VIDEO FILTERS
4389
4390 When you configure your FFmpeg build, you can disable any of the
4391 existing filters using @code{--disable-filters}.
4392 The configure output will show the video filters included in your
4393 build.
4394
4395 Below is a description of the currently available video filters.
4396
4397 @section alphaextract
4398
4399 Extract the alpha component from the input as a grayscale video. This
4400 is especially useful with the @var{alphamerge} filter.
4401
4402 @section alphamerge
4403
4404 Add or replace the alpha component of the primary input with the
4405 grayscale value of a second input. This is intended for use with
4406 @var{alphaextract} to allow the transmission or storage of frame
4407 sequences that have alpha in a format that doesn't support an alpha
4408 channel.
4409
4410 For example, to reconstruct full frames from a normal YUV-encoded video
4411 and a separate video created with @var{alphaextract}, you might use:
4412 @example
4413 movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
4414 @end example
4415
4416 Since this filter is designed for reconstruction, it operates on frame
4417 sequences without considering timestamps, and terminates when either
4418 input reaches end of stream. This will cause problems if your encoding
4419 pipeline drops frames. If you're trying to apply an image as an
4420 overlay to a video stream, consider the @var{overlay} filter instead.
4421
4422 @section ass
4423
4424 Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
4425 and libavformat to work. On the other hand, it is limited to ASS (Advanced
4426 Substation Alpha) subtitles files.
4427
4428 This filter accepts the following option in addition to the common options from
4429 the @ref{subtitles} filter:
4430
4431 @table @option
4432 @item shaping
4433 Set the shaping engine
4434
4435 Available values are:
4436 @table @samp
4437 @item auto
4438 The default libass shaping engine, which is the best available.
4439 @item simple
4440 Fast, font-agnostic shaper that can do only substitutions
4441 @item complex
4442 Slower shaper using OpenType for substitutions and positioning
4443 @end table
4444
4445 The default is @code{auto}.
4446 @end table
4447
4448 @section atadenoise
4449 Apply an Adaptive Temporal Averaging Denoiser to the video input.
4450
4451 The filter accepts the following options:
4452
4453 @table @option
4454 @item 0a
4455 Set threshold A for 1st plane. Default is 0.02.
4456 Valid range is 0 to 0.3.
4457
4458 @item 0b
4459 Set threshold B for 1st plane. Default is 0.04.
4460 Valid range is 0 to 5.
4461
4462 @item 1a
4463 Set threshold A for 2nd plane. Default is 0.02.
4464 Valid range is 0 to 0.3.
4465
4466 @item 1b
4467 Set threshold B for 2nd plane. Default is 0.04.
4468 Valid range is 0 to 5.
4469
4470 @item 2a
4471 Set threshold A for 3rd plane. Default is 0.02.
4472 Valid range is 0 to 0.3.
4473
4474 @item 2b
4475 Set threshold B for 3rd plane. Default is 0.04.
4476 Valid range is 0 to 5.
4477
4478 Threshold A is designed to react on abrupt changes in the input signal and
4479 threshold B is designed to react on continuous changes in the input signal.
4480
4481 @item s
4482 Set number of frames filter will use for averaging. Default is 33. Must be odd
4483 number in range [5, 129].
4484
4485 @item p
4486 Set what planes of frame filter will use for averaging. Default is all.
4487 @end table
4488
4489 @section avgblur
4490
4491 Apply average blur filter.
4492
4493 The filter accepts the following options:
4494
4495 @table @option
4496 @item sizeX
4497 Set horizontal kernel size.
4498
4499 @item planes
4500 Set which planes to filter. By default all planes are filtered.
4501
4502 @item sizeY
4503 Set vertical kernel size, if zero it will be same as @code{sizeX}.
4504 Default is @code{0}.
4505 @end table
4506
4507 @section bbox
4508
4509 Compute the bounding box for the non-black pixels in the input frame
4510 luminance plane.
4511
4512 This filter computes the bounding box containing all the pixels with a
4513 luminance value greater than the minimum allowed value.
4514 The parameters describing the bounding box are printed on the filter
4515 log.
4516
4517 The filter accepts the following option:
4518
4519 @table @option
4520 @item min_val
4521 Set the minimal luminance value. Default is @code{16}.
4522 @end table
4523
4524 @section bitplanenoise
4525
4526 Show and measure bit plane noise.
4527
4528 The filter accepts the following options:
4529
4530 @table @option
4531 @item bitplane
4532 Set which plane to analyze. Default is @code{1}.
4533
4534 @item filter
4535 Filter out noisy pixels from @code{bitplane} set above.
4536 Default is disabled.
4537 @end table
4538
4539 @section blackdetect
4540
4541 Detect video intervals that are (almost) completely black. Can be
4542 useful to detect chapter transitions, commercials, or invalid
4543 recordings. Output lines contains the time for the start, end and
4544 duration of the detected black interval expressed in seconds.
4545
4546 In order to display the output lines, you need to set the loglevel at
4547 least to the AV_LOG_INFO value.
4548
4549 The filter accepts the following options:
4550
4551 @table @option
4552 @item black_min_duration, d
4553 Set the minimum detected black duration expressed in seconds. It must
4554 be a non-negative floating point number.
4555
4556 Default value is 2.0.
4557
4558 @item picture_black_ratio_th, pic_th
4559 Set the threshold for considering a picture "black".
4560 Express the minimum value for the ratio:
4561 @example
4562 @var{nb_black_pixels} / @var{nb_pixels}
4563 @end example
4564
4565 for which a picture is considered black.
4566 Default value is 0.98.
4567
4568 @item pixel_black_th, pix_th
4569 Set the threshold for considering a pixel "black".
4570
4571 The threshold expresses the maximum pixel luminance value for which a
4572 pixel is considered "black". The provided value is scaled according to
4573 the following equation:
4574 @example
4575 @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
4576 @end example
4577
4578 @var{luminance_range_size} and @var{luminance_minimum_value} depend on
4579 the input video format, the range is [0-255] for YUV full-range
4580 formats and [16-235] for YUV non full-range formats.
4581
4582 Default value is 0.10.
4583 @end table
4584
4585 The following example sets the maximum pixel threshold to the minimum
4586 value, and detects only black intervals of 2 or more seconds:
4587 @example
4588 blackdetect=d=2:pix_th=0.00
4589 @end example
4590
4591 @section blackframe
4592
4593 Detect frames that are (almost) completely black. Can be useful to
4594 detect chapter transitions or commercials. Output lines consist of
4595 the frame number of the detected frame, the percentage of blackness,
4596 the position in the file if known or -1 and the timestamp in seconds.
4597
4598 In order to display the output lines, you need to set the loglevel at
4599 least to the AV_LOG_INFO value.
4600
4601 This filter exports frame metadata @code{lavfi.blackframe.pblack}.
4602 The value represents the percentage of pixels in the picture that
4603 are below the threshold value.
4604
4605 It accepts the following parameters:
4606
4607 @table @option
4608
4609 @item amount
4610 The percentage of the pixels that have to be below the threshold; it defaults to
4611 @code{98}.
4612
4613 @item threshold, thresh
4614 The threshold below which a pixel value is considered black; it defaults to
4615 @code{32}.
4616
4617 @end table
4618
4619 @section blend, tblend
4620
4621 Blend two video frames into each other.
4622
4623 The @code{blend} filter takes two input streams and outputs one
4624 stream, the first input is the "top" layer and second input is
4625 "bottom" layer.  By default, the output terminates when the longest input terminates.
4626
4627 The @code{tblend} (time blend) filter takes two consecutive frames
4628 from one single stream, and outputs the result obtained by blending
4629 the new frame on top of the old frame.
4630
4631 A description of the accepted options follows.
4632
4633 @table @option
4634 @item c0_mode
4635 @item c1_mode
4636 @item c2_mode
4637 @item c3_mode
4638 @item all_mode
4639 Set blend mode for specific pixel component or all pixel components in case
4640 of @var{all_mode}. Default value is @code{normal}.
4641
4642 Available values for component modes are:
4643 @table @samp
4644 @item addition
4645 @item addition128
4646 @item and
4647 @item average
4648 @item burn
4649 @item darken
4650 @item difference
4651 @item difference128
4652 @item divide
4653 @item dodge
4654 @item freeze
4655 @item exclusion
4656 @item glow
4657 @item hardlight
4658 @item hardmix
4659 @item heat
4660 @item lighten
4661 @item linearlight
4662 @item multiply
4663 @item multiply128
4664 @item negation
4665 @item normal
4666 @item or
4667 @item overlay
4668 @item phoenix
4669 @item pinlight
4670 @item reflect
4671 @item screen
4672 @item softlight
4673 @item subtract
4674 @item vividlight
4675 @item xor
4676 @end table
4677
4678 @item c0_opacity
4679 @item c1_opacity
4680 @item c2_opacity
4681 @item c3_opacity
4682 @item all_opacity
4683 Set blend opacity for specific pixel component or all pixel components in case
4684 of @var{all_opacity}. Only used in combination with pixel component blend modes.
4685
4686 @item c0_expr
4687 @item c1_expr
4688 @item c2_expr
4689 @item c3_expr
4690 @item all_expr
4691 Set blend expression for specific pixel component or all pixel components in case
4692 of @var{all_expr}. Note that related mode options will be ignored if those are set.
4693
4694 The expressions can use the following variables:
4695
4696 @table @option
4697 @item N
4698 The sequential number of the filtered frame, starting from @code{0}.
4699
4700 @item X
4701 @item Y
4702 the coordinates of the current sample
4703
4704 @item W
4705 @item H
4706 the width and height of currently filtered plane
4707
4708 @item SW
4709 @item SH
4710 Width and height scale depending on the currently filtered plane. It is the
4711 ratio between the corresponding luma plane number of pixels and the current
4712 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
4713 @code{0.5,0.5} for chroma planes.
4714
4715 @item T
4716 Time of the current frame, expressed in seconds.
4717
4718 @item TOP, A
4719 Value of pixel component at current location for first video frame (top layer).
4720
4721 @item BOTTOM, B
4722 Value of pixel component at current location for second video frame (bottom layer).
4723 @end table
4724
4725 @item shortest
4726 Force termination when the shortest input terminates. Default is
4727 @code{0}. This option is only defined for the @code{blend} filter.
4728
4729 @item repeatlast
4730 Continue applying the last bottom frame after the end of the stream. A value of
4731 @code{0} disable the filter after the last frame of the bottom layer is reached.
4732 Default is @code{1}. This option is only defined for the @code{blend} filter.
4733 @end table
4734
4735 @subsection Examples
4736
4737 @itemize
4738 @item
4739 Apply transition from bottom layer to top layer in first 10 seconds:
4740 @example
4741 blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
4742 @end example
4743
4744 @item
4745 Apply 1x1 checkerboard effect:
4746 @example
4747 blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
4748 @end example
4749
4750 @item
4751 Apply uncover left effect:
4752 @example
4753 blend=all_expr='if(gte(N*SW+X,W),A,B)'
4754 @end example
4755
4756 @item
4757 Apply uncover down effect:
4758 @example
4759 blend=all_expr='if(gte(Y-N*SH,0),A,B)'
4760 @end example
4761
4762 @item
4763 Apply uncover up-left effect:
4764 @example
4765 blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
4766 @end example
4767
4768 @item
4769 Split diagonally video and shows top and bottom layer on each side:
4770 @example
4771 blend=all_expr=if(gt(X,Y*(W/H)),A,B)
4772 @end example
4773
4774 @item
4775 Display differences between the current and the previous frame:
4776 @example
4777 tblend=all_mode=difference128
4778 @end example
4779 @end itemize
4780
4781 @section boxblur
4782
4783 Apply a boxblur algorithm to the input video.
4784
4785 It accepts the following parameters:
4786
4787 @table @option
4788
4789 @item luma_radius, lr
4790 @item luma_power, lp
4791 @item chroma_radius, cr
4792 @item chroma_power, cp
4793 @item alpha_radius, ar
4794 @item alpha_power, ap
4795
4796 @end table
4797
4798 A description of the accepted options follows.
4799
4800 @table @option
4801 @item luma_radius, lr
4802 @item chroma_radius, cr
4803 @item alpha_radius, ar
4804 Set an expression for the box radius in pixels used for blurring the
4805 corresponding input plane.
4806
4807 The radius value must be a non-negative number, and must not be
4808 greater than the value of the expression @code{min(w,h)/2} for the
4809 luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
4810 planes.
4811
4812 Default value for @option{luma_radius} is "2". If not specified,
4813 @option{chroma_radius} and @option{alpha_radius} default to the
4814 corresponding value set for @option{luma_radius}.
4815
4816 The expressions can contain the following constants:
4817 @table @option
4818 @item w
4819 @item h
4820 The input width and height in pixels.
4821
4822 @item cw
4823 @item ch
4824 The input chroma image width and height in pixels.
4825
4826 @item hsub
4827 @item vsub
4828 The horizontal and vertical chroma subsample values. For example, for the
4829 pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
4830 @end table
4831
4832 @item luma_power, lp
4833 @item chroma_power, cp
4834 @item alpha_power, ap
4835 Specify how many times the boxblur filter is applied to the
4836 corresponding plane.
4837
4838 Default value for @option{luma_power} is 2. If not specified,
4839 @option{chroma_power} and @option{alpha_power} default to the
4840 corresponding value set for @option{luma_power}.
4841
4842 A value of 0 will disable the effect.
4843 @end table
4844
4845 @subsection Examples
4846
4847 @itemize
4848 @item
4849 Apply a boxblur filter with the luma, chroma, and alpha radii
4850 set to 2:
4851 @example
4852 boxblur=luma_radius=2:luma_power=1
4853 boxblur=2:1
4854 @end example
4855
4856 @item
4857 Set the luma radius to 2, and alpha and chroma radius to 0:
4858 @example
4859 boxblur=2:1:cr=0:ar=0
4860 @end example
4861
4862 @item
4863 Set the luma and chroma radii to a fraction of the video dimension:
4864 @example
4865 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
4866 @end example
4867 @end itemize
4868
4869 @section bwdif
4870
4871 Deinterlace the input video ("bwdif" stands for "Bob Weaver
4872 Deinterlacing Filter").
4873
4874 Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
4875 interpolation algorithms.
4876 It accepts the following parameters:
4877
4878 @table @option
4879 @item mode
4880 The interlacing mode to adopt. It accepts one of the following values:
4881
4882 @table @option
4883 @item 0, send_frame
4884 Output one frame for each frame.
4885 @item 1, send_field
4886 Output one frame for each field.
4887 @end table
4888
4889 The default value is @code{send_field}.
4890
4891 @item parity
4892 The picture field parity assumed for the input interlaced video. It accepts one
4893 of the following values:
4894
4895 @table @option
4896 @item 0, tff
4897 Assume the top field is first.
4898 @item 1, bff
4899 Assume the bottom field is first.
4900 @item -1, auto
4901 Enable automatic detection of field parity.
4902 @end table
4903
4904 The default value is @code{auto}.
4905 If the interlacing is unknown or the decoder does not export this information,
4906 top field first will be assumed.
4907
4908 @item deint
4909 Specify which frames to deinterlace. Accept one of the following
4910 values:
4911
4912 @table @option
4913 @item 0, all
4914 Deinterlace all frames.
4915 @item 1, interlaced
4916 Only deinterlace frames marked as interlaced.
4917 @end table
4918
4919 The default value is @code{all}.
4920 @end table
4921
4922 @section chromakey
4923 YUV colorspace color/chroma keying.
4924
4925 The filter accepts the following options:
4926
4927 @table @option
4928 @item color
4929 The color which will be replaced with transparency.
4930
4931 @item similarity
4932 Similarity percentage with the key color.
4933
4934 0.01 matches only the exact key color, while 1.0 matches everything.
4935
4936 @item blend
4937 Blend percentage.
4938
4939 0.0 makes pixels either fully transparent, or not transparent at all.
4940
4941 Higher values result in semi-transparent pixels, with a higher transparency
4942 the more similar the pixels color is to the key color.
4943
4944 @item yuv
4945 Signals that the color passed is already in YUV instead of RGB.
4946
4947 Litteral colors like "green" or "red" don't make sense with this enabled anymore.
4948 This can be used to pass exact YUV values as hexadecimal numbers.
4949 @end table
4950
4951 @subsection Examples
4952
4953 @itemize
4954 @item
4955 Make every green pixel in the input image transparent:
4956 @example
4957 ffmpeg -i input.png -vf chromakey=green out.png
4958 @end example
4959
4960 @item
4961 Overlay a greenscreen-video on top of a static black background.
4962 @example
4963 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
4964 @end example
4965 @end itemize
4966
4967 @section ciescope
4968
4969 Display CIE color diagram with pixels overlaid onto it.
4970
4971 The filter accepts the following options:
4972
4973 @table @option
4974 @item system
4975 Set color system.
4976
4977 @table @samp
4978 @item ntsc, 470m
4979 @item ebu, 470bg
4980 @item smpte
4981 @item 240m
4982 @item apple
4983 @item widergb
4984 @item cie1931
4985 @item rec709, hdtv
4986 @item uhdtv, rec2020
4987 @end table
4988
4989 @item cie
4990 Set CIE system.
4991
4992 @table @samp
4993 @item xyy
4994 @item ucs
4995 @item luv
4996 @end table
4997
4998 @item gamuts
4999 Set what gamuts to draw.
5000
5001 See @code{system} option for available values.
5002
5003 @item size, s
5004 Set ciescope size, by default set to 512.
5005
5006 @item intensity, i
5007 Set intensity used to map input pixel values to CIE diagram.
5008
5009 @item contrast
5010 Set contrast used to draw tongue colors that are out of active color system gamut.
5011
5012 @item corrgamma
5013 Correct gamma displayed on scope, by default enabled.
5014
5015 @item showwhite
5016 Show white point on CIE diagram, by default disabled.
5017
5018 @item gamma
5019 Set input gamma. Used only with XYZ input color space.
5020 @end table
5021
5022 @section codecview
5023
5024 Visualize information exported by some codecs.
5025
5026 Some codecs can export information through frames using side-data or other
5027 means. For example, some MPEG based codecs export motion vectors through the
5028 @var{export_mvs} flag in the codec @option{flags2} option.
5029
5030 The filter accepts the following option:
5031
5032 @table @option
5033 @item mv
5034 Set motion vectors to visualize.
5035
5036 Available flags for @var{mv} are:
5037
5038 @table @samp
5039 @item pf
5040 forward predicted MVs of P-frames
5041 @item bf
5042 forward predicted MVs of B-frames
5043 @item bb
5044 backward predicted MVs of B-frames
5045 @end table
5046
5047 @item qp
5048 Display quantization parameters using the chroma planes.
5049
5050 @item mv_type, mvt
5051 Set motion vectors type to visualize. Includes MVs from all frames unless specified by @var{frame_type} option.
5052
5053 Available flags for @var{mv_type} are:
5054
5055 @table @samp
5056 @item fp
5057 forward predicted MVs
5058 @item bp
5059 backward predicted MVs
5060 @end table
5061
5062 @item frame_type, ft
5063 Set frame type to visualize motion vectors of.
5064
5065 Available flags for @var{frame_type} are:
5066
5067 @table @samp
5068 @item if
5069 intra-coded frames (I-frames)
5070 @item pf
5071 predicted frames (P-frames)
5072 @item bf
5073 bi-directionally predicted frames (B-frames)
5074 @end table
5075 @end table
5076
5077 @subsection Examples
5078
5079 @itemize
5080 @item
5081 Visualize forward predicted MVs of all frames using @command{ffplay}:
5082 @example
5083 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv_type=fp
5084 @end example
5085
5086 @item
5087 Visualize multi-directionals MVs of P and B-Frames using @command{ffplay}:
5088 @example
5089 ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv=pf+bf+bb
5090 @end example
5091 @end itemize
5092
5093 @section colorbalance
5094 Modify intensity of primary colors (red, green and blue) of input frames.
5095
5096 The filter allows an input frame to be adjusted in the shadows, midtones or highlights
5097 regions for the red-cyan, green-magenta or blue-yellow balance.
5098
5099 A positive adjustment value shifts the balance towards the primary color, a negative
5100 value towards the complementary color.
5101
5102 The filter accepts the following options:
5103
5104 @table @option
5105 @item rs
5106 @item gs
5107 @item bs
5108 Adjust red, green and blue shadows (darkest pixels).
5109
5110 @item rm
5111 @item gm
5112 @item bm
5113 Adjust red, green and blue midtones (medium pixels).
5114
5115 @item rh
5116 @item gh
5117 @item bh
5118 Adjust red, green and blue highlights (brightest pixels).
5119
5120 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
5121 @end table
5122
5123 @subsection Examples
5124
5125 @itemize
5126 @item
5127 Add red color cast to shadows:
5128 @example
5129 colorbalance=rs=.3
5130 @end example
5131 @end itemize
5132
5133 @section colorkey
5134 RGB colorspace color keying.
5135
5136 The filter accepts the following options:
5137
5138 @table @option
5139 @item color
5140 The color which will be replaced with transparency.
5141
5142 @item similarity
5143 Similarity percentage with the key color.
5144
5145 0.01 matches only the exact key color, while 1.0 matches everything.
5146
5147 @item blend
5148 Blend percentage.
5149
5150 0.0 makes pixels either fully transparent, or not transparent at all.
5151
5152 Higher values result in semi-transparent pixels, with a higher transparency
5153 the more similar the pixels color is to the key color.
5154 @end table
5155
5156 @subsection Examples
5157
5158 @itemize
5159 @item
5160 Make every green pixel in the input image transparent:
5161 @example
5162 ffmpeg -i input.png -vf colorkey=green out.png
5163 @end example
5164
5165 @item
5166 Overlay a greenscreen-video on top of a static background image.
5167 @example
5168 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
5169 @end example
5170 @end itemize
5171
5172 @section colorlevels
5173
5174 Adjust video input frames using levels.
5175
5176 The filter accepts the following options:
5177
5178 @table @option
5179 @item rimin
5180 @item gimin
5181 @item bimin
5182 @item aimin
5183 Adjust red, green, blue and alpha input black point.
5184 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
5185
5186 @item rimax
5187 @item gimax
5188 @item bimax
5189 @item aimax
5190 Adjust red, green, blue and alpha input white point.
5191 Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
5192
5193 Input levels are used to lighten highlights (bright tones), darken shadows
5194 (dark tones), change the balance of bright and dark tones.
5195
5196 @item romin
5197 @item gomin
5198 @item bomin
5199 @item aomin
5200 Adjust red, green, blue and alpha output black point.
5201 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
5202
5203 @item romax
5204 @item gomax
5205 @item bomax
5206 @item aomax
5207 Adjust red, green, blue and alpha output white point.
5208 Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
5209
5210 Output levels allows manual selection of a constrained output level range.
5211 @end table
5212
5213 @subsection Examples
5214
5215 @itemize
5216 @item
5217 Make video output darker:
5218 @example
5219 colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
5220 @end example
5221
5222 @item
5223 Increase contrast:
5224 @example
5225 colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
5226 @end example
5227
5228 @item
5229 Make video output lighter:
5230 @example
5231 colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
5232 @end example
5233
5234 @item
5235 Increase brightness:
5236 @example
5237 colorlevels=romin=0.5:gomin=0.5:bomin=0.5
5238 @end example
5239 @end itemize
5240
5241 @section colorchannelmixer
5242
5243 Adjust video input frames by re-mixing color channels.
5244
5245 This filter modifies a color channel by adding the values associated to
5246 the other channels of the same pixels. For example if the value to
5247 modify is red, the output value will be:
5248 @example
5249 @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
5250 @end example
5251
5252 The filter accepts the following options:
5253
5254 @table @option
5255 @item rr
5256 @item rg
5257 @item rb
5258 @item ra
5259 Adjust contribution of input red, green, blue and alpha channels for output red channel.
5260 Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
5261
5262 @item gr
5263 @item gg
5264 @item gb
5265 @item ga
5266 Adjust contribution of input red, green, blue and alpha channels for output green channel.
5267 Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
5268
5269 @item br
5270 @item bg
5271 @item bb
5272 @item ba
5273 Adjust contribution of input red, green, blue and alpha channels for output blue channel.
5274 Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
5275
5276 @item ar
5277 @item ag
5278 @item ab
5279 @item aa
5280 Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
5281 Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
5282
5283 Allowed ranges for options are @code{[-2.0, 2.0]}.
5284 @end table
5285
5286 @subsection Examples
5287
5288 @itemize
5289 @item
5290 Convert source to grayscale:
5291 @example
5292 colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
5293 @end example
5294 @item
5295 Simulate sepia tones:
5296 @example
5297 colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
5298 @end example
5299 @end itemize
5300
5301 @section colormatrix
5302
5303 Convert color matrix.
5304
5305 The filter accepts the following options:
5306
5307 @table @option
5308 @item src
5309 @item dst
5310 Specify the source and destination color matrix. Both values must be
5311 specified.
5312
5313 The accepted values are:
5314 @table @samp
5315 @item bt709
5316 BT.709
5317
5318 @item fcc
5319 FCC
5320
5321 @item bt601
5322 BT.601
5323
5324 @item bt470
5325 BT.470
5326
5327 @item bt470bg
5328 BT.470BG
5329
5330 @item smpte170m
5331 SMPTE-170M
5332
5333 @item smpte240m
5334 SMPTE-240M
5335
5336 @item bt2020
5337 BT.2020
5338 @end table
5339 @end table
5340
5341 For example to convert from BT.601 to SMPTE-240M, use the command:
5342 @example
5343 colormatrix=bt601:smpte240m
5344 @end example
5345
5346 @section colorspace
5347
5348 Convert colorspace, transfer characteristics or color primaries.
5349 Input video needs to have an even size.
5350
5351 The filter accepts the following options:
5352
5353 @table @option
5354 @anchor{all}
5355 @item all
5356 Specify all color properties at once.
5357
5358 The accepted values are:
5359 @table @samp
5360 @item bt470m
5361 BT.470M
5362
5363 @item bt470bg
5364 BT.470BG
5365
5366 @item bt601-6-525
5367 BT.601-6 525
5368
5369 @item bt601-6-625
5370 BT.601-6 625
5371
5372 @item bt709
5373 BT.709
5374
5375 @item smpte170m
5376 SMPTE-170M
5377
5378 @item smpte240m
5379 SMPTE-240M
5380
5381 @item bt2020
5382 BT.2020
5383
5384 @end table
5385
5386 @anchor{space}
5387 @item space
5388 Specify output colorspace.
5389
5390 The accepted values are:
5391 @table @samp
5392 @item bt709
5393 BT.709
5394
5395 @item fcc
5396 FCC
5397
5398 @item bt470bg
5399 BT.470BG or BT.601-6 625
5400
5401 @item smpte170m
5402 SMPTE-170M or BT.601-6 525
5403
5404 @item smpte240m
5405 SMPTE-240M
5406
5407 @item ycgco
5408 YCgCo
5409
5410 @item bt2020ncl
5411 BT.2020 with non-constant luminance
5412
5413 @end table
5414
5415 @anchor{trc}
5416 @item trc
5417 Specify output transfer characteristics.
5418
5419 The accepted values are:
5420 @table @samp
5421 @item bt709
5422 BT.709
5423
5424 @item bt470m
5425 BT.470M
5426
5427 @item bt470bg
5428 BT.470BG
5429
5430 @item gamma22
5431 Constant gamma of 2.2
5432
5433 @item gamma28
5434 Constant gamma of 2.8
5435
5436 @item smpte170m
5437 SMPTE-170M, BT.601-6 625 or BT.601-6 525
5438
5439 @item smpte240m
5440 SMPTE-240M
5441
5442 @item srgb
5443 SRGB
5444
5445 @item iec61966-2-1
5446 iec61966-2-1
5447
5448 @item iec61966-2-4
5449 iec61966-2-4
5450
5451 @item xvycc
5452 xvycc
5453
5454 @item bt2020-10
5455 BT.2020 for 10-bits content
5456
5457 @item bt2020-12
5458 BT.2020 for 12-bits content
5459
5460 @end table
5461
5462 @anchor{primaries}
5463 @item primaries
5464 Specify output color primaries.
5465
5466 The accepted values are:
5467 @table @samp
5468 @item bt709
5469 BT.709
5470
5471 @item bt470m
5472 BT.470M
5473
5474 @item bt470bg
5475 BT.470BG or BT.601-6 625
5476
5477 @item smpte170m
5478 SMPTE-170M or BT.601-6 525
5479
5480 @item smpte240m
5481 SMPTE-240M
5482
5483 @item film
5484 film
5485
5486 @item smpte431
5487 SMPTE-431
5488
5489 @item smpte432
5490 SMPTE-432
5491
5492 @item bt2020
5493 BT.2020
5494
5495 @end table
5496
5497 @anchor{range}
5498 @item range
5499 Specify output color range.
5500
5501 The accepted values are:
5502 @table @samp
5503 @item tv
5504 TV (restricted) range
5505
5506 @item mpeg
5507 MPEG (restricted) range
5508
5509 @item pc
5510 PC (full) range
5511
5512 @item jpeg
5513 JPEG (full) range
5514
5515 @end table
5516
5517 @item format
5518 Specify output color format.
5519
5520 The accepted values are:
5521 @table @samp
5522 @item yuv420p
5523 YUV 4:2:0 planar 8-bits
5524
5525 @item yuv420p10
5526 YUV 4:2:0 planar 10-bits
5527
5528 @item yuv420p12
5529 YUV 4:2:0 planar 12-bits
5530
5531 @item yuv422p
5532 YUV 4:2:2 planar 8-bits
5533
5534 @item yuv422p10
5535 YUV 4:2:2 planar 10-bits
5536
5537 @item yuv422p12
5538 YUV 4:2:2 planar 12-bits
5539
5540 @item yuv444p
5541 YUV 4:4:4 planar 8-bits
5542
5543 @item yuv444p10
5544 YUV 4:4:4 planar 10-bits
5545
5546 @item yuv444p12
5547 YUV 4:4:4 planar 12-bits
5548
5549 @end table
5550
5551 @item fast
5552 Do a fast conversion, which skips gamma/primary correction. This will take
5553 significantly less CPU, but will be mathematically incorrect. To get output
5554 compatible with that produced by the colormatrix filter, use fast=1.
5555
5556 @item dither
5557 Specify dithering mode.
5558
5559 The accepted values are:
5560 @table @samp
5561 @item none
5562 No dithering
5563
5564 @item fsb
5565 Floyd-Steinberg dithering
5566 @end table
5567
5568 @item wpadapt
5569 Whitepoint adaptation mode.
5570
5571 The accepted values are:
5572 @table @samp
5573 @item bradford
5574 Bradford whitepoint adaptation
5575
5576 @item vonkries
5577 von Kries whitepoint adaptation
5578
5579 @item identity
5580 identity whitepoint adaptation (i.e. no whitepoint adaptation)
5581 @end table
5582
5583 @item iall
5584 Override all input properties at once. Same accepted values as @ref{all}.
5585
5586 @item ispace
5587 Override input colorspace. Same accepted values as @ref{space}.
5588
5589 @item iprimaries
5590 Override input color primaries. Same accepted values as @ref{primaries}.
5591
5592 @item itrc
5593 Override input transfer characteristics. Same accepted values as @ref{trc}.
5594
5595 @item irange
5596 Override input color range. Same accepted values as @ref{range}.
5597
5598 @end table
5599
5600 The filter converts the transfer characteristics, color space and color
5601 primaries to the specified user values. The output value, if not specified,
5602 is set to a default value based on the "all" property. If that property is
5603 also not specified, the filter will log an error. The output color range and
5604 format default to the same value as the input color range and format. The
5605 input transfer characteristics, color space, color primaries and color range
5606 should be set on the input data. If any of these are missing, the filter will
5607 log an error and no conversion will take place.
5608
5609 For example to convert the input to SMPTE-240M, use the command:
5610 @example
5611 colorspace=smpte240m
5612 @end example
5613
5614 @section convolution
5615
5616 Apply convolution 3x3 or 5x5 filter.
5617
5618 The filter accepts the following options:
5619
5620 @table @option
5621 @item 0m
5622 @item 1m
5623 @item 2m
5624 @item 3m
5625 Set matrix for each plane.
5626 Matrix is sequence of 9 or 25 signed integers.
5627
5628 @item 0rdiv
5629 @item 1rdiv
5630 @item 2rdiv
5631 @item 3rdiv
5632 Set multiplier for calculated value for each plane.
5633
5634 @item 0bias
5635 @item 1bias
5636 @item 2bias
5637 @item 3bias
5638 Set bias for each plane. This value is added to the result of the multiplication.
5639 Useful for making the overall image brighter or darker. Default is 0.0.
5640 @end table
5641
5642 @subsection Examples
5643
5644 @itemize
5645 @item
5646 Apply sharpen:
5647 @example
5648 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"
5649 @end example
5650
5651 @item
5652 Apply blur:
5653 @example
5654 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"
5655 @end example
5656
5657 @item
5658 Apply edge enhance:
5659 @example
5660 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"
5661 @end example
5662
5663 @item
5664 Apply edge detect:
5665 @example
5666 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"
5667 @end example
5668
5669 @item
5670 Apply emboss:
5671 @example
5672 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"
5673 @end example
5674 @end itemize
5675
5676 @section copy
5677
5678 Copy the input video source unchanged to the output. This is mainly useful for
5679 testing purposes.
5680
5681 @anchor{coreimage}
5682 @section coreimage
5683 Video filtering on GPU using Apple's CoreImage API on OSX.
5684
5685 Hardware acceleration is based on an OpenGL context. Usually, this means it is
5686 processed by video hardware. However, software-based OpenGL implementations
5687 exist which means there is no guarantee for hardware processing. It depends on
5688 the respective OSX.
5689
5690 There are many filters and image generators provided by Apple that come with a
5691 large variety of options. The filter has to be referenced by its name along
5692 with its options.
5693
5694 The coreimage filter accepts the following options:
5695 @table @option
5696 @item list_filters
5697 List all available filters and generators along with all their respective
5698 options as well as possible minimum and maximum values along with the default
5699 values.
5700 @example
5701 list_filters=true
5702 @end example
5703
5704 @item filter
5705 Specify all filters by their respective name and options.
5706 Use @var{list_filters} to determine all valid filter names and options.
5707 Numerical options are specified by a float value and are automatically clamped
5708 to their respective value range.  Vector and color options have to be specified
5709 by a list of space separated float values. Character escaping has to be done.
5710 A special option name @code{default} is available to use default options for a
5711 filter.
5712
5713 It is required to specify either @code{default} or at least one of the filter options.
5714 All omitted options are used with their default values.
5715 The syntax of the filter string is as follows:
5716 @example
5717 filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
5718 @end example
5719
5720 @item output_rect
5721 Specify a rectangle where the output of the filter chain is copied into the
5722 input image. It is given by a list of space separated float values:
5723 @example
5724 output_rect=x\ y\ width\ height
5725 @end example
5726 If not given, the output rectangle equals the dimensions of the input image.
5727 The output rectangle is automatically cropped at the borders of the input
5728 image. Negative values are valid for each component.
5729 @example
5730 output_rect=25\ 25\ 100\ 100
5731 @end example
5732 @end table
5733
5734 Several filters can be chained for successive processing without GPU-HOST
5735 transfers allowing for fast processing of complex filter chains.
5736 Currently, only filters with zero (generators) or exactly one (filters) input
5737 image and one output image are supported. Also, transition filters are not yet
5738 usable as intended.
5739
5740 Some filters generate output images with additional padding depending on the
5741 respective filter kernel. The padding is automatically removed to ensure the
5742 filter output has the same size as the input image.
5743
5744 For image generators, the size of the output image is determined by the
5745 previous output image of the filter chain or the input image of the whole
5746 filterchain, respectively. The generators do not use the pixel information of
5747 this image to generate their output. However, the generated output is
5748 blended onto this image, resulting in partial or complete coverage of the
5749 output image.
5750
5751 The @ref{coreimagesrc} video source can be used for generating input images
5752 which are directly fed into the filter chain. By using it, providing input
5753 images by another video source or an input video is not required.
5754
5755 @subsection Examples
5756
5757 @itemize
5758
5759 @item
5760 List all filters available:
5761 @example
5762 coreimage=list_filters=true
5763 @end example
5764
5765 @item
5766 Use the CIBoxBlur filter with default options to blur an image:
5767 @example
5768 coreimage=filter=CIBoxBlur@@default
5769 @end example
5770
5771 @item
5772 Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
5773 its center at 100x100 and a radius of 50 pixels:
5774 @example
5775 coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
5776 @end example
5777
5778 @item
5779 Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
5780 given as complete and escaped command-line for Apple's standard bash shell:
5781 @example
5782 ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
5783 @end example
5784 @end itemize
5785
5786 @section crop
5787
5788 Crop the input video to given dimensions.
5789
5790 It accepts the following parameters:
5791
5792 @table @option
5793 @item w, out_w
5794 The width of the output video. It defaults to @code{iw}.
5795 This expression is evaluated only once during the filter
5796 configuration, or when the @samp{w} or @samp{out_w} command is sent.
5797
5798 @item h, out_h
5799 The height of the output video. It defaults to @code{ih}.
5800 This expression is evaluated only once during the filter
5801 configuration, or when the @samp{h} or @samp{out_h} command is sent.
5802
5803 @item x
5804 The horizontal position, in the input video, of the left edge of the output
5805 video. It defaults to @code{(in_w-out_w)/2}.
5806 This expression is evaluated per-frame.
5807
5808 @item y
5809 The vertical position, in the input video, of the top edge of the output video.
5810 It defaults to @code{(in_h-out_h)/2}.
5811 This expression is evaluated per-frame.
5812
5813 @item keep_aspect
5814 If set to 1 will force the output display aspect ratio
5815 to be the same of the input, by changing the output sample aspect
5816 ratio. It defaults to 0.
5817
5818 @item exact
5819 Enable exact cropping. If enabled, subsampled videos will be cropped at exact
5820 width/height/x/y as specified and will not be rounded to nearest smaller value.
5821 It defaults to 0.
5822 @end table
5823
5824 The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
5825 expressions containing the following constants:
5826
5827 @table @option
5828 @item x
5829 @item y
5830 The computed values for @var{x} and @var{y}. They are evaluated for
5831 each new frame.
5832
5833 @item in_w
5834 @item in_h
5835 The input width and height.
5836
5837 @item iw
5838 @item ih
5839 These are the same as @var{in_w} and @var{in_h}.
5840
5841 @item out_w
5842 @item out_h
5843 The output (cropped) width and height.
5844
5845 @item ow
5846 @item oh
5847 These are the same as @var{out_w} and @var{out_h}.
5848
5849 @item a
5850 same as @var{iw} / @var{ih}
5851
5852 @item sar
5853 input sample aspect ratio
5854
5855 @item dar
5856 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
5857
5858 @item hsub
5859 @item vsub
5860 horizontal and vertical chroma subsample values. For example for the
5861 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
5862
5863 @item n
5864 The number of the input frame, starting from 0.
5865
5866 @item pos
5867 the position in the file of the input frame, NAN if unknown
5868
5869 @item t
5870 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
5871
5872 @end table
5873
5874 The expression for @var{out_w} may depend on the value of @var{out_h},
5875 and the expression for @var{out_h} may depend on @var{out_w}, but they
5876 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
5877 evaluated after @var{out_w} and @var{out_h}.
5878
5879 The @var{x} and @var{y} parameters specify the expressions for the
5880 position of the top-left corner of the output (non-cropped) area. They
5881 are evaluated for each frame. If the evaluated value is not valid, it
5882 is approximated to the nearest valid value.
5883
5884 The expression for @var{x} may depend on @var{y}, and the expression
5885 for @var{y} may depend on @var{x}.
5886
5887 @subsection Examples
5888
5889 @itemize
5890 @item
5891 Crop area with size 100x100 at position (12,34).
5892 @example
5893 crop=100:100:12:34
5894 @end example
5895
5896 Using named options, the example above becomes:
5897 @example
5898 crop=w=100:h=100:x=12:y=34
5899 @end example
5900
5901 @item
5902 Crop the central input area with size 100x100:
5903 @example
5904 crop=100:100
5905 @end example
5906
5907 @item
5908 Crop the central input area with size 2/3 of the input video:
5909 @example
5910 crop=2/3*in_w:2/3*in_h
5911 @end example
5912
5913 @item
5914 Crop the input video central square:
5915 @example
5916 crop=out_w=in_h
5917 crop=in_h
5918 @end example
5919
5920 @item
5921 Delimit the rectangle with the top-left corner placed at position
5922 100:100 and the right-bottom corner corresponding to the right-bottom
5923 corner of the input image.
5924 @example
5925 crop=in_w-100:in_h-100:100:100
5926 @end example
5927
5928 @item
5929 Crop 10 pixels from the left and right borders, and 20 pixels from
5930 the top and bottom borders
5931 @example
5932 crop=in_w-2*10:in_h-2*20
5933 @end example
5934
5935 @item
5936 Keep only the bottom right quarter of the input image:
5937 @example
5938 crop=in_w/2:in_h/2:in_w/2:in_h/2
5939 @end example
5940
5941 @item
5942 Crop height for getting Greek harmony:
5943 @example
5944 crop=in_w:1/PHI*in_w
5945 @end example
5946
5947 @item
5948 Apply trembling effect:
5949 @example
5950 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)
5951 @end example
5952
5953 @item
5954 Apply erratic camera effect depending on timestamp:
5955 @example
5956 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)"
5957 @end example
5958
5959 @item
5960 Set x depending on the value of y:
5961 @example
5962 crop=in_w/2:in_h/2:y:10+10*sin(n/10)
5963 @end example
5964 @end itemize
5965
5966 @subsection Commands
5967
5968 This filter supports the following commands:
5969 @table @option
5970 @item w, out_w
5971 @item h, out_h
5972 @item x
5973 @item y
5974 Set width/height of the output video and the horizontal/vertical position
5975 in the input video.
5976 The command accepts the same syntax of the corresponding option.
5977
5978 If the specified expression is not valid, it is kept at its current
5979 value.
5980 @end table
5981
5982 @section cropdetect
5983
5984 Auto-detect the crop size.
5985
5986 It calculates the necessary cropping parameters and prints the
5987 recommended parameters via the logging system. The detected dimensions
5988 correspond to the non-black area of the input video.
5989
5990 It accepts the following parameters:
5991
5992 @table @option
5993
5994 @item limit
5995 Set higher black value threshold, which can be optionally specified
5996 from nothing (0) to everything (255 for 8-bit based formats). An intensity
5997 value greater to the set value is considered non-black. It defaults to 24.
5998 You can also specify a value between 0.0 and 1.0 which will be scaled depending
5999 on the bitdepth of the pixel format.
6000
6001 @item round
6002 The value which the width/height should be divisible by. It defaults to
6003 16. The offset is automatically adjusted to center the video. Use 2 to
6004 get only even dimensions (needed for 4:2:2 video). 16 is best when
6005 encoding to most video codecs.
6006
6007 @item reset_count, reset
6008 Set the counter that determines after how many frames cropdetect will
6009 reset the previously detected largest video area and start over to
6010 detect the current optimal crop area. Default value is 0.
6011
6012 This can be useful when channel logos distort the video area. 0
6013 indicates 'never reset', and returns the largest area encountered during
6014 playback.
6015 @end table
6016
6017 @anchor{curves}
6018 @section curves
6019
6020 Apply color adjustments using curves.
6021
6022 This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
6023 component (red, green and blue) has its values defined by @var{N} key points
6024 tied from each other using a smooth curve. The x-axis represents the pixel
6025 values from the input frame, and the y-axis the new pixel values to be set for
6026 the output frame.
6027
6028 By default, a component curve is defined by the two points @var{(0;0)} and
6029 @var{(1;1)}. This creates a straight line where each original pixel value is
6030 "adjusted" to its own value, which means no change to the image.
6031
6032 The filter allows you to redefine these two points and add some more. A new
6033 curve (using a natural cubic spline interpolation) will be define to pass
6034 smoothly through all these new coordinates. The new defined points needs to be
6035 strictly increasing over the x-axis, and their @var{x} and @var{y} values must
6036 be in the @var{[0;1]} interval.  If the computed curves happened to go outside
6037 the vector spaces, the values will be clipped accordingly.
6038
6039 The filter accepts the following options:
6040
6041 @table @option
6042 @item preset
6043 Select one of the available color presets. This option can be used in addition
6044 to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
6045 options takes priority on the preset values.
6046 Available presets are:
6047 @table @samp
6048 @item none
6049 @item color_negative
6050 @item cross_process
6051 @item darker
6052 @item increase_contrast
6053 @item lighter
6054 @item linear_contrast
6055 @item medium_contrast
6056 @item negative
6057 @item strong_contrast
6058 @item vintage
6059 @end table
6060 Default is @code{none}.
6061 @item master, m
6062 Set the master key points. These points will define a second pass mapping. It
6063 is sometimes called a "luminance" or "value" mapping. It can be used with
6064 @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
6065 post-processing LUT.
6066 @item red, r
6067 Set the key points for the red component.
6068 @item green, g
6069 Set the key points for the green component.
6070 @item blue, b
6071 Set the key points for the blue component.
6072 @item all
6073 Set the key points for all components (not including master).
6074 Can be used in addition to the other key points component
6075 options. In this case, the unset component(s) will fallback on this
6076 @option{all} setting.
6077 @item psfile
6078 Specify a Photoshop curves file (@code{.acv}) to import the settings from.
6079 @item plot
6080 Save Gnuplot script of the curves in specified file.
6081 @end table
6082
6083 To avoid some filtergraph syntax conflicts, each key points list need to be
6084 defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
6085
6086 @subsection Examples
6087
6088 @itemize
6089 @item
6090 Increase slightly the middle level of blue:
6091 @example
6092 curves=blue='0/0 0.5/0.58 1/1'
6093 @end example
6094
6095 @item
6096 Vintage effect:
6097 @example
6098 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'
6099 @end example
6100 Here we obtain the following coordinates for each components:
6101 @table @var
6102 @item red
6103 @code{(0;0.11) (0.42;0.51) (1;0.95)}
6104 @item green
6105 @code{(0;0) (0.50;0.48) (1;1)}
6106 @item blue
6107 @code{(0;0.22) (0.49;0.44) (1;0.80)}
6108 @end table
6109
6110 @item
6111 The previous example can also be achieved with the associated built-in preset:
6112 @example
6113 curves=preset=vintage
6114 @end example
6115
6116 @item
6117 Or simply:
6118 @example
6119 curves=vintage
6120 @end example
6121
6122 @item
6123 Use a Photoshop preset and redefine the points of the green component:
6124 @example
6125 curves=psfile='MyCurvesPresets/purple.acv':green='0/0 0.45/0.53 1/1'
6126 @end example
6127
6128 @item
6129 Check out the curves of the @code{cross_process} profile using @command{ffmpeg}
6130 and @command{gnuplot}:
6131 @example
6132 ffmpeg -f lavfi -i color -vf curves=cross_process:plot=/tmp/curves.plt -frames:v 1 -f null -
6133 gnuplot -p /tmp/curves.plt
6134 @end example
6135 @end itemize
6136
6137 @section datascope
6138
6139 Video data analysis filter.
6140
6141 This filter shows hexadecimal pixel values of part of video.
6142
6143 The filter accepts the following options:
6144
6145 @table @option
6146 @item size, s
6147 Set output video size.
6148
6149 @item x
6150 Set x offset from where to pick pixels.
6151
6152 @item y
6153 Set y offset from where to pick pixels.
6154
6155 @item mode
6156 Set scope mode, can be one of the following:
6157 @table @samp
6158 @item mono
6159 Draw hexadecimal pixel values with white color on black background.
6160
6161 @item color
6162 Draw hexadecimal pixel values with input video pixel color on black
6163 background.
6164
6165 @item color2
6166 Draw hexadecimal pixel values on color background picked from input video,
6167 the text color is picked in such way so its always visible.
6168 @end table
6169
6170 @item axis
6171 Draw rows and columns numbers on left and top of video.
6172
6173 @item opacity
6174 Set background opacity.
6175 @end table
6176
6177 @section dctdnoiz
6178
6179 Denoise frames using 2D DCT (frequency domain filtering).
6180
6181 This filter is not designed for real time.
6182
6183 The filter accepts the following options:
6184
6185 @table @option
6186 @item sigma, s
6187 Set the noise sigma constant.
6188
6189 This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
6190 coefficient (absolute value) below this threshold with be dropped.
6191
6192 If you need a more advanced filtering, see @option{expr}.
6193
6194 Default is @code{0}.
6195
6196 @item overlap
6197 Set number overlapping pixels for each block. Since the filter can be slow, you
6198 may want to reduce this value, at the cost of a less effective filter and the
6199 risk of various artefacts.
6200
6201 If the overlapping value doesn't permit processing the whole input width or
6202 height, a warning will be displayed and according borders won't be denoised.
6203
6204 Default value is @var{blocksize}-1, which is the best possible setting.
6205
6206 @item expr, e
6207 Set the coefficient factor expression.
6208
6209 For each coefficient of a DCT block, this expression will be evaluated as a
6210 multiplier value for the coefficient.
6211
6212 If this is option is set, the @option{sigma} option will be ignored.
6213
6214 The absolute value of the coefficient can be accessed through the @var{c}
6215 variable.
6216
6217 @item n
6218 Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
6219 @var{blocksize}, which is the width and height of the processed blocks.
6220
6221 The default value is @var{3} (8x8) and can be raised to @var{4} for a
6222 @var{blocksize} of 16x16. Note that changing this setting has huge consequences
6223 on the speed processing. Also, a larger block size does not necessarily means a
6224 better de-noising.
6225 @end table
6226
6227 @subsection Examples
6228
6229 Apply a denoise with a @option{sigma} of @code{4.5}:
6230 @example
6231 dctdnoiz=4.5
6232 @end example
6233
6234 The same operation can be achieved using the expression system:
6235 @example
6236 dctdnoiz=e='gte(c, 4.5*3)'
6237 @end example
6238
6239 Violent denoise using a block size of @code{16x16}:
6240 @example
6241 dctdnoiz=15:n=4
6242 @end example
6243
6244 @section deband
6245
6246 Remove banding artifacts from input video.
6247 It works by replacing banded pixels with average value of referenced pixels.
6248
6249 The filter accepts the following options:
6250
6251 @table @option
6252 @item 1thr
6253 @item 2thr
6254 @item 3thr
6255 @item 4thr
6256 Set banding detection threshold for each plane. Default is 0.02.
6257 Valid range is 0.00003 to 0.5.
6258 If difference between current pixel and reference pixel is less than threshold,
6259 it will be considered as banded.
6260
6261 @item range, r
6262 Banding detection range in pixels. Default is 16. If positive, random number
6263 in range 0 to set value will be used. If negative, exact absolute value
6264 will be used.
6265 The range defines square of four pixels around current pixel.
6266
6267 @item direction, d
6268 Set direction in radians from which four pixel will be compared. If positive,
6269 random direction from 0 to set direction will be picked. If negative, exact of
6270 absolute value will be picked. For example direction 0, -PI or -2*PI radians
6271 will pick only pixels on same row and -PI/2 will pick only pixels on same
6272 column.
6273
6274 @item blur, b
6275 If enabled, current pixel is compared with average value of all four
6276 surrounding pixels. The default is enabled. If disabled current pixel is
6277 compared with all four surrounding pixels. The pixel is considered banded
6278 if only all four differences with surrounding pixels are less than threshold.
6279
6280 @item coupling, c
6281 If enabled, current pixel is changed if and only if all pixel components are banded,
6282 e.g. banding detection threshold is triggered for all color components.
6283 The default is disabled.
6284 @end table
6285
6286 @anchor{decimate}
6287 @section decimate
6288
6289 Drop duplicated frames at regular intervals.
6290
6291 The filter accepts the following options:
6292
6293 @table @option
6294 @item cycle
6295 Set the number of frames from which one will be dropped. Setting this to
6296 @var{N} means one frame in every batch of @var{N} frames will be dropped.
6297 Default is @code{5}.
6298
6299 @item dupthresh
6300 Set the threshold for duplicate detection. If the difference metric for a frame
6301 is less than or equal to this value, then it is declared as duplicate. Default
6302 is @code{1.1}
6303
6304 @item scthresh
6305 Set scene change threshold. Default is @code{15}.
6306
6307 @item blockx
6308 @item blocky
6309 Set the size of the x and y-axis blocks used during metric calculations.
6310 Larger blocks give better noise suppression, but also give worse detection of
6311 small movements. Must be a power of two. Default is @code{32}.
6312
6313 @item ppsrc
6314 Mark main input as a pre-processed input and activate clean source input
6315 stream. This allows the input to be pre-processed with various filters to help
6316 the metrics calculation while keeping the frame selection lossless. When set to
6317 @code{1}, the first stream is for the pre-processed input, and the second
6318 stream is the clean source from where the kept frames are chosen. Default is
6319 @code{0}.
6320
6321 @item chroma
6322 Set whether or not chroma is considered in the metric calculations. Default is
6323 @code{1}.
6324 @end table
6325
6326 @section deflate
6327
6328 Apply deflate effect to the video.
6329
6330 This filter replaces the pixel by the local(3x3) average by taking into account
6331 only values lower than the pixel.
6332
6333 It accepts the following options:
6334
6335 @table @option
6336 @item threshold0
6337 @item threshold1
6338 @item threshold2
6339 @item threshold3
6340 Limit the maximum change for each plane, default is 65535.
6341 If 0, plane will remain unchanged.
6342 @end table
6343
6344 @section deflicker
6345
6346 Remove temporal frame luminance variations.
6347
6348 It accepts the following options:
6349
6350 @table @option
6351 @item size, s
6352 Set moving-average filter size in frames. Default is 5. Allowed range is 2 - 129.
6353
6354 @item mode, m
6355 Set averaging mode to smooth temporal luminance variations.
6356
6357 Available values are:
6358 @table @samp
6359 @item am
6360 Arithmetic mean
6361
6362 @item gm
6363 Geometric mean
6364
6365 @item hm
6366 Harmonic mean
6367
6368 @item qm
6369 Quadratic mean
6370
6371 @item cm
6372 Cubic mean
6373
6374 @item pm
6375 Power mean
6376
6377 @item median
6378 Median
6379 @end table
6380 @end table
6381
6382 @section dejudder
6383
6384 Remove judder produced by partially interlaced telecined content.
6385
6386 Judder can be introduced, for instance, by @ref{pullup} filter. If the original
6387 source was partially telecined content then the output of @code{pullup,dejudder}
6388 will have a variable frame rate. May change the recorded frame rate of the
6389 container. Aside from that change, this filter will not affect constant frame
6390 rate video.
6391
6392 The option available in this filter is:
6393 @table @option
6394
6395 @item cycle
6396 Specify the length of the window over which the judder repeats.
6397
6398 Accepts any integer greater than 1. Useful values are:
6399 @table @samp
6400
6401 @item 4
6402 If the original was telecined from 24 to 30 fps (Film to NTSC).
6403
6404 @item 5
6405 If the original was telecined from 25 to 30 fps (PAL to NTSC).
6406
6407 @item 20
6408 If a mixture of the two.
6409 @end table
6410
6411 The default is @samp{4}.
6412 @end table
6413
6414 @section delogo
6415
6416 Suppress a TV station logo by a simple interpolation of the surrounding
6417 pixels. Just set a rectangle covering the logo and watch it disappear
6418 (and sometimes something even uglier appear - your mileage may vary).
6419
6420 It accepts the following parameters:
6421 @table @option
6422
6423 @item x
6424 @item y
6425 Specify the top left corner coordinates of the logo. They must be
6426 specified.
6427
6428 @item w
6429 @item h
6430 Specify the width and height of the logo to clear. They must be
6431 specified.
6432
6433 @item band, t
6434 Specify the thickness of the fuzzy edge of the rectangle (added to
6435 @var{w} and @var{h}). The default value is 1. This option is
6436 deprecated, setting higher values should no longer be necessary and
6437 is not recommended.
6438
6439 @item show
6440 When set to 1, a green rectangle is drawn on the screen to simplify
6441 finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
6442 The default value is 0.
6443
6444 The rectangle is drawn on the outermost pixels which will be (partly)
6445 replaced with interpolated values. The values of the next pixels
6446 immediately outside this rectangle in each direction will be used to
6447 compute the interpolated pixel values inside the rectangle.
6448
6449 @end table
6450
6451 @subsection Examples
6452
6453 @itemize
6454 @item
6455 Set a rectangle covering the area with top left corner coordinates 0,0
6456 and size 100x77, and a band of size 10:
6457 @example
6458 delogo=x=0:y=0:w=100:h=77:band=10
6459 @end example
6460
6461 @end itemize
6462
6463 @section deshake
6464
6465 Attempt to fix small changes in horizontal and/or vertical shift. This
6466 filter helps remove camera shake from hand-holding a camera, bumping a
6467 tripod, moving on a vehicle, etc.
6468
6469 The filter accepts the following options:
6470
6471 @table @option
6472
6473 @item x
6474 @item y
6475 @item w
6476 @item h
6477 Specify a rectangular area where to limit the search for motion
6478 vectors.
6479 If desired the search for motion vectors can be limited to a
6480 rectangular area of the frame defined by its top left corner, width
6481 and height. These parameters have the same meaning as the drawbox
6482 filter which can be used to visualise the position of the bounding
6483 box.
6484
6485 This is useful when simultaneous movement of subjects within the frame
6486 might be confused for camera motion by the motion vector search.
6487
6488 If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
6489 then the full frame is used. This allows later options to be set
6490 without specifying the bounding box for the motion vector search.
6491
6492 Default - search the whole frame.
6493
6494 @item rx
6495 @item ry
6496 Specify the maximum extent of movement in x and y directions in the
6497 range 0-64 pixels. Default 16.
6498
6499 @item edge
6500 Specify how to generate pixels to fill blanks at the edge of the
6501 frame. Available values are:
6502 @table @samp
6503 @item blank, 0
6504 Fill zeroes at blank locations
6505 @item original, 1
6506 Original image at blank locations
6507 @item clamp, 2
6508 Extruded edge value at blank locations
6509 @item mirror, 3
6510 Mirrored edge at blank locations
6511 @end table
6512 Default value is @samp{mirror}.
6513
6514 @item blocksize
6515 Specify the blocksize to use for motion search. Range 4-128 pixels,
6516 default 8.
6517
6518 @item contrast
6519 Specify the contrast threshold for blocks. Only blocks with more than
6520 the specified contrast (difference between darkest and lightest
6521 pixels) will be considered. Range 1-255, default 125.
6522
6523 @item search
6524 Specify the search strategy. Available values are:
6525 @table @samp
6526 @item exhaustive, 0
6527 Set exhaustive search
6528 @item less, 1
6529 Set less exhaustive search.
6530 @end table
6531 Default value is @samp{exhaustive}.
6532
6533 @item filename
6534 If set then a detailed log of the motion search is written to the
6535 specified file.
6536
6537 @item opencl
6538 If set to 1, specify using OpenCL capabilities, only available if
6539 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
6540
6541 @end table
6542
6543 @section detelecine
6544
6545 Apply an exact inverse of the telecine operation. It requires a predefined
6546 pattern specified using the pattern option which must be the same as that passed
6547 to the telecine filter.
6548
6549 This filter accepts the following options:
6550
6551 @table @option
6552 @item first_field
6553 @table @samp
6554 @item top, t
6555 top field first
6556 @item bottom, b
6557 bottom field first
6558 The default value is @code{top}.
6559 @end table
6560
6561 @item pattern
6562 A string of numbers representing the pulldown pattern you wish to apply.
6563 The default value is @code{23}.
6564
6565 @item start_frame
6566 A number representing position of the first frame with respect to the telecine
6567 pattern. This is to be used if the stream is cut. The default value is @code{0}.
6568 @end table
6569
6570 @section dilation
6571
6572 Apply dilation effect to the video.
6573
6574 This filter replaces the pixel by the local(3x3) maximum.
6575
6576 It accepts the following options:
6577
6578 @table @option
6579 @item threshold0
6580 @item threshold1
6581 @item threshold2
6582 @item threshold3
6583 Limit the maximum change for each plane, default is 65535.
6584 If 0, plane will remain unchanged.
6585
6586 @item coordinates
6587 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
6588 pixels are used.
6589
6590 Flags to local 3x3 coordinates maps like this:
6591
6592     1 2 3
6593     4   5
6594     6 7 8
6595 @end table
6596
6597 @section displace
6598
6599 Displace pixels as indicated by second and third input stream.
6600
6601 It takes three input streams and outputs one stream, the first input is the
6602 source, and second and third input are displacement maps.
6603
6604 The second input specifies how much to displace pixels along the
6605 x-axis, while the third input specifies how much to displace pixels
6606 along the y-axis.
6607 If one of displacement map streams terminates, last frame from that
6608 displacement map will be used.
6609
6610 Note that once generated, displacements maps can be reused over and over again.
6611
6612 A description of the accepted options follows.
6613
6614 @table @option
6615 @item edge
6616 Set displace behavior for pixels that are out of range.
6617
6618 Available values are:
6619 @table @samp
6620 @item blank
6621 Missing pixels are replaced by black pixels.
6622
6623 @item smear
6624 Adjacent pixels will spread out to replace missing pixels.
6625
6626 @item wrap
6627 Out of range pixels are wrapped so they point to pixels of other side.
6628 @end table
6629 Default is @samp{smear}.
6630
6631 @end table
6632
6633 @subsection Examples
6634
6635 @itemize
6636 @item
6637 Add ripple effect to rgb input of video size hd720:
6638 @example
6639 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
6640 @end example
6641
6642 @item
6643 Add wave effect to rgb input of video size hd720:
6644 @example
6645 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
6646 @end example
6647 @end itemize
6648
6649 @section drawbox
6650
6651 Draw a colored box on the input image.
6652
6653 It accepts the following parameters:
6654
6655 @table @option
6656 @item x
6657 @item y
6658 The expressions which specify the top left corner coordinates of the box. It defaults to 0.
6659
6660 @item width, w
6661 @item height, h
6662 The expressions which specify the width and height of the box; if 0 they are interpreted as
6663 the input width and height. It defaults to 0.
6664
6665 @item color, c
6666 Specify the color of the box to write. For the general syntax of this option,
6667 check the "Color" section in the ffmpeg-utils manual. If the special
6668 value @code{invert} is used, the box edge color is the same as the
6669 video with inverted luma.
6670
6671 @item thickness, t
6672 The expression which sets the thickness of the box edge. Default value is @code{3}.
6673
6674 See below for the list of accepted constants.
6675 @end table
6676
6677 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
6678 following constants:
6679
6680 @table @option
6681 @item dar
6682 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
6683
6684 @item hsub
6685 @item vsub
6686 horizontal and vertical chroma subsample values. For example for the
6687 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6688
6689 @item in_h, ih
6690 @item in_w, iw
6691 The input width and height.
6692
6693 @item sar
6694 The input sample aspect ratio.
6695
6696 @item x
6697 @item y
6698 The x and y offset coordinates where the box is drawn.
6699
6700 @item w
6701 @item h
6702 The width and height of the drawn box.
6703
6704 @item t
6705 The thickness of the drawn box.
6706
6707 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
6708 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
6709
6710 @end table
6711
6712 @subsection Examples
6713
6714 @itemize
6715 @item
6716 Draw a black box around the edge of the input image:
6717 @example
6718 drawbox
6719 @end example
6720
6721 @item
6722 Draw a box with color red and an opacity of 50%:
6723 @example
6724 drawbox=10:20:200:60:red@@0.5
6725 @end example
6726
6727 The previous example can be specified as:
6728 @example
6729 drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
6730 @end example
6731
6732 @item
6733 Fill the box with pink color:
6734 @example
6735 drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=max
6736 @end example
6737
6738 @item
6739 Draw a 2-pixel red 2.40:1 mask:
6740 @example
6741 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
6742 @end example
6743 @end itemize
6744
6745 @section drawgrid
6746
6747 Draw a grid on the input image.
6748
6749 It accepts the following parameters:
6750
6751 @table @option
6752 @item x
6753 @item y
6754 The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
6755
6756 @item width, w
6757 @item height, h
6758 The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
6759 input width and height, respectively, minus @code{thickness}, so image gets
6760 framed. Default to 0.
6761
6762 @item color, c
6763 Specify the color of the grid. For the general syntax of this option,
6764 check the "Color" section in the ffmpeg-utils manual. If the special
6765 value @code{invert} is used, the grid color is the same as the
6766 video with inverted luma.
6767
6768 @item thickness, t
6769 The expression which sets the thickness of the grid line. Default value is @code{1}.
6770
6771 See below for the list of accepted constants.
6772 @end table
6773
6774 The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
6775 following constants:
6776
6777 @table @option
6778 @item dar
6779 The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
6780
6781 @item hsub
6782 @item vsub
6783 horizontal and vertical chroma subsample values. For example for the
6784 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
6785
6786 @item in_h, ih
6787 @item in_w, iw
6788 The input grid cell width and height.
6789
6790 @item sar
6791 The input sample aspect ratio.
6792
6793 @item x
6794 @item y
6795 The x and y coordinates of some point of grid intersection (meant to configure offset).
6796
6797 @item w
6798 @item h
6799 The width and height of the drawn cell.
6800
6801 @item t
6802 The thickness of the drawn cell.
6803
6804 These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
6805 each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
6806
6807 @end table
6808
6809 @subsection Examples
6810
6811 @itemize
6812 @item
6813 Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
6814 @example
6815 drawgrid=width=100:height=100:thickness=2:color=red@@0.5
6816 @end example
6817
6818 @item
6819 Draw a white 3x3 grid with an opacity of 50%:
6820 @example
6821 drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
6822 @end example
6823 @end itemize
6824
6825 @anchor{drawtext}
6826 @section drawtext
6827
6828 Draw a text string or text from a specified file on top of a video, using the
6829 libfreetype library.
6830
6831 To enable compilation of this filter, you need to configure FFmpeg with
6832 @code{--enable-libfreetype}.
6833 To enable default font fallback and the @var{font} option you need to
6834 configure FFmpeg with @code{--enable-libfontconfig}.
6835 To enable the @var{text_shaping} option, you need to configure FFmpeg with
6836 @code{--enable-libfribidi}.
6837
6838 @subsection Syntax
6839
6840 It accepts the following parameters:
6841
6842 @table @option
6843
6844 @item box
6845 Used to draw a box around text using the background color.
6846 The value must be either 1 (enable) or 0 (disable).
6847 The default value of @var{box} is 0.
6848
6849 @item boxborderw
6850 Set the width of the border to be drawn around the box using @var{boxcolor}.
6851 The default value of @var{boxborderw} is 0.
6852
6853 @item boxcolor
6854 The color to be used for drawing box around text. For the syntax of this
6855 option, check the "Color" section in the ffmpeg-utils manual.
6856
6857 The default value of @var{boxcolor} is "white".
6858
6859 @item line_spacing
6860 Set the line spacing in pixels of the border to be drawn around the box using @var{box}.
6861 The default value of @var{line_spacing} is 0.
6862
6863 @item borderw
6864 Set the width of the border to be drawn around the text using @var{bordercolor}.
6865 The default value of @var{borderw} is 0.
6866
6867 @item bordercolor
6868 Set the color to be used for drawing border around text. For the syntax of this
6869 option, check the "Color" section in the ffmpeg-utils manual.
6870
6871 The default value of @var{bordercolor} is "black".
6872
6873 @item expansion
6874 Select how the @var{text} is expanded. Can be either @code{none},
6875 @code{strftime} (deprecated) or
6876 @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
6877 below for details.
6878
6879 @item basetime
6880 Set a start time for the count. Value is in microseconds. Only applied
6881 in the deprecated strftime expansion mode. To emulate in normal expansion
6882 mode use the @code{pts} function, supplying the start time (in seconds)
6883 as the second argument.
6884
6885 @item fix_bounds
6886 If true, check and fix text coords to avoid clipping.
6887
6888 @item fontcolor
6889 The color to be used for drawing fonts. For the syntax of this option, check
6890 the "Color" section in the ffmpeg-utils manual.
6891
6892 The default value of @var{fontcolor} is "black".
6893
6894 @item fontcolor_expr
6895 String which is expanded the same way as @var{text} to obtain dynamic
6896 @var{fontcolor} value. By default this option has empty value and is not
6897 processed. When this option is set, it overrides @var{fontcolor} option.
6898
6899 @item font
6900 The font family to be used for drawing text. By default Sans.
6901
6902 @item fontfile
6903 The font file to be used for drawing text. The path must be included.
6904 This parameter is mandatory if the fontconfig support is disabled.
6905
6906 @item alpha
6907 Draw the text applying alpha blending. The value can
6908 be a number between 0.0 and 1.0.
6909 The expression accepts the same variables @var{x, y} as well.
6910 The default value is 1.
6911 Please see @var{fontcolor_expr}.
6912
6913 @item fontsize
6914 The font size to be used for drawing text.
6915 The default value of @var{fontsize} is 16.
6916
6917 @item text_shaping
6918 If set to 1, attempt to shape the text (for example, reverse the order of
6919 right-to-left text and join Arabic characters) before drawing it.
6920 Otherwise, just draw the text exactly as given.
6921 By default 1 (if supported).
6922
6923 @item ft_load_flags
6924 The flags to be used for loading the fonts.
6925
6926 The flags map the corresponding flags supported by libfreetype, and are
6927 a combination of the following values:
6928 @table @var
6929 @item default
6930 @item no_scale
6931 @item no_hinting
6932 @item render
6933 @item no_bitmap
6934 @item vertical_layout
6935 @item force_autohint
6936 @item crop_bitmap
6937 @item pedantic
6938 @item ignore_global_advance_width
6939 @item no_recurse
6940 @item ignore_transform
6941 @item monochrome
6942 @item linear_design
6943 @item no_autohint
6944 @end table
6945
6946 Default value is "default".
6947
6948 For more information consult the documentation for the FT_LOAD_*
6949 libfreetype flags.
6950
6951 @item shadowcolor
6952 The color to be used for drawing a shadow behind the drawn text. For the
6953 syntax of this option, check the "Color" section in the ffmpeg-utils manual.
6954
6955 The default value of @var{shadowcolor} is "black".
6956
6957 @item shadowx
6958 @item shadowy
6959 The x and y offsets for the text shadow position with respect to the
6960 position of the text. They can be either positive or negative
6961 values. The default value for both is "0".
6962
6963 @item start_number
6964 The starting frame number for the n/frame_num variable. The default value
6965 is "0".
6966
6967 @item tabsize
6968 The size in number of spaces to use for rendering the tab.
6969 Default value is 4.
6970
6971 @item timecode
6972 Set the initial timecode representation in "hh:mm:ss[:;.]ff"
6973 format. It can be used with or without text parameter. @var{timecode_rate}
6974 option must be specified.
6975
6976 @item timecode_rate, rate, r
6977 Set the timecode frame rate (timecode only).
6978
6979 @item tc24hmax
6980 If set to 1, the output of the timecode option will wrap around at 24 hours.
6981 Default is 0 (disabled).
6982
6983 @item text
6984 The text string to be drawn. The text must be a sequence of UTF-8
6985 encoded characters.
6986 This parameter is mandatory if no file is specified with the parameter
6987 @var{textfile}.
6988
6989 @item textfile
6990 A text file containing text to be drawn. The text must be a sequence
6991 of UTF-8 encoded characters.
6992
6993 This parameter is mandatory if no text string is specified with the
6994 parameter @var{text}.
6995
6996 If both @var{text} and @var{textfile} are specified, an error is thrown.
6997
6998 @item reload
6999 If set to 1, the @var{textfile} will be reloaded before each frame.
7000 Be sure to update it atomically, or it may be read partially, or even fail.
7001
7002 @item x
7003 @item y
7004 The expressions which specify the offsets where text will be drawn
7005 within the video frame. They are relative to the top/left border of the
7006 output image.
7007
7008 The default value of @var{x} and @var{y} is "0".
7009
7010 See below for the list of accepted constants and functions.
7011 @end table
7012
7013 The parameters for @var{x} and @var{y} are expressions containing the
7014 following constants and functions:
7015
7016 @table @option
7017 @item dar
7018 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
7019
7020 @item hsub
7021 @item vsub
7022 horizontal and vertical chroma subsample values. For example for the
7023 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
7024
7025 @item line_h, lh
7026 the height of each text line
7027
7028 @item main_h, h, H
7029 the input height
7030
7031 @item main_w, w, W
7032 the input width
7033
7034 @item max_glyph_a, ascent
7035 the maximum distance from the baseline to the highest/upper grid
7036 coordinate used to place a glyph outline point, for all the rendered
7037 glyphs.
7038 It is a positive value, due to the grid's orientation with the Y axis
7039 upwards.
7040
7041 @item max_glyph_d, descent
7042 the maximum distance from the baseline to the lowest grid coordinate
7043 used to place a glyph outline point, for all the rendered glyphs.
7044 This is a negative value, due to the grid's orientation, with the Y axis
7045 upwards.
7046
7047 @item max_glyph_h
7048 maximum glyph height, that is the maximum height for all the glyphs
7049 contained in the rendered text, it is equivalent to @var{ascent} -
7050 @var{descent}.
7051
7052 @item max_glyph_w
7053 maximum glyph width, that is the maximum width for all the glyphs
7054 contained in the rendered text
7055
7056 @item n
7057 the number of input frame, starting from 0
7058
7059 @item rand(min, max)
7060 return a random number included between @var{min} and @var{max}
7061
7062 @item sar
7063 The input sample aspect ratio.
7064
7065 @item t
7066 timestamp expressed in seconds, NAN if the input timestamp is unknown
7067
7068 @item text_h, th
7069 the height of the rendered text
7070
7071 @item text_w, tw
7072 the width of the rendered text
7073
7074 @item x
7075 @item y
7076 the x and y offset coordinates where the text is drawn.
7077
7078 These parameters allow the @var{x} and @var{y} expressions to refer
7079 each other, so you can for example specify @code{y=x/dar}.
7080 @end table
7081
7082 @anchor{drawtext_expansion}
7083 @subsection Text expansion
7084
7085 If @option{expansion} is set to @code{strftime},
7086 the filter recognizes strftime() sequences in the provided text and
7087 expands them accordingly. Check the documentation of strftime(). This
7088 feature is deprecated.
7089
7090 If @option{expansion} is set to @code{none}, the text is printed verbatim.
7091
7092 If @option{expansion} is set to @code{normal} (which is the default),
7093 the following expansion mechanism is used.
7094
7095 The backslash character @samp{\}, followed by any character, always expands to
7096 the second character.
7097
7098 Sequences of the form @code{%@{...@}} are expanded. The text between the
7099 braces is a function name, possibly followed by arguments separated by ':'.
7100 If the arguments contain special characters or delimiters (':' or '@}'),
7101 they should be escaped.
7102
7103 Note that they probably must also be escaped as the value for the
7104 @option{text} option in the filter argument string and as the filter
7105 argument in the filtergraph description, and possibly also for the shell,
7106 that makes up to four levels of escaping; using a text file avoids these
7107 problems.
7108
7109 The following functions are available:
7110
7111 @table @command
7112
7113 @item expr, e
7114 The expression evaluation result.
7115
7116 It must take one argument specifying the expression to be evaluated,
7117 which accepts the same constants and functions as the @var{x} and
7118 @var{y} values. Note that not all constants should be used, for
7119 example the text size is not known when evaluating the expression, so
7120 the constants @var{text_w} and @var{text_h} will have an undefined
7121 value.
7122
7123 @item expr_int_format, eif
7124 Evaluate the expression's value and output as formatted integer.
7125
7126 The first argument is the expression to be evaluated, just as for the @var{expr} function.
7127 The second argument specifies the output format. Allowed values are @samp{x},
7128 @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
7129 @code{printf} function.
7130 The third parameter is optional and sets the number of positions taken by the output.
7131 It can be used to add padding with zeros from the left.
7132
7133 @item gmtime
7134 The time at which the filter is running, expressed in UTC.
7135 It can accept an argument: a strftime() format string.
7136
7137 @item localtime
7138 The time at which the filter is running, expressed in the local time zone.
7139 It can accept an argument: a strftime() format string.
7140
7141 @item metadata
7142 Frame metadata. Takes one or two arguments.
7143
7144 The first argument is mandatory and specifies the metadata key.
7145
7146 The second argument is optional and specifies a default value, used when the
7147 metadata key is not found or empty.
7148
7149 @item n, frame_num
7150 The frame number, starting from 0.
7151
7152 @item pict_type
7153 A 1 character description of the current picture type.
7154
7155 @item pts
7156 The timestamp of the current frame.
7157 It can take up to three arguments.
7158
7159 The first argument is the format of the timestamp; it defaults to @code{flt}
7160 for seconds as a decimal number with microsecond accuracy; @code{hms} stands
7161 for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
7162 @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
7163 @code{localtime} stands for the timestamp of the frame formatted as
7164 local time zone time.
7165
7166 The second argument is an offset added to the timestamp.
7167
7168 If the format is set to @code{localtime} or @code{gmtime},
7169 a third argument may be supplied: a strftime() format string.
7170 By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
7171 @end table
7172
7173 @subsection Examples
7174
7175 @itemize
7176 @item
7177 Draw "Test Text" with font FreeSerif, using the default values for the
7178 optional parameters.
7179
7180 @example
7181 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
7182 @end example
7183
7184 @item
7185 Draw 'Test Text' with font FreeSerif of size 24 at position x=100
7186 and y=50 (counting from the top-left corner of the screen), text is
7187 yellow with a red box around it. Both the text and the box have an
7188 opacity of 20%.
7189
7190 @example
7191 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
7192           x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
7193 @end example
7194
7195 Note that the double quotes are not necessary if spaces are not used
7196 within the parameter list.
7197
7198 @item
7199 Show the text at the center of the video frame:
7200 @example
7201 drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
7202 @end example
7203
7204 @item
7205 Show the text at a random position, switching to a new position every 30 seconds:
7206 @example
7207 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)"
7208 @end example
7209
7210 @item
7211 Show a text line sliding from right to left in the last row of the video
7212 frame. The file @file{LONG_LINE} is assumed to contain a single line
7213 with no newlines.
7214 @example
7215 drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
7216 @end example
7217
7218 @item
7219 Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
7220 @example
7221 drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
7222 @end example
7223
7224 @item
7225 Draw a single green letter "g", at the center of the input video.
7226 The glyph baseline is placed at half screen height.
7227 @example
7228 drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
7229 @end example
7230
7231 @item
7232 Show text for 1 second every 3 seconds:
7233 @example
7234 drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
7235 @end example
7236
7237 @item
7238 Use fontconfig to set the font. Note that the colons need to be escaped.
7239 @example
7240 drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
7241 @end example
7242
7243 @item
7244 Print the date of a real-time encoding (see strftime(3)):
7245 @example
7246 drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
7247 @end example
7248
7249 @item
7250 Show text fading in and out (appearing/disappearing):
7251 @example
7252 #!/bin/sh
7253 DS=1.0 # display start
7254 DE=10.0 # display end
7255 FID=1.5 # fade in duration
7256 FOD=5 # fade out duration
7257 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 @}"
7258 @end example
7259
7260 @item
7261 Horizontally align multiple separate texts. Note that @option{max_glyph_a}
7262 and the @option{fontsize} value are included in the @option{y} offset.
7263 @example
7264 drawtext=fontfile=FreeSans.ttf:text=DOG:fontsize=24:x=10:y=20+24-max_glyph_a,
7265 drawtext=fontfile=FreeSans.ttf:text=cow:fontsize=24:x=80:y=20+24-max_glyph_a
7266 @end example
7267
7268 @end itemize
7269
7270 For more information about libfreetype, check:
7271 @url{http://www.freetype.org/}.
7272
7273 For more information about fontconfig, check:
7274 @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
7275
7276 For more information about libfribidi, check:
7277 @url{http://fribidi.org/}.
7278
7279 @section edgedetect
7280
7281 Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
7282
7283 The filter accepts the following options:
7284
7285 @table @option
7286 @item low
7287 @item high
7288 Set low and high threshold values used by the Canny thresholding
7289 algorithm.
7290
7291 The high threshold selects the "strong" edge pixels, which are then
7292 connected through 8-connectivity with the "weak" edge pixels selected
7293 by the low threshold.
7294
7295 @var{low} and @var{high} threshold values must be chosen in the range
7296 [0,1], and @var{low} should be lesser or equal to @var{high}.
7297
7298 Default value for @var{low} is @code{20/255}, and default value for @var{high}
7299 is @code{50/255}.
7300
7301 @item mode
7302 Define the drawing mode.
7303
7304 @table @samp
7305 @item wires
7306 Draw white/gray wires on black background.
7307
7308 @item colormix
7309 Mix the colors to create a paint/cartoon effect.
7310 @end table
7311
7312 Default value is @var{wires}.
7313 @end table
7314
7315 @subsection Examples
7316
7317 @itemize
7318 @item
7319 Standard edge detection with custom values for the hysteresis thresholding:
7320 @example
7321 edgedetect=low=0.1:high=0.4
7322 @end example
7323
7324 @item
7325 Painting effect without thresholding:
7326 @example
7327 edgedetect=mode=colormix:high=0
7328 @end example
7329 @end itemize
7330
7331 @section eq
7332 Set brightness, contrast, saturation and approximate gamma adjustment.
7333
7334 The filter accepts the following options:
7335
7336 @table @option
7337 @item contrast
7338 Set the contrast expression. The value must be a float value in range
7339 @code{-2.0} to @code{2.0}. The default value is "1".
7340
7341 @item brightness
7342 Set the brightness expression. The value must be a float value in
7343 range @code{-1.0} to @code{1.0}. The default value is "0".
7344
7345 @item saturation
7346 Set the saturation expression. The value must be a float in
7347 range @code{0.0} to @code{3.0}. The default value is "1".
7348
7349 @item gamma
7350 Set the gamma expression. The value must be a float in range
7351 @code{0.1} to @code{10.0}.  The default value is "1".
7352
7353 @item gamma_r
7354 Set the gamma expression for red. The value must be a float in
7355 range @code{0.1} to @code{10.0}. The default value is "1".
7356
7357 @item gamma_g
7358 Set the gamma expression for green. The value must be a float in range
7359 @code{0.1} to @code{10.0}. The default value is "1".
7360
7361 @item gamma_b
7362 Set the gamma expression for blue. The value must be a float in range
7363 @code{0.1} to @code{10.0}. The default value is "1".
7364
7365 @item gamma_weight
7366 Set the gamma weight expression. It can be used to reduce the effect
7367 of a high gamma value on bright image areas, e.g. keep them from
7368 getting overamplified and just plain white. The value must be a float
7369 in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
7370 gamma correction all the way down while @code{1.0} leaves it at its
7371 full strength. Default is "1".
7372
7373 @item eval
7374 Set when the expressions for brightness, contrast, saturation and
7375 gamma expressions are evaluated.
7376
7377 It accepts the following values:
7378 @table @samp
7379 @item init
7380 only evaluate expressions once during the filter initialization or
7381 when a command is processed
7382
7383 @item frame
7384 evaluate expressions for each incoming frame
7385 @end table
7386
7387 Default value is @samp{init}.
7388 @end table
7389
7390 The expressions accept the following parameters:
7391 @table @option
7392 @item n
7393 frame count of the input frame starting from 0
7394
7395 @item pos
7396 byte position of the corresponding packet in the input file, NAN if
7397 unspecified
7398
7399 @item r
7400 frame rate of the input video, NAN if the input frame rate is unknown
7401
7402 @item t
7403 timestamp expressed in seconds, NAN if the input timestamp is unknown
7404 @end table
7405
7406 @subsection Commands
7407 The filter supports the following commands:
7408
7409 @table @option
7410 @item contrast
7411 Set the contrast expression.
7412
7413 @item brightness
7414 Set the brightness expression.
7415
7416 @item saturation
7417 Set the saturation expression.
7418
7419 @item gamma
7420 Set the gamma expression.
7421
7422 @item gamma_r
7423 Set the gamma_r expression.
7424
7425 @item gamma_g
7426 Set gamma_g expression.
7427
7428 @item gamma_b
7429 Set gamma_b expression.
7430
7431 @item gamma_weight
7432 Set gamma_weight expression.
7433
7434 The command accepts the same syntax of the corresponding option.
7435
7436 If the specified expression is not valid, it is kept at its current
7437 value.
7438
7439 @end table
7440
7441 @section erosion
7442
7443 Apply erosion effect to the video.
7444
7445 This filter replaces the pixel by the local(3x3) minimum.
7446
7447 It accepts the following options:
7448
7449 @table @option
7450 @item threshold0
7451 @item threshold1
7452 @item threshold2
7453 @item threshold3
7454 Limit the maximum change for each plane, default is 65535.
7455 If 0, plane will remain unchanged.
7456
7457 @item coordinates
7458 Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
7459 pixels are used.
7460
7461 Flags to local 3x3 coordinates maps like this:
7462
7463     1 2 3
7464     4   5
7465     6 7 8
7466 @end table
7467
7468 @section extractplanes
7469
7470 Extract color channel components from input video stream into
7471 separate grayscale video streams.
7472
7473 The filter accepts the following option:
7474
7475 @table @option
7476 @item planes
7477 Set plane(s) to extract.
7478
7479 Available values for planes are:
7480 @table @samp
7481 @item y
7482 @item u
7483 @item v
7484 @item a
7485 @item r
7486 @item g
7487 @item b
7488 @end table
7489
7490 Choosing planes not available in the input will result in an error.
7491 That means you cannot select @code{r}, @code{g}, @code{b} planes
7492 with @code{y}, @code{u}, @code{v} planes at same time.
7493 @end table
7494
7495 @subsection Examples
7496
7497 @itemize
7498 @item
7499 Extract luma, u and v color channel component from input video frame
7500 into 3 grayscale outputs:
7501 @example
7502 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
7503 @end example
7504 @end itemize
7505
7506 @section elbg
7507
7508 Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
7509
7510 For each input image, the filter will compute the optimal mapping from
7511 the input to the output given the codebook length, that is the number
7512 of distinct output colors.
7513
7514 This filter accepts the following options.
7515
7516 @table @option
7517 @item codebook_length, l
7518 Set codebook length. The value must be a positive integer, and
7519 represents the number of distinct output colors. Default value is 256.
7520
7521 @item nb_steps, n
7522 Set the maximum number of iterations to apply for computing the optimal
7523 mapping. The higher the value the better the result and the higher the
7524 computation time. Default value is 1.
7525
7526 @item seed, s
7527 Set a random seed, must be an integer included between 0 and
7528 UINT32_MAX. If not specified, or if explicitly set to -1, the filter
7529 will try to use a good random seed on a best effort basis.
7530
7531 @item pal8
7532 Set pal8 output pixel format. This option does not work with codebook
7533 length greater than 256.
7534 @end table
7535
7536 @section fade
7537
7538 Apply a fade-in/out effect to the input video.
7539
7540 It accepts the following parameters:
7541
7542 @table @option
7543 @item type, t
7544 The effect type can be either "in" for a fade-in, or "out" for a fade-out
7545 effect.
7546 Default is @code{in}.
7547
7548 @item start_frame, s
7549 Specify the number of the frame to start applying the fade
7550 effect at. Default is 0.
7551
7552 @item nb_frames, n
7553 The number of frames that the fade effect lasts. At the end of the
7554 fade-in effect, the output video will have the same intensity as the input video.
7555 At the end of the fade-out transition, the output video will be filled with the
7556 selected @option{color}.
7557 Default is 25.
7558
7559 @item alpha
7560 If set to 1, fade only alpha channel, if one exists on the input.
7561 Default value is 0.
7562
7563 @item start_time, st
7564 Specify the timestamp (in seconds) of the frame to start to apply the fade
7565 effect. If both start_frame and start_time are specified, the fade will start at
7566 whichever comes last.  Default is 0.
7567
7568 @item duration, d
7569 The number of seconds for which the fade effect has to last. At the end of the
7570 fade-in effect the output video will have the same intensity as the input video,
7571 at the end of the fade-out transition the output video will be filled with the
7572 selected @option{color}.
7573 If both duration and nb_frames are specified, duration is used. Default is 0
7574 (nb_frames is used by default).
7575
7576 @item color, c
7577 Specify the color of the fade. Default is "black".
7578 @end table
7579
7580 @subsection Examples
7581
7582 @itemize
7583 @item
7584 Fade in the first 30 frames of video:
7585 @example
7586 fade=in:0:30
7587 @end example
7588
7589 The command above is equivalent to:
7590 @example
7591 fade=t=in:s=0:n=30
7592 @end example
7593
7594 @item
7595 Fade out the last 45 frames of a 200-frame video:
7596 @example
7597 fade=out:155:45
7598 fade=type=out:start_frame=155:nb_frames=45
7599 @end example
7600
7601 @item
7602 Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
7603 @example
7604 fade=in:0:25, fade=out:975:25
7605 @end example
7606
7607 @item
7608 Make the first 5 frames yellow, then fade in from frame 5-24:
7609 @example
7610 fade=in:5:20:color=yellow
7611 @end example
7612
7613 @item
7614 Fade in alpha over first 25 frames of video:
7615 @example
7616 fade=in:0:25:alpha=1
7617 @end example
7618
7619 @item
7620 Make the first 5.5 seconds black, then fade in for 0.5 seconds:
7621 @example
7622 fade=t=in:st=5.5:d=0.5
7623 @end example
7624
7625 @end itemize
7626
7627 @section fftfilt
7628 Apply arbitrary expressions to samples in frequency domain
7629
7630 @table @option
7631 @item dc_Y
7632 Adjust the dc value (gain) of the luma plane of the image. The filter
7633 accepts an integer value in range @code{0} to @code{1000}. The default
7634 value is set to @code{0}.
7635
7636 @item dc_U
7637 Adjust the dc value (gain) of the 1st chroma plane of the image. The
7638 filter accepts an integer value in range @code{0} to @code{1000}. The
7639 default value is set to @code{0}.
7640
7641 @item dc_V
7642 Adjust the dc value (gain) of the 2nd chroma plane of the image. The
7643 filter accepts an integer value in range @code{0} to @code{1000}. The
7644 default value is set to @code{0}.
7645
7646 @item weight_Y
7647 Set the frequency domain weight expression for the luma plane.
7648
7649 @item weight_U
7650 Set the frequency domain weight expression for the 1st chroma plane.
7651
7652 @item weight_V
7653 Set the frequency domain weight expression for the 2nd chroma plane.
7654
7655 The filter accepts the following variables:
7656 @item X
7657 @item Y
7658 The coordinates of the current sample.
7659
7660 @item W
7661 @item H
7662 The width and height of the image.
7663 @end table
7664
7665 @subsection Examples
7666
7667 @itemize
7668 @item
7669 High-pass:
7670 @example
7671 fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
7672 @end example
7673
7674 @item
7675 Low-pass:
7676 @example
7677 fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
7678 @end example
7679
7680 @item
7681 Sharpen:
7682 @example
7683 fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
7684 @end example
7685
7686 @item
7687 Blur:
7688 @example
7689 fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
7690 @end example
7691
7692 @end itemize
7693
7694 @section field
7695
7696 Extract a single field from an interlaced image using stride
7697 arithmetic to avoid wasting CPU time. The output frames are marked as
7698 non-interlaced.
7699
7700 The filter accepts the following options:
7701
7702 @table @option
7703 @item type
7704 Specify whether to extract the top (if the value is @code{0} or
7705 @code{top}) or the bottom field (if the value is @code{1} or
7706 @code{bottom}).
7707 @end table
7708
7709 @section fieldhint
7710
7711 Create new frames by copying the top and bottom fields from surrounding frames
7712 supplied as numbers by the hint file.
7713
7714 @table @option
7715 @item hint
7716 Set file containing hints: absolute/relative frame numbers.
7717
7718 There must be one line for each frame in a clip. Each line must contain two
7719 numbers separated by the comma, optionally followed by @code{-} or @code{+}.
7720 Numbers supplied on each line of file can not be out of [N-1,N+1] where N
7721 is current frame number for @code{absolute} mode or out of [-1, 1] range
7722 for @code{relative} mode. First number tells from which frame to pick up top
7723 field and second number tells from which frame to pick up bottom field.
7724
7725 If optionally followed by @code{+} output frame will be marked as interlaced,
7726 else if followed by @code{-} output frame will be marked as progressive, else
7727 it will be marked same as input frame.
7728 If line starts with @code{#} or @code{;} that line is skipped.
7729
7730 @item mode
7731 Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
7732 @end table
7733
7734 Example of first several lines of @code{hint} file for @code{relative} mode:
7735 @example
7736 0,0 - # first frame
7737 1,0 - # second frame, use third's frame top field and second's frame bottom field
7738 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
7739 1,0 -
7740 0,0 -
7741 0,0 -
7742 1,0 -
7743 1,0 -
7744 1,0 -
7745 0,0 -
7746 0,0 -
7747 1,0 -
7748 1,0 -
7749 1,0 -
7750 0,0 -
7751 @end example
7752
7753 @section fieldmatch
7754
7755 Field matching filter for inverse telecine. It is meant to reconstruct the
7756 progressive frames from a telecined stream. The filter does not drop duplicated
7757 frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
7758 followed by a decimation filter such as @ref{decimate} in the filtergraph.
7759
7760 The separation of the field matching and the decimation is notably motivated by
7761 the possibility of inserting a de-interlacing filter fallback between the two.
7762 If the source has mixed telecined and real interlaced content,
7763 @code{fieldmatch} will not be able to match fields for the interlaced parts.
7764 But these remaining combed frames will be marked as interlaced, and thus can be
7765 de-interlaced by a later filter such as @ref{yadif} before decimation.
7766
7767 In addition to the various configuration options, @code{fieldmatch} can take an
7768 optional second stream, activated through the @option{ppsrc} option. If
7769 enabled, the frames reconstruction will be based on the fields and frames from
7770 this second stream. This allows the first input to be pre-processed in order to
7771 help the various algorithms of the filter, while keeping the output lossless
7772 (assuming the fields are matched properly). Typically, a field-aware denoiser,
7773 or brightness/contrast adjustments can help.
7774
7775 Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
7776 and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
7777 which @code{fieldmatch} is based on. While the semantic and usage are very
7778 close, some behaviour and options names can differ.
7779
7780 The @ref{decimate} filter currently only works for constant frame rate input.
7781 If your input has mixed telecined (30fps) and progressive content with a lower
7782 framerate like 24fps use the following filterchain to produce the necessary cfr
7783 stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
7784
7785 The filter accepts the following options:
7786
7787 @table @option
7788 @item order
7789 Specify the assumed field order of the input stream. Available values are:
7790
7791 @table @samp
7792 @item auto
7793 Auto detect parity (use FFmpeg's internal parity value).
7794 @item bff
7795 Assume bottom field first.
7796 @item tff
7797 Assume top field first.
7798 @end table
7799
7800 Note that it is sometimes recommended not to trust the parity announced by the
7801 stream.
7802
7803 Default value is @var{auto}.
7804
7805 @item mode
7806 Set the matching mode or strategy to use. @option{pc} mode is the safest in the
7807 sense that it won't risk creating jerkiness due to duplicate frames when
7808 possible, but if there are bad edits or blended fields it will end up
7809 outputting combed frames when a good match might actually exist. On the other
7810 hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
7811 but will almost always find a good frame if there is one. The other values are
7812 all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
7813 jerkiness and creating duplicate frames versus finding good matches in sections
7814 with bad edits, orphaned fields, blended fields, etc.
7815
7816 More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
7817
7818 Available values are:
7819
7820 @table @samp
7821 @item pc
7822 2-way matching (p/c)
7823 @item pc_n
7824 2-way matching, and trying 3rd match if still combed (p/c + n)
7825 @item pc_u
7826 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
7827 @item pc_n_ub
7828 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
7829 still combed (p/c + n + u/b)
7830 @item pcn
7831 3-way matching (p/c/n)
7832 @item pcn_ub
7833 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
7834 detected as combed (p/c/n + u/b)
7835 @end table
7836
7837 The parenthesis at the end indicate the matches that would be used for that
7838 mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
7839 @var{top}).
7840
7841 In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
7842 the slowest.
7843
7844 Default value is @var{pc_n}.
7845
7846 @item ppsrc
7847 Mark the main input stream as a pre-processed input, and enable the secondary
7848 input stream as the clean source to pick the fields from. See the filter
7849 introduction for more details. It is similar to the @option{clip2} feature from
7850 VFM/TFM.
7851
7852 Default value is @code{0} (disabled).
7853
7854 @item field
7855 Set the field to match from. It is recommended to set this to the same value as
7856 @option{order} unless you experience matching failures with that setting. In
7857 certain circumstances changing the field that is used to match from can have a
7858 large impact on matching performance. Available values are:
7859
7860 @table @samp
7861 @item auto
7862 Automatic (same value as @option{order}).
7863 @item bottom
7864 Match from the bottom field.
7865 @item top
7866 Match from the top field.
7867 @end table
7868
7869 Default value is @var{auto}.
7870
7871 @item mchroma
7872 Set whether or not chroma is included during the match comparisons. In most
7873 cases it is recommended to leave this enabled. You should set this to @code{0}
7874 only if your clip has bad chroma problems such as heavy rainbowing or other
7875 artifacts. Setting this to @code{0} could also be used to speed things up at
7876 the cost of some accuracy.
7877
7878 Default value is @code{1}.
7879
7880 @item y0
7881 @item y1
7882 These define an exclusion band which excludes the lines between @option{y0} and
7883 @option{y1} from being included in the field matching decision. An exclusion
7884 band can be used to ignore subtitles, a logo, or other things that may
7885 interfere with the matching. @option{y0} sets the starting scan line and
7886 @option{y1} sets the ending line; all lines in between @option{y0} and
7887 @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
7888 @option{y0} and @option{y1} to the same value will disable the feature.
7889 @option{y0} and @option{y1} defaults to @code{0}.
7890
7891 @item scthresh
7892 Set the scene change detection threshold as a percentage of maximum change on
7893 the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
7894 detection is only relevant in case @option{combmatch}=@var{sc}.  The range for
7895 @option{scthresh} is @code{[0.0, 100.0]}.
7896
7897 Default value is @code{12.0}.
7898
7899 @item combmatch
7900 When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
7901 account the combed scores of matches when deciding what match to use as the
7902 final match. Available values are:
7903
7904 @table @samp
7905 @item none
7906 No final matching based on combed scores.
7907 @item sc
7908 Combed scores are only used when a scene change is detected.
7909 @item full
7910 Use combed scores all the time.
7911 @end table
7912
7913 Default is @var{sc}.
7914
7915 @item combdbg
7916 Force @code{fieldmatch} to calculate the combed metrics for certain matches and
7917 print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
7918 Available values are:
7919
7920 @table @samp
7921 @item none
7922 No forced calculation.
7923 @item pcn
7924 Force p/c/n calculations.
7925 @item pcnub
7926 Force p/c/n/u/b calculations.
7927 @end table
7928
7929 Default value is @var{none}.
7930
7931 @item cthresh
7932 This is the area combing threshold used for combed frame detection. This
7933 essentially controls how "strong" or "visible" combing must be to be detected.
7934 Larger values mean combing must be more visible and smaller values mean combing
7935 can be less visible or strong and still be detected. Valid settings are from
7936 @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
7937 be detected as combed). This is basically a pixel difference value. A good
7938 range is @code{[8, 12]}.
7939
7940 Default value is @code{9}.
7941
7942 @item chroma
7943 Sets whether or not chroma is considered in the combed frame decision.  Only
7944 disable this if your source has chroma problems (rainbowing, etc.) that are
7945 causing problems for the combed frame detection with chroma enabled. Actually,
7946 using @option{chroma}=@var{0} is usually more reliable, except for the case
7947 where there is chroma only combing in the source.
7948
7949 Default value is @code{0}.
7950
7951 @item blockx
7952 @item blocky
7953 Respectively set the x-axis and y-axis size of the window used during combed
7954 frame detection. This has to do with the size of the area in which
7955 @option{combpel} pixels are required to be detected as combed for a frame to be
7956 declared combed. See the @option{combpel} parameter description for more info.
7957 Possible values are any number that is a power of 2 starting at 4 and going up
7958 to 512.
7959
7960 Default value is @code{16}.
7961
7962 @item combpel
7963 The number of combed pixels inside any of the @option{blocky} by
7964 @option{blockx} size blocks on the frame for the frame to be detected as
7965 combed. While @option{cthresh} controls how "visible" the combing must be, this
7966 setting controls "how much" combing there must be in any localized area (a
7967 window defined by the @option{blockx} and @option{blocky} settings) on the
7968 frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
7969 which point no frames will ever be detected as combed). This setting is known
7970 as @option{MI} in TFM/VFM vocabulary.
7971
7972 Default value is @code{80}.
7973 @end table
7974
7975 @anchor{p/c/n/u/b meaning}
7976 @subsection p/c/n/u/b meaning
7977
7978 @subsubsection p/c/n
7979
7980 We assume the following telecined stream:
7981
7982 @example
7983 Top fields:     1 2 2 3 4
7984 Bottom fields:  1 2 3 4 4
7985 @end example
7986
7987 The numbers correspond to the progressive frame the fields relate to. Here, the
7988 first two frames are progressive, the 3rd and 4th are combed, and so on.
7989
7990 When @code{fieldmatch} is configured to run a matching from bottom
7991 (@option{field}=@var{bottom}) this is how this input stream get transformed:
7992
7993 @example
7994 Input stream:
7995                 T     1 2 2 3 4
7996                 B     1 2 3 4 4   <-- matching reference
7997
7998 Matches:              c c n n c
7999
8000 Output stream:
8001                 T     1 2 3 4 4
8002                 B     1 2 3 4 4
8003 @end example
8004
8005 As a result of the field matching, we can see that some frames get duplicated.
8006 To perform a complete inverse telecine, you need to rely on a decimation filter
8007 after this operation. See for instance the @ref{decimate} filter.
8008
8009 The same operation now matching from top fields (@option{field}=@var{top})
8010 looks like this:
8011
8012 @example
8013 Input stream:
8014                 T     1 2 2 3 4   <-- matching reference
8015                 B     1 2 3 4 4
8016
8017 Matches:              c c p p c
8018
8019 Output stream:
8020                 T     1 2 2 3 4
8021                 B     1 2 2 3 4
8022 @end example
8023
8024 In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
8025 basically, they refer to the frame and field of the opposite parity:
8026
8027 @itemize
8028 @item @var{p} matches the field of the opposite parity in the previous frame
8029 @item @var{c} matches the field of the opposite parity in the current frame
8030 @item @var{n} matches the field of the opposite parity in the next frame
8031 @end itemize
8032
8033 @subsubsection u/b
8034
8035 The @var{u} and @var{b} matching are a bit special in the sense that they match
8036 from the opposite parity flag. In the following examples, we assume that we are
8037 currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
8038 'x' is placed above and below each matched fields.
8039
8040 With bottom matching (@option{field}=@var{bottom}):
8041 @example
8042 Match:           c         p           n          b          u
8043
8044                  x       x               x        x          x
8045   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
8046   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
8047                  x         x           x        x              x
8048
8049 Output frames:
8050                  2          1          2          2          2
8051                  2          2          2          1          3
8052 @end example
8053
8054 With top matching (@option{field}=@var{top}):
8055 @example
8056 Match:           c         p           n          b          u
8057
8058                  x         x           x        x              x
8059   Top          1 2 2     1 2 2       1 2 2      1 2 2      1 2 2
8060   Bottom       1 2 3     1 2 3       1 2 3      1 2 3      1 2 3
8061                  x       x               x        x          x
8062
8063 Output frames:
8064                  2          2          2          1          2
8065                  2          1          3          2          2
8066 @end example
8067
8068 @subsection Examples
8069
8070 Simple IVTC of a top field first telecined stream:
8071 @example
8072 fieldmatch=order=tff:combmatch=none, decimate
8073 @end example
8074
8075 Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
8076 @example
8077 fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
8078 @end example
8079
8080 @section fieldorder
8081
8082 Transform the field order of the input video.
8083
8084 It accepts the following parameters:
8085
8086 @table @option
8087
8088 @item order
8089 The output field order. Valid values are @var{tff} for top field first or @var{bff}
8090 for bottom field first.
8091 @end table
8092
8093 The default value is @samp{tff}.
8094
8095 The transformation is done by shifting the picture content up or down
8096 by one line, and filling the remaining line with appropriate picture content.
8097 This method is consistent with most broadcast field order converters.
8098
8099 If the input video is not flagged as being interlaced, or it is already
8100 flagged as being of the required output field order, then this filter does
8101 not alter the incoming video.
8102
8103 It is very useful when converting to or from PAL DV material,
8104 which is bottom field first.
8105
8106 For example:
8107 @example
8108 ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
8109 @end example
8110
8111 @section fifo, afifo
8112
8113 Buffer input images and send them when they are requested.
8114
8115 It is mainly useful when auto-inserted by the libavfilter
8116 framework.
8117
8118 It does not take parameters.
8119
8120 @section find_rect
8121
8122 Find a rectangular object
8123
8124 It accepts the following options:
8125
8126 @table @option
8127 @item object
8128 Filepath of the object image, needs to be in gray8.
8129
8130 @item threshold
8131 Detection threshold, default is 0.5.
8132
8133 @item mipmaps
8134 Number of mipmaps, default is 3.
8135
8136 @item xmin, ymin, xmax, ymax
8137 Specifies the rectangle in which to search.
8138 @end table
8139
8140 @subsection Examples
8141
8142 @itemize
8143 @item
8144 Generate a representative palette of a given video using @command{ffmpeg}:
8145 @example
8146 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
8147 @end example
8148 @end itemize
8149
8150 @section cover_rect
8151
8152 Cover a rectangular object
8153
8154 It accepts the following options:
8155
8156 @table @option
8157 @item cover
8158 Filepath of the optional cover image, needs to be in yuv420.
8159
8160 @item mode
8161 Set covering mode.
8162
8163 It accepts the following values:
8164 @table @samp
8165 @item cover
8166 cover it by the supplied image
8167 @item blur
8168 cover it by interpolating the surrounding pixels
8169 @end table
8170
8171 Default value is @var{blur}.
8172 @end table
8173
8174 @subsection Examples
8175
8176 @itemize
8177 @item
8178 Generate a representative palette of a given video using @command{ffmpeg}:
8179 @example
8180 ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
8181 @end example
8182 @end itemize
8183
8184 @anchor{format}
8185 @section format
8186
8187 Convert the input video to one of the specified pixel formats.
8188 Libavfilter will try to pick one that is suitable as input to
8189 the next filter.
8190
8191 It accepts the following parameters:
8192 @table @option
8193
8194 @item pix_fmts
8195 A '|'-separated list of pixel format names, such as
8196 "pix_fmts=yuv420p|monow|rgb24".
8197
8198 @end table
8199
8200 @subsection Examples
8201
8202 @itemize
8203 @item
8204 Convert the input video to the @var{yuv420p} format
8205 @example
8206 format=pix_fmts=yuv420p
8207 @end example
8208
8209 Convert the input video to any of the formats in the list
8210 @example
8211 format=pix_fmts=yuv420p|yuv444p|yuv410p
8212 @end example
8213 @end itemize
8214
8215 @anchor{fps}
8216 @section fps
8217
8218 Convert the video to specified constant frame rate by duplicating or dropping
8219 frames as necessary.
8220
8221 It accepts the following parameters:
8222 @table @option
8223
8224 @item fps
8225 The desired output frame rate. The default is @code{25}.
8226
8227 @item round
8228 Rounding method.
8229
8230 Possible values are:
8231 @table @option
8232 @item zero
8233 zero round towards 0
8234 @item inf
8235 round away from 0
8236 @item down
8237 round towards -infinity
8238 @item up
8239 round towards +infinity
8240 @item near
8241 round to nearest
8242 @end table
8243 The default is @code{near}.
8244
8245 @item start_time
8246 Assume the first PTS should be the given value, in seconds. This allows for
8247 padding/trimming at the start of stream. By default, no assumption is made
8248 about the first frame's expected PTS, so no padding or trimming is done.
8249 For example, this could be set to 0 to pad the beginning with duplicates of
8250 the first frame if a video stream starts after the audio stream or to trim any
8251 frames with a negative PTS.
8252
8253 @end table
8254
8255 Alternatively, the options can be specified as a flat string:
8256 @var{fps}[:@var{round}].
8257
8258 See also the @ref{setpts} filter.
8259
8260 @subsection Examples
8261
8262 @itemize
8263 @item
8264 A typical usage in order to set the fps to 25:
8265 @example
8266 fps=fps=25
8267 @end example
8268
8269 @item
8270 Sets the fps to 24, using abbreviation and rounding method to round to nearest:
8271 @example
8272 fps=fps=film:round=near
8273 @end example
8274 @end itemize
8275
8276 @section framepack
8277
8278 Pack two different video streams into a stereoscopic video, setting proper
8279 metadata on supported codecs. The two views should have the same size and
8280 framerate and processing will stop when the shorter video ends. Please note
8281 that you may conveniently adjust view properties with the @ref{scale} and
8282 @ref{fps} filters.
8283
8284 It accepts the following parameters:
8285 @table @option
8286
8287 @item format
8288 The desired packing format. Supported values are:
8289
8290 @table @option
8291
8292 @item sbs
8293 The views are next to each other (default).
8294
8295 @item tab
8296 The views are on top of each other.
8297
8298 @item lines
8299 The views are packed by line.
8300
8301 @item columns
8302 The views are packed by column.
8303
8304 @item frameseq
8305 The views are temporally interleaved.
8306
8307 @end table
8308
8309 @end table
8310
8311 Some examples:
8312
8313 @example
8314 # Convert left and right views into a frame-sequential video
8315 ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
8316
8317 # Convert views into a side-by-side video with the same output resolution as the input
8318 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
8319 @end example
8320
8321 @section framerate
8322
8323 Change the frame rate by interpolating new video output frames from the source
8324 frames.
8325
8326 This filter is not designed to function correctly with interlaced media. If
8327 you wish to change the frame rate of interlaced media then you are required
8328 to deinterlace before this filter and re-interlace after this filter.
8329
8330 A description of the accepted options follows.
8331
8332 @table @option
8333 @item fps
8334 Specify the output frames per second. This option can also be specified
8335 as a value alone. The default is @code{50}.
8336
8337 @item interp_start
8338 Specify the start of a range where the output frame will be created as a
8339 linear interpolation of two frames. The range is [@code{0}-@code{255}],
8340 the default is @code{15}.
8341
8342 @item interp_end
8343 Specify the end of a range where the output frame will be created as a
8344 linear interpolation of two frames. The range is [@code{0}-@code{255}],
8345 the default is @code{240}.
8346
8347 @item scene
8348 Specify the level at which a scene change is detected as a value between
8349 0 and 100 to indicate a new scene; a low value reflects a low
8350 probability for the current frame to introduce a new scene, while a higher
8351 value means the current frame is more likely to be one.
8352 The default is @code{7}.
8353
8354 @item flags
8355 Specify flags influencing the filter process.
8356
8357 Available value for @var{flags} is:
8358
8359 @table @option
8360 @item scene_change_detect, scd
8361 Enable scene change detection using the value of the option @var{scene}.
8362 This flag is enabled by default.
8363 @end table
8364 @end table
8365
8366 @section framestep
8367
8368 Select one frame every N-th frame.
8369
8370 This filter accepts the following option:
8371 @table @option
8372 @item step
8373 Select frame after every @code{step} frames.
8374 Allowed values are positive integers higher than 0. Default value is @code{1}.
8375 @end table
8376
8377 @anchor{frei0r}
8378 @section frei0r
8379
8380 Apply a frei0r effect to the input video.
8381
8382 To enable the compilation of this filter, you need to install the frei0r
8383 header and configure FFmpeg with @code{--enable-frei0r}.
8384
8385 It accepts the following parameters:
8386
8387 @table @option
8388
8389 @item filter_name
8390 The name of the frei0r effect to load. If the environment variable
8391 @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
8392 directories specified by the colon-separated list in @env{FREIOR_PATH}.
8393 Otherwise, the standard frei0r paths are searched, in this order:
8394 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
8395 @file{/usr/lib/frei0r-1/}.
8396
8397 @item filter_params
8398 A '|'-separated list of parameters to pass to the frei0r effect.
8399
8400 @end table
8401
8402 A frei0r effect parameter can be a boolean (its value is either
8403 "y" or "n"), a double, a color (specified as
8404 @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
8405 numbers between 0.0 and 1.0, inclusive) or by a color description specified in the "Color"
8406 section in the ffmpeg-utils manual), a position (specified as @var{X}/@var{Y}, where
8407 @var{X} and @var{Y} are floating point numbers) and/or a string.
8408
8409 The number and types of parameters depend on the loaded effect. If an
8410 effect parameter is not specified, the default value is set.
8411
8412 @subsection Examples
8413
8414 @itemize
8415 @item
8416 Apply the distort0r effect, setting the first two double parameters:
8417 @example
8418 frei0r=filter_name=distort0r:filter_params=0.5|0.01
8419 @end example
8420
8421 @item
8422 Apply the colordistance effect, taking a color as the first parameter:
8423 @example
8424 frei0r=colordistance:0.2/0.3/0.4
8425 frei0r=colordistance:violet
8426 frei0r=colordistance:0x112233
8427 @end example
8428
8429 @item
8430 Apply the perspective effect, specifying the top left and top right image
8431 positions:
8432 @example
8433 frei0r=perspective:0.2/0.2|0.8/0.2
8434 @end example
8435 @end itemize
8436
8437 For more information, see
8438 @url{http://frei0r.dyne.org}
8439
8440 @section fspp
8441
8442 Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
8443
8444 It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
8445 processing filter, one of them is performed once per block, not per pixel.
8446 This allows for much higher speed.
8447
8448 The filter accepts the following options:
8449
8450 @table @option
8451 @item quality
8452 Set quality. This option defines the number of levels for averaging. It accepts
8453 an integer in the range 4-5. Default value is @code{4}.
8454
8455 @item qp
8456 Force a constant quantization parameter. It accepts an integer in range 0-63.
8457 If not set, the filter will use the QP from the video stream (if available).
8458
8459 @item strength
8460 Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
8461 more details but also more artifacts, while higher values make the image smoother
8462 but also blurrier. Default value is @code{0} âˆ’ PSNR optimal.
8463
8464 @item use_bframe_qp
8465 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
8466 option may cause flicker since the B-Frames have often larger QP. Default is
8467 @code{0} (not enabled).
8468
8469 @end table
8470
8471 @section gblur
8472
8473 Apply Gaussian blur filter.
8474
8475 The filter accepts the following options:
8476
8477 @table @option
8478 @item sigma
8479 Set horizontal sigma, standard deviation of Gaussian blur. Default is @code{0.5}.
8480
8481 @item steps
8482 Set number of steps for Gaussian approximation. Defauls is @code{1}.
8483
8484 @item planes
8485 Set which planes to filter. By default all planes are filtered.
8486
8487 @item sigmaV
8488 Set vertical sigma, if negative it will be same as @code{sigma}.
8489 Default is @code{-1}.
8490 @end table
8491
8492 @section geq
8493
8494 The filter accepts the following options:
8495
8496 @table @option
8497 @item lum_expr, lum
8498 Set the luminance expression.
8499 @item cb_expr, cb
8500 Set the chrominance blue expression.
8501 @item cr_expr, cr
8502 Set the chrominance red expression.
8503 @item alpha_expr, a
8504 Set the alpha expression.
8505 @item red_expr, r
8506 Set the red expression.
8507 @item green_expr, g
8508 Set the green expression.
8509 @item blue_expr, b
8510 Set the blue expression.
8511 @end table
8512
8513 The colorspace is selected according to the specified options. If one
8514 of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
8515 options is specified, the filter will automatically select a YCbCr
8516 colorspace. If one of the @option{red_expr}, @option{green_expr}, or
8517 @option{blue_expr} options is specified, it will select an RGB
8518 colorspace.
8519
8520 If one of the chrominance expression is not defined, it falls back on the other
8521 one. If no alpha expression is specified it will evaluate to opaque value.
8522 If none of chrominance expressions are specified, they will evaluate
8523 to the luminance expression.
8524
8525 The expressions can use the following variables and functions:
8526
8527 @table @option
8528 @item N
8529 The sequential number of the filtered frame, starting from @code{0}.
8530
8531 @item X
8532 @item Y
8533 The coordinates of the current sample.
8534
8535 @item W
8536 @item H
8537 The width and height of the image.
8538
8539 @item SW
8540 @item SH
8541 Width and height scale depending on the currently filtered plane. It is the
8542 ratio between the corresponding luma plane number of pixels and the current
8543 plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
8544 @code{0.5,0.5} for chroma planes.
8545
8546 @item T
8547 Time of the current frame, expressed in seconds.
8548
8549 @item p(x, y)
8550 Return the value of the pixel at location (@var{x},@var{y}) of the current
8551 plane.
8552
8553 @item lum(x, y)
8554 Return the value of the pixel at location (@var{x},@var{y}) of the luminance
8555 plane.
8556
8557 @item cb(x, y)
8558 Return the value of the pixel at location (@var{x},@var{y}) of the
8559 blue-difference chroma plane. Return 0 if there is no such plane.
8560
8561 @item cr(x, y)
8562 Return the value of the pixel at location (@var{x},@var{y}) of the
8563 red-difference chroma plane. Return 0 if there is no such plane.
8564
8565 @item r(x, y)
8566 @item g(x, y)
8567 @item b(x, y)
8568 Return the value of the pixel at location (@var{x},@var{y}) of the
8569 red/green/blue component. Return 0 if there is no such component.
8570
8571 @item alpha(x, y)
8572 Return the value of the pixel at location (@var{x},@var{y}) of the alpha
8573 plane. Return 0 if there is no such plane.
8574 @end table
8575
8576 For functions, if @var{x} and @var{y} are outside the area, the value will be
8577 automatically clipped to the closer edge.
8578
8579 @subsection Examples
8580
8581 @itemize
8582 @item
8583 Flip the image horizontally:
8584 @example
8585 geq=p(W-X\,Y)
8586 @end example
8587
8588 @item
8589 Generate a bidimensional sine wave, with angle @code{PI/3} and a
8590 wavelength of 100 pixels:
8591 @example
8592 geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
8593 @end example
8594
8595 @item
8596 Generate a fancy enigmatic moving light:
8597 @example
8598 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
8599 @end example
8600
8601 @item
8602 Generate a quick emboss effect:
8603 @example
8604 format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
8605 @end example
8606
8607 @item
8608 Modify RGB components depending on pixel position:
8609 @example
8610 geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
8611 @end example
8612
8613 @item
8614 Create a radial gradient that is the same size as the input (also see
8615 the @ref{vignette} filter):
8616 @example
8617 geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
8618 @end example
8619 @end itemize
8620
8621 @section gradfun
8622
8623 Fix the banding artifacts that are sometimes introduced into nearly flat
8624 regions by truncation to 8-bit color depth.
8625 Interpolate the gradients that should go where the bands are, and
8626 dither them.
8627
8628 It is designed for playback only.  Do not use it prior to
8629 lossy compression, because compression tends to lose the dither and
8630 bring back the bands.
8631
8632 It accepts the following parameters:
8633
8634 @table @option
8635
8636 @item strength
8637 The maximum amount by which the filter will change any one pixel. This is also
8638 the threshold for detecting nearly flat regions. Acceptable values range from
8639 .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
8640 valid range.
8641
8642 @item radius
8643 The neighborhood to fit the gradient to. A larger radius makes for smoother
8644 gradients, but also prevents the filter from modifying the pixels near detailed
8645 regions. Acceptable values are 8-32; the default value is 16. Out-of-range
8646 values will be clipped to the valid range.
8647
8648 @end table
8649
8650 Alternatively, the options can be specified as a flat string:
8651 @var{strength}[:@var{radius}]
8652
8653 @subsection Examples
8654
8655 @itemize
8656 @item
8657 Apply the filter with a @code{3.5} strength and radius of @code{8}:
8658 @example
8659 gradfun=3.5:8
8660 @end example
8661
8662 @item
8663 Specify radius, omitting the strength (which will fall-back to the default
8664 value):
8665 @example
8666 gradfun=radius=8
8667 @end example
8668
8669 @end itemize
8670
8671 @anchor{haldclut}
8672 @section haldclut
8673
8674 Apply a Hald CLUT to a video stream.
8675
8676 First input is the video stream to process, and second one is the Hald CLUT.
8677 The Hald CLUT input can be a simple picture or a complete video stream.
8678
8679 The filter accepts the following options:
8680
8681 @table @option
8682 @item shortest
8683 Force termination when the shortest input terminates. Default is @code{0}.
8684 @item repeatlast
8685 Continue applying the last CLUT after the end of the stream. A value of
8686 @code{0} disable the filter after the last frame of the CLUT is reached.
8687 Default is @code{1}.
8688 @end table
8689
8690 @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
8691 filters share the same internals).
8692
8693 More information about the Hald CLUT can be found on Eskil Steenberg's website
8694 (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
8695
8696 @subsection Workflow examples
8697
8698 @subsubsection Hald CLUT video stream
8699
8700 Generate an identity Hald CLUT stream altered with various effects:
8701 @example
8702 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
8703 @end example
8704
8705 Note: make sure you use a lossless codec.
8706
8707 Then use it with @code{haldclut} to apply it on some random stream:
8708 @example
8709 ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
8710 @end example
8711
8712 The Hald CLUT will be applied to the 10 first seconds (duration of
8713 @file{clut.nut}), then the latest picture of that CLUT stream will be applied
8714 to the remaining frames of the @code{mandelbrot} stream.
8715
8716 @subsubsection Hald CLUT with preview
8717
8718 A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
8719 @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
8720 biggest possible square starting at the top left of the picture. The remaining
8721 padding pixels (bottom or right) will be ignored. This area can be used to add
8722 a preview of the Hald CLUT.
8723
8724 Typically, the following generated Hald CLUT will be supported by the
8725 @code{haldclut} filter:
8726
8727 @example
8728 ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
8729    pad=iw+320 [padded_clut];
8730    smptebars=s=320x256, split [a][b];
8731    [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
8732    [main][b] overlay=W-320" -frames:v 1 clut.png
8733 @end example
8734
8735 It contains the original and a preview of the effect of the CLUT: SMPTE color
8736 bars are displayed on the right-top, and below the same color bars processed by
8737 the color changes.
8738
8739 Then, the effect of this Hald CLUT can be visualized with:
8740 @example
8741 ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
8742 @end example
8743
8744 @section hflip
8745
8746 Flip the input video horizontally.
8747
8748 For example, to horizontally flip the input video with @command{ffmpeg}:
8749 @example
8750 ffmpeg -i in.avi -vf "hflip" out.avi
8751 @end example
8752
8753 @section histeq
8754 This filter applies a global color histogram equalization on a
8755 per-frame basis.
8756
8757 It can be used to correct video that has a compressed range of pixel
8758 intensities.  The filter redistributes the pixel intensities to
8759 equalize their distribution across the intensity range. It may be
8760 viewed as an "automatically adjusting contrast filter". This filter is
8761 useful only for correcting degraded or poorly captured source
8762 video.
8763
8764 The filter accepts the following options:
8765
8766 @table @option
8767 @item strength
8768 Determine the amount of equalization to be applied.  As the strength
8769 is reduced, the distribution of pixel intensities more-and-more
8770 approaches that of the input frame. The value must be a float number
8771 in the range [0,1] and defaults to 0.200.
8772
8773 @item intensity
8774 Set the maximum intensity that can generated and scale the output
8775 values appropriately.  The strength should be set as desired and then
8776 the intensity can be limited if needed to avoid washing-out. The value
8777 must be a float number in the range [0,1] and defaults to 0.210.
8778
8779 @item antibanding
8780 Set the antibanding level. If enabled the filter will randomly vary
8781 the luminance of output pixels by a small amount to avoid banding of
8782 the histogram. Possible values are @code{none}, @code{weak} or
8783 @code{strong}. It defaults to @code{none}.
8784 @end table
8785
8786 @section histogram
8787
8788 Compute and draw a color distribution histogram for the input video.
8789
8790 The computed histogram is a representation of the color component
8791 distribution in an image.
8792
8793 Standard histogram displays the color components distribution in an image.
8794 Displays color graph for each color component. Shows distribution of
8795 the Y, U, V, A or R, G, B components, depending on input format, in the
8796 current frame. Below each graph a color component scale meter is shown.
8797
8798 The filter accepts the following options:
8799
8800 @table @option
8801 @item level_height
8802 Set height of level. Default value is @code{200}.
8803 Allowed range is [50, 2048].
8804
8805 @item scale_height
8806 Set height of color scale. Default value is @code{12}.
8807 Allowed range is [0, 40].
8808
8809 @item display_mode
8810 Set display mode.
8811 It accepts the following values:
8812 @table @samp
8813 @item stack
8814 Per color component graphs are placed below each other.
8815
8816 @item parade
8817 Per color component graphs are placed side by side.
8818
8819 @item overlay
8820 Presents information identical to that in the @code{parade}, except
8821 that the graphs representing color components are superimposed directly
8822 over one another.
8823 @end table
8824 Default is @code{stack}.
8825
8826 @item levels_mode
8827 Set mode. Can be either @code{linear}, or @code{logarithmic}.
8828 Default is @code{linear}.
8829
8830 @item components
8831 Set what color components to display.
8832 Default is @code{7}.
8833
8834 @item fgopacity
8835 Set foreground opacity. Default is @code{0.7}.
8836
8837 @item bgopacity
8838 Set background opacity. Default is @code{0.5}.
8839 @end table
8840
8841 @subsection Examples
8842
8843 @itemize
8844
8845 @item
8846 Calculate and draw histogram:
8847 @example
8848 ffplay -i input -vf histogram
8849 @end example
8850
8851 @end itemize
8852
8853 @anchor{hqdn3d}
8854 @section hqdn3d
8855
8856 This is a high precision/quality 3d denoise filter. It aims to reduce
8857 image noise, producing smooth images and making still images really
8858 still. It should enhance compressibility.
8859
8860 It accepts the following optional parameters:
8861
8862 @table @option
8863 @item luma_spatial
8864 A non-negative floating point number which specifies spatial luma strength.
8865 It defaults to 4.0.
8866
8867 @item chroma_spatial
8868 A non-negative floating point number which specifies spatial chroma strength.
8869 It defaults to 3.0*@var{luma_spatial}/4.0.
8870
8871 @item luma_tmp
8872 A floating point number which specifies luma temporal strength. It defaults to
8873 6.0*@var{luma_spatial}/4.0.
8874
8875 @item chroma_tmp
8876 A floating point number which specifies chroma temporal strength. It defaults to
8877 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
8878 @end table
8879
8880 @anchor{hwupload_cuda}
8881 @section hwupload_cuda
8882
8883 Upload system memory frames to a CUDA device.
8884
8885 It accepts the following optional parameters:
8886
8887 @table @option
8888 @item device
8889 The number of the CUDA device to use
8890 @end table
8891
8892 @section hqx
8893
8894 Apply a high-quality magnification filter designed for pixel art. This filter
8895 was originally created by Maxim Stepin.
8896
8897 It accepts the following option:
8898
8899 @table @option
8900 @item n
8901 Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
8902 @code{hq3x} and @code{4} for @code{hq4x}.
8903 Default is @code{3}.
8904 @end table
8905
8906 @section hstack
8907 Stack input videos horizontally.
8908
8909 All streams must be of same pixel format and of same height.
8910
8911 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
8912 to create same output.
8913
8914 The filter accept the following option:
8915
8916 @table @option
8917 @item inputs
8918 Set number of input streams. Default is 2.
8919
8920 @item shortest
8921 If set to 1, force the output to terminate when the shortest input
8922 terminates. Default value is 0.
8923 @end table
8924
8925 @section hue
8926
8927 Modify the hue and/or the saturation of the input.
8928
8929 It accepts the following parameters:
8930
8931 @table @option
8932 @item h
8933 Specify the hue angle as a number of degrees. It accepts an expression,
8934 and defaults to "0".
8935
8936 @item s
8937 Specify the saturation in the [-10,10] range. It accepts an expression and
8938 defaults to "1".
8939
8940 @item H
8941 Specify the hue angle as a number of radians. It accepts an
8942 expression, and defaults to "0".
8943
8944 @item b
8945 Specify the brightness in the [-10,10] range. It accepts an expression and
8946 defaults to "0".
8947 @end table
8948
8949 @option{h} and @option{H} are mutually exclusive, and can't be
8950 specified at the same time.
8951
8952 The @option{b}, @option{h}, @option{H} and @option{s} option values are
8953 expressions containing the following constants:
8954
8955 @table @option
8956 @item n
8957 frame count of the input frame starting from 0
8958
8959 @item pts
8960 presentation timestamp of the input frame expressed in time base units
8961
8962 @item r
8963 frame rate of the input video, NAN if the input frame rate is unknown
8964
8965 @item t
8966 timestamp expressed in seconds, NAN if the input timestamp is unknown
8967
8968 @item tb
8969 time base of the input video
8970 @end table
8971
8972 @subsection Examples
8973
8974 @itemize
8975 @item
8976 Set the hue to 90 degrees and the saturation to 1.0:
8977 @example
8978 hue=h=90:s=1
8979 @end example
8980
8981 @item
8982 Same command but expressing the hue in radians:
8983 @example
8984 hue=H=PI/2:s=1
8985 @end example
8986
8987 @item
8988 Rotate hue and make the saturation swing between 0
8989 and 2 over a period of 1 second:
8990 @example
8991 hue="H=2*PI*t: s=sin(2*PI*t)+1"
8992 @end example
8993
8994 @item
8995 Apply a 3 seconds saturation fade-in effect starting at 0:
8996 @example
8997 hue="s=min(t/3\,1)"
8998 @end example
8999
9000 The general fade-in expression can be written as:
9001 @example
9002 hue="s=min(0\, max((t-START)/DURATION\, 1))"
9003 @end example
9004
9005 @item
9006 Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
9007 @example
9008 hue="s=max(0\, min(1\, (8-t)/3))"
9009 @end example
9010
9011 The general fade-out expression can be written as:
9012 @example
9013 hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
9014 @end example
9015
9016 @end itemize
9017
9018 @subsection Commands
9019
9020 This filter supports the following commands:
9021 @table @option
9022 @item b
9023 @item s
9024 @item h
9025 @item H
9026 Modify the hue and/or the saturation and/or brightness of the input video.
9027 The command accepts the same syntax of the corresponding option.
9028
9029 If the specified expression is not valid, it is kept at its current
9030 value.
9031 @end table
9032
9033 @section hysteresis
9034
9035 Grow first stream into second stream by connecting components.
9036 This makes it possible to build more robust edge masks.
9037
9038 This filter accepts the following options:
9039
9040 @table @option
9041 @item planes
9042 Set which planes will be processed as bitmap, unprocessed planes will be
9043 copied from first stream.
9044 By default value 0xf, all planes will be processed.
9045
9046 @item threshold
9047 Set threshold which is used in filtering. If pixel component value is higher than
9048 this value filter algorithm for connecting components is activated.
9049 By default value is 0.
9050 @end table
9051
9052 @section idet
9053
9054 Detect video interlacing type.
9055
9056 This filter tries to detect if the input frames are interlaced, progressive,
9057 top or bottom field first. It will also try to detect fields that are
9058 repeated between adjacent frames (a sign of telecine).
9059
9060 Single frame detection considers only immediately adjacent frames when classifying each frame.
9061 Multiple frame detection incorporates the classification history of previous frames.
9062
9063 The filter will log these metadata values:
9064
9065 @table @option
9066 @item single.current_frame
9067 Detected type of current frame using single-frame detection. One of:
9068 ``tff'' (top field first), ``bff'' (bottom field first),
9069 ``progressive'', or ``undetermined''
9070
9071 @item single.tff
9072 Cumulative number of frames detected as top field first using single-frame detection.
9073
9074 @item multiple.tff
9075 Cumulative number of frames detected as top field first using multiple-frame detection.
9076
9077 @item single.bff
9078 Cumulative number of frames detected as bottom field first using single-frame detection.
9079
9080 @item multiple.current_frame
9081 Detected type of current frame using multiple-frame detection. One of:
9082 ``tff'' (top field first), ``bff'' (bottom field first),
9083 ``progressive'', or ``undetermined''
9084
9085 @item multiple.bff
9086 Cumulative number of frames detected as bottom field first using multiple-frame detection.
9087
9088 @item single.progressive
9089 Cumulative number of frames detected as progressive using single-frame detection.
9090
9091 @item multiple.progressive
9092 Cumulative number of frames detected as progressive using multiple-frame detection.
9093
9094 @item single.undetermined
9095 Cumulative number of frames that could not be classified using single-frame detection.
9096
9097 @item multiple.undetermined
9098 Cumulative number of frames that could not be classified using multiple-frame detection.
9099
9100 @item repeated.current_frame
9101 Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
9102
9103 @item repeated.neither
9104 Cumulative number of frames with no repeated field.
9105
9106 @item repeated.top
9107 Cumulative number of frames with the top field repeated from the previous frame's top field.
9108
9109 @item repeated.bottom
9110 Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
9111 @end table
9112
9113 The filter accepts the following options:
9114
9115 @table @option
9116 @item intl_thres
9117 Set interlacing threshold.
9118 @item prog_thres
9119 Set progressive threshold.
9120 @item rep_thres
9121 Threshold for repeated field detection.
9122 @item half_life
9123 Number of frames after which a given frame's contribution to the
9124 statistics is halved (i.e., it contributes only 0.5 to its
9125 classification). The default of 0 means that all frames seen are given
9126 full weight of 1.0 forever.
9127 @item analyze_interlaced_flag
9128 When this is not 0 then idet will use the specified number of frames to determine
9129 if the interlaced flag is accurate, it will not count undetermined frames.
9130 If the flag is found to be accurate it will be used without any further
9131 computations, if it is found to be inaccurate it will be cleared without any
9132 further computations. This allows inserting the idet filter as a low computational
9133 method to clean up the interlaced flag
9134 @end table
9135
9136 @section il
9137
9138 Deinterleave or interleave fields.
9139
9140 This filter allows one to process interlaced images fields without
9141 deinterlacing them. Deinterleaving splits the input frame into 2
9142 fields (so called half pictures). Odd lines are moved to the top
9143 half of the output image, even lines to the bottom half.
9144 You can process (filter) them independently and then re-interleave them.
9145
9146 The filter accepts the following options:
9147
9148 @table @option
9149 @item luma_mode, l
9150 @item chroma_mode, c
9151 @item alpha_mode, a
9152 Available values for @var{luma_mode}, @var{chroma_mode} and
9153 @var{alpha_mode} are:
9154
9155 @table @samp
9156 @item none
9157 Do nothing.
9158
9159 @item deinterleave, d
9160 Deinterleave fields, placing one above the other.
9161
9162 @item interleave, i
9163 Interleave fields. Reverse the effect of deinterleaving.
9164 @end table
9165 Default value is @code{none}.
9166
9167 @item luma_swap, ls
9168 @item chroma_swap, cs
9169 @item alpha_swap, as
9170 Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
9171 @end table
9172
9173 @section inflate
9174
9175 Apply inflate effect to the video.
9176
9177 This filter replaces the pixel by the local(3x3) average by taking into account
9178 only values higher than the pixel.
9179
9180 It accepts the following options:
9181
9182 @table @option
9183 @item threshold0
9184 @item threshold1
9185 @item threshold2
9186 @item threshold3
9187 Limit the maximum change for each plane, default is 65535.
9188 If 0, plane will remain unchanged.
9189 @end table
9190
9191 @section interlace
9192
9193 Simple interlacing filter from progressive contents. This interleaves upper (or
9194 lower) lines from odd frames with lower (or upper) lines from even frames,
9195 halving the frame rate and preserving image height.
9196
9197 @example
9198    Original        Original             New Frame
9199    Frame 'j'      Frame 'j+1'             (tff)
9200   ==========      ===========       ==================
9201     Line 0  -------------------->    Frame 'j' Line 0
9202     Line 1          Line 1  ---->   Frame 'j+1' Line 1
9203     Line 2 --------------------->    Frame 'j' Line 2
9204     Line 3          Line 3  ---->   Frame 'j+1' Line 3
9205      ...             ...                   ...
9206 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
9207 @end example
9208
9209 It accepts the following optional parameters:
9210
9211 @table @option
9212 @item scan
9213 This determines whether the interlaced frame is taken from the even
9214 (tff - default) or odd (bff) lines of the progressive frame.
9215
9216 @item lowpass
9217 Vertical lowpass filter to avoid twitter interlacing and
9218 reduce moire patterns.
9219
9220 @table @samp
9221 @item 0, off
9222 Disable vertical lowpass filter
9223
9224 @item 1, linear
9225 Enable linear filter (default)
9226
9227 @item 2, complex
9228 Enable complex filter. This will slightly less reduce twitter and moire
9229 but better retain detail and subjective sharpness impression.
9230
9231 @end table
9232 @end table
9233
9234 @section kerndeint
9235
9236 Deinterlace input video by applying Donald Graft's adaptive kernel
9237 deinterling. Work on interlaced parts of a video to produce
9238 progressive frames.
9239
9240 The description of the accepted parameters follows.
9241
9242 @table @option
9243 @item thresh
9244 Set the threshold which affects the filter's tolerance when
9245 determining if a pixel line must be processed. It must be an integer
9246 in the range [0,255] and defaults to 10. A value of 0 will result in
9247 applying the process on every pixels.
9248
9249 @item map
9250 Paint pixels exceeding the threshold value to white if set to 1.
9251 Default is 0.
9252
9253 @item order
9254 Set the fields order. Swap fields if set to 1, leave fields alone if
9255 0. Default is 0.
9256
9257 @item sharp
9258 Enable additional sharpening if set to 1. Default is 0.
9259
9260 @item twoway
9261 Enable twoway sharpening if set to 1. Default is 0.
9262 @end table
9263
9264 @subsection Examples
9265
9266 @itemize
9267 @item
9268 Apply default values:
9269 @example
9270 kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
9271 @end example
9272
9273 @item
9274 Enable additional sharpening:
9275 @example
9276 kerndeint=sharp=1
9277 @end example
9278
9279 @item
9280 Paint processed pixels in white:
9281 @example
9282 kerndeint=map=1
9283 @end example
9284 @end itemize
9285
9286 @section lenscorrection
9287
9288 Correct radial lens distortion
9289
9290 This filter can be used to correct for radial distortion as can result from the use
9291 of wide angle lenses, and thereby re-rectify the image. To find the right parameters
9292 one can use tools available for example as part of opencv or simply trial-and-error.
9293 To use opencv use the calibration sample (under samples/cpp) from the opencv sources
9294 and extract the k1 and k2 coefficients from the resulting matrix.
9295
9296 Note that effectively the same filter is available in the open-source tools Krita and
9297 Digikam from the KDE project.
9298
9299 In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
9300 this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
9301 brightness distribution, so you may want to use both filters together in certain
9302 cases, though you will have to take care of ordering, i.e. whether vignetting should
9303 be applied before or after lens correction.
9304
9305 @subsection Options
9306
9307 The filter accepts the following options:
9308
9309 @table @option
9310 @item cx
9311 Relative x-coordinate of the focal point of the image, and thereby the center of the
9312 distortion. This value has a range [0,1] and is expressed as fractions of the image
9313 width.
9314 @item cy
9315 Relative y-coordinate of the focal point of the image, and thereby the center of the
9316 distortion. This value has a range [0,1] and is expressed as fractions of the image
9317 height.
9318 @item k1
9319 Coefficient of the quadratic correction term. 0.5 means no correction.
9320 @item k2
9321 Coefficient of the double quadratic correction term. 0.5 means no correction.
9322 @end table
9323
9324 The formula that generates the correction is:
9325
9326 @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)
9327
9328 where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
9329 distances from the focal point in the source and target images, respectively.
9330
9331 @section loop
9332
9333 Loop video frames.
9334
9335 The filter accepts the following options:
9336
9337 @table @option
9338 @item loop
9339 Set the number of loops.
9340
9341 @item size
9342 Set maximal size in number of frames.
9343
9344 @item start
9345 Set first frame of loop.
9346 @end table
9347
9348 @anchor{lut3d}
9349 @section lut3d
9350
9351 Apply a 3D LUT to an input video.
9352
9353 The filter accepts the following options:
9354
9355 @table @option
9356 @item file
9357 Set the 3D LUT file name.
9358
9359 Currently supported formats:
9360 @table @samp
9361 @item 3dl
9362 AfterEffects
9363 @item cube
9364 Iridas
9365 @item dat
9366 DaVinci
9367 @item m3d
9368 Pandora
9369 @end table
9370 @item interp
9371 Select interpolation mode.
9372
9373 Available values are:
9374
9375 @table @samp
9376 @item nearest
9377 Use values from the nearest defined point.
9378 @item trilinear
9379 Interpolate values using the 8 points defining a cube.
9380 @item tetrahedral
9381 Interpolate values using a tetrahedron.
9382 @end table
9383 @end table
9384
9385 @section lumakey
9386
9387 Turn certain luma values into transparency.
9388
9389 The filter accepts the following options:
9390
9391 @table @option
9392 @item threshold
9393 Set the luma which will be used as base for transparency.
9394 Default value is @code{0}.
9395
9396 @item tolerance
9397 Set the range of luma values to be keyed out.
9398 Default value is @code{0}.
9399
9400 @item softness
9401 Set the range of softness. Default value is @code{0}.
9402 Use this to control gradual transition from zero to full transparency.
9403 @end table
9404
9405 @section lut, lutrgb, lutyuv
9406
9407 Compute a look-up table for binding each pixel component input value
9408 to an output value, and apply it to the input video.
9409
9410 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
9411 to an RGB input video.
9412
9413 These filters accept the following parameters:
9414 @table @option
9415 @item c0
9416 set first pixel component expression
9417 @item c1
9418 set second pixel component expression
9419 @item c2
9420 set third pixel component expression
9421 @item c3
9422 set fourth pixel component expression, corresponds to the alpha component
9423
9424 @item r
9425 set red component expression
9426 @item g
9427 set green component expression
9428 @item b
9429 set blue component expression
9430 @item a
9431 alpha component expression
9432
9433 @item y
9434 set Y/luminance component expression
9435 @item u
9436 set U/Cb component expression
9437 @item v
9438 set V/Cr component expression
9439 @end table
9440
9441 Each of them specifies the expression to use for computing the lookup table for
9442 the corresponding pixel component values.
9443
9444 The exact component associated to each of the @var{c*} options depends on the
9445 format in input.
9446
9447 The @var{lut} filter requires either YUV or RGB pixel formats in input,
9448 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
9449
9450 The expressions can contain the following constants and functions:
9451
9452 @table @option
9453 @item w
9454 @item h
9455 The input width and height.
9456
9457 @item val
9458 The input value for the pixel component.
9459
9460 @item clipval
9461 The input value, clipped to the @var{minval}-@var{maxval} range.
9462
9463 @item maxval
9464 The maximum value for the pixel component.
9465
9466 @item minval
9467 The minimum value for the pixel component.
9468
9469 @item negval
9470 The negated value for the pixel component value, clipped to the
9471 @var{minval}-@var{maxval} range; it corresponds to the expression
9472 "maxval-clipval+minval".
9473
9474 @item clip(val)
9475 The computed value in @var{val}, clipped to the
9476 @var{minval}-@var{maxval} range.
9477
9478 @item gammaval(gamma)
9479 The computed gamma correction value of the pixel component value,
9480 clipped to the @var{minval}-@var{maxval} range. It corresponds to the
9481 expression
9482 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
9483
9484 @end table
9485
9486 All expressions default to "val".
9487
9488 @subsection Examples
9489
9490 @itemize
9491 @item
9492 Negate input video:
9493 @example
9494 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
9495 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
9496 @end example
9497
9498 The above is the same as:
9499 @example
9500 lutrgb="r=negval:g=negval:b=negval"
9501 lutyuv="y=negval:u=negval:v=negval"
9502 @end example
9503
9504 @item
9505 Negate luminance:
9506 @example
9507 lutyuv=y=negval
9508 @end example
9509
9510 @item
9511 Remove chroma components, turning the video into a graytone image:
9512 @example
9513 lutyuv="u=128:v=128"
9514 @end example
9515
9516 @item
9517 Apply a luma burning effect:
9518 @example
9519 lutyuv="y=2*val"
9520 @end example
9521
9522 @item
9523 Remove green and blue components:
9524 @example
9525 lutrgb="g=0:b=0"
9526 @end example
9527
9528 @item
9529 Set a constant alpha channel value on input:
9530 @example
9531 format=rgba,lutrgb=a="maxval-minval/2"
9532 @end example
9533
9534 @item
9535 Correct luminance gamma by a factor of 0.5:
9536 @example
9537 lutyuv=y=gammaval(0.5)
9538 @end example
9539
9540 @item
9541 Discard least significant bits of luma:
9542 @example
9543 lutyuv=y='bitand(val, 128+64+32)'
9544 @end example
9545
9546 @item
9547 Technicolor like effect:
9548 @example
9549 lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
9550 @end example
9551 @end itemize
9552
9553 @section lut2
9554
9555 Compute and apply a lookup table from two video inputs.
9556
9557 This filter accepts the following parameters:
9558 @table @option
9559 @item c0
9560 set first pixel component expression
9561 @item c1
9562 set second pixel component expression
9563 @item c2
9564 set third pixel component expression
9565 @item c3
9566 set fourth pixel component expression, corresponds to the alpha component
9567 @end table
9568
9569 Each of them specifies the expression to use for computing the lookup table for
9570 the corresponding pixel component values.
9571
9572 The exact component associated to each of the @var{c*} options depends on the
9573 format in inputs.
9574
9575 The expressions can contain the following constants:
9576
9577 @table @option
9578 @item w
9579 @item h
9580 The input width and height.
9581
9582 @item x
9583 The first input value for the pixel component.
9584
9585 @item y
9586 The second input value for the pixel component.
9587
9588 @item bdx
9589 The first input video bit depth.
9590
9591 @item bdy
9592 The second input video bit depth.
9593 @end table
9594
9595 All expressions default to "x".
9596
9597 @subsection Examples
9598
9599 @itemize
9600 @item
9601 Highlight differences between two RGB video streams:
9602 @example
9603 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)'
9604 @end example
9605
9606 @item
9607 Highlight differences between two YUV video streams:
9608 @example
9609 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)'
9610 @end example
9611 @end itemize
9612
9613 @section maskedclamp
9614
9615 Clamp the first input stream with the second input and third input stream.
9616
9617 Returns the value of first stream to be between second input
9618 stream - @code{undershoot} and third input stream + @code{overshoot}.
9619
9620 This filter accepts the following options:
9621 @table @option
9622 @item undershoot
9623 Default value is @code{0}.
9624
9625 @item overshoot
9626 Default value is @code{0}.
9627
9628 @item planes
9629 Set which planes will be processed as bitmap, unprocessed planes will be
9630 copied from first stream.
9631 By default value 0xf, all planes will be processed.
9632 @end table
9633
9634 @section maskedmerge
9635
9636 Merge the first input stream with the second input stream using per pixel
9637 weights in the third input stream.
9638
9639 A value of 0 in the third stream pixel component means that pixel component
9640 from first stream is returned unchanged, while maximum value (eg. 255 for
9641 8-bit videos) means that pixel component from second stream is returned
9642 unchanged. Intermediate values define the amount of merging between both
9643 input stream's pixel components.
9644
9645 This filter accepts the following options:
9646 @table @option
9647 @item planes
9648 Set which planes will be processed as bitmap, unprocessed planes will be
9649 copied from first stream.
9650 By default value 0xf, all planes will be processed.
9651 @end table
9652
9653 @section mcdeint
9654
9655 Apply motion-compensation deinterlacing.
9656
9657 It needs one field per frame as input and must thus be used together
9658 with yadif=1/3 or equivalent.
9659
9660 This filter accepts the following options:
9661 @table @option
9662 @item mode
9663 Set the deinterlacing mode.
9664
9665 It accepts one of the following values:
9666 @table @samp
9667 @item fast
9668 @item medium
9669 @item slow
9670 use iterative motion estimation
9671 @item extra_slow
9672 like @samp{slow}, but use multiple reference frames.
9673 @end table
9674 Default value is @samp{fast}.
9675
9676 @item parity
9677 Set the picture field parity assumed for the input video. It must be
9678 one of the following values:
9679
9680 @table @samp
9681 @item 0, tff
9682 assume top field first
9683 @item 1, bff
9684 assume bottom field first
9685 @end table
9686
9687 Default value is @samp{bff}.
9688
9689 @item qp
9690 Set per-block quantization parameter (QP) used by the internal
9691 encoder.
9692
9693 Higher values should result in a smoother motion vector field but less
9694 optimal individual vectors. Default value is 1.
9695 @end table
9696
9697 @section mergeplanes
9698
9699 Merge color channel components from several video streams.
9700
9701 The filter accepts up to 4 input streams, and merge selected input
9702 planes to the output video.
9703
9704 This filter accepts the following options:
9705 @table @option
9706 @item mapping
9707 Set input to output plane mapping. Default is @code{0}.
9708
9709 The mappings is specified as a bitmap. It should be specified as a
9710 hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
9711 mapping for the first plane of the output stream. 'A' sets the number of
9712 the input stream to use (from 0 to 3), and 'a' the plane number of the
9713 corresponding input to use (from 0 to 3). The rest of the mappings is
9714 similar, 'Bb' describes the mapping for the output stream second
9715 plane, 'Cc' describes the mapping for the output stream third plane and
9716 'Dd' describes the mapping for the output stream fourth plane.
9717
9718 @item format
9719 Set output pixel format. Default is @code{yuva444p}.
9720 @end table
9721
9722 @subsection Examples
9723
9724 @itemize
9725 @item
9726 Merge three gray video streams of same width and height into single video stream:
9727 @example
9728 [a0][a1][a2]mergeplanes=0x001020:yuv444p
9729 @end example
9730
9731 @item
9732 Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
9733 @example
9734 [a0][a1]mergeplanes=0x00010210:yuva444p
9735 @end example
9736
9737 @item
9738 Swap Y and A plane in yuva444p stream:
9739 @example
9740 format=yuva444p,mergeplanes=0x03010200:yuva444p
9741 @end example
9742
9743 @item
9744 Swap U and V plane in yuv420p stream:
9745 @example
9746 format=yuv420p,mergeplanes=0x000201:yuv420p
9747 @end example
9748
9749 @item
9750 Cast a rgb24 clip to yuv444p:
9751 @example
9752 format=rgb24,mergeplanes=0x000102:yuv444p
9753 @end example
9754 @end itemize
9755
9756 @section mestimate
9757
9758 Estimate and export motion vectors using block matching algorithms.
9759 Motion vectors are stored in frame side data to be used by other filters.
9760
9761 This filter accepts the following options:
9762 @table @option
9763 @item method
9764 Specify the motion estimation method. Accepts one of the following values:
9765
9766 @table @samp
9767 @item esa
9768 Exhaustive search algorithm.
9769 @item tss
9770 Three step search algorithm.
9771 @item tdls
9772 Two dimensional logarithmic search algorithm.
9773 @item ntss
9774 New three step search algorithm.
9775 @item fss
9776 Four step search algorithm.
9777 @item ds
9778 Diamond search algorithm.
9779 @item hexbs
9780 Hexagon-based search algorithm.
9781 @item epzs
9782 Enhanced predictive zonal search algorithm.
9783 @item umh
9784 Uneven multi-hexagon search algorithm.
9785 @end table
9786 Default value is @samp{esa}.
9787
9788 @item mb_size
9789 Macroblock size. Default @code{16}.
9790
9791 @item search_param
9792 Search parameter. Default @code{7}.
9793 @end table
9794
9795 @section midequalizer
9796
9797 Apply Midway Image Equalization effect using two video streams.
9798
9799 Midway Image Equalization adjusts a pair of images to have the same
9800 histogram, while maintaining their dynamics as much as possible. It's
9801 useful for e.g. matching exposures from a pair of stereo cameras.
9802
9803 This filter has two inputs and one output, which must be of same pixel format, but
9804 may be of different sizes. The output of filter is first input adjusted with
9805 midway histogram of both inputs.
9806
9807 This filter accepts the following option:
9808
9809 @table @option
9810 @item planes
9811 Set which planes to process. Default is @code{15}, which is all available planes.
9812 @end table
9813
9814 @section minterpolate
9815
9816 Convert the video to specified frame rate using motion interpolation.
9817
9818 This filter accepts the following options:
9819 @table @option
9820 @item fps
9821 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}.
9822
9823 @item mi_mode
9824 Motion interpolation mode. Following values are accepted:
9825 @table @samp
9826 @item dup
9827 Duplicate previous or next frame for interpolating new ones.
9828 @item blend
9829 Blend source frames. Interpolated frame is mean of previous and next frames.
9830 @item mci
9831 Motion compensated interpolation. Following options are effective when this mode is selected:
9832
9833 @table @samp
9834 @item mc_mode
9835 Motion compensation mode. Following values are accepted:
9836 @table @samp
9837 @item obmc
9838 Overlapped block motion compensation.
9839 @item aobmc
9840 Adaptive overlapped block motion compensation. Window weighting coefficients are controlled adaptively according to the reliabilities of the neighboring motion vectors to reduce oversmoothing.
9841 @end table
9842 Default mode is @samp{obmc}.
9843
9844 @item me_mode
9845 Motion estimation mode. Following values are accepted:
9846 @table @samp
9847 @item bidir
9848 Bidirectional motion estimation. Motion vectors are estimated for each source frame in both forward and backward directions.
9849 @item bilat
9850 Bilateral motion estimation. Motion vectors are estimated directly for interpolated frame.
9851 @end table
9852 Default mode is @samp{bilat}.
9853
9854 @item me
9855 The algorithm to be used for motion estimation. Following values are accepted:
9856 @table @samp
9857 @item esa
9858 Exhaustive search algorithm.
9859 @item tss
9860 Three step search algorithm.
9861 @item tdls
9862 Two dimensional logarithmic search algorithm.
9863 @item ntss
9864 New three step search algorithm.
9865 @item fss
9866 Four step search algorithm.
9867 @item ds
9868 Diamond search algorithm.
9869 @item hexbs
9870 Hexagon-based search algorithm.
9871 @item epzs
9872 Enhanced predictive zonal search algorithm.
9873 @item umh
9874 Uneven multi-hexagon search algorithm.
9875 @end table
9876 Default algorithm is @samp{epzs}.
9877
9878 @item mb_size
9879 Macroblock size. Default @code{16}.
9880
9881 @item search_param
9882 Motion estimation search parameter. Default @code{32}.
9883
9884 @item vsbmc
9885 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).
9886 @end table
9887 @end table
9888
9889 @item scd
9890 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:
9891 @table @samp
9892 @item none
9893 Disable scene change detection.
9894 @item fdiff
9895 Frame difference. Corresponding pixel values are compared and if it satisfies @var{scd_threshold} scene change is detected.
9896 @end table
9897 Default method is @samp{fdiff}.
9898
9899 @item scd_threshold
9900 Scene change detection threshold. Default is @code{5.0}.
9901 @end table
9902
9903 @section mpdecimate
9904
9905 Drop frames that do not differ greatly from the previous frame in
9906 order to reduce frame rate.
9907
9908 The main use of this filter is for very-low-bitrate encoding
9909 (e.g. streaming over dialup modem), but it could in theory be used for
9910 fixing movies that were inverse-telecined incorrectly.
9911
9912 A description of the accepted options follows.
9913
9914 @table @option
9915 @item max
9916 Set the maximum number of consecutive frames which can be dropped (if
9917 positive), or the minimum interval between dropped frames (if
9918 negative). If the value is 0, the frame is dropped unregarding the
9919 number of previous sequentially dropped frames.
9920
9921 Default value is 0.
9922
9923 @item hi
9924 @item lo
9925 @item frac
9926 Set the dropping threshold values.
9927
9928 Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
9929 represent actual pixel value differences, so a threshold of 64
9930 corresponds to 1 unit of difference for each pixel, or the same spread
9931 out differently over the block.
9932
9933 A frame is a candidate for dropping if no 8x8 blocks differ by more
9934 than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
9935 meaning the whole image) differ by more than a threshold of @option{lo}.
9936
9937 Default value for @option{hi} is 64*12, default value for @option{lo} is
9938 64*5, and default value for @option{frac} is 0.33.
9939 @end table
9940
9941
9942 @section negate
9943
9944 Negate input video.
9945
9946 It accepts an integer in input; if non-zero it negates the
9947 alpha component (if available). The default value in input is 0.
9948
9949 @section nlmeans
9950
9951 Denoise frames using Non-Local Means algorithm.
9952
9953 Each pixel is adjusted by looking for other pixels with similar contexts. This
9954 context similarity is defined by comparing their surrounding patches of size
9955 @option{p}x@option{p}. Patches are searched in an area of @option{r}x@option{r}
9956 around the pixel.
9957
9958 Note that the research area defines centers for patches, which means some
9959 patches will be made of pixels outside that research area.
9960
9961 The filter accepts the following options.
9962
9963 @table @option
9964 @item s
9965 Set denoising strength.
9966
9967 @item p
9968 Set patch size.
9969
9970 @item pc
9971 Same as @option{p} but for chroma planes.
9972
9973 The default value is @var{0} and means automatic.
9974
9975 @item r
9976 Set research size.
9977
9978 @item rc
9979 Same as @option{r} but for chroma planes.
9980
9981 The default value is @var{0} and means automatic.
9982 @end table
9983
9984 @section nnedi
9985
9986 Deinterlace video using neural network edge directed interpolation.
9987
9988 This filter accepts the following options:
9989
9990 @table @option
9991 @item weights
9992 Mandatory option, without binary file filter can not work.
9993 Currently file can be found here:
9994 https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
9995
9996 @item deint
9997 Set which frames to deinterlace, by default it is @code{all}.
9998 Can be @code{all} or @code{interlaced}.
9999
10000 @item field
10001 Set mode of operation.
10002
10003 Can be one of the following:
10004
10005 @table @samp
10006 @item af
10007 Use frame flags, both fields.
10008 @item a
10009 Use frame flags, single field.
10010 @item t
10011 Use top field only.
10012 @item b
10013 Use bottom field only.
10014 @item tf
10015 Use both fields, top first.
10016 @item bf
10017 Use both fields, bottom first.
10018 @end table
10019
10020 @item planes
10021 Set which planes to process, by default filter process all frames.
10022
10023 @item nsize
10024 Set size of local neighborhood around each pixel, used by the predictor neural
10025 network.
10026
10027 Can be one of the following:
10028
10029 @table @samp
10030 @item s8x6
10031 @item s16x6
10032 @item s32x6
10033 @item s48x6
10034 @item s8x4
10035 @item s16x4
10036 @item s32x4
10037 @end table
10038
10039 @item nns
10040 Set the number of neurons in predicctor neural network.
10041 Can be one of the following:
10042
10043 @table @samp
10044 @item n16
10045 @item n32
10046 @item n64
10047 @item n128
10048 @item n256
10049 @end table
10050
10051 @item qual
10052 Controls the number of different neural network predictions that are blended
10053 together to compute the final output value. Can be @code{fast}, default or
10054 @code{slow}.
10055
10056 @item etype
10057 Set which set of weights to use in the predictor.
10058 Can be one of the following:
10059
10060 @table @samp
10061 @item a
10062 weights trained to minimize absolute error
10063 @item s
10064 weights trained to minimize squared error
10065 @end table
10066
10067 @item pscrn
10068 Controls whether or not the prescreener neural network is used to decide
10069 which pixels should be processed by the predictor neural network and which
10070 can be handled by simple cubic interpolation.
10071 The prescreener is trained to know whether cubic interpolation will be
10072 sufficient for a pixel or whether it should be predicted by the predictor nn.
10073 The computational complexity of the prescreener nn is much less than that of
10074 the predictor nn. Since most pixels can be handled by cubic interpolation,
10075 using the prescreener generally results in much faster processing.
10076 The prescreener is pretty accurate, so the difference between using it and not
10077 using it is almost always unnoticeable.
10078
10079 Can be one of the following:
10080
10081 @table @samp
10082 @item none
10083 @item original
10084 @item new
10085 @end table
10086
10087 Default is @code{new}.
10088
10089 @item fapprox
10090 Set various debugging flags.
10091 @end table
10092
10093 @section noformat
10094
10095 Force libavfilter not to use any of the specified pixel formats for the
10096 input to the next filter.
10097
10098 It accepts the following parameters:
10099 @table @option
10100
10101 @item pix_fmts
10102 A '|'-separated list of pixel format names, such as
10103 apix_fmts=yuv420p|monow|rgb24".
10104
10105 @end table
10106
10107 @subsection Examples
10108
10109 @itemize
10110 @item
10111 Force libavfilter to use a format different from @var{yuv420p} for the
10112 input to the vflip filter:
10113 @example
10114 noformat=pix_fmts=yuv420p,vflip
10115 @end example
10116
10117 @item
10118 Convert the input video to any of the formats not contained in the list:
10119 @example
10120 noformat=yuv420p|yuv444p|yuv410p
10121 @end example
10122 @end itemize
10123
10124 @section noise
10125
10126 Add noise on video input frame.
10127
10128 The filter accepts the following options:
10129
10130 @table @option
10131 @item all_seed
10132 @item c0_seed
10133 @item c1_seed
10134 @item c2_seed
10135 @item c3_seed
10136 Set noise seed for specific pixel component or all pixel components in case
10137 of @var{all_seed}. Default value is @code{123457}.
10138
10139 @item all_strength, alls
10140 @item c0_strength, c0s
10141 @item c1_strength, c1s
10142 @item c2_strength, c2s
10143 @item c3_strength, c3s
10144 Set noise strength for specific pixel component or all pixel components in case
10145 @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
10146
10147 @item all_flags, allf
10148 @item c0_flags, c0f
10149 @item c1_flags, c1f
10150 @item c2_flags, c2f
10151 @item c3_flags, c3f
10152 Set pixel component flags or set flags for all components if @var{all_flags}.
10153 Available values for component flags are:
10154 @table @samp
10155 @item a
10156 averaged temporal noise (smoother)
10157 @item p
10158 mix random noise with a (semi)regular pattern
10159 @item t
10160 temporal noise (noise pattern changes between frames)
10161 @item u
10162 uniform noise (gaussian otherwise)
10163 @end table
10164 @end table
10165
10166 @subsection Examples
10167
10168 Add temporal and uniform noise to input video:
10169 @example
10170 noise=alls=20:allf=t+u
10171 @end example
10172
10173 @section null
10174
10175 Pass the video source unchanged to the output.
10176
10177 @section ocr
10178 Optical Character Recognition
10179
10180 This filter uses Tesseract for optical character recognition.
10181
10182 It accepts the following options:
10183
10184 @table @option
10185 @item datapath
10186 Set datapath to tesseract data. Default is to use whatever was
10187 set at installation.
10188
10189 @item language
10190 Set language, default is "eng".
10191
10192 @item whitelist
10193 Set character whitelist.
10194
10195 @item blacklist
10196 Set character blacklist.
10197 @end table
10198
10199 The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
10200
10201 @section ocv
10202
10203 Apply a video transform using libopencv.
10204
10205 To enable this filter, install the libopencv library and headers and
10206 configure FFmpeg with @code{--enable-libopencv}.
10207
10208 It accepts the following parameters:
10209
10210 @table @option
10211
10212 @item filter_name
10213 The name of the libopencv filter to apply.
10214
10215 @item filter_params
10216 The parameters to pass to the libopencv filter. If not specified, the default
10217 values are assumed.
10218
10219 @end table
10220
10221 Refer to the official libopencv documentation for more precise
10222 information:
10223 @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
10224
10225 Several libopencv filters are supported; see the following subsections.
10226
10227 @anchor{dilate}
10228 @subsection dilate
10229
10230 Dilate an image by using a specific structuring element.
10231 It corresponds to the libopencv function @code{cvDilate}.
10232
10233 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
10234
10235 @var{struct_el} represents a structuring element, and has the syntax:
10236 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
10237
10238 @var{cols} and @var{rows} represent the number of columns and rows of
10239 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
10240 point, and @var{shape} the shape for the structuring element. @var{shape}
10241 must be "rect", "cross", "ellipse", or "custom".
10242
10243 If the value for @var{shape} is "custom", it must be followed by a
10244 string of the form "=@var{filename}". The file with name
10245 @var{filename} is assumed to represent a binary image, with each
10246 printable character corresponding to a bright pixel. When a custom
10247 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
10248 or columns and rows of the read file are assumed instead.
10249
10250 The default value for @var{struct_el} is "3x3+0x0/rect".
10251
10252 @var{nb_iterations} specifies the number of times the transform is
10253 applied to the image, and defaults to 1.
10254
10255 Some examples:
10256 @example
10257 # Use the default values
10258 ocv=dilate
10259
10260 # Dilate using a structuring element with a 5x5 cross, iterating two times
10261 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
10262
10263 # Read the shape from the file diamond.shape, iterating two times.
10264 # The file diamond.shape may contain a pattern of characters like this
10265 #   *
10266 #  ***
10267 # *****
10268 #  ***
10269 #   *
10270 # The specified columns and rows are ignored
10271 # but the anchor point coordinates are not
10272 ocv=dilate:0x0+2x2/custom=diamond.shape|2
10273 @end example
10274
10275 @subsection erode
10276
10277 Erode an image by using a specific structuring element.
10278 It corresponds to the libopencv function @code{cvErode}.
10279
10280 It accepts the parameters: @var{struct_el}:@var{nb_iterations},
10281 with the same syntax and semantics as the @ref{dilate} filter.
10282
10283 @subsection smooth
10284
10285 Smooth the input video.
10286
10287 The filter takes the following parameters:
10288 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
10289
10290 @var{type} is the type of smooth filter to apply, and must be one of
10291 the following values: "blur", "blur_no_scale", "median", "gaussian",
10292 or "bilateral". The default value is "gaussian".
10293
10294 The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
10295 depend on the smooth type. @var{param1} and
10296 @var{param2} accept integer positive values or 0. @var{param3} and
10297 @var{param4} accept floating point values.
10298
10299 The default value for @var{param1} is 3. The default value for the
10300 other parameters is 0.
10301
10302 These parameters correspond to the parameters assigned to the
10303 libopencv function @code{cvSmooth}.
10304
10305 @section oscilloscope
10306
10307 2D Video Oscilloscope.
10308
10309 Useful to measure spatial impulse, step responses, chroma delays, etc.
10310
10311 It accepts the following parameters:
10312
10313 @table @option
10314 @item x
10315 Set scope center x position.
10316
10317 @item y
10318 Set scope center y position.
10319
10320 @item s
10321 Set scope size, relative to frame diagonal.
10322
10323 @item t
10324 Set scope tilt/rotation.
10325
10326 @item o
10327 Set trace opacity.
10328
10329 @item tx
10330 Set trace center x position.
10331
10332 @item ty
10333 Set trace center y position.
10334
10335 @item tw
10336 Set trace width, relative to width of frame.
10337
10338 @item th
10339 Set trace height, relative to height of frame.
10340
10341 @item c
10342 Set which components to trace. By default it traces first three components.
10343
10344 @item g
10345 Draw trace grid. By default is enabled.
10346
10347 @item st
10348 Draw some statistics. By default is enabled.
10349
10350 @item sc
10351 Draw scope. By default is enabled.
10352 @end table
10353
10354 @subsection Examples
10355
10356 @itemize
10357 @item
10358 Inspect full first row of video frame.
10359 @example
10360 oscilloscope=x=0.5:y=0:s=1
10361 @end example
10362
10363 @item
10364 Inspect full last row of video frame.
10365 @example
10366 oscilloscope=x=0.5:y=1:s=1
10367 @end example
10368
10369 @item
10370 Inspect full 5th line of video frame of height 1080.
10371 @example
10372 oscilloscope=x=0.5:y=5/1080:s=1
10373 @end example
10374
10375 @item
10376 Inspect full last column of video frame.
10377 @example
10378 oscilloscope=x=1:y=0.5:s=1:t=1
10379 @end example
10380
10381 @end itemize
10382
10383 @anchor{overlay}
10384 @section overlay
10385
10386 Overlay one video on top of another.
10387
10388 It takes two inputs and has one output. The first input is the "main"
10389 video on which the second input is overlaid.
10390
10391 It accepts the following parameters:
10392
10393 A description of the accepted options follows.
10394
10395 @table @option
10396 @item x
10397 @item y
10398 Set the expression for the x and y coordinates of the overlaid video
10399 on the main video. Default value is "0" for both expressions. In case
10400 the expression is invalid, it is set to a huge value (meaning that the
10401 overlay will not be displayed within the output visible area).
10402
10403 @item eof_action
10404 The action to take when EOF is encountered on the secondary input; it accepts
10405 one of the following values:
10406
10407 @table @option
10408 @item repeat
10409 Repeat the last frame (the default).
10410 @item endall
10411 End both streams.
10412 @item pass
10413 Pass the main input through.
10414 @end table
10415
10416 @item eval
10417 Set when the expressions for @option{x}, and @option{y} are evaluated.
10418
10419 It accepts the following values:
10420 @table @samp
10421 @item init
10422 only evaluate expressions once during the filter initialization or
10423 when a command is processed
10424
10425 @item frame
10426 evaluate expressions for each incoming frame
10427 @end table
10428
10429 Default value is @samp{frame}.
10430
10431 @item shortest
10432 If set to 1, force the output to terminate when the shortest input
10433 terminates. Default value is 0.
10434
10435 @item format
10436 Set the format for the output video.
10437
10438 It accepts the following values:
10439 @table @samp
10440 @item yuv420
10441 force YUV420 output
10442
10443 @item yuv422
10444 force YUV422 output
10445
10446 @item yuv444
10447 force YUV444 output
10448
10449 @item rgb
10450 force packed RGB output
10451
10452 @item gbrp
10453 force planar RGB output
10454 @end table
10455
10456 Default value is @samp{yuv420}.
10457
10458 @item rgb @emph{(deprecated)}
10459 If set to 1, force the filter to accept inputs in the RGB
10460 color space. Default value is 0. This option is deprecated, use
10461 @option{format} instead.
10462
10463 @item repeatlast
10464 If set to 1, force the filter to draw the last overlay frame over the
10465 main input until the end of the stream. A value of 0 disables this
10466 behavior. Default value is 1.
10467 @end table
10468
10469 The @option{x}, and @option{y} expressions can contain the following
10470 parameters.
10471
10472 @table @option
10473 @item main_w, W
10474 @item main_h, H
10475 The main input width and height.
10476
10477 @item overlay_w, w
10478 @item overlay_h, h
10479 The overlay input width and height.
10480
10481 @item x
10482 @item y
10483 The computed values for @var{x} and @var{y}. They are evaluated for
10484 each new frame.
10485
10486 @item hsub
10487 @item vsub
10488 horizontal and vertical chroma subsample values of the output
10489 format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
10490 @var{vsub} is 1.
10491
10492 @item n
10493 the number of input frame, starting from 0
10494
10495 @item pos
10496 the position in the file of the input frame, NAN if unknown
10497
10498 @item t
10499 The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
10500
10501 @end table
10502
10503 Note that the @var{n}, @var{pos}, @var{t} variables are available only
10504 when evaluation is done @emph{per frame}, and will evaluate to NAN
10505 when @option{eval} is set to @samp{init}.
10506
10507 Be aware that frames are taken from each input video in timestamp
10508 order, hence, if their initial timestamps differ, it is a good idea
10509 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
10510 have them begin in the same zero timestamp, as the example for
10511 the @var{movie} filter does.
10512
10513 You can chain together more overlays but you should test the
10514 efficiency of such approach.
10515
10516 @subsection Commands
10517
10518 This filter supports the following commands:
10519 @table @option
10520 @item x
10521 @item y
10522 Modify the x and y of the overlay input.
10523 The command accepts the same syntax of the corresponding option.
10524
10525 If the specified expression is not valid, it is kept at its current
10526 value.
10527 @end table
10528
10529 @subsection Examples
10530
10531 @itemize
10532 @item
10533 Draw the overlay at 10 pixels from the bottom right corner of the main
10534 video:
10535 @example
10536 overlay=main_w-overlay_w-10:main_h-overlay_h-10
10537 @end example
10538
10539 Using named options the example above becomes:
10540 @example
10541 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
10542 @end example
10543
10544 @item
10545 Insert a transparent PNG logo in the bottom left corner of the input,
10546 using the @command{ffmpeg} tool with the @code{-filter_complex} option:
10547 @example
10548 ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
10549 @end example
10550
10551 @item
10552 Insert 2 different transparent PNG logos (second logo on bottom
10553 right corner) using the @command{ffmpeg} tool:
10554 @example
10555 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
10556 @end example
10557
10558 @item
10559 Add a transparent color layer on top of the main video; @code{WxH}
10560 must specify the size of the main input to the overlay filter:
10561 @example
10562 color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
10563 @end example
10564
10565 @item
10566 Play an original video and a filtered version (here with the deshake
10567 filter) side by side using the @command{ffplay} tool:
10568 @example
10569 ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
10570 @end example
10571
10572 The above command is the same as:
10573 @example
10574 ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
10575 @end example
10576
10577 @item
10578 Make a sliding overlay appearing from the left to the right top part of the
10579 screen starting since time 2:
10580 @example
10581 overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
10582 @end example
10583
10584 @item
10585 Compose output by putting two input videos side to side:
10586 @example
10587 ffmpeg -i left.avi -i right.avi -filter_complex "
10588 nullsrc=size=200x100 [background];
10589 [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
10590 [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
10591 [background][left]       overlay=shortest=1       [background+left];
10592 [background+left][right] overlay=shortest=1:x=100 [left+right]
10593 "
10594 @end example
10595
10596 @item
10597 Mask 10-20 seconds of a video by applying the delogo filter to a section
10598 @example
10599 ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
10600 -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]'
10601 masked.avi
10602 @end example
10603
10604 @item
10605 Chain several overlays in cascade:
10606 @example
10607 nullsrc=s=200x200 [bg];
10608 testsrc=s=100x100, split=4 [in0][in1][in2][in3];
10609 [in0] lutrgb=r=0, [bg]   overlay=0:0     [mid0];
10610 [in1] lutrgb=g=0, [mid0] overlay=100:0   [mid1];
10611 [in2] lutrgb=b=0, [mid1] overlay=0:100   [mid2];
10612 [in3] null,       [mid2] overlay=100:100 [out0]
10613 @end example
10614
10615 @end itemize
10616
10617 @section owdenoise
10618
10619 Apply Overcomplete Wavelet denoiser.
10620
10621 The filter accepts the following options:
10622
10623 @table @option
10624 @item depth
10625 Set depth.
10626
10627 Larger depth values will denoise lower frequency components more, but
10628 slow down filtering.
10629
10630 Must be an int in the range 8-16, default is @code{8}.
10631
10632 @item luma_strength, ls
10633 Set luma strength.
10634
10635 Must be a double value in the range 0-1000, default is @code{1.0}.
10636
10637 @item chroma_strength, cs
10638 Set chroma strength.
10639
10640 Must be a double value in the range 0-1000, default is @code{1.0}.
10641 @end table
10642
10643 @anchor{pad}
10644 @section pad
10645
10646 Add paddings to the input image, and place the original input at the
10647 provided @var{x}, @var{y} coordinates.
10648
10649 It accepts the following parameters:
10650
10651 @table @option
10652 @item width, w
10653 @item height, h
10654 Specify an expression for the size of the output image with the
10655 paddings added. If the value for @var{width} or @var{height} is 0, the
10656 corresponding input size is used for the output.
10657
10658 The @var{width} expression can reference the value set by the
10659 @var{height} expression, and vice versa.
10660
10661 The default value of @var{width} and @var{height} is 0.
10662
10663 @item x
10664 @item y
10665 Specify the offsets to place the input image at within the padded area,
10666 with respect to the top/left border of the output image.
10667
10668 The @var{x} expression can reference the value set by the @var{y}
10669 expression, and vice versa.
10670
10671 The default value of @var{x} and @var{y} is 0.
10672
10673 If @var{x} or @var{y} evaluate to a negative number, they'll be changed
10674 so the input image is centered on the padded area.
10675
10676 @item color
10677 Specify the color of the padded area. For the syntax of this option,
10678 check the "Color" section in the ffmpeg-utils manual.
10679
10680 The default value of @var{color} is "black".
10681
10682 @item eval
10683 Specify when to evaluate  @var{width}, @var{height}, @var{x} and @var{y} expression.
10684
10685 It accepts the following values:
10686
10687 @table @samp
10688 @item init
10689 Only evaluate expressions once during the filter initialization or when
10690 a command is processed.
10691
10692 @item frame
10693 Evaluate expressions for each incoming frame.
10694
10695 @end table
10696
10697 Default value is @samp{init}.
10698
10699 @item aspect
10700 Pad to aspect instead to a resolution.
10701
10702 @end table
10703
10704 The value for the @var{width}, @var{height}, @var{x}, and @var{y}
10705 options are expressions containing the following constants:
10706
10707 @table @option
10708 @item in_w
10709 @item in_h
10710 The input video width and height.
10711
10712 @item iw
10713 @item ih
10714 These are the same as @var{in_w} and @var{in_h}.
10715
10716 @item out_w
10717 @item out_h
10718 The output width and height (the size of the padded area), as
10719 specified by the @var{width} and @var{height} expressions.
10720
10721 @item ow
10722 @item oh
10723 These are the same as @var{out_w} and @var{out_h}.
10724
10725 @item x
10726 @item y
10727 The x and y offsets as specified by the @var{x} and @var{y}
10728 expressions, or NAN if not yet specified.
10729
10730 @item a
10731 same as @var{iw} / @var{ih}
10732
10733 @item sar
10734 input sample aspect ratio
10735
10736 @item dar
10737 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
10738
10739 @item hsub
10740 @item vsub
10741 The horizontal and vertical chroma subsample values. For example for the
10742 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
10743 @end table
10744
10745 @subsection Examples
10746
10747 @itemize
10748 @item
10749 Add paddings with the color "violet" to the input video. The output video
10750 size is 640x480, and the top-left corner of the input video is placed at
10751 column 0, row 40
10752 @example
10753 pad=640:480:0:40:violet
10754 @end example
10755
10756 The example above is equivalent to the following command:
10757 @example
10758 pad=width=640:height=480:x=0:y=40:color=violet
10759 @end example
10760
10761 @item
10762 Pad the input to get an output with dimensions increased by 3/2,
10763 and put the input video at the center of the padded area:
10764 @example
10765 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
10766 @end example
10767
10768 @item
10769 Pad the input to get a squared output with size equal to the maximum
10770 value between the input width and height, and put the input video at
10771 the center of the padded area:
10772 @example
10773 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
10774 @end example
10775
10776 @item
10777 Pad the input to get a final w/h ratio of 16:9:
10778 @example
10779 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
10780 @end example
10781
10782 @item
10783 In case of anamorphic video, in order to set the output display aspect
10784 correctly, it is necessary to use @var{sar} in the expression,
10785 according to the relation:
10786 @example
10787 (ih * X / ih) * sar = output_dar
10788 X = output_dar / sar
10789 @end example
10790
10791 Thus the previous example needs to be modified to:
10792 @example
10793 pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
10794 @end example
10795
10796 @item
10797 Double the output size and put the input video in the bottom-right
10798 corner of the output padded area:
10799 @example
10800 pad="2*iw:2*ih:ow-iw:oh-ih"
10801 @end example
10802 @end itemize
10803
10804 @anchor{palettegen}
10805 @section palettegen
10806
10807 Generate one palette for a whole video stream.
10808
10809 It accepts the following options:
10810
10811 @table @option
10812 @item max_colors
10813 Set the maximum number of colors to quantize in the palette.
10814 Note: the palette will still contain 256 colors; the unused palette entries
10815 will be black.
10816
10817 @item reserve_transparent
10818 Create a palette of 255 colors maximum and reserve the last one for
10819 transparency. Reserving the transparency color is useful for GIF optimization.
10820 If not set, the maximum of colors in the palette will be 256. You probably want
10821 to disable this option for a standalone image.
10822 Set by default.
10823
10824 @item stats_mode
10825 Set statistics mode.
10826
10827 It accepts the following values:
10828 @table @samp
10829 @item full
10830 Compute full frame histograms.
10831 @item diff
10832 Compute histograms only for the part that differs from previous frame. This
10833 might be relevant to give more importance to the moving part of your input if
10834 the background is static.
10835 @item single
10836 Compute new histogram for each frame.
10837 @end table
10838
10839 Default value is @var{full}.
10840 @end table
10841
10842 The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
10843 (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
10844 color quantization of the palette. This information is also visible at
10845 @var{info} logging level.
10846
10847 @subsection Examples
10848
10849 @itemize
10850 @item
10851 Generate a representative palette of a given video using @command{ffmpeg}:
10852 @example
10853 ffmpeg -i input.mkv -vf palettegen palette.png
10854 @end example
10855 @end itemize
10856
10857 @section paletteuse
10858
10859 Use a palette to downsample an input video stream.
10860
10861 The filter takes two inputs: one video stream and a palette. The palette must
10862 be a 256 pixels image.
10863
10864 It accepts the following options:
10865
10866 @table @option
10867 @item dither
10868 Select dithering mode. Available algorithms are:
10869 @table @samp
10870 @item bayer
10871 Ordered 8x8 bayer dithering (deterministic)
10872 @item heckbert
10873 Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
10874 Note: this dithering is sometimes considered "wrong" and is included as a
10875 reference.
10876 @item floyd_steinberg
10877 Floyd and Steingberg dithering (error diffusion)
10878 @item sierra2
10879 Frankie Sierra dithering v2 (error diffusion)
10880 @item sierra2_4a
10881 Frankie Sierra dithering v2 "Lite" (error diffusion)
10882 @end table
10883
10884 Default is @var{sierra2_4a}.
10885
10886 @item bayer_scale
10887 When @var{bayer} dithering is selected, this option defines the scale of the
10888 pattern (how much the crosshatch pattern is visible). A low value means more
10889 visible pattern for less banding, and higher value means less visible pattern
10890 at the cost of more banding.
10891
10892 The option must be an integer value in the range [0,5]. Default is @var{2}.
10893
10894 @item diff_mode
10895 If set, define the zone to process
10896
10897 @table @samp
10898 @item rectangle
10899 Only the changing rectangle will be reprocessed. This is similar to GIF
10900 cropping/offsetting compression mechanism. This option can be useful for speed
10901 if only a part of the image is changing, and has use cases such as limiting the
10902 scope of the error diffusal @option{dither} to the rectangle that bounds the
10903 moving scene (it leads to more deterministic output if the scene doesn't change
10904 much, and as a result less moving noise and better GIF compression).
10905 @end table
10906
10907 Default is @var{none}.
10908
10909 @item new
10910 Take new palette for each output frame.
10911 @end table
10912
10913 @subsection Examples
10914
10915 @itemize
10916 @item
10917 Use a palette (generated for example with @ref{palettegen}) to encode a GIF
10918 using @command{ffmpeg}:
10919 @example
10920 ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
10921 @end example
10922 @end itemize
10923
10924 @section perspective
10925
10926 Correct perspective of video not recorded perpendicular to the screen.
10927
10928 A description of the accepted parameters follows.
10929
10930 @table @option
10931 @item x0
10932 @item y0
10933 @item x1
10934 @item y1
10935 @item x2
10936 @item y2
10937 @item x3
10938 @item y3
10939 Set coordinates expression for top left, top right, bottom left and bottom right corners.
10940 Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
10941 If the @code{sense} option is set to @code{source}, then the specified points will be sent
10942 to the corners of the destination. If the @code{sense} option is set to @code{destination},
10943 then the corners of the source will be sent to the specified coordinates.
10944
10945 The expressions can use the following variables:
10946
10947 @table @option
10948 @item W
10949 @item H
10950 the width and height of video frame.
10951 @item in
10952 Input frame count.
10953 @item on
10954 Output frame count.
10955 @end table
10956
10957 @item interpolation
10958 Set interpolation for perspective correction.
10959
10960 It accepts the following values:
10961 @table @samp
10962 @item linear
10963 @item cubic
10964 @end table
10965
10966 Default value is @samp{linear}.
10967
10968 @item sense
10969 Set interpretation of coordinate options.
10970
10971 It accepts the following values:
10972 @table @samp
10973 @item 0, source
10974
10975 Send point in the source specified by the given coordinates to
10976 the corners of the destination.
10977
10978 @item 1, destination
10979
10980 Send the corners of the source to the point in the destination specified
10981 by the given coordinates.
10982
10983 Default value is @samp{source}.
10984 @end table
10985
10986 @item eval
10987 Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
10988
10989 It accepts the following values:
10990 @table @samp
10991 @item init
10992 only evaluate expressions once during the filter initialization or
10993 when a command is processed
10994
10995 @item frame
10996 evaluate expressions for each incoming frame
10997 @end table
10998
10999 Default value is @samp{init}.
11000 @end table
11001
11002 @section phase
11003
11004 Delay interlaced video by one field time so that the field order changes.
11005
11006 The intended use is to fix PAL movies that have been captured with the
11007 opposite field order to the film-to-video transfer.
11008
11009 A description of the accepted parameters follows.
11010
11011 @table @option
11012 @item mode
11013 Set phase mode.
11014
11015 It accepts the following values:
11016 @table @samp
11017 @item t
11018 Capture field order top-first, transfer bottom-first.
11019 Filter will delay the bottom field.
11020
11021 @item b
11022 Capture field order bottom-first, transfer top-first.
11023 Filter will delay the top field.
11024
11025 @item p
11026 Capture and transfer with the same field order. This mode only exists
11027 for the documentation of the other options to refer to, but if you
11028 actually select it, the filter will faithfully do nothing.
11029
11030 @item a
11031 Capture field order determined automatically by field flags, transfer
11032 opposite.
11033 Filter selects among @samp{t} and @samp{b} modes on a frame by frame
11034 basis using field flags. If no field information is available,
11035 then this works just like @samp{u}.
11036
11037 @item u
11038 Capture unknown or varying, transfer opposite.
11039 Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
11040 analyzing the images and selecting the alternative that produces best
11041 match between the fields.
11042
11043 @item T
11044 Capture top-first, transfer unknown or varying.
11045 Filter selects among @samp{t} and @samp{p} using image analysis.
11046
11047 @item B
11048 Capture bottom-first, transfer unknown or varying.
11049 Filter selects among @samp{b} and @samp{p} using image analysis.
11050
11051 @item A
11052 Capture determined by field flags, transfer unknown or varying.
11053 Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
11054 image analysis. If no field information is available, then this works just
11055 like @samp{U}. This is the default mode.
11056
11057 @item U
11058 Both capture and transfer unknown or varying.
11059 Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
11060 @end table
11061 @end table
11062
11063 @section pixdesctest
11064
11065 Pixel format descriptor test filter, mainly useful for internal
11066 testing. The output video should be equal to the input video.
11067
11068 For example:
11069 @example
11070 format=monow, pixdesctest
11071 @end example
11072
11073 can be used to test the monowhite pixel format descriptor definition.
11074
11075 @section pixscope
11076
11077 Display sample values of color channels. Mainly useful for checking color and levels.
11078
11079 The filters accept the following options:
11080
11081 @table @option
11082 @item x
11083 Set scope X position, offset on X axis.
11084
11085 @item y
11086 Set scope Y position, offset on Y axis.
11087
11088 @item w
11089 Set scope width.
11090
11091 @item h
11092 Set scope height.
11093
11094 @item o
11095 Set window opacity. This window also holds statistics about pixel area.
11096 @end table
11097
11098 @section pp
11099
11100 Enable the specified chain of postprocessing subfilters using libpostproc. This
11101 library should be automatically selected with a GPL build (@code{--enable-gpl}).
11102 Subfilters must be separated by '/' and can be disabled by prepending a '-'.
11103 Each subfilter and some options have a short and a long name that can be used
11104 interchangeably, i.e. dr/dering are the same.
11105
11106 The filters accept the following options:
11107
11108 @table @option
11109 @item subfilters
11110 Set postprocessing subfilters string.
11111 @end table
11112
11113 All subfilters share common options to determine their scope:
11114
11115 @table @option
11116 @item a/autoq
11117 Honor the quality commands for this subfilter.
11118
11119 @item c/chrom
11120 Do chrominance filtering, too (default).
11121
11122 @item y/nochrom
11123 Do luminance filtering only (no chrominance).
11124
11125 @item n/noluma
11126 Do chrominance filtering only (no luminance).
11127 @end table
11128
11129 These options can be appended after the subfilter name, separated by a '|'.
11130
11131 Available subfilters are:
11132
11133 @table @option
11134 @item hb/hdeblock[|difference[|flatness]]
11135 Horizontal deblocking filter
11136 @table @option
11137 @item difference
11138 Difference factor where higher values mean more deblocking (default: @code{32}).
11139 @item flatness
11140 Flatness threshold where lower values mean more deblocking (default: @code{39}).
11141 @end table
11142
11143 @item vb/vdeblock[|difference[|flatness]]
11144 Vertical deblocking filter
11145 @table @option
11146 @item difference
11147 Difference factor where higher values mean more deblocking (default: @code{32}).
11148 @item flatness
11149 Flatness threshold where lower values mean more deblocking (default: @code{39}).
11150 @end table
11151
11152 @item ha/hadeblock[|difference[|flatness]]
11153 Accurate horizontal deblocking filter
11154 @table @option
11155 @item difference
11156 Difference factor where higher values mean more deblocking (default: @code{32}).
11157 @item flatness
11158 Flatness threshold where lower values mean more deblocking (default: @code{39}).
11159 @end table
11160
11161 @item va/vadeblock[|difference[|flatness]]
11162 Accurate vertical deblocking filter
11163 @table @option
11164 @item difference
11165 Difference factor where higher values mean more deblocking (default: @code{32}).
11166 @item flatness
11167 Flatness threshold where lower values mean more deblocking (default: @code{39}).
11168 @end table
11169 @end table
11170
11171 The horizontal and vertical deblocking filters share the difference and
11172 flatness values so you cannot set different horizontal and vertical
11173 thresholds.
11174
11175 @table @option
11176 @item h1/x1hdeblock
11177 Experimental horizontal deblocking filter
11178
11179 @item v1/x1vdeblock
11180 Experimental vertical deblocking filter
11181
11182 @item dr/dering
11183 Deringing filter
11184
11185 @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
11186 @table @option
11187 @item threshold1
11188 larger -> stronger filtering
11189 @item threshold2
11190 larger -> stronger filtering
11191 @item threshold3
11192 larger -> stronger filtering
11193 @end table
11194
11195 @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
11196 @table @option
11197 @item f/fullyrange
11198 Stretch luminance to @code{0-255}.
11199 @end table
11200
11201 @item lb/linblenddeint
11202 Linear blend deinterlacing filter that deinterlaces the given block by
11203 filtering all lines with a @code{(1 2 1)} filter.
11204
11205 @item li/linipoldeint
11206 Linear interpolating deinterlacing filter that deinterlaces the given block by
11207 linearly interpolating every second line.
11208
11209 @item ci/cubicipoldeint
11210 Cubic interpolating deinterlacing filter deinterlaces the given block by
11211 cubically interpolating every second line.
11212
11213 @item md/mediandeint
11214 Median deinterlacing filter that deinterlaces the given block by applying a
11215 median filter to every second line.
11216
11217 @item fd/ffmpegdeint
11218 FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
11219 second line with a @code{(-1 4 2 4 -1)} filter.
11220
11221 @item l5/lowpass5
11222 Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
11223 block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
11224
11225 @item fq/forceQuant[|quantizer]
11226 Overrides the quantizer table from the input with the constant quantizer you
11227 specify.
11228 @table @option
11229 @item quantizer
11230 Quantizer to use
11231 @end table
11232
11233 @item de/default
11234 Default pp filter combination (@code{hb|a,vb|a,dr|a})
11235
11236 @item fa/fast
11237 Fast pp filter combination (@code{h1|a,v1|a,dr|a})
11238
11239 @item ac
11240 High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
11241 @end table
11242
11243 @subsection Examples
11244
11245 @itemize
11246 @item
11247 Apply horizontal and vertical deblocking, deringing and automatic
11248 brightness/contrast:
11249 @example
11250 pp=hb/vb/dr/al
11251 @end example
11252
11253 @item
11254 Apply default filters without brightness/contrast correction:
11255 @example
11256 pp=de/-al
11257 @end example
11258
11259 @item
11260 Apply default filters and temporal denoiser:
11261 @example
11262 pp=default/tmpnoise|1|2|3
11263 @end example
11264
11265 @item
11266 Apply deblocking on luminance only, and switch vertical deblocking on or off
11267 automatically depending on available CPU time:
11268 @example
11269 pp=hb|y/vb|a
11270 @end example
11271 @end itemize
11272
11273 @section pp7
11274 Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
11275 similar to spp = 6 with 7 point DCT, where only the center sample is
11276 used after IDCT.
11277
11278 The filter accepts the following options:
11279
11280 @table @option
11281 @item qp
11282 Force a constant quantization parameter. It accepts an integer in range
11283 0 to 63. If not set, the filter will use the QP from the video stream
11284 (if available).
11285
11286 @item mode
11287 Set thresholding mode. Available modes are:
11288
11289 @table @samp
11290 @item hard
11291 Set hard thresholding.
11292 @item soft
11293 Set soft thresholding (better de-ringing effect, but likely blurrier).
11294 @item medium
11295 Set medium thresholding (good results, default).
11296 @end table
11297 @end table
11298
11299 @section premultiply
11300 Apply alpha premultiply effect to input video stream using first plane
11301 of second stream as alpha.
11302
11303 Both streams must have same dimensions and same pixel format.
11304
11305 The filter accepts the following option:
11306
11307 @table @option
11308 @item planes
11309 Set which planes will be processed, unprocessed planes will be copied.
11310 By default value 0xf, all planes will be processed.
11311 @end table
11312
11313 @section prewitt
11314 Apply prewitt operator to input video stream.
11315
11316 The filter accepts the following option:
11317
11318 @table @option
11319 @item planes
11320 Set which planes will be processed, unprocessed planes will be copied.
11321 By default value 0xf, all planes will be processed.
11322
11323 @item scale
11324 Set value which will be multiplied with filtered result.
11325
11326 @item delta
11327 Set value which will be added to filtered result.
11328 @end table
11329
11330 @section psnr
11331
11332 Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
11333 Ratio) between two input videos.
11334
11335 This filter takes in input two input videos, the first input is
11336 considered the "main" source and is passed unchanged to the
11337 output. The second input is used as a "reference" video for computing
11338 the PSNR.
11339
11340 Both video inputs must have the same resolution and pixel format for
11341 this filter to work correctly. Also it assumes that both inputs
11342 have the same number of frames, which are compared one by one.
11343
11344 The obtained average PSNR is printed through the logging system.
11345
11346 The filter stores the accumulated MSE (mean squared error) of each
11347 frame, and at the end of the processing it is averaged across all frames
11348 equally, and the following formula is applied to obtain the PSNR:
11349
11350 @example
11351 PSNR = 10*log10(MAX^2/MSE)
11352 @end example
11353
11354 Where MAX is the average of the maximum values of each component of the
11355 image.
11356
11357 The description of the accepted parameters follows.
11358
11359 @table @option
11360 @item stats_file, f
11361 If specified the filter will use the named file to save the PSNR of
11362 each individual frame. When filename equals "-" the data is sent to
11363 standard output.
11364
11365 @item stats_version
11366 Specifies which version of the stats file format to use. Details of
11367 each format are written below.
11368 Default value is 1.
11369
11370 @item stats_add_max
11371 Determines whether the max value is output to the stats log.
11372 Default value is 0.
11373 Requires stats_version >= 2. If this is set and stats_version < 2,
11374 the filter will return an error.
11375 @end table
11376
11377 The file printed if @var{stats_file} is selected, contains a sequence of
11378 key/value pairs of the form @var{key}:@var{value} for each compared
11379 couple of frames.
11380
11381 If a @var{stats_version} greater than 1 is specified, a header line precedes
11382 the list of per-frame-pair stats, with key value pairs following the frame
11383 format with the following parameters:
11384
11385 @table @option
11386 @item psnr_log_version
11387 The version of the log file format. Will match @var{stats_version}.
11388
11389 @item fields
11390 A comma separated list of the per-frame-pair parameters included in
11391 the log.
11392 @end table
11393
11394 A description of each shown per-frame-pair parameter follows:
11395
11396 @table @option
11397 @item n
11398 sequential number of the input frame, starting from 1
11399
11400 @item mse_avg
11401 Mean Square Error pixel-by-pixel average difference of the compared
11402 frames, averaged over all the image components.
11403
11404 @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_g, mse_a
11405 Mean Square Error pixel-by-pixel average difference of the compared
11406 frames for the component specified by the suffix.
11407
11408 @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
11409 Peak Signal to Noise ratio of the compared frames for the component
11410 specified by the suffix.
11411
11412 @item max_avg, max_y, max_u, max_v
11413 Maximum allowed value for each channel, and average over all
11414 channels.
11415 @end table
11416
11417 For example:
11418 @example
11419 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
11420 [main][ref] psnr="stats_file=stats.log" [out]
11421 @end example
11422
11423 On this example the input file being processed is compared with the
11424 reference file @file{ref_movie.mpg}. The PSNR of each individual frame
11425 is stored in @file{stats.log}.
11426
11427 @anchor{pullup}
11428 @section pullup
11429
11430 Pulldown reversal (inverse telecine) filter, capable of handling mixed
11431 hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
11432 content.
11433
11434 The pullup filter is designed to take advantage of future context in making
11435 its decisions. This filter is stateless in the sense that it does not lock
11436 onto a pattern to follow, but it instead looks forward to the following
11437 fields in order to identify matches and rebuild progressive frames.
11438
11439 To produce content with an even framerate, insert the fps filter after
11440 pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
11441 @code{fps=24} for 30fps and the (rare) telecined 25fps input.
11442
11443 The filter accepts the following options:
11444
11445 @table @option
11446 @item jl
11447 @item jr
11448 @item jt
11449 @item jb
11450 These options set the amount of "junk" to ignore at the left, right, top, and
11451 bottom of the image, respectively. Left and right are in units of 8 pixels,
11452 while top and bottom are in units of 2 lines.
11453 The default is 8 pixels on each side.
11454
11455 @item sb
11456 Set the strict breaks. Setting this option to 1 will reduce the chances of
11457 filter generating an occasional mismatched frame, but it may also cause an
11458 excessive number of frames to be dropped during high motion sequences.
11459 Conversely, setting it to -1 will make filter match fields more easily.
11460 This may help processing of video where there is slight blurring between
11461 the fields, but may also cause there to be interlaced frames in the output.
11462 Default value is @code{0}.
11463
11464 @item mp
11465 Set the metric plane to use. It accepts the following values:
11466 @table @samp
11467 @item l
11468 Use luma plane.
11469
11470 @item u
11471 Use chroma blue plane.
11472
11473 @item v
11474 Use chroma red plane.
11475 @end table
11476
11477 This option may be set to use chroma plane instead of the default luma plane
11478 for doing filter's computations. This may improve accuracy on very clean
11479 source material, but more likely will decrease accuracy, especially if there
11480 is chroma noise (rainbow effect) or any grayscale video.
11481 The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
11482 load and make pullup usable in realtime on slow machines.
11483 @end table
11484
11485 For best results (without duplicated frames in the output file) it is
11486 necessary to change the output frame rate. For example, to inverse
11487 telecine NTSC input:
11488 @example
11489 ffmpeg -i input -vf pullup -r 24000/1001 ...
11490 @end example
11491
11492 @section qp
11493
11494 Change video quantization parameters (QP).
11495
11496 The filter accepts the following option:
11497
11498 @table @option
11499 @item qp
11500 Set expression for quantization parameter.
11501 @end table
11502
11503 The expression is evaluated through the eval API and can contain, among others,
11504 the following constants:
11505
11506 @table @var
11507 @item known
11508 1 if index is not 129, 0 otherwise.
11509
11510 @item qp
11511 Sequentional index starting from -129 to 128.
11512 @end table
11513
11514 @subsection Examples
11515
11516 @itemize
11517 @item
11518 Some equation like:
11519 @example
11520 qp=2+2*sin(PI*qp)
11521 @end example
11522 @end itemize
11523
11524 @section random
11525
11526 Flush video frames from internal cache of frames into a random order.
11527 No frame is discarded.
11528 Inspired by @ref{frei0r} nervous filter.
11529
11530 @table @option
11531 @item frames
11532 Set size in number of frames of internal cache, in range from @code{2} to
11533 @code{512}. Default is @code{30}.
11534
11535 @item seed
11536 Set seed for random number generator, must be an integer included between
11537 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
11538 less than @code{0}, the filter will try to use a good random seed on a
11539 best effort basis.
11540 @end table
11541
11542 @section readeia608
11543
11544 Read closed captioning (EIA-608) information from the top lines of a video frame.
11545
11546 This filter adds frame metadata for @code{lavfi.readeia608.X.cc} and
11547 @code{lavfi.readeia608.X.line}, where @code{X} is the number of the identified line
11548 with EIA-608 data (starting from 0). A description of each metadata value follows:
11549
11550 @table @option
11551 @item lavfi.readeia608.X.cc
11552 The two bytes stored as EIA-608 data (printed in hexadecimal).
11553
11554 @item lavfi.readeia608.X.line
11555 The number of the line on which the EIA-608 data was identified and read.
11556 @end table
11557
11558 This filter accepts the following options:
11559
11560 @table @option
11561 @item scan_min
11562 Set the line to start scanning for EIA-608 data. Default is @code{0}.
11563
11564 @item scan_max
11565 Set the line to end scanning for EIA-608 data. Default is @code{29}.
11566
11567 @item mac
11568 Set minimal acceptable amplitude change for sync codes detection.
11569 Default is @code{0.2}. Allowed range is @code{[0.001 - 1]}.
11570
11571 @item spw
11572 Set the ratio of width reserved for sync code detection.
11573 Default is @code{0.27}. Allowed range is @code{[0.01 - 0.7]}.
11574
11575 @item mhd
11576 Set the max peaks height difference for sync code detection.
11577 Default is @code{0.1}. Allowed range is @code{[0.0 - 0.5]}.
11578
11579 @item mpd
11580 Set max peaks period difference for sync code detection.
11581 Default is @code{0.1}. Allowed range is @code{[0.0 - 0.5]}.
11582
11583 @item msd
11584 Set the first two max start code bits differences.
11585 Default is @code{0.02}. Allowed range is @code{[0.0 - 0.5]}.
11586
11587 @item bhd
11588 Set the minimum ratio of bits height compared to 3rd start code bit.
11589 Default is @code{0.75}. Allowed range is @code{[0.01 - 1]}.
11590
11591 @item th_w
11592 Set the white color threshold. Default is @code{0.35}. Allowed range is @code{[0.1 - 1]}.
11593
11594 @item th_b
11595 Set the black color threshold. Default is @code{0.15}. Allowed range is @code{[0.0 - 0.5]}.
11596
11597 @item chp
11598 Enable checking the parity bit. In the event of a parity error, the filter will output
11599 @code{0x00} for that character. Default is false.
11600 @end table
11601
11602 @subsection Examples
11603
11604 @itemize
11605 @item
11606 Output a csv with presentation time and the first two lines of identified EIA-608 captioning data.
11607 @example
11608 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
11609 @end example
11610 @end itemize
11611
11612 @section readvitc
11613
11614 Read vertical interval timecode (VITC) information from the top lines of a
11615 video frame.
11616
11617 The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
11618 timecode value, if a valid timecode has been detected. Further metadata key
11619 @code{lavfi.readvitc.found} is set to 0/1 depending on whether
11620 timecode data has been found or not.
11621
11622 This filter accepts the following options:
11623
11624 @table @option
11625 @item scan_max
11626 Set the maximum number of lines to scan for VITC data. If the value is set to
11627 @code{-1} the full video frame is scanned. Default is @code{45}.
11628
11629 @item thr_b
11630 Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
11631 default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
11632
11633 @item thr_w
11634 Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
11635 default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
11636 @end table
11637
11638 @subsection Examples
11639
11640 @itemize
11641 @item
11642 Detect and draw VITC data onto the video frame; if no valid VITC is detected,
11643 draw @code{--:--:--:--} as a placeholder:
11644 @example
11645 ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
11646 @end example
11647 @end itemize
11648
11649 @section remap
11650
11651 Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
11652
11653 Destination pixel at position (X, Y) will be picked from source (x, y) position
11654 where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
11655 value for pixel will be used for destination pixel.
11656
11657 Xmap and Ymap input video streams must be of same dimensions. Output video stream
11658 will have Xmap/Ymap video stream dimensions.
11659 Xmap and Ymap input video streams are 16bit depth, single channel.
11660
11661 @section removegrain
11662
11663 The removegrain filter is a spatial denoiser for progressive video.
11664
11665 @table @option
11666 @item m0
11667 Set mode for the first plane.
11668
11669 @item m1
11670 Set mode for the second plane.
11671
11672 @item m2
11673 Set mode for the third plane.
11674
11675 @item m3
11676 Set mode for the fourth plane.
11677 @end table
11678
11679 Range of mode is from 0 to 24. Description of each mode follows:
11680
11681 @table @var
11682 @item 0
11683 Leave input plane unchanged. Default.
11684
11685 @item 1
11686 Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
11687
11688 @item 2
11689 Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
11690
11691 @item 3
11692 Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
11693
11694 @item 4
11695 Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
11696 This is equivalent to a median filter.
11697
11698 @item 5
11699 Line-sensitive clipping giving the minimal change.
11700
11701 @item 6
11702 Line-sensitive clipping, intermediate.
11703
11704 @item 7
11705 Line-sensitive clipping, intermediate.
11706
11707 @item 8
11708 Line-sensitive clipping, intermediate.
11709
11710 @item 9
11711 Line-sensitive clipping on a line where the neighbours pixels are the closest.
11712
11713 @item 10
11714 Replaces the target pixel with the closest neighbour.
11715
11716 @item 11
11717 [1 2 1] horizontal and vertical kernel blur.
11718
11719 @item 12
11720 Same as mode 11.
11721
11722 @item 13
11723 Bob mode, interpolates top field from the line where the neighbours
11724 pixels are the closest.
11725
11726 @item 14
11727 Bob mode, interpolates bottom field from the line where the neighbours
11728 pixels are the closest.
11729
11730 @item 15
11731 Bob mode, interpolates top field. Same as 13 but with a more complicated
11732 interpolation formula.
11733
11734 @item 16
11735 Bob mode, interpolates bottom field. Same as 14 but with a more complicated
11736 interpolation formula.
11737
11738 @item 17
11739 Clips the pixel with the minimum and maximum of respectively the maximum and
11740 minimum of each pair of opposite neighbour pixels.
11741
11742 @item 18
11743 Line-sensitive clipping using opposite neighbours whose greatest distance from
11744 the current pixel is minimal.
11745
11746 @item 19
11747 Replaces the pixel with the average of its 8 neighbours.
11748
11749 @item 20
11750 Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
11751
11752 @item 21
11753 Clips pixels using the averages of opposite neighbour.
11754
11755 @item 22
11756 Same as mode 21 but simpler and faster.
11757
11758 @item 23
11759 Small edge and halo removal, but reputed useless.
11760
11761 @item 24
11762 Similar as 23.
11763 @end table
11764
11765 @section removelogo
11766
11767 Suppress a TV station logo, using an image file to determine which
11768 pixels comprise the logo. It works by filling in the pixels that
11769 comprise the logo with neighboring pixels.
11770
11771 The filter accepts the following options:
11772
11773 @table @option
11774 @item filename, f
11775 Set the filter bitmap file, which can be any image format supported by
11776 libavformat. The width and height of the image file must match those of the
11777 video stream being processed.
11778 @end table
11779
11780 Pixels in the provided bitmap image with a value of zero are not
11781 considered part of the logo, non-zero pixels are considered part of
11782 the logo. If you use white (255) for the logo and black (0) for the
11783 rest, you will be safe. For making the filter bitmap, it is
11784 recommended to take a screen capture of a black frame with the logo
11785 visible, and then using a threshold filter followed by the erode
11786 filter once or twice.
11787
11788 If needed, little splotches can be fixed manually. Remember that if
11789 logo pixels are not covered, the filter quality will be much
11790 reduced. Marking too many pixels as part of the logo does not hurt as
11791 much, but it will increase the amount of blurring needed to cover over
11792 the image and will destroy more information than necessary, and extra
11793 pixels will slow things down on a large logo.
11794
11795 @section repeatfields
11796
11797 This filter uses the repeat_field flag from the Video ES headers and hard repeats
11798 fields based on its value.
11799
11800 @section reverse
11801
11802 Reverse a video clip.
11803
11804 Warning: This filter requires memory to buffer the entire clip, so trimming
11805 is suggested.
11806
11807 @subsection Examples
11808
11809 @itemize
11810 @item
11811 Take the first 5 seconds of a clip, and reverse it.
11812 @example
11813 trim=end=5,reverse
11814 @end example
11815 @end itemize
11816
11817 @section rotate
11818
11819 Rotate video by an arbitrary angle expressed in radians.
11820
11821 The filter accepts the following options:
11822
11823 A description of the optional parameters follows.
11824 @table @option
11825 @item angle, a
11826 Set an expression for the angle by which to rotate the input video
11827 clockwise, expressed as a number of radians. A negative value will
11828 result in a counter-clockwise rotation. By default it is set to "0".
11829
11830 This expression is evaluated for each frame.
11831
11832 @item out_w, ow
11833 Set the output width expression, default value is "iw".
11834 This expression is evaluated just once during configuration.
11835
11836 @item out_h, oh
11837 Set the output height expression, default value is "ih".
11838 This expression is evaluated just once during configuration.
11839
11840 @item bilinear
11841 Enable bilinear interpolation if set to 1, a value of 0 disables
11842 it. Default value is 1.
11843
11844 @item fillcolor, c
11845 Set the color used to fill the output area not covered by the rotated
11846 image. For the general syntax of this option, check the "Color" section in the
11847 ffmpeg-utils manual. If the special value "none" is selected then no
11848 background is printed (useful for example if the background is never shown).
11849
11850 Default value is "black".
11851 @end table
11852
11853 The expressions for the angle and the output size can contain the
11854 following constants and functions:
11855
11856 @table @option
11857 @item n
11858 sequential number of the input frame, starting from 0. It is always NAN
11859 before the first frame is filtered.
11860
11861 @item t
11862 time in seconds of the input frame, it is set to 0 when the filter is
11863 configured. It is always NAN before the first frame is filtered.
11864
11865 @item hsub
11866 @item vsub
11867 horizontal and vertical chroma subsample values. For example for the
11868 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
11869
11870 @item in_w, iw
11871 @item in_h, ih
11872 the input video width and height
11873
11874 @item out_w, ow
11875 @item out_h, oh
11876 the output width and height, that is the size of the padded area as
11877 specified by the @var{width} and @var{height} expressions
11878
11879 @item rotw(a)
11880 @item roth(a)
11881 the minimal width/height required for completely containing the input
11882 video rotated by @var{a} radians.
11883
11884 These are only available when computing the @option{out_w} and
11885 @option{out_h} expressions.
11886 @end table
11887
11888 @subsection Examples
11889
11890 @itemize
11891 @item
11892 Rotate the input by PI/6 radians clockwise:
11893 @example
11894 rotate=PI/6
11895 @end example
11896
11897 @item
11898 Rotate the input by PI/6 radians counter-clockwise:
11899 @example
11900 rotate=-PI/6
11901 @end example
11902
11903 @item
11904 Rotate the input by 45 degrees clockwise:
11905 @example
11906 rotate=45*PI/180
11907 @end example
11908
11909 @item
11910 Apply a constant rotation with period T, starting from an angle of PI/3:
11911 @example
11912 rotate=PI/3+2*PI*t/T
11913 @end example
11914
11915 @item
11916 Make the input video rotation oscillating with a period of T
11917 seconds and an amplitude of A radians:
11918 @example
11919 rotate=A*sin(2*PI/T*t)
11920 @end example
11921
11922 @item
11923 Rotate the video, output size is chosen so that the whole rotating
11924 input video is always completely contained in the output:
11925 @example
11926 rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
11927 @end example
11928
11929 @item
11930 Rotate the video, reduce the output size so that no background is ever
11931 shown:
11932 @example
11933 rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
11934 @end example
11935 @end itemize
11936
11937 @subsection Commands
11938
11939 The filter supports the following commands:
11940
11941 @table @option
11942 @item a, angle
11943 Set the angle expression.
11944 The command accepts the same syntax of the corresponding option.
11945
11946 If the specified expression is not valid, it is kept at its current
11947 value.
11948 @end table
11949
11950 @section sab
11951
11952 Apply Shape Adaptive Blur.
11953
11954 The filter accepts the following options:
11955
11956 @table @option
11957 @item luma_radius, lr
11958 Set luma blur filter strength, must be a value in range 0.1-4.0, default
11959 value is 1.0. A greater value will result in a more blurred image, and
11960 in slower processing.
11961
11962 @item luma_pre_filter_radius, lpfr
11963 Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
11964 value is 1.0.
11965
11966 @item luma_strength, ls
11967 Set luma maximum difference between pixels to still be considered, must
11968 be a value in the 0.1-100.0 range, default value is 1.0.
11969
11970 @item chroma_radius, cr
11971 Set chroma blur filter strength, must be a value in range -0.9-4.0. A
11972 greater value will result in a more blurred image, and in slower
11973 processing.
11974
11975 @item chroma_pre_filter_radius, cpfr
11976 Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
11977
11978 @item chroma_strength, cs
11979 Set chroma maximum difference between pixels to still be considered,
11980 must be a value in the -0.9-100.0 range.
11981 @end table
11982
11983 Each chroma option value, if not explicitly specified, is set to the
11984 corresponding luma option value.
11985
11986 @anchor{scale}
11987 @section scale
11988
11989 Scale (resize) the input video, using the libswscale library.
11990
11991 The scale filter forces the output display aspect ratio to be the same
11992 of the input, by changing the output sample aspect ratio.
11993
11994 If the input image format is different from the format requested by
11995 the next filter, the scale filter will convert the input to the
11996 requested format.
11997
11998 @subsection Options
11999 The filter accepts the following options, or any of the options
12000 supported by the libswscale scaler.
12001
12002 See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
12003 the complete list of scaler options.
12004
12005 @table @option
12006 @item width, w
12007 @item height, h
12008 Set the output video dimension expression. Default value is the input
12009 dimension.
12010
12011 If the value is 0, the input width is used for the output.
12012
12013 If one of the values is -1, the scale filter will use a value that
12014 maintains the aspect ratio of the input image, calculated from the
12015 other specified dimension. If both of them are -1, the input size is
12016 used
12017
12018 If one of the values is -n with n > 1, the scale filter will also use a value
12019 that maintains the aspect ratio of the input image, calculated from the other
12020 specified dimension. After that it will, however, make sure that the calculated
12021 dimension is divisible by n and adjust the value if necessary.
12022
12023 See below for the list of accepted constants for use in the dimension
12024 expression.
12025
12026 @item eval
12027 Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
12028
12029 @table @samp
12030 @item init
12031 Only evaluate expressions once during the filter initialization or when a command is processed.
12032
12033 @item frame
12034 Evaluate expressions for each incoming frame.
12035
12036 @end table
12037
12038 Default value is @samp{init}.
12039
12040
12041 @item interl
12042 Set the interlacing mode. It accepts the following values:
12043
12044 @table @samp
12045 @item 1
12046 Force interlaced aware scaling.
12047
12048 @item 0
12049 Do not apply interlaced scaling.
12050
12051 @item -1
12052 Select interlaced aware scaling depending on whether the source frames
12053 are flagged as interlaced or not.
12054 @end table
12055
12056 Default value is @samp{0}.
12057
12058 @item flags
12059 Set libswscale scaling flags. See
12060 @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
12061 complete list of values. If not explicitly specified the filter applies
12062 the default flags.
12063
12064
12065 @item param0, param1
12066 Set libswscale input parameters for scaling algorithms that need them. See
12067 @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
12068 complete documentation. If not explicitly specified the filter applies
12069 empty parameters.
12070
12071
12072
12073 @item size, s
12074 Set the video size. For the syntax of this option, check the
12075 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12076
12077 @item in_color_matrix
12078 @item out_color_matrix
12079 Set in/output YCbCr color space type.
12080
12081 This allows the autodetected value to be overridden as well as allows forcing
12082 a specific value used for the output and encoder.
12083
12084 If not specified, the color space type depends on the pixel format.
12085
12086 Possible values:
12087
12088 @table @samp
12089 @item auto
12090 Choose automatically.
12091
12092 @item bt709
12093 Format conforming to International Telecommunication Union (ITU)
12094 Recommendation BT.709.
12095
12096 @item fcc
12097 Set color space conforming to the United States Federal Communications
12098 Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
12099
12100 @item bt601
12101 Set color space conforming to:
12102
12103 @itemize
12104 @item
12105 ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
12106
12107 @item
12108 ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
12109
12110 @item
12111 Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
12112
12113 @end itemize
12114
12115 @item smpte240m
12116 Set color space conforming to SMPTE ST 240:1999.
12117 @end table
12118
12119 @item in_range
12120 @item out_range
12121 Set in/output YCbCr sample range.
12122
12123 This allows the autodetected value to be overridden as well as allows forcing
12124 a specific value used for the output and encoder. If not specified, the
12125 range depends on the pixel format. Possible values:
12126
12127 @table @samp
12128 @item auto
12129 Choose automatically.
12130
12131 @item jpeg/full/pc
12132 Set full range (0-255 in case of 8-bit luma).
12133
12134 @item mpeg/tv
12135 Set "MPEG" range (16-235 in case of 8-bit luma).
12136 @end table
12137
12138 @item force_original_aspect_ratio
12139 Enable decreasing or increasing output video width or height if necessary to
12140 keep the original aspect ratio. Possible values:
12141
12142 @table @samp
12143 @item disable
12144 Scale the video as specified and disable this feature.
12145
12146 @item decrease
12147 The output video dimensions will automatically be decreased if needed.
12148
12149 @item increase
12150 The output video dimensions will automatically be increased if needed.
12151
12152 @end table
12153
12154 One useful instance of this option is that when you know a specific device's
12155 maximum allowed resolution, you can use this to limit the output video to
12156 that, while retaining the aspect ratio. For example, device A allows
12157 1280x720 playback, and your video is 1920x800. Using this option (set it to
12158 decrease) and specifying 1280x720 to the command line makes the output
12159 1280x533.
12160
12161 Please note that this is a different thing than specifying -1 for @option{w}
12162 or @option{h}, you still need to specify the output resolution for this option
12163 to work.
12164
12165 @end table
12166
12167 The values of the @option{w} and @option{h} options are expressions
12168 containing the following constants:
12169
12170 @table @var
12171 @item in_w
12172 @item in_h
12173 The input width and height
12174
12175 @item iw
12176 @item ih
12177 These are the same as @var{in_w} and @var{in_h}.
12178
12179 @item out_w
12180 @item out_h
12181 The output (scaled) width and height
12182
12183 @item ow
12184 @item oh
12185 These are the same as @var{out_w} and @var{out_h}
12186
12187 @item a
12188 The same as @var{iw} / @var{ih}
12189
12190 @item sar
12191 input sample aspect ratio
12192
12193 @item dar
12194 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
12195
12196 @item hsub
12197 @item vsub
12198 horizontal and vertical input chroma subsample values. For example for the
12199 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
12200
12201 @item ohsub
12202 @item ovsub
12203 horizontal and vertical output chroma subsample values. For example for the
12204 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
12205 @end table
12206
12207 @subsection Examples
12208
12209 @itemize
12210 @item
12211 Scale the input video to a size of 200x100
12212 @example
12213 scale=w=200:h=100
12214 @end example
12215
12216 This is equivalent to:
12217 @example
12218 scale=200:100
12219 @end example
12220
12221 or:
12222 @example
12223 scale=200x100
12224 @end example
12225
12226 @item
12227 Specify a size abbreviation for the output size:
12228 @example
12229 scale=qcif
12230 @end example
12231
12232 which can also be written as:
12233 @example
12234 scale=size=qcif
12235 @end example
12236
12237 @item
12238 Scale the input to 2x:
12239 @example
12240 scale=w=2*iw:h=2*ih
12241 @end example
12242
12243 @item
12244 The above is the same as:
12245 @example
12246 scale=2*in_w:2*in_h
12247 @end example
12248
12249 @item
12250 Scale the input to 2x with forced interlaced scaling:
12251 @example
12252 scale=2*iw:2*ih:interl=1
12253 @end example
12254
12255 @item
12256 Scale the input to half size:
12257 @example
12258 scale=w=iw/2:h=ih/2
12259 @end example
12260
12261 @item
12262 Increase the width, and set the height to the same size:
12263 @example
12264 scale=3/2*iw:ow
12265 @end example
12266
12267 @item
12268 Seek Greek harmony:
12269 @example
12270 scale=iw:1/PHI*iw
12271 scale=ih*PHI:ih
12272 @end example
12273
12274 @item
12275 Increase the height, and set the width to 3/2 of the height:
12276 @example
12277 scale=w=3/2*oh:h=3/5*ih
12278 @end example
12279
12280 @item
12281 Increase the size, making the size a multiple of the chroma
12282 subsample values:
12283 @example
12284 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
12285 @end example
12286
12287 @item
12288 Increase the width to a maximum of 500 pixels,
12289 keeping the same aspect ratio as the input:
12290 @example
12291 scale=w='min(500\, iw*3/2):h=-1'
12292 @end example
12293 @end itemize
12294
12295 @subsection Commands
12296
12297 This filter supports the following commands:
12298 @table @option
12299 @item width, w
12300 @item height, h
12301 Set the output video dimension expression.
12302 The command accepts the same syntax of the corresponding option.
12303
12304 If the specified expression is not valid, it is kept at its current
12305 value.
12306 @end table
12307
12308 @section scale_npp
12309
12310 Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
12311 format conversion on CUDA video frames. Setting the output width and height
12312 works in the same way as for the @var{scale} filter.
12313
12314 The following additional options are accepted:
12315 @table @option
12316 @item format
12317 The pixel format of the output CUDA frames. If set to the string "same" (the
12318 default), the input format will be kept. Note that automatic format negotiation
12319 and conversion is not yet supported for hardware frames
12320
12321 @item interp_algo
12322 The interpolation algorithm used for resizing. One of the following:
12323 @table @option
12324 @item nn
12325 Nearest neighbour.
12326
12327 @item linear
12328 @item cubic
12329 @item cubic2p_bspline
12330 2-parameter cubic (B=1, C=0)
12331
12332 @item cubic2p_catmullrom
12333 2-parameter cubic (B=0, C=1/2)
12334
12335 @item cubic2p_b05c03
12336 2-parameter cubic (B=1/2, C=3/10)
12337
12338 @item super
12339 Supersampling
12340
12341 @item lanczos
12342 @end table
12343
12344 @end table
12345
12346 @section scale2ref
12347
12348 Scale (resize) the input video, based on a reference video.
12349
12350 See the scale filter for available options, scale2ref supports the same but
12351 uses the reference video instead of the main input as basis.
12352
12353 @subsection Examples
12354
12355 @itemize
12356 @item
12357 Scale a subtitle stream to match the main video in size before overlaying
12358 @example
12359 'scale2ref[b][a];[a][b]overlay'
12360 @end example
12361 @end itemize
12362
12363 @anchor{selectivecolor}
12364 @section selectivecolor
12365
12366 Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
12367 as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
12368 by the "purity" of the color (that is, how saturated it already is).
12369
12370 This filter is similar to the Adobe Photoshop Selective Color tool.
12371
12372 The filter accepts the following options:
12373
12374 @table @option
12375 @item correction_method
12376 Select color correction method.
12377
12378 Available values are:
12379 @table @samp
12380 @item absolute
12381 Specified adjustments are applied "as-is" (added/subtracted to original pixel
12382 component value).
12383 @item relative
12384 Specified adjustments are relative to the original component value.
12385 @end table
12386 Default is @code{absolute}.
12387 @item reds
12388 Adjustments for red pixels (pixels where the red component is the maximum)
12389 @item yellows
12390 Adjustments for yellow pixels (pixels where the blue component is the minimum)
12391 @item greens
12392 Adjustments for green pixels (pixels where the green component is the maximum)
12393 @item cyans
12394 Adjustments for cyan pixels (pixels where the red component is the minimum)
12395 @item blues
12396 Adjustments for blue pixels (pixels where the blue component is the maximum)
12397 @item magentas
12398 Adjustments for magenta pixels (pixels where the green component is the minimum)
12399 @item whites
12400 Adjustments for white pixels (pixels where all components are greater than 128)
12401 @item neutrals
12402 Adjustments for all pixels except pure black and pure white
12403 @item blacks
12404 Adjustments for black pixels (pixels where all components are lesser than 128)
12405 @item psfile
12406 Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
12407 @end table
12408
12409 All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
12410 4 space separated floating point adjustment values in the [-1,1] range,
12411 respectively to adjust the amount of cyan, magenta, yellow and black for the
12412 pixels of its range.
12413
12414 @subsection Examples
12415
12416 @itemize
12417 @item
12418 Increase cyan by 50% and reduce yellow by 33% in every green areas, and
12419 increase magenta by 27% in blue areas:
12420 @example
12421 selectivecolor=greens=.5 0 -.33 0:blues=0 .27
12422 @end example
12423
12424 @item
12425 Use a Photoshop selective color preset:
12426 @example
12427 selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
12428 @end example
12429 @end itemize
12430
12431 @anchor{separatefields}
12432 @section separatefields
12433
12434 The @code{separatefields} takes a frame-based video input and splits
12435 each frame into its components fields, producing a new half height clip
12436 with twice the frame rate and twice the frame count.
12437
12438 This filter use field-dominance information in frame to decide which
12439 of each pair of fields to place first in the output.
12440 If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
12441
12442 @section setdar, setsar
12443
12444 The @code{setdar} filter sets the Display Aspect Ratio for the filter
12445 output video.
12446
12447 This is done by changing the specified Sample (aka Pixel) Aspect
12448 Ratio, according to the following equation:
12449 @example
12450 @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
12451 @end example
12452
12453 Keep in mind that the @code{setdar} filter does not modify the pixel
12454 dimensions of the video frame. Also, the display aspect ratio set by
12455 this filter may be changed by later filters in the filterchain,
12456 e.g. in case of scaling or if another "setdar" or a "setsar" filter is
12457 applied.
12458
12459 The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
12460 the filter output video.
12461
12462 Note that as a consequence of the application of this filter, the
12463 output display aspect ratio will change according to the equation
12464 above.
12465
12466 Keep in mind that the sample aspect ratio set by the @code{setsar}
12467 filter may be changed by later filters in the filterchain, e.g. if
12468 another "setsar" or a "setdar" filter is applied.
12469
12470 It accepts the following parameters:
12471
12472 @table @option
12473 @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
12474 Set the aspect ratio used by the filter.
12475
12476 The parameter can be a floating point number string, an expression, or
12477 a string of the form @var{num}:@var{den}, where @var{num} and
12478 @var{den} are the numerator and denominator of the aspect ratio. If
12479 the parameter is not specified, it is assumed the value "0".
12480 In case the form "@var{num}:@var{den}" is used, the @code{:} character
12481 should be escaped.
12482
12483 @item max
12484 Set the maximum integer value to use for expressing numerator and
12485 denominator when reducing the expressed aspect ratio to a rational.
12486 Default value is @code{100}.
12487
12488 @end table
12489
12490 The parameter @var{sar} is an expression containing
12491 the following constants:
12492
12493 @table @option
12494 @item E, PI, PHI
12495 These are approximated values for the mathematical constants e
12496 (Euler's number), pi (Greek pi), and phi (the golden ratio).
12497
12498 @item w, h
12499 The input width and height.
12500
12501 @item a
12502 These are the same as @var{w} / @var{h}.
12503
12504 @item sar
12505 The input sample aspect ratio.
12506
12507 @item dar
12508 The input display aspect ratio. It is the same as
12509 (@var{w} / @var{h}) * @var{sar}.
12510
12511 @item hsub, vsub
12512 Horizontal and vertical chroma subsample values. For example, for the
12513 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
12514 @end table
12515
12516 @subsection Examples
12517
12518 @itemize
12519
12520 @item
12521 To change the display aspect ratio to 16:9, specify one of the following:
12522 @example
12523 setdar=dar=1.77777
12524 setdar=dar=16/9
12525 @end example
12526
12527 @item
12528 To change the sample aspect ratio to 10:11, specify:
12529 @example
12530 setsar=sar=10/11
12531 @end example
12532
12533 @item
12534 To set a display aspect ratio of 16:9, and specify a maximum integer value of
12535 1000 in the aspect ratio reduction, use the command:
12536 @example
12537 setdar=ratio=16/9:max=1000
12538 @end example
12539
12540 @end itemize
12541
12542 @anchor{setfield}
12543 @section setfield
12544
12545 Force field for the output video frame.
12546
12547 The @code{setfield} filter marks the interlace type field for the
12548 output frames. It does not change the input frame, but only sets the
12549 corresponding property, which affects how the frame is treated by
12550 following filters (e.g. @code{fieldorder} or @code{yadif}).
12551
12552 The filter accepts the following options:
12553
12554 @table @option
12555
12556 @item mode
12557 Available values are:
12558
12559 @table @samp
12560 @item auto
12561 Keep the same field property.
12562
12563 @item bff
12564 Mark the frame as bottom-field-first.
12565
12566 @item tff
12567 Mark the frame as top-field-first.
12568
12569 @item prog
12570 Mark the frame as progressive.
12571 @end table
12572 @end table
12573
12574 @section showinfo
12575
12576 Show a line containing various information for each input video frame.
12577 The input video is not modified.
12578
12579 The shown line contains a sequence of key/value pairs of the form
12580 @var{key}:@var{value}.
12581
12582 The following values are shown in the output:
12583
12584 @table @option
12585 @item n
12586 The (sequential) number of the input frame, starting from 0.
12587
12588 @item pts
12589 The Presentation TimeStamp of the input frame, expressed as a number of
12590 time base units. The time base unit depends on the filter input pad.
12591
12592 @item pts_time
12593 The Presentation TimeStamp of the input frame, expressed as a number of
12594 seconds.
12595
12596 @item pos
12597 The position of the frame in the input stream, or -1 if this information is
12598 unavailable and/or meaningless (for example in case of synthetic video).
12599
12600 @item fmt
12601 The pixel format name.
12602
12603 @item sar
12604 The sample aspect ratio of the input frame, expressed in the form
12605 @var{num}/@var{den}.
12606
12607 @item s
12608 The size of the input frame. For the syntax of this option, check the
12609 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
12610
12611 @item i
12612 The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
12613 for bottom field first).
12614
12615 @item iskey
12616 This is 1 if the frame is a key frame, 0 otherwise.
12617
12618 @item type
12619 The picture type of the input frame ("I" for an I-frame, "P" for a
12620 P-frame, "B" for a B-frame, or "?" for an unknown type).
12621 Also refer to the documentation of the @code{AVPictureType} enum and of
12622 the @code{av_get_picture_type_char} function defined in
12623 @file{libavutil/avutil.h}.
12624
12625 @item checksum
12626 The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
12627
12628 @item plane_checksum
12629 The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
12630 expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
12631 @end table
12632
12633 @section showpalette
12634
12635 Displays the 256 colors palette of each frame. This filter is only relevant for
12636 @var{pal8} pixel format frames.
12637
12638 It accepts the following option:
12639
12640 @table @option
12641 @item s
12642 Set the size of the box used to represent one palette color entry. Default is
12643 @code{30} (for a @code{30x30} pixel box).
12644 @end table
12645
12646 @section shuffleframes
12647
12648 Reorder and/or duplicate and/or drop video frames.
12649
12650 It accepts the following parameters:
12651
12652 @table @option
12653 @item mapping
12654 Set the destination indexes of input frames.
12655 This is space or '|' separated list of indexes that maps input frames to output
12656 frames. Number of indexes also sets maximal value that each index may have.
12657 '-1' index have special meaning and that is to drop frame.
12658 @end table
12659
12660 The first frame has the index 0. The default is to keep the input unchanged.
12661
12662 @subsection Examples
12663
12664 @itemize
12665 @item
12666 Swap second and third frame of every three frames of the input:
12667 @example
12668 ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
12669 @end example
12670
12671 @item
12672 Swap 10th and 1st frame of every ten frames of the input:
12673 @example
12674 ffmpeg -i INPUT -vf "shuffleframes=9 1 2 3 4 5 6 7 8 0" OUTPUT
12675 @end example
12676 @end itemize
12677
12678 @section shuffleplanes
12679
12680 Reorder and/or duplicate video planes.
12681
12682 It accepts the following parameters:
12683
12684 @table @option
12685
12686 @item map0
12687 The index of the input plane to be used as the first output plane.
12688
12689 @item map1
12690 The index of the input plane to be used as the second output plane.
12691
12692 @item map2
12693 The index of the input plane to be used as the third output plane.
12694
12695 @item map3
12696 The index of the input plane to be used as the fourth output plane.
12697
12698 @end table
12699
12700 The first plane has the index 0. The default is to keep the input unchanged.
12701
12702 @subsection Examples
12703
12704 @itemize
12705 @item
12706 Swap the second and third planes of the input:
12707 @example
12708 ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
12709 @end example
12710 @end itemize
12711
12712 @anchor{signalstats}
12713 @section signalstats
12714 Evaluate various visual metrics that assist in determining issues associated
12715 with the digitization of analog video media.
12716
12717 By default the filter will log these metadata values:
12718
12719 @table @option
12720 @item YMIN
12721 Display the minimal Y value contained within the input frame. Expressed in
12722 range of [0-255].
12723
12724 @item YLOW
12725 Display the Y value at the 10% percentile within the input frame. Expressed in
12726 range of [0-255].
12727
12728 @item YAVG
12729 Display the average Y value within the input frame. Expressed in range of
12730 [0-255].
12731
12732 @item YHIGH
12733 Display the Y value at the 90% percentile within the input frame. Expressed in
12734 range of [0-255].
12735
12736 @item YMAX
12737 Display the maximum Y value contained within the input frame. Expressed in
12738 range of [0-255].
12739
12740 @item UMIN
12741 Display the minimal U value contained within the input frame. Expressed in
12742 range of [0-255].
12743
12744 @item ULOW
12745 Display the U value at the 10% percentile within the input frame. Expressed in
12746 range of [0-255].
12747
12748 @item UAVG
12749 Display the average U value within the input frame. Expressed in range of
12750 [0-255].
12751
12752 @item UHIGH
12753 Display the U value at the 90% percentile within the input frame. Expressed in
12754 range of [0-255].
12755
12756 @item UMAX
12757 Display the maximum U value contained within the input frame. Expressed in
12758 range of [0-255].
12759
12760 @item VMIN
12761 Display the minimal V value contained within the input frame. Expressed in
12762 range of [0-255].
12763
12764 @item VLOW
12765 Display the V value at the 10% percentile within the input frame. Expressed in
12766 range of [0-255].
12767
12768 @item VAVG
12769 Display the average V value within the input frame. Expressed in range of
12770 [0-255].
12771
12772 @item VHIGH
12773 Display the V value at the 90% percentile within the input frame. Expressed in
12774 range of [0-255].
12775
12776 @item VMAX
12777 Display the maximum V value contained within the input frame. Expressed in
12778 range of [0-255].
12779
12780 @item SATMIN
12781 Display the minimal saturation value contained within the input frame.
12782 Expressed in range of [0-~181.02].
12783
12784 @item SATLOW
12785 Display the saturation value at the 10% percentile within the input frame.
12786 Expressed in range of [0-~181.02].
12787
12788 @item SATAVG
12789 Display the average saturation value within the input frame. Expressed in range
12790 of [0-~181.02].
12791
12792 @item SATHIGH
12793 Display the saturation value at the 90% percentile within the input frame.
12794 Expressed in range of [0-~181.02].
12795
12796 @item SATMAX
12797 Display the maximum saturation value contained within the input frame.
12798 Expressed in range of [0-~181.02].
12799
12800 @item HUEMED
12801 Display the median value for hue within the input frame. Expressed in range of
12802 [0-360].
12803
12804 @item HUEAVG
12805 Display the average value for hue within the input frame. Expressed in range of
12806 [0-360].
12807
12808 @item YDIF
12809 Display the average of sample value difference between all values of the Y
12810 plane in the current frame and corresponding values of the previous input frame.
12811 Expressed in range of [0-255].
12812
12813 @item UDIF
12814 Display the average of sample value difference between all values of the U
12815 plane in the current frame and corresponding values of the previous input frame.
12816 Expressed in range of [0-255].
12817
12818 @item VDIF
12819 Display the average of sample value difference between all values of the V
12820 plane in the current frame and corresponding values of the previous input frame.
12821 Expressed in range of [0-255].
12822
12823 @item YBITDEPTH
12824 Display bit depth of Y plane in current frame.
12825 Expressed in range of [0-16].
12826
12827 @item UBITDEPTH
12828 Display bit depth of U plane in current frame.
12829 Expressed in range of [0-16].
12830
12831 @item VBITDEPTH
12832 Display bit depth of V plane in current frame.
12833 Expressed in range of [0-16].
12834 @end table
12835
12836 The filter accepts the following options:
12837
12838 @table @option
12839 @item stat
12840 @item out
12841
12842 @option{stat} specify an additional form of image analysis.
12843 @option{out} output video with the specified type of pixel highlighted.
12844
12845 Both options accept the following values:
12846
12847 @table @samp
12848 @item tout
12849 Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
12850 unlike the neighboring pixels of the same field. Examples of temporal outliers
12851 include the results of video dropouts, head clogs, or tape tracking issues.
12852
12853 @item vrep
12854 Identify @var{vertical line repetition}. Vertical line repetition includes
12855 similar rows of pixels within a frame. In born-digital video vertical line
12856 repetition is common, but this pattern is uncommon in video digitized from an
12857 analog source. When it occurs in video that results from the digitization of an
12858 analog source it can indicate concealment from a dropout compensator.
12859
12860 @item brng
12861 Identify pixels that fall outside of legal broadcast range.
12862 @end table
12863
12864 @item color, c
12865 Set the highlight color for the @option{out} option. The default color is
12866 yellow.
12867 @end table
12868
12869 @subsection Examples
12870
12871 @itemize
12872 @item
12873 Output data of various video metrics:
12874 @example
12875 ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
12876 @end example
12877
12878 @item
12879 Output specific data about the minimum and maximum values of the Y plane per frame:
12880 @example
12881 ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
12882 @end example
12883
12884 @item
12885 Playback video while highlighting pixels that are outside of broadcast range in red.
12886 @example
12887 ffplay example.mov -vf signalstats="out=brng:color=red"
12888 @end example
12889
12890 @item
12891 Playback video with signalstats metadata drawn over the frame.
12892 @example
12893 ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
12894 @end example
12895
12896 The contents of signalstat_drawtext.txt used in the command are:
12897 @example
12898 time %@{pts:hms@}
12899 Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
12900 U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
12901 V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
12902 saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
12903
12904 @end example
12905 @end itemize
12906
12907 @anchor{signature}
12908 @section signature
12909
12910 Calculates the MPEG-7 Video Signature. The filter can handle more than one
12911 input. In this case the matching between the inputs can be calculated additionally.
12912 The filter always passes through the first input. The signature of each stream can
12913 be written into a file.
12914
12915 It accepts the following options:
12916
12917 @table @option
12918 @item detectmode
12919 Enable or disable the matching process.
12920
12921 Available values are:
12922
12923 @table @samp
12924 @item off
12925 Disable the calculation of a matching (default).
12926 @item full
12927 Calculate the matching for the whole video and output whether the whole video
12928 matches or only parts.
12929 @item fast
12930 Calculate only until a matching is found or the video ends. Should be faster in
12931 some cases.
12932 @end table
12933
12934 @item nb_inputs
12935 Set the number of inputs. The option value must be a non negative integer.
12936 Default value is 1.
12937
12938 @item filename
12939 Set the path to which the output is written. If there is more than one input,
12940 the path must be a prototype, i.e. must contain %d or %0nd (where n is a positive
12941 integer), that will be replaced with the input number. If no filename is
12942 specified, no output will be written. This is the default.
12943
12944 @item format
12945 Choose the output format.
12946
12947 Available values are:
12948
12949 @table @samp
12950 @item binary
12951 Use the specified binary representation (default).
12952 @item xml
12953 Use the specified xml representation.
12954 @end table
12955
12956 @item th_d
12957 Set threshold to detect one word as similar. The option value must be an integer
12958 greater than zero. The default value is 9000.
12959
12960 @item th_dc
12961 Set threshold to detect all words as similar. The option value must be an integer
12962 greater than zero. The default value is 60000.
12963
12964 @item th_xh
12965 Set threshold to detect frames as similar. The option value must be an integer
12966 greater than zero. The default value is 116.
12967
12968 @item th_di
12969 Set the minimum length of a sequence in frames to recognize it as matching
12970 sequence. The option value must be a non negative integer value.
12971 The default value is 0.
12972
12973 @item th_it
12974 Set the minimum relation, that matching frames to all frames must have.
12975 The option value must be a double value between 0 and 1. The default value is 0.5.
12976 @end table
12977
12978 @subsection Examples
12979
12980 @itemize
12981 @item
12982 To calculate the signature of an input video and store it in signature.bin:
12983 @example
12984 ffmpeg -i input.mkv -vf signature=filename=signature.bin -map 0:v -f null -
12985 @end example
12986
12987 @item
12988 To detect whether two videos match and store the signatures in XML format in
12989 signature0.xml and signature1.xml:
12990 @example
12991 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 -
12992 @end example
12993
12994 @end itemize
12995
12996 @anchor{smartblur}
12997 @section smartblur
12998
12999 Blur the input video without impacting the outlines.
13000
13001 It accepts the following options:
13002
13003 @table @option
13004 @item luma_radius, lr
13005 Set the luma radius. The option value must be a float number in
13006 the range [0.1,5.0] that specifies the variance of the gaussian filter
13007 used to blur the image (slower if larger). Default value is 1.0.
13008
13009 @item luma_strength, ls
13010 Set the luma strength. The option value must be a float number
13011 in the range [-1.0,1.0] that configures the blurring. A value included
13012 in [0.0,1.0] will blur the image whereas a value included in
13013 [-1.0,0.0] will sharpen the image. Default value is 1.0.
13014
13015 @item luma_threshold, lt
13016 Set the luma threshold used as a coefficient to determine
13017 whether a pixel should be blurred or not. The option value must be an
13018 integer in the range [-30,30]. A value of 0 will filter all the image,
13019 a value included in [0,30] will filter flat areas and a value included
13020 in [-30,0] will filter edges. Default value is 0.
13021
13022 @item chroma_radius, cr
13023 Set the chroma radius. The option value must be a float number in
13024 the range [0.1,5.0] that specifies the variance of the gaussian filter
13025 used to blur the image (slower if larger). Default value is @option{luma_radius}.
13026
13027 @item chroma_strength, cs
13028 Set the chroma strength. The option value must be a float number
13029 in the range [-1.0,1.0] that configures the blurring. A value included
13030 in [0.0,1.0] will blur the image whereas a value included in
13031 [-1.0,0.0] will sharpen the image. Default value is @option{luma_strength}.
13032
13033 @item chroma_threshold, ct
13034 Set the chroma threshold used as a coefficient to determine
13035 whether a pixel should be blurred or not. The option value must be an
13036 integer in the range [-30,30]. A value of 0 will filter all the image,
13037 a value included in [0,30] will filter flat areas and a value included
13038 in [-30,0] will filter edges. Default value is @option{luma_threshold}.
13039 @end table
13040
13041 If a chroma option is not explicitly set, the corresponding luma value
13042 is set.
13043
13044 @section ssim
13045
13046 Obtain the SSIM (Structural SImilarity Metric) between two input videos.
13047
13048 This filter takes in input two input videos, the first input is
13049 considered the "main" source and is passed unchanged to the
13050 output. The second input is used as a "reference" video for computing
13051 the SSIM.
13052
13053 Both video inputs must have the same resolution and pixel format for
13054 this filter to work correctly. Also it assumes that both inputs
13055 have the same number of frames, which are compared one by one.
13056
13057 The filter stores the calculated SSIM of each frame.
13058
13059 The description of the accepted parameters follows.
13060
13061 @table @option
13062 @item stats_file, f
13063 If specified the filter will use the named file to save the SSIM of
13064 each individual frame. When filename equals "-" the data is sent to
13065 standard output.
13066 @end table
13067
13068 The file printed if @var{stats_file} is selected, contains a sequence of
13069 key/value pairs of the form @var{key}:@var{value} for each compared
13070 couple of frames.
13071
13072 A description of each shown parameter follows:
13073
13074 @table @option
13075 @item n
13076 sequential number of the input frame, starting from 1
13077
13078 @item Y, U, V, R, G, B
13079 SSIM of the compared frames for the component specified by the suffix.
13080
13081 @item All
13082 SSIM of the compared frames for the whole frame.
13083
13084 @item dB
13085 Same as above but in dB representation.
13086 @end table
13087
13088 For example:
13089 @example
13090 movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
13091 [main][ref] ssim="stats_file=stats.log" [out]
13092 @end example
13093
13094 On this example the input file being processed is compared with the
13095 reference file @file{ref_movie.mpg}. The SSIM of each individual frame
13096 is stored in @file{stats.log}.
13097
13098 Another example with both psnr and ssim at same time:
13099 @example
13100 ffmpeg -i main.mpg -i ref.mpg -lavfi  "ssim;[0:v][1:v]psnr" -f null -
13101 @end example
13102
13103 @section stereo3d
13104
13105 Convert between different stereoscopic image formats.
13106
13107 The filters accept the following options:
13108
13109 @table @option
13110 @item in
13111 Set stereoscopic image format of input.
13112
13113 Available values for input image formats are:
13114 @table @samp
13115 @item sbsl
13116 side by side parallel (left eye left, right eye right)
13117
13118 @item sbsr
13119 side by side crosseye (right eye left, left eye right)
13120
13121 @item sbs2l
13122 side by side parallel with half width resolution
13123 (left eye left, right eye right)
13124
13125 @item sbs2r
13126 side by side crosseye with half width resolution
13127 (right eye left, left eye right)
13128
13129 @item abl
13130 above-below (left eye above, right eye below)
13131
13132 @item abr
13133 above-below (right eye above, left eye below)
13134
13135 @item ab2l
13136 above-below with half height resolution
13137 (left eye above, right eye below)
13138
13139 @item ab2r
13140 above-below with half height resolution
13141 (right eye above, left eye below)
13142
13143 @item al
13144 alternating frames (left eye first, right eye second)
13145
13146 @item ar
13147 alternating frames (right eye first, left eye second)
13148
13149 @item irl
13150 interleaved rows (left eye has top row, right eye starts on next row)
13151
13152 @item irr
13153 interleaved rows (right eye has top row, left eye starts on next row)
13154
13155 @item icl
13156 interleaved columns, left eye first
13157
13158 @item icr
13159 interleaved columns, right eye first
13160
13161 Default value is @samp{sbsl}.
13162 @end table
13163
13164 @item out
13165 Set stereoscopic image format of output.
13166
13167 @table @samp
13168 @item sbsl
13169 side by side parallel (left eye left, right eye right)
13170
13171 @item sbsr
13172 side by side crosseye (right eye left, left eye right)
13173
13174 @item sbs2l
13175 side by side parallel with half width resolution
13176 (left eye left, right eye right)
13177
13178 @item sbs2r
13179 side by side crosseye with half width resolution
13180 (right eye left, left eye right)
13181
13182 @item abl
13183 above-below (left eye above, right eye below)
13184
13185 @item abr
13186 above-below (right eye above, left eye below)
13187
13188 @item ab2l
13189 above-below with half height resolution
13190 (left eye above, right eye below)
13191
13192 @item ab2r
13193 above-below with half height resolution
13194 (right eye above, left eye below)
13195
13196 @item al
13197 alternating frames (left eye first, right eye second)
13198
13199 @item ar
13200 alternating frames (right eye first, left eye second)
13201
13202 @item irl
13203 interleaved rows (left eye has top row, right eye starts on next row)
13204
13205 @item irr
13206 interleaved rows (right eye has top row, left eye starts on next row)
13207
13208 @item arbg
13209 anaglyph red/blue gray
13210 (red filter on left eye, blue filter on right eye)
13211
13212 @item argg
13213 anaglyph red/green gray
13214 (red filter on left eye, green filter on right eye)
13215
13216 @item arcg
13217 anaglyph red/cyan gray
13218 (red filter on left eye, cyan filter on right eye)
13219
13220 @item arch
13221 anaglyph red/cyan half colored
13222 (red filter on left eye, cyan filter on right eye)
13223
13224 @item arcc
13225 anaglyph red/cyan color
13226 (red filter on left eye, cyan filter on right eye)
13227
13228 @item arcd
13229 anaglyph red/cyan color optimized with the least squares projection of dubois
13230 (red filter on left eye, cyan filter on right eye)
13231
13232 @item agmg
13233 anaglyph green/magenta gray
13234 (green filter on left eye, magenta filter on right eye)
13235
13236 @item agmh
13237 anaglyph green/magenta half colored
13238 (green filter on left eye, magenta filter on right eye)
13239
13240 @item agmc
13241 anaglyph green/magenta colored
13242 (green filter on left eye, magenta filter on right eye)
13243
13244 @item agmd
13245 anaglyph green/magenta color optimized with the least squares projection of dubois
13246 (green filter on left eye, magenta filter on right eye)
13247
13248 @item aybg
13249 anaglyph yellow/blue gray
13250 (yellow filter on left eye, blue filter on right eye)
13251
13252 @item aybh
13253 anaglyph yellow/blue half colored
13254 (yellow filter on left eye, blue filter on right eye)
13255
13256 @item aybc
13257 anaglyph yellow/blue colored
13258 (yellow filter on left eye, blue filter on right eye)
13259
13260 @item aybd
13261 anaglyph yellow/blue color optimized with the least squares projection of dubois
13262 (yellow filter on left eye, blue filter on right eye)
13263
13264 @item ml
13265 mono output (left eye only)
13266
13267 @item mr
13268 mono output (right eye only)
13269
13270 @item chl
13271 checkerboard, left eye first
13272
13273 @item chr
13274 checkerboard, right eye first
13275
13276 @item icl
13277 interleaved columns, left eye first
13278
13279 @item icr
13280 interleaved columns, right eye first
13281
13282 @item hdmi
13283 HDMI frame pack
13284 @end table
13285
13286 Default value is @samp{arcd}.
13287 @end table
13288
13289 @subsection Examples
13290
13291 @itemize
13292 @item
13293 Convert input video from side by side parallel to anaglyph yellow/blue dubois:
13294 @example
13295 stereo3d=sbsl:aybd
13296 @end example
13297
13298 @item
13299 Convert input video from above below (left eye above, right eye below) to side by side crosseye.
13300 @example
13301 stereo3d=abl:sbsr
13302 @end example
13303 @end itemize
13304
13305 @section streamselect, astreamselect
13306 Select video or audio streams.
13307
13308 The filter accepts the following options:
13309
13310 @table @option
13311 @item inputs
13312 Set number of inputs. Default is 2.
13313
13314 @item map
13315 Set input indexes to remap to outputs.
13316 @end table
13317
13318 @subsection Commands
13319
13320 The @code{streamselect} and @code{astreamselect} filter supports the following
13321 commands:
13322
13323 @table @option
13324 @item map
13325 Set input indexes to remap to outputs.
13326 @end table
13327
13328 @subsection Examples
13329
13330 @itemize
13331 @item
13332 Select first 5 seconds 1st stream and rest of time 2nd stream:
13333 @example
13334 sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
13335 @end example
13336
13337 @item
13338 Same as above, but for audio:
13339 @example
13340 asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
13341 @end example
13342 @end itemize
13343
13344 @section sobel
13345 Apply sobel operator to input video stream.
13346
13347 The filter accepts the following option:
13348
13349 @table @option
13350 @item planes
13351 Set which planes will be processed, unprocessed planes will be copied.
13352 By default value 0xf, all planes will be processed.
13353
13354 @item scale
13355 Set value which will be multiplied with filtered result.
13356
13357 @item delta
13358 Set value which will be added to filtered result.
13359 @end table
13360
13361 @anchor{spp}
13362 @section spp
13363
13364 Apply a simple postprocessing filter that compresses and decompresses the image
13365 at several (or - in the case of @option{quality} level @code{6} - all) shifts
13366 and average the results.
13367
13368 The filter accepts the following options:
13369
13370 @table @option
13371 @item quality
13372 Set quality. This option defines the number of levels for averaging. It accepts
13373 an integer in the range 0-6. If set to @code{0}, the filter will have no
13374 effect. A value of @code{6} means the higher quality. For each increment of
13375 that value the speed drops by a factor of approximately 2.  Default value is
13376 @code{3}.
13377
13378 @item qp
13379 Force a constant quantization parameter. If not set, the filter will use the QP
13380 from the video stream (if available).
13381
13382 @item mode
13383 Set thresholding mode. Available modes are:
13384
13385 @table @samp
13386 @item hard
13387 Set hard thresholding (default).
13388 @item soft
13389 Set soft thresholding (better de-ringing effect, but likely blurrier).
13390 @end table
13391
13392 @item use_bframe_qp
13393 Enable the use of the QP from the B-Frames if set to @code{1}. Using this
13394 option may cause flicker since the B-Frames have often larger QP. Default is
13395 @code{0} (not enabled).
13396 @end table
13397
13398 @anchor{subtitles}
13399 @section subtitles
13400
13401 Draw subtitles on top of input video using the libass library.
13402
13403 To enable compilation of this filter you need to configure FFmpeg with
13404 @code{--enable-libass}. This filter also requires a build with libavcodec and
13405 libavformat to convert the passed subtitles file to ASS (Advanced Substation
13406 Alpha) subtitles format.
13407
13408 The filter accepts the following options:
13409
13410 @table @option
13411 @item filename, f
13412 Set the filename of the subtitle file to read. It must be specified.
13413
13414 @item original_size
13415 Specify the size of the original video, the video for which the ASS file
13416 was composed. For the syntax of this option, check the
13417 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13418 Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
13419 correctly scale the fonts if the aspect ratio has been changed.
13420
13421 @item fontsdir
13422 Set a directory path containing fonts that can be used by the filter.
13423 These fonts will be used in addition to whatever the font provider uses.
13424
13425 @item charenc
13426 Set subtitles input character encoding. @code{subtitles} filter only. Only
13427 useful if not UTF-8.
13428
13429 @item stream_index, si
13430 Set subtitles stream index. @code{subtitles} filter only.
13431
13432 @item force_style
13433 Override default style or script info parameters of the subtitles. It accepts a
13434 string containing ASS style format @code{KEY=VALUE} couples separated by ",".
13435 @end table
13436
13437 If the first key is not specified, it is assumed that the first value
13438 specifies the @option{filename}.
13439
13440 For example, to render the file @file{sub.srt} on top of the input
13441 video, use the command:
13442 @example
13443 subtitles=sub.srt
13444 @end example
13445
13446 which is equivalent to:
13447 @example
13448 subtitles=filename=sub.srt
13449 @end example
13450
13451 To render the default subtitles stream from file @file{video.mkv}, use:
13452 @example
13453 subtitles=video.mkv
13454 @end example
13455
13456 To render the second subtitles stream from that file, use:
13457 @example
13458 subtitles=video.mkv:si=1
13459 @end example
13460
13461 To make the subtitles stream from @file{sub.srt} appear in transparent green
13462 @code{DejaVu Serif}, use:
13463 @example
13464 subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HAA00FF00'
13465 @end example
13466
13467 @section super2xsai
13468
13469 Scale the input by 2x and smooth using the Super2xSaI (Scale and
13470 Interpolate) pixel art scaling algorithm.
13471
13472 Useful for enlarging pixel art images without reducing sharpness.
13473
13474 @section swaprect
13475
13476 Swap two rectangular objects in video.
13477
13478 This filter accepts the following options:
13479
13480 @table @option
13481 @item w
13482 Set object width.
13483
13484 @item h
13485 Set object height.
13486
13487 @item x1
13488 Set 1st rect x coordinate.
13489
13490 @item y1
13491 Set 1st rect y coordinate.
13492
13493 @item x2
13494 Set 2nd rect x coordinate.
13495
13496 @item y2
13497 Set 2nd rect y coordinate.
13498
13499 All expressions are evaluated once for each frame.
13500 @end table
13501
13502 The all options are expressions containing the following constants:
13503
13504 @table @option
13505 @item w
13506 @item h
13507 The input width and height.
13508
13509 @item a
13510 same as @var{w} / @var{h}
13511
13512 @item sar
13513 input sample aspect ratio
13514
13515 @item dar
13516 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
13517
13518 @item n
13519 The number of the input frame, starting from 0.
13520
13521 @item t
13522 The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
13523
13524 @item pos
13525 the position in the file of the input frame, NAN if unknown
13526 @end table
13527
13528 @section swapuv
13529 Swap U & V plane.
13530
13531 @section telecine
13532
13533 Apply telecine process to the video.
13534
13535 This filter accepts the following options:
13536
13537 @table @option
13538 @item first_field
13539 @table @samp
13540 @item top, t
13541 top field first
13542 @item bottom, b
13543 bottom field first
13544 The default value is @code{top}.
13545 @end table
13546
13547 @item pattern
13548 A string of numbers representing the pulldown pattern you wish to apply.
13549 The default value is @code{23}.
13550 @end table
13551
13552 @example
13553 Some typical patterns:
13554
13555 NTSC output (30i):
13556 27.5p: 32222
13557 24p: 23 (classic)
13558 24p: 2332 (preferred)
13559 20p: 33
13560 18p: 334
13561 16p: 3444
13562
13563 PAL output (25i):
13564 27.5p: 12222
13565 24p: 222222222223 ("Euro pulldown")
13566 16.67p: 33
13567 16p: 33333334
13568 @end example
13569
13570 @section threshold
13571
13572 Apply threshold effect to video stream.
13573
13574 This filter needs four video streams to perform thresholding.
13575 First stream is stream we are filtering.
13576 Second stream is holding threshold values, third stream is holding min values,
13577 and last, fourth stream is holding max values.
13578
13579 The filter accepts the following option:
13580
13581 @table @option
13582 @item planes
13583 Set which planes will be processed, unprocessed planes will be copied.
13584 By default value 0xf, all planes will be processed.
13585 @end table
13586
13587 For example if first stream pixel's component value is less then threshold value
13588 of pixel component from 2nd threshold stream, third stream value will picked,
13589 otherwise fourth stream pixel component value will be picked.
13590
13591 Using color source filter one can perform various types of thresholding:
13592
13593 @subsection Examples
13594
13595 @itemize
13596 @item
13597 Binary threshold, using gray color as threshold:
13598 @example
13599 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=black -f lavfi -i color=white -lavfi threshold output.avi
13600 @end example
13601
13602 @item
13603 Inverted binary threshold, using gray color as threshold:
13604 @example
13605 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -f lavfi -i color=black -lavfi threshold output.avi
13606 @end example
13607
13608 @item
13609 Truncate binary threshold, using gray color as threshold:
13610 @example
13611 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=gray -lavfi threshold output.avi
13612 @end example
13613
13614 @item
13615 Threshold to zero, using gray color as threshold:
13616 @example
13617 ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -i 320x240.avi -lavfi threshold output.avi
13618 @end example
13619
13620 @item
13621 Inverted threshold to zero, using gray color as threshold:
13622 @example
13623 ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=white -lavfi threshold output.avi
13624 @end example
13625 @end itemize
13626
13627 @section thumbnail
13628 Select the most representative frame in a given sequence of consecutive frames.
13629
13630 The filter accepts the following options:
13631
13632 @table @option
13633 @item n
13634 Set the frames batch size to analyze; in a set of @var{n} frames, the filter
13635 will pick one of them, and then handle the next batch of @var{n} frames until
13636 the end. Default is @code{100}.
13637 @end table
13638
13639 Since the filter keeps track of the whole frames sequence, a bigger @var{n}
13640 value will result in a higher memory usage, so a high value is not recommended.
13641
13642 @subsection Examples
13643
13644 @itemize
13645 @item
13646 Extract one picture each 50 frames:
13647 @example
13648 thumbnail=50
13649 @end example
13650
13651 @item
13652 Complete example of a thumbnail creation with @command{ffmpeg}:
13653 @example
13654 ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
13655 @end example
13656 @end itemize
13657
13658 @section tile
13659
13660 Tile several successive frames together.
13661
13662 The filter accepts the following options:
13663
13664 @table @option
13665
13666 @item layout
13667 Set the grid size (i.e. the number of lines and columns). For the syntax of
13668 this option, check the
13669 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
13670
13671 @item nb_frames
13672 Set the maximum number of frames to render in the given area. It must be less
13673 than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
13674 the area will be used.
13675
13676 @item margin
13677 Set the outer border margin in pixels.
13678
13679 @item padding
13680 Set the inner border thickness (i.e. the number of pixels between frames). For
13681 more advanced padding options (such as having different values for the edges),
13682 refer to the pad video filter.
13683
13684 @item color
13685 Specify the color of the unused area. For the syntax of this option, check the
13686 "Color" section in the ffmpeg-utils manual. The default value of @var{color}
13687 is "black".
13688 @end table
13689
13690 @subsection Examples
13691
13692 @itemize
13693 @item
13694 Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
13695 @example
13696 ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
13697 @end example
13698 The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
13699 duplicating each output frame to accommodate the originally detected frame
13700 rate.
13701
13702 @item
13703 Display @code{5} pictures in an area of @code{3x2} frames,
13704 with @code{7} pixels between them, and @code{2} pixels of initial margin, using
13705 mixed flat and named options:
13706 @example
13707 tile=3x2:nb_frames=5:padding=7:margin=2
13708 @end example
13709 @end itemize
13710
13711 @section tinterlace
13712
13713 Perform various types of temporal field interlacing.
13714
13715 Frames are counted starting from 1, so the first input frame is
13716 considered odd.
13717
13718 The filter accepts the following options:
13719
13720 @table @option
13721
13722 @item mode
13723 Specify the mode of the interlacing. This option can also be specified
13724 as a value alone. See below for a list of values for this option.
13725
13726 Available values are:
13727
13728 @table @samp
13729 @item merge, 0
13730 Move odd frames into the upper field, even into the lower field,
13731 generating a double height frame at half frame rate.
13732 @example
13733  ------> time
13734 Input:
13735 Frame 1         Frame 2         Frame 3         Frame 4
13736
13737 11111           22222           33333           44444
13738 11111           22222           33333           44444
13739 11111           22222           33333           44444
13740 11111           22222           33333           44444
13741
13742 Output:
13743 11111                           33333
13744 22222                           44444
13745 11111                           33333
13746 22222                           44444
13747 11111                           33333
13748 22222                           44444
13749 11111                           33333
13750 22222                           44444
13751 @end example
13752
13753 @item drop_even, 1
13754 Only output odd frames, even frames are dropped, generating a frame with
13755 unchanged height at half frame rate.
13756
13757 @example
13758  ------> time
13759 Input:
13760 Frame 1         Frame 2         Frame 3         Frame 4
13761
13762 11111           22222           33333           44444
13763 11111           22222           33333           44444
13764 11111           22222           33333           44444
13765 11111           22222           33333           44444
13766
13767 Output:
13768 11111                           33333
13769 11111                           33333
13770 11111                           33333
13771 11111                           33333
13772 @end example
13773
13774 @item drop_odd, 2
13775 Only output even frames, odd frames are dropped, generating a frame with
13776 unchanged height at half frame rate.
13777
13778 @example
13779  ------> time
13780 Input:
13781 Frame 1         Frame 2         Frame 3         Frame 4
13782
13783 11111           22222           33333           44444
13784 11111           22222           33333           44444
13785 11111           22222           33333           44444
13786 11111           22222           33333           44444
13787
13788 Output:
13789                 22222                           44444
13790                 22222                           44444
13791                 22222                           44444
13792                 22222                           44444
13793 @end example
13794
13795 @item pad, 3
13796 Expand each frame to full height, but pad alternate lines with black,
13797 generating a frame with double height at the same input frame rate.
13798
13799 @example
13800  ------> time
13801 Input:
13802 Frame 1         Frame 2         Frame 3         Frame 4
13803
13804 11111           22222           33333           44444
13805 11111           22222           33333           44444
13806 11111           22222           33333           44444
13807 11111           22222           33333           44444
13808
13809 Output:
13810 11111           .....           33333           .....
13811 .....           22222           .....           44444
13812 11111           .....           33333           .....
13813 .....           22222           .....           44444
13814 11111           .....           33333           .....
13815 .....           22222           .....           44444
13816 11111           .....           33333           .....
13817 .....           22222           .....           44444
13818 @end example
13819
13820
13821 @item interleave_top, 4
13822 Interleave the upper field from odd frames with the lower field from
13823 even frames, generating a frame with unchanged height at half frame rate.
13824
13825 @example
13826  ------> time
13827 Input:
13828 Frame 1         Frame 2         Frame 3         Frame 4
13829
13830 11111<-         22222           33333<-         44444
13831 11111           22222<-         33333           44444<-
13832 11111<-         22222           33333<-         44444
13833 11111           22222<-         33333           44444<-
13834
13835 Output:
13836 11111                           33333
13837 22222                           44444
13838 11111                           33333
13839 22222                           44444
13840 @end example
13841
13842
13843 @item interleave_bottom, 5
13844 Interleave the lower field from odd frames with the upper field from
13845 even frames, generating a frame with unchanged height at half frame rate.
13846
13847 @example
13848  ------> time
13849 Input:
13850 Frame 1         Frame 2         Frame 3         Frame 4
13851
13852 11111           22222<-         33333           44444<-
13853 11111<-         22222           33333<-         44444
13854 11111           22222<-         33333           44444<-
13855 11111<-         22222           33333<-         44444
13856
13857 Output:
13858 22222                           44444
13859 11111                           33333
13860 22222                           44444
13861 11111                           33333
13862 @end example
13863
13864
13865 @item interlacex2, 6
13866 Double frame rate with unchanged height. Frames are inserted each
13867 containing the second temporal field from the previous input frame and
13868 the first temporal field from the next input frame. This mode relies on
13869 the top_field_first flag. Useful for interlaced video displays with no
13870 field synchronisation.
13871
13872 @example
13873  ------> time
13874 Input:
13875 Frame 1         Frame 2         Frame 3         Frame 4
13876
13877 11111           22222           33333           44444
13878  11111           22222           33333           44444
13879 11111           22222           33333           44444
13880  11111           22222           33333           44444
13881
13882 Output:
13883 11111   22222   22222   33333   33333   44444   44444
13884  11111   11111   22222   22222   33333   33333   44444
13885 11111   22222   22222   33333   33333   44444   44444
13886  11111   11111   22222   22222   33333   33333   44444
13887 @end example
13888
13889
13890 @item mergex2, 7
13891 Move odd frames into the upper field, even into the lower field,
13892 generating a double height frame at same frame rate.
13893
13894 @example
13895  ------> time
13896 Input:
13897 Frame 1         Frame 2         Frame 3         Frame 4
13898
13899 11111           22222           33333           44444
13900 11111           22222           33333           44444
13901 11111           22222           33333           44444
13902 11111           22222           33333           44444
13903
13904 Output:
13905 11111           33333           33333           55555
13906 22222           22222           44444           44444
13907 11111           33333           33333           55555
13908 22222           22222           44444           44444
13909 11111           33333           33333           55555
13910 22222           22222           44444           44444
13911 11111           33333           33333           55555
13912 22222           22222           44444           44444
13913 @end example
13914
13915 @end table
13916
13917 Numeric values are deprecated but are accepted for backward
13918 compatibility reasons.
13919
13920 Default mode is @code{merge}.
13921
13922 @item flags
13923 Specify flags influencing the filter process.
13924
13925 Available value for @var{flags} is:
13926
13927 @table @option
13928 @item low_pass_filter, vlfp
13929 Enable linear vertical low-pass filtering in the filter.
13930 Vertical low-pass filtering is required when creating an interlaced
13931 destination from a progressive source which contains high-frequency
13932 vertical detail. Filtering will reduce interlace 'twitter' and Moire
13933 patterning.
13934
13935 @item complex_filter, cvlfp
13936 Enable complex vertical low-pass filtering.
13937 This will slightly less reduce interlace 'twitter' and Moire
13938 patterning but better retain detail and subjective sharpness impression.
13939
13940 @end table
13941
13942 Vertical low-pass filtering can only be enabled for @option{mode}
13943 @var{interleave_top} and @var{interleave_bottom}.
13944
13945 @end table
13946
13947 @section transpose
13948
13949 Transpose rows with columns in the input video and optionally flip it.
13950
13951 It accepts the following parameters:
13952
13953 @table @option
13954
13955 @item dir
13956 Specify the transposition direction.
13957
13958 Can assume the following values:
13959 @table @samp
13960 @item 0, 4, cclock_flip
13961 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
13962 @example
13963 L.R     L.l
13964 . . ->  . .
13965 l.r     R.r
13966 @end example
13967
13968 @item 1, 5, clock
13969 Rotate by 90 degrees clockwise, that is:
13970 @example
13971 L.R     l.L
13972 . . ->  . .
13973 l.r     r.R
13974 @end example
13975
13976 @item 2, 6, cclock
13977 Rotate by 90 degrees counterclockwise, that is:
13978 @example
13979 L.R     R.r
13980 . . ->  . .
13981 l.r     L.l
13982 @end example
13983
13984 @item 3, 7, clock_flip
13985 Rotate by 90 degrees clockwise and vertically flip, that is:
13986 @example
13987 L.R     r.R
13988 . . ->  . .
13989 l.r     l.L
13990 @end example
13991 @end table
13992
13993 For values between 4-7, the transposition is only done if the input
13994 video geometry is portrait and not landscape. These values are
13995 deprecated, the @code{passthrough} option should be used instead.
13996
13997 Numerical values are deprecated, and should be dropped in favor of
13998 symbolic constants.
13999
14000 @item passthrough
14001 Do not apply the transposition if the input geometry matches the one
14002 specified by the specified value. It accepts the following values:
14003 @table @samp
14004 @item none
14005 Always apply transposition.
14006 @item portrait
14007 Preserve portrait geometry (when @var{height} >= @var{width}).
14008 @item landscape
14009 Preserve landscape geometry (when @var{width} >= @var{height}).
14010 @end table
14011
14012 Default value is @code{none}.
14013 @end table
14014
14015 For example to rotate by 90 degrees clockwise and preserve portrait
14016 layout:
14017 @example
14018 transpose=dir=1:passthrough=portrait
14019 @end example
14020
14021 The command above can also be specified as:
14022 @example
14023 transpose=1:portrait
14024 @end example
14025
14026 @section trim
14027 Trim the input so that the output contains one continuous subpart of the input.
14028
14029 It accepts the following parameters:
14030 @table @option
14031 @item start
14032 Specify the time of the start of the kept section, i.e. the frame with the
14033 timestamp @var{start} will be the first frame in the output.
14034
14035 @item end
14036 Specify the time of the first frame that will be dropped, i.e. the frame
14037 immediately preceding the one with the timestamp @var{end} will be the last
14038 frame in the output.
14039
14040 @item start_pts
14041 This is the same as @var{start}, except this option sets the start timestamp
14042 in timebase units instead of seconds.
14043
14044 @item end_pts
14045 This is the same as @var{end}, except this option sets the end timestamp
14046 in timebase units instead of seconds.
14047
14048 @item duration
14049 The maximum duration of the output in seconds.
14050
14051 @item start_frame
14052 The number of the first frame that should be passed to the output.
14053
14054 @item end_frame
14055 The number of the first frame that should be dropped.
14056 @end table
14057
14058 @option{start}, @option{end}, and @option{duration} are expressed as time
14059 duration specifications; see
14060 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
14061 for the accepted syntax.
14062
14063 Note that the first two sets of the start/end options and the @option{duration}
14064 option look at the frame timestamp, while the _frame variants simply count the
14065 frames that pass through the filter. Also note that this filter does not modify
14066 the timestamps. If you wish for the output timestamps to start at zero, insert a
14067 setpts filter after the trim filter.
14068
14069 If multiple start or end options are set, this filter tries to be greedy and
14070 keep all the frames that match at least one of the specified constraints. To keep
14071 only the part that matches all the constraints at once, chain multiple trim
14072 filters.
14073
14074 The defaults are such that all the input is kept. So it is possible to set e.g.
14075 just the end values to keep everything before the specified time.
14076
14077 Examples:
14078 @itemize
14079 @item
14080 Drop everything except the second minute of input:
14081 @example
14082 ffmpeg -i INPUT -vf trim=60:120
14083 @end example
14084
14085 @item
14086 Keep only the first second:
14087 @example
14088 ffmpeg -i INPUT -vf trim=duration=1
14089 @end example
14090
14091 @end itemize
14092
14093
14094 @anchor{unsharp}
14095 @section unsharp
14096
14097 Sharpen or blur the input video.
14098
14099 It accepts the following parameters:
14100
14101 @table @option
14102 @item luma_msize_x, lx
14103 Set the luma matrix horizontal size. It must be an odd integer between
14104 3 and 23. The default value is 5.
14105
14106 @item luma_msize_y, ly
14107 Set the luma matrix vertical size. It must be an odd integer between 3
14108 and 23. The default value is 5.
14109
14110 @item luma_amount, la
14111 Set the luma effect strength. It must be a floating point number, reasonable
14112 values lay between -1.5 and 1.5.
14113
14114 Negative values will blur the input video, while positive values will
14115 sharpen it, a value of zero will disable the effect.
14116
14117 Default value is 1.0.
14118
14119 @item chroma_msize_x, cx
14120 Set the chroma matrix horizontal size. It must be an odd integer
14121 between 3 and 23. The default value is 5.
14122
14123 @item chroma_msize_y, cy
14124 Set the chroma matrix vertical size. It must be an odd integer
14125 between 3 and 23. The default value is 5.
14126
14127 @item chroma_amount, ca
14128 Set the chroma effect strength. It must be a floating point number, reasonable
14129 values lay between -1.5 and 1.5.
14130
14131 Negative values will blur the input video, while positive values will
14132 sharpen it, a value of zero will disable the effect.
14133
14134 Default value is 0.0.
14135
14136 @item opencl
14137 If set to 1, specify using OpenCL capabilities, only available if
14138 FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
14139
14140 @end table
14141
14142 All parameters are optional and default to the equivalent of the
14143 string '5:5:1.0:5:5:0.0'.
14144
14145 @subsection Examples
14146
14147 @itemize
14148 @item
14149 Apply strong luma sharpen effect:
14150 @example
14151 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
14152 @end example
14153
14154 @item
14155 Apply a strong blur of both luma and chroma parameters:
14156 @example
14157 unsharp=7:7:-2:7:7:-2
14158 @end example
14159 @end itemize
14160
14161 @section uspp
14162
14163 Apply ultra slow/simple postprocessing filter that compresses and decompresses
14164 the image at several (or - in the case of @option{quality} level @code{8} - all)
14165 shifts and average the results.
14166
14167 The way this differs from the behavior of spp is that uspp actually encodes &
14168 decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
14169 DCT similar to MJPEG.
14170
14171 The filter accepts the following options:
14172
14173 @table @option
14174 @item quality
14175 Set quality. This option defines the number of levels for averaging. It accepts
14176 an integer in the range 0-8. If set to @code{0}, the filter will have no
14177 effect. A value of @code{8} means the higher quality. For each increment of
14178 that value the speed drops by a factor of approximately 2.  Default value is
14179 @code{3}.
14180
14181 @item qp
14182 Force a constant quantization parameter. If not set, the filter will use the QP
14183 from the video stream (if available).
14184 @end table
14185
14186 @section vaguedenoiser
14187
14188 Apply a wavelet based denoiser.
14189
14190 It transforms each frame from the video input into the wavelet domain,
14191 using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
14192 the obtained coefficients. It does an inverse wavelet transform after.
14193 Due to wavelet properties, it should give a nice smoothed result, and
14194 reduced noise, without blurring picture features.
14195
14196 This filter accepts the following options:
14197
14198 @table @option
14199 @item threshold
14200 The filtering strength. The higher, the more filtered the video will be.
14201 Hard thresholding can use a higher threshold than soft thresholding
14202 before the video looks overfiltered.
14203
14204 @item method
14205 The filtering method the filter will use.
14206
14207 It accepts the following values:
14208 @table @samp
14209 @item hard
14210 All values under the threshold will be zeroed.
14211
14212 @item soft
14213 All values under the threshold will be zeroed. All values above will be
14214 reduced by the threshold.
14215
14216 @item garrote
14217 Scales or nullifies coefficients - intermediary between (more) soft and
14218 (less) hard thresholding.
14219 @end table
14220
14221 @item nsteps
14222 Number of times, the wavelet will decompose the picture. Picture can't
14223 be decomposed beyond a particular point (typically, 8 for a 640x480
14224 frame - as 2^9 = 512 > 480)
14225
14226 @item percent
14227 Partial of full denoising (limited coefficients shrinking), from 0 to 100.
14228
14229 @item planes
14230 A list of the planes to process. By default all planes are processed.
14231 @end table
14232
14233 @section vectorscope
14234
14235 Display 2 color component values in the two dimensional graph (which is called
14236 a vectorscope).
14237
14238 This filter accepts the following options:
14239
14240 @table @option
14241 @item mode, m
14242 Set vectorscope mode.
14243
14244 It accepts the following values:
14245 @table @samp
14246 @item gray
14247 Gray values are displayed on graph, higher brightness means more pixels have
14248 same component color value on location in graph. This is the default mode.
14249
14250 @item color
14251 Gray values are displayed on graph. Surrounding pixels values which are not
14252 present in video frame are drawn in gradient of 2 color components which are
14253 set by option @code{x} and @code{y}. The 3rd color component is static.
14254
14255 @item color2
14256 Actual color components values present in video frame are displayed on graph.
14257
14258 @item color3
14259 Similar as color2 but higher frequency of same values @code{x} and @code{y}
14260 on graph increases value of another color component, which is luminance by
14261 default values of @code{x} and @code{y}.
14262
14263 @item color4
14264 Actual colors present in video frame are displayed on graph. If two different
14265 colors map to same position on graph then color with higher value of component
14266 not present in graph is picked.
14267
14268 @item color5
14269 Gray values are displayed on graph. Similar to @code{color} but with 3rd color
14270 component picked from radial gradient.
14271 @end table
14272
14273 @item x
14274 Set which color component will be represented on X-axis. Default is @code{1}.
14275
14276 @item y
14277 Set which color component will be represented on Y-axis. Default is @code{2}.
14278
14279 @item intensity, i
14280 Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
14281 of color component which represents frequency of (X, Y) location in graph.
14282
14283 @item envelope, e
14284 @table @samp
14285 @item none
14286 No envelope, this is default.
14287
14288 @item instant
14289 Instant envelope, even darkest single pixel will be clearly highlighted.
14290
14291 @item peak
14292 Hold maximum and minimum values presented in graph over time. This way you
14293 can still spot out of range values without constantly looking at vectorscope.
14294
14295 @item peak+instant
14296 Peak and instant envelope combined together.
14297 @end table
14298
14299 @item graticule, g
14300 Set what kind of graticule to draw.
14301 @table @samp
14302 @item none
14303 @item green
14304 @item color
14305 @end table
14306
14307 @item opacity, o
14308 Set graticule opacity.
14309
14310 @item flags, f
14311 Set graticule flags.
14312
14313 @table @samp
14314 @item white
14315 Draw graticule for white point.
14316
14317 @item black
14318 Draw graticule for black point.
14319
14320 @item name
14321 Draw color points short names.
14322 @end table
14323
14324 @item bgopacity, b
14325 Set background opacity.
14326
14327 @item lthreshold, l
14328 Set low threshold for color component not represented on X or Y axis.
14329 Values lower than this value will be ignored. Default is 0.
14330 Note this value is multiplied with actual max possible value one pixel component
14331 can have. So for 8-bit input and low threshold value of 0.1 actual threshold
14332 is 0.1 * 255 = 25.
14333
14334 @item hthreshold, h
14335 Set high threshold for color component not represented on X or Y axis.
14336 Values higher than this value will be ignored. Default is 1.
14337 Note this value is multiplied with actual max possible value one pixel component
14338 can have. So for 8-bit input and high threshold value of 0.9 actual threshold
14339 is 0.9 * 255 = 230.
14340
14341 @item colorspace, c
14342 Set what kind of colorspace to use when drawing graticule.
14343 @table @samp
14344 @item auto
14345 @item 601
14346 @item 709
14347 @end table
14348 Default is auto.
14349 @end table
14350
14351 @anchor{vidstabdetect}
14352 @section vidstabdetect
14353
14354 Analyze video stabilization/deshaking. Perform pass 1 of 2, see
14355 @ref{vidstabtransform} for pass 2.
14356
14357 This filter generates a file with relative translation and rotation
14358 transform information about subsequent frames, which is then used by
14359 the @ref{vidstabtransform} filter.
14360
14361 To enable compilation of this filter you need to configure FFmpeg with
14362 @code{--enable-libvidstab}.
14363
14364 This filter accepts the following options:
14365
14366 @table @option
14367 @item result
14368 Set the path to the file used to write the transforms information.
14369 Default value is @file{transforms.trf}.
14370
14371 @item shakiness
14372 Set how shaky the video is and how quick the camera is. It accepts an
14373 integer in the range 1-10, a value of 1 means little shakiness, a
14374 value of 10 means strong shakiness. Default value is 5.
14375
14376 @item accuracy
14377 Set the accuracy of the detection process. It must be a value in the
14378 range 1-15. A value of 1 means low accuracy, a value of 15 means high
14379 accuracy. Default value is 15.
14380
14381 @item stepsize
14382 Set stepsize of the search process. The region around minimum is
14383 scanned with 1 pixel resolution. Default value is 6.
14384
14385 @item mincontrast
14386 Set minimum contrast. Below this value a local measurement field is
14387 discarded. Must be a floating point value in the range 0-1. Default
14388 value is 0.3.
14389
14390 @item tripod
14391 Set reference frame number for tripod mode.
14392
14393 If enabled, the motion of the frames is compared to a reference frame
14394 in the filtered stream, identified by the specified number. The idea
14395 is to compensate all movements in a more-or-less static scene and keep
14396 the camera view absolutely still.
14397
14398 If set to 0, it is disabled. The frames are counted starting from 1.
14399
14400 @item show
14401 Show fields and transforms in the resulting frames. It accepts an
14402 integer in the range 0-2. Default value is 0, which disables any
14403 visualization.
14404 @end table
14405
14406 @subsection Examples
14407
14408 @itemize
14409 @item
14410 Use default values:
14411 @example
14412 vidstabdetect
14413 @end example
14414
14415 @item
14416 Analyze strongly shaky movie and put the results in file
14417 @file{mytransforms.trf}:
14418 @example
14419 vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
14420 @end example
14421
14422 @item
14423 Visualize the result of internal transformations in the resulting
14424 video:
14425 @example
14426 vidstabdetect=show=1
14427 @end example
14428
14429 @item
14430 Analyze a video with medium shakiness using @command{ffmpeg}:
14431 @example
14432 ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
14433 @end example
14434 @end itemize
14435
14436 @anchor{vidstabtransform}
14437 @section vidstabtransform
14438
14439 Video stabilization/deshaking: pass 2 of 2,
14440 see @ref{vidstabdetect} for pass 1.
14441
14442 Read a file with transform information for each frame and
14443 apply/compensate them. Together with the @ref{vidstabdetect}
14444 filter this can be used to deshake videos. See also
14445 @url{http://public.hronopik.de/vid.stab}. It is important to also use
14446 the @ref{unsharp} filter, see below.
14447
14448 To enable compilation of this filter you need to configure FFmpeg with
14449 @code{--enable-libvidstab}.
14450
14451 @subsection Options
14452
14453 @table @option
14454 @item input
14455 Set path to the file used to read the transforms. Default value is
14456 @file{transforms.trf}.
14457
14458 @item smoothing
14459 Set the number of frames (value*2 + 1) used for lowpass filtering the
14460 camera movements. Default value is 10.
14461
14462 For example a number of 10 means that 21 frames are used (10 in the
14463 past and 10 in the future) to smoothen the motion in the video. A
14464 larger value leads to a smoother video, but limits the acceleration of
14465 the camera (pan/tilt movements). 0 is a special case where a static
14466 camera is simulated.
14467
14468 @item optalgo
14469 Set the camera path optimization algorithm.
14470
14471 Accepted values are:
14472 @table @samp
14473 @item gauss
14474 gaussian kernel low-pass filter on camera motion (default)
14475 @item avg
14476 averaging on transformations
14477 @end table
14478
14479 @item maxshift
14480 Set maximal number of pixels to translate frames. Default value is -1,
14481 meaning no limit.
14482
14483 @item maxangle
14484 Set maximal angle in radians (degree*PI/180) to rotate frames. Default
14485 value is -1, meaning no limit.
14486
14487 @item crop
14488 Specify how to deal with borders that may be visible due to movement
14489 compensation.
14490
14491 Available values are:
14492 @table @samp
14493 @item keep
14494 keep image information from previous frame (default)
14495 @item black
14496 fill the border black
14497 @end table
14498
14499 @item invert
14500 Invert transforms if set to 1. Default value is 0.
14501
14502 @item relative
14503 Consider transforms as relative to previous frame if set to 1,
14504 absolute if set to 0. Default value is 0.
14505
14506 @item zoom
14507 Set percentage to zoom. A positive value will result in a zoom-in
14508 effect, a negative value in a zoom-out effect. Default value is 0 (no
14509 zoom).
14510
14511 @item optzoom
14512 Set optimal zooming to avoid borders.
14513
14514 Accepted values are:
14515 @table @samp
14516 @item 0
14517 disabled
14518 @item 1
14519 optimal static zoom value is determined (only very strong movements
14520 will lead to visible borders) (default)
14521 @item 2
14522 optimal adaptive zoom value is determined (no borders will be
14523 visible), see @option{zoomspeed}
14524 @end table
14525
14526 Note that the value given at zoom is added to the one calculated here.
14527
14528 @item zoomspeed
14529 Set percent to zoom maximally each frame (enabled when
14530 @option{optzoom} is set to 2). Range is from 0 to 5, default value is
14531 0.25.
14532
14533 @item interpol
14534 Specify type of interpolation.
14535
14536 Available values are:
14537 @table @samp
14538 @item no
14539 no interpolation
14540 @item linear
14541 linear only horizontal
14542 @item bilinear
14543 linear in both directions (default)
14544 @item bicubic
14545 cubic in both directions (slow)
14546 @end table
14547
14548 @item tripod
14549 Enable virtual tripod mode if set to 1, which is equivalent to
14550 @code{relative=0:smoothing=0}. Default value is 0.
14551
14552 Use also @code{tripod} option of @ref{vidstabdetect}.
14553
14554 @item debug
14555 Increase log verbosity if set to 1. Also the detected global motions
14556 are written to the temporary file @file{global_motions.trf}. Default
14557 value is 0.
14558 @end table
14559
14560 @subsection Examples
14561
14562 @itemize
14563 @item
14564 Use @command{ffmpeg} for a typical stabilization with default values:
14565 @example
14566 ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
14567 @end example
14568
14569 Note the use of the @ref{unsharp} filter which is always recommended.
14570
14571 @item
14572 Zoom in a bit more and load transform data from a given file:
14573 @example
14574 vidstabtransform=zoom=5:input="mytransforms.trf"
14575 @end example
14576
14577 @item
14578 Smoothen the video even more:
14579 @example
14580 vidstabtransform=smoothing=30
14581 @end example
14582 @end itemize
14583
14584 @section vflip
14585
14586 Flip the input video vertically.
14587
14588 For example, to vertically flip a video with @command{ffmpeg}:
14589 @example
14590 ffmpeg -i in.avi -vf "vflip" out.avi
14591 @end example
14592
14593 @anchor{vignette}
14594 @section vignette
14595
14596 Make or reverse a natural vignetting effect.
14597
14598 The filter accepts the following options:
14599
14600 @table @option
14601 @item angle, a
14602 Set lens angle expression as a number of radians.
14603
14604 The value is clipped in the @code{[0,PI/2]} range.
14605
14606 Default value: @code{"PI/5"}
14607
14608 @item x0
14609 @item y0
14610 Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
14611 by default.
14612
14613 @item mode
14614 Set forward/backward mode.
14615
14616 Available modes are:
14617 @table @samp
14618 @item forward
14619 The larger the distance from the central point, the darker the image becomes.
14620
14621 @item backward
14622 The larger the distance from the central point, the brighter the image becomes.
14623 This can be used to reverse a vignette effect, though there is no automatic
14624 detection to extract the lens @option{angle} and other settings (yet). It can
14625 also be used to create a burning effect.
14626 @end table
14627
14628 Default value is @samp{forward}.
14629
14630 @item eval
14631 Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
14632
14633 It accepts the following values:
14634 @table @samp
14635 @item init
14636 Evaluate expressions only once during the filter initialization.
14637
14638 @item frame
14639 Evaluate expressions for each incoming frame. This is way slower than the
14640 @samp{init} mode since it requires all the scalers to be re-computed, but it
14641 allows advanced dynamic expressions.
14642 @end table
14643
14644 Default value is @samp{init}.
14645
14646 @item dither
14647 Set dithering to reduce the circular banding effects. Default is @code{1}
14648 (enabled).
14649
14650 @item aspect
14651 Set vignette aspect. This setting allows one to adjust the shape of the vignette.
14652 Setting this value to the SAR of the input will make a rectangular vignetting
14653 following the dimensions of the video.
14654
14655 Default is @code{1/1}.
14656 @end table
14657
14658 @subsection Expressions
14659
14660 The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
14661 following parameters.
14662
14663 @table @option
14664 @item w
14665 @item h
14666 input width and height
14667
14668 @item n
14669 the number of input frame, starting from 0
14670
14671 @item pts
14672 the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
14673 @var{TB} units, NAN if undefined
14674
14675 @item r
14676 frame rate of the input video, NAN if the input frame rate is unknown
14677
14678 @item t
14679 the PTS (Presentation TimeStamp) of the filtered video frame,
14680 expressed in seconds, NAN if undefined
14681
14682 @item tb
14683 time base of the input video
14684 @end table
14685
14686
14687 @subsection Examples
14688
14689 @itemize
14690 @item
14691 Apply simple strong vignetting effect:
14692 @example
14693 vignette=PI/4
14694 @end example
14695
14696 @item
14697 Make a flickering vignetting:
14698 @example
14699 vignette='PI/4+random(1)*PI/50':eval=frame
14700 @end example
14701
14702 @end itemize
14703
14704 @section vstack
14705 Stack input videos vertically.
14706
14707 All streams must be of same pixel format and of same width.
14708
14709 Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
14710 to create same output.
14711
14712 The filter accept the following option:
14713
14714 @table @option
14715 @item inputs
14716 Set number of input streams. Default is 2.
14717
14718 @item shortest
14719 If set to 1, force the output to terminate when the shortest input
14720 terminates. Default value is 0.
14721 @end table
14722
14723 @section w3fdif
14724
14725 Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
14726 Deinterlacing Filter").
14727
14728 Based on the process described by Martin Weston for BBC R&D, and
14729 implemented based on the de-interlace algorithm written by Jim
14730 Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
14731 uses filter coefficients calculated by BBC R&D.
14732
14733 There are two sets of filter coefficients, so called "simple":
14734 and "complex". Which set of filter coefficients is used can
14735 be set by passing an optional parameter:
14736
14737 @table @option
14738 @item filter
14739 Set the interlacing filter coefficients. Accepts one of the following values:
14740
14741 @table @samp
14742 @item simple
14743 Simple filter coefficient set.
14744 @item complex
14745 More-complex filter coefficient set.
14746 @end table
14747 Default value is @samp{complex}.
14748
14749 @item deint
14750 Specify which frames to deinterlace. Accept one of the following values:
14751
14752 @table @samp
14753 @item all
14754 Deinterlace all frames,
14755 @item interlaced
14756 Only deinterlace frames marked as interlaced.
14757 @end table
14758
14759 Default value is @samp{all}.
14760 @end table
14761
14762 @section waveform
14763 Video waveform monitor.
14764
14765 The waveform monitor plots color component intensity. By default luminance
14766 only. Each column of the waveform corresponds to a column of pixels in the
14767 source video.
14768
14769 It accepts the following options:
14770
14771 @table @option
14772 @item mode, m
14773 Can be either @code{row}, or @code{column}. Default is @code{column}.
14774 In row mode, the graph on the left side represents color component value 0 and
14775 the right side represents value = 255. In column mode, the top side represents
14776 color component value = 0 and bottom side represents value = 255.
14777
14778 @item intensity, i
14779 Set intensity. Smaller values are useful to find out how many values of the same
14780 luminance are distributed across input rows/columns.
14781 Default value is @code{0.04}. Allowed range is [0, 1].
14782
14783 @item mirror, r
14784 Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
14785 In mirrored mode, higher values will be represented on the left
14786 side for @code{row} mode and at the top for @code{column} mode. Default is
14787 @code{1} (mirrored).
14788
14789 @item display, d
14790 Set display mode.
14791 It accepts the following values:
14792 @table @samp
14793 @item overlay
14794 Presents information identical to that in the @code{parade}, except
14795 that the graphs representing color components are superimposed directly
14796 over one another.
14797
14798 This display mode makes it easier to spot relative differences or similarities
14799 in overlapping areas of the color components that are supposed to be identical,
14800 such as neutral whites, grays, or blacks.
14801
14802 @item stack
14803 Display separate graph for the color components side by side in
14804 @code{row} mode or one below the other in @code{column} mode.
14805
14806 @item parade
14807 Display separate graph for the color components side by side in
14808 @code{column} mode or one below the other in @code{row} mode.
14809
14810 Using this display mode makes it easy to spot color casts in the highlights
14811 and shadows of an image, by comparing the contours of the top and the bottom
14812 graphs of each waveform. Since whites, grays, and blacks are characterized
14813 by exactly equal amounts of red, green, and blue, neutral areas of the picture
14814 should display three waveforms of roughly equal width/height. If not, the
14815 correction is easy to perform by making level adjustments the three waveforms.
14816 @end table
14817 Default is @code{stack}.
14818
14819 @item components, c
14820 Set which color components to display. Default is 1, which means only luminance
14821 or red color component if input is in RGB colorspace. If is set for example to
14822 7 it will display all 3 (if) available color components.
14823
14824 @item envelope, e
14825 @table @samp
14826 @item none
14827 No envelope, this is default.
14828
14829 @item instant
14830 Instant envelope, minimum and maximum values presented in graph will be easily
14831 visible even with small @code{step} value.
14832
14833 @item peak
14834 Hold minimum and maximum values presented in graph across time. This way you
14835 can still spot out of range values without constantly looking at waveforms.
14836
14837 @item peak+instant
14838 Peak and instant envelope combined together.
14839 @end table
14840
14841 @item filter, f
14842 @table @samp
14843 @item lowpass
14844 No filtering, this is default.
14845
14846 @item flat
14847 Luma and chroma combined together.
14848
14849 @item aflat
14850 Similar as above, but shows difference between blue and red chroma.
14851
14852 @item chroma
14853 Displays only chroma.
14854
14855 @item color
14856 Displays actual color value on waveform.
14857
14858 @item acolor
14859 Similar as above, but with luma showing frequency of chroma values.
14860 @end table
14861
14862 @item graticule, g
14863 Set which graticule to display.
14864
14865 @table @samp
14866 @item none
14867 Do not display graticule.
14868
14869 @item green
14870 Display green graticule showing legal broadcast ranges.
14871 @end table
14872
14873 @item opacity, o
14874 Set graticule opacity.
14875
14876 @item flags, fl
14877 Set graticule flags.
14878
14879 @table @samp
14880 @item numbers
14881 Draw numbers above lines. By default enabled.
14882
14883 @item dots
14884 Draw dots instead of lines.
14885 @end table
14886
14887 @item scale, s
14888 Set scale used for displaying graticule.
14889
14890 @table @samp
14891 @item digital
14892 @item millivolts
14893 @item ire
14894 @end table
14895 Default is digital.
14896
14897 @item bgopacity, b
14898 Set background opacity.
14899 @end table
14900
14901 @section weave, doubleweave
14902
14903 The @code{weave} takes a field-based video input and join
14904 each two sequential fields into single frame, producing a new double
14905 height clip with half the frame rate and half the frame count.
14906
14907 The @code{doubleweave} works same as @code{weave} but without
14908 halving frame rate and frame count.
14909
14910 It accepts the following option:
14911
14912 @table @option
14913 @item first_field
14914 Set first field. Available values are:
14915
14916 @table @samp
14917 @item top, t
14918 Set the frame as top-field-first.
14919
14920 @item bottom, b
14921 Set the frame as bottom-field-first.
14922 @end table
14923 @end table
14924
14925 @subsection Examples
14926
14927 @itemize
14928 @item
14929 Interlace video using @ref{select} and @ref{separatefields} filter:
14930 @example
14931 separatefields,select=eq(mod(n,4),0)+eq(mod(n,4),3),weave
14932 @end example
14933 @end itemize
14934
14935 @section xbr
14936 Apply the xBR high-quality magnification filter which is designed for pixel
14937 art. It follows a set of edge-detection rules, see
14938 @url{http://www.libretro.com/forums/viewtopic.php?f=6&t=134}.
14939
14940 It accepts the following option:
14941
14942 @table @option
14943 @item n
14944 Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
14945 @code{3xBR} and @code{4} for @code{4xBR}.
14946 Default is @code{3}.
14947 @end table
14948
14949 @anchor{yadif}
14950 @section yadif
14951
14952 Deinterlace the input video ("yadif" means "yet another deinterlacing
14953 filter").
14954
14955 It accepts the following parameters:
14956
14957
14958 @table @option
14959
14960 @item mode
14961 The interlacing mode to adopt. It accepts one of the following values:
14962
14963 @table @option
14964 @item 0, send_frame
14965 Output one frame for each frame.
14966 @item 1, send_field
14967 Output one frame for each field.
14968 @item 2, send_frame_nospatial
14969 Like @code{send_frame}, but it skips the spatial interlacing check.
14970 @item 3, send_field_nospatial
14971 Like @code{send_field}, but it skips the spatial interlacing check.
14972 @end table
14973
14974 The default value is @code{send_frame}.
14975
14976 @item parity
14977 The picture field parity assumed for the input interlaced video. It accepts one
14978 of the following values:
14979
14980 @table @option
14981 @item 0, tff
14982 Assume the top field is first.
14983 @item 1, bff
14984 Assume the bottom field is first.
14985 @item -1, auto
14986 Enable automatic detection of field parity.
14987 @end table
14988
14989 The default value is @code{auto}.
14990 If the interlacing is unknown or the decoder does not export this information,
14991 top field first will be assumed.
14992
14993 @item deint
14994 Specify which frames to deinterlace. Accept one of the following
14995 values:
14996
14997 @table @option
14998 @item 0, all
14999 Deinterlace all frames.
15000 @item 1, interlaced
15001 Only deinterlace frames marked as interlaced.
15002 @end table
15003
15004 The default value is @code{all}.
15005 @end table
15006
15007 @section zoompan
15008
15009 Apply Zoom & Pan effect.
15010
15011 This filter accepts the following options:
15012
15013 @table @option
15014 @item zoom, z
15015 Set the zoom expression. Default is 1.
15016
15017 @item x
15018 @item y
15019 Set the x and y expression. Default is 0.
15020
15021 @item d
15022 Set the duration expression in number of frames.
15023 This sets for how many number of frames effect will last for
15024 single input image.
15025
15026 @item s
15027 Set the output image size, default is 'hd720'.
15028
15029 @item fps
15030 Set the output frame rate, default is '25'.
15031 @end table
15032
15033 Each expression can contain the following constants:
15034
15035 @table @option
15036 @item in_w, iw
15037 Input width.
15038
15039 @item in_h, ih
15040 Input height.
15041
15042 @item out_w, ow
15043 Output width.
15044
15045 @item out_h, oh
15046 Output height.
15047
15048 @item in
15049 Input frame count.
15050
15051 @item on
15052 Output frame count.
15053
15054 @item x
15055 @item y
15056 Last calculated 'x' and 'y' position from 'x' and 'y' expression
15057 for current input frame.
15058
15059 @item px
15060 @item py
15061 'x' and 'y' of last output frame of previous input frame or 0 when there was
15062 not yet such frame (first input frame).
15063
15064 @item zoom
15065 Last calculated zoom from 'z' expression for current input frame.
15066
15067 @item pzoom
15068 Last calculated zoom of last output frame of previous input frame.
15069
15070 @item duration
15071 Number of output frames for current input frame. Calculated from 'd' expression
15072 for each input frame.
15073
15074 @item pduration
15075 number of output frames created for previous input frame
15076
15077 @item a
15078 Rational number: input width / input height
15079
15080 @item sar
15081 sample aspect ratio
15082
15083 @item dar
15084 display aspect ratio
15085
15086 @end table
15087
15088 @subsection Examples
15089
15090 @itemize
15091 @item
15092 Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
15093 @example
15094 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
15095 @end example
15096
15097 @item
15098 Zoom-in up to 1.5 and pan always at center of picture:
15099 @example
15100 zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
15101 @end example
15102
15103 @item
15104 Same as above but without pausing:
15105 @example
15106 zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
15107 @end example
15108 @end itemize
15109
15110 @section zscale
15111 Scale (resize) the input video, using the z.lib library:
15112 https://github.com/sekrit-twc/zimg.
15113
15114 The zscale filter forces the output display aspect ratio to be the same
15115 as the input, by changing the output sample aspect ratio.
15116
15117 If the input image format is different from the format requested by
15118 the next filter, the zscale filter will convert the input to the
15119 requested format.
15120
15121 @subsection Options
15122 The filter accepts the following options.
15123
15124 @table @option
15125 @item width, w
15126 @item height, h
15127 Set the output video dimension expression. Default value is the input
15128 dimension.
15129
15130 If the @var{width} or @var{w} is 0, the input width is used for the output.
15131 If the @var{height} or @var{h} is 0, the input height is used for the output.
15132
15133 If one of the values is -1, the zscale filter will use a value that
15134 maintains the aspect ratio of the input image, calculated from the
15135 other specified dimension. If both of them are -1, the input size is
15136 used
15137
15138 If one of the values is -n with n > 1, the zscale filter will also use a value
15139 that maintains the aspect ratio of the input image, calculated from the other
15140 specified dimension. After that it will, however, make sure that the calculated
15141 dimension is divisible by n and adjust the value if necessary.
15142
15143 See below for the list of accepted constants for use in the dimension
15144 expression.
15145
15146 @item size, s
15147 Set the video size. For the syntax of this option, check the
15148 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15149
15150 @item dither, d
15151 Set the dither type.
15152
15153 Possible values are:
15154 @table @var
15155 @item none
15156 @item ordered
15157 @item random
15158 @item error_diffusion
15159 @end table
15160
15161 Default is none.
15162
15163 @item filter, f
15164 Set the resize filter type.
15165
15166 Possible values are:
15167 @table @var
15168 @item point
15169 @item bilinear
15170 @item bicubic
15171 @item spline16
15172 @item spline36
15173 @item lanczos
15174 @end table
15175
15176 Default is bilinear.
15177
15178 @item range, r
15179 Set the color range.
15180
15181 Possible values are:
15182 @table @var
15183 @item input
15184 @item limited
15185 @item full
15186 @end table
15187
15188 Default is same as input.
15189
15190 @item primaries, p
15191 Set the color primaries.
15192
15193 Possible values are:
15194 @table @var
15195 @item input
15196 @item 709
15197 @item unspecified
15198 @item 170m
15199 @item 240m
15200 @item 2020
15201 @end table
15202
15203 Default is same as input.
15204
15205 @item transfer, t
15206 Set the transfer characteristics.
15207
15208 Possible values are:
15209 @table @var
15210 @item input
15211 @item 709
15212 @item unspecified
15213 @item 601
15214 @item linear
15215 @item 2020_10
15216 @item 2020_12
15217 @item smpte2084
15218 @item iec61966-2-1
15219 @item arib-std-b67
15220 @end table
15221
15222 Default is same as input.
15223
15224 @item matrix, m
15225 Set the colorspace matrix.
15226
15227 Possible value are:
15228 @table @var
15229 @item input
15230 @item 709
15231 @item unspecified
15232 @item 470bg
15233 @item 170m
15234 @item 2020_ncl
15235 @item 2020_cl
15236 @end table
15237
15238 Default is same as input.
15239
15240 @item rangein, rin
15241 Set the input color range.
15242
15243 Possible values are:
15244 @table @var
15245 @item input
15246 @item limited
15247 @item full
15248 @end table
15249
15250 Default is same as input.
15251
15252 @item primariesin, pin
15253 Set the input color primaries.
15254
15255 Possible values are:
15256 @table @var
15257 @item input
15258 @item 709
15259 @item unspecified
15260 @item 170m
15261 @item 240m
15262 @item 2020
15263 @end table
15264
15265 Default is same as input.
15266
15267 @item transferin, tin
15268 Set the input transfer characteristics.
15269
15270 Possible values are:
15271 @table @var
15272 @item input
15273 @item 709
15274 @item unspecified
15275 @item 601
15276 @item linear
15277 @item 2020_10
15278 @item 2020_12
15279 @end table
15280
15281 Default is same as input.
15282
15283 @item matrixin, min
15284 Set the input colorspace matrix.
15285
15286 Possible value are:
15287 @table @var
15288 @item input
15289 @item 709
15290 @item unspecified
15291 @item 470bg
15292 @item 170m
15293 @item 2020_ncl
15294 @item 2020_cl
15295 @end table
15296
15297 @item chromal, c
15298 Set the output chroma location.
15299
15300 Possible values are:
15301 @table @var
15302 @item input
15303 @item left
15304 @item center
15305 @item topleft
15306 @item top
15307 @item bottomleft
15308 @item bottom
15309 @end table
15310
15311 @item chromalin, cin
15312 Set the input chroma location.
15313
15314 Possible values are:
15315 @table @var
15316 @item input
15317 @item left
15318 @item center
15319 @item topleft
15320 @item top
15321 @item bottomleft
15322 @item bottom
15323 @end table
15324
15325 @item npl
15326 Set the nominal peak luminance.
15327 @end table
15328
15329 The values of the @option{w} and @option{h} options are expressions
15330 containing the following constants:
15331
15332 @table @var
15333 @item in_w
15334 @item in_h
15335 The input width and height
15336
15337 @item iw
15338 @item ih
15339 These are the same as @var{in_w} and @var{in_h}.
15340
15341 @item out_w
15342 @item out_h
15343 The output (scaled) width and height
15344
15345 @item ow
15346 @item oh
15347 These are the same as @var{out_w} and @var{out_h}
15348
15349 @item a
15350 The same as @var{iw} / @var{ih}
15351
15352 @item sar
15353 input sample aspect ratio
15354
15355 @item dar
15356 The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
15357
15358 @item hsub
15359 @item vsub
15360 horizontal and vertical input chroma subsample values. For example for the
15361 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15362
15363 @item ohsub
15364 @item ovsub
15365 horizontal and vertical output chroma subsample values. For example for the
15366 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
15367 @end table
15368
15369 @table @option
15370 @end table
15371
15372 @c man end VIDEO FILTERS
15373
15374 @chapter Video Sources
15375 @c man begin VIDEO SOURCES
15376
15377 Below is a description of the currently available video sources.
15378
15379 @section buffer
15380
15381 Buffer video frames, and make them available to the filter chain.
15382
15383 This source is mainly intended for a programmatic use, in particular
15384 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
15385
15386 It accepts the following parameters:
15387
15388 @table @option
15389
15390 @item video_size
15391 Specify the size (width and height) of the buffered video frames. For the
15392 syntax of this option, check the
15393 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15394
15395 @item width
15396 The input video width.
15397
15398 @item height
15399 The input video height.
15400
15401 @item pix_fmt
15402 A string representing the pixel format of the buffered video frames.
15403 It may be a number corresponding to a pixel format, or a pixel format
15404 name.
15405
15406 @item time_base
15407 Specify the timebase assumed by the timestamps of the buffered frames.
15408
15409 @item frame_rate
15410 Specify the frame rate expected for the video stream.
15411
15412 @item pixel_aspect, sar
15413 The sample (pixel) aspect ratio of the input video.
15414
15415 @item sws_param
15416 Specify the optional parameters to be used for the scale filter which
15417 is automatically inserted when an input change is detected in the
15418 input size or format.
15419
15420 @item hw_frames_ctx
15421 When using a hardware pixel format, this should be a reference to an
15422 AVHWFramesContext describing input frames.
15423 @end table
15424
15425 For example:
15426 @example
15427 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
15428 @end example
15429
15430 will instruct the source to accept video frames with size 320x240 and
15431 with format "yuv410p", assuming 1/24 as the timestamps timebase and
15432 square pixels (1:1 sample aspect ratio).
15433 Since the pixel format with name "yuv410p" corresponds to the number 6
15434 (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
15435 this example corresponds to:
15436 @example
15437 buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
15438 @end example
15439
15440 Alternatively, the options can be specified as a flat string, but this
15441 syntax is deprecated:
15442
15443 @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}]
15444
15445 @section cellauto
15446
15447 Create a pattern generated by an elementary cellular automaton.
15448
15449 The initial state of the cellular automaton can be defined through the
15450 @option{filename} and @option{pattern} options. If such options are
15451 not specified an initial state is created randomly.
15452
15453 At each new frame a new row in the video is filled with the result of
15454 the cellular automaton next generation. The behavior when the whole
15455 frame is filled is defined by the @option{scroll} option.
15456
15457 This source accepts the following options:
15458
15459 @table @option
15460 @item filename, f
15461 Read the initial cellular automaton state, i.e. the starting row, from
15462 the specified file.
15463 In the file, each non-whitespace character is considered an alive
15464 cell, a newline will terminate the row, and further characters in the
15465 file will be ignored.
15466
15467 @item pattern, p
15468 Read the initial cellular automaton state, i.e. the starting row, from
15469 the specified string.
15470
15471 Each non-whitespace character in the string is considered an alive
15472 cell, a newline will terminate the row, and further characters in the
15473 string will be ignored.
15474
15475 @item rate, r
15476 Set the video rate, that is the number of frames generated per second.
15477 Default is 25.
15478
15479 @item random_fill_ratio, ratio
15480 Set the random fill ratio for the initial cellular automaton row. It
15481 is a floating point number value ranging from 0 to 1, defaults to
15482 1/PHI.
15483
15484 This option is ignored when a file or a pattern is specified.
15485
15486 @item random_seed, seed
15487 Set the seed for filling randomly the initial row, must be an integer
15488 included between 0 and UINT32_MAX. If not specified, or if explicitly
15489 set to -1, the filter will try to use a good random seed on a best
15490 effort basis.
15491
15492 @item rule
15493 Set the cellular automaton rule, it is a number ranging from 0 to 255.
15494 Default value is 110.
15495
15496 @item size, s
15497 Set the size of the output video. For the syntax of this option, check the
15498 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15499
15500 If @option{filename} or @option{pattern} is specified, the size is set
15501 by default to the width of the specified initial state row, and the
15502 height is set to @var{width} * PHI.
15503
15504 If @option{size} is set, it must contain the width of the specified
15505 pattern string, and the specified pattern will be centered in the
15506 larger row.
15507
15508 If a filename or a pattern string is not specified, the size value
15509 defaults to "320x518" (used for a randomly generated initial state).
15510
15511 @item scroll
15512 If set to 1, scroll the output upward when all the rows in the output
15513 have been already filled. If set to 0, the new generated row will be
15514 written over the top row just after the bottom row is filled.
15515 Defaults to 1.
15516
15517 @item start_full, full
15518 If set to 1, completely fill the output with generated rows before
15519 outputting the first frame.
15520 This is the default behavior, for disabling set the value to 0.
15521
15522 @item stitch
15523 If set to 1, stitch the left and right row edges together.
15524 This is the default behavior, for disabling set the value to 0.
15525 @end table
15526
15527 @subsection Examples
15528
15529 @itemize
15530 @item
15531 Read the initial state from @file{pattern}, and specify an output of
15532 size 200x400.
15533 @example
15534 cellauto=f=pattern:s=200x400
15535 @end example
15536
15537 @item
15538 Generate a random initial row with a width of 200 cells, with a fill
15539 ratio of 2/3:
15540 @example
15541 cellauto=ratio=2/3:s=200x200
15542 @end example
15543
15544 @item
15545 Create a pattern generated by rule 18 starting by a single alive cell
15546 centered on an initial row with width 100:
15547 @example
15548 cellauto=p=@@:s=100x400:full=0:rule=18
15549 @end example
15550
15551 @item
15552 Specify a more elaborated initial pattern:
15553 @example
15554 cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
15555 @end example
15556
15557 @end itemize
15558
15559 @anchor{coreimagesrc}
15560 @section coreimagesrc
15561 Video source generated on GPU using Apple's CoreImage API on OSX.
15562
15563 This video source is a specialized version of the @ref{coreimage} video filter.
15564 Use a core image generator at the beginning of the applied filterchain to
15565 generate the content.
15566
15567 The coreimagesrc video source accepts the following options:
15568 @table @option
15569 @item list_generators
15570 List all available generators along with all their respective options as well as
15571 possible minimum and maximum values along with the default values.
15572 @example
15573 list_generators=true
15574 @end example
15575
15576 @item size, s
15577 Specify the size of the sourced video. For the syntax of this option, check the
15578 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15579 The default value is @code{320x240}.
15580
15581 @item rate, r
15582 Specify the frame rate of the sourced video, as the number of frames
15583 generated per second. It has to be a string in the format
15584 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
15585 number or a valid video frame rate abbreviation. The default value is
15586 "25".
15587
15588 @item sar
15589 Set the sample aspect ratio of the sourced video.
15590
15591 @item duration, d
15592 Set the duration of the sourced video. See
15593 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
15594 for the accepted syntax.
15595
15596 If not specified, or the expressed duration is negative, the video is
15597 supposed to be generated forever.
15598 @end table
15599
15600 Additionally, all options of the @ref{coreimage} video filter are accepted.
15601 A complete filterchain can be used for further processing of the
15602 generated input without CPU-HOST transfer. See @ref{coreimage} documentation
15603 and examples for details.
15604
15605 @subsection Examples
15606
15607 @itemize
15608
15609 @item
15610 Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
15611 given as complete and escaped command-line for Apple's standard bash shell:
15612 @example
15613 ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
15614 @end example
15615 This example is equivalent to the QRCode example of @ref{coreimage} without the
15616 need for a nullsrc video source.
15617 @end itemize
15618
15619
15620 @section mandelbrot
15621
15622 Generate a Mandelbrot set fractal, and progressively zoom towards the
15623 point specified with @var{start_x} and @var{start_y}.
15624
15625 This source accepts the following options:
15626
15627 @table @option
15628
15629 @item end_pts
15630 Set the terminal pts value. Default value is 400.
15631
15632 @item end_scale
15633 Set the terminal scale value.
15634 Must be a floating point value. Default value is 0.3.
15635
15636 @item inner
15637 Set the inner coloring mode, that is the algorithm used to draw the
15638 Mandelbrot fractal internal region.
15639
15640 It shall assume one of the following values:
15641 @table @option
15642 @item black
15643 Set black mode.
15644 @item convergence
15645 Show time until convergence.
15646 @item mincol
15647 Set color based on point closest to the origin of the iterations.
15648 @item period
15649 Set period mode.
15650 @end table
15651
15652 Default value is @var{mincol}.
15653
15654 @item bailout
15655 Set the bailout value. Default value is 10.0.
15656
15657 @item maxiter
15658 Set the maximum of iterations performed by the rendering
15659 algorithm. Default value is 7189.
15660
15661 @item outer
15662 Set outer coloring mode.
15663 It shall assume one of following values:
15664 @table @option
15665 @item iteration_count
15666 Set iteration cound mode.
15667 @item normalized_iteration_count
15668 set normalized iteration count mode.
15669 @end table
15670 Default value is @var{normalized_iteration_count}.
15671
15672 @item rate, r
15673 Set frame rate, expressed as number of frames per second. Default
15674 value is "25".
15675
15676 @item size, s
15677 Set frame size. For the syntax of this option, check the "Video
15678 size" section in the ffmpeg-utils manual. Default value is "640x480".
15679
15680 @item start_scale
15681 Set the initial scale value. Default value is 3.0.
15682
15683 @item start_x
15684 Set the initial x position. Must be a floating point value between
15685 -100 and 100. Default value is -0.743643887037158704752191506114774.
15686
15687 @item start_y
15688 Set the initial y position. Must be a floating point value between
15689 -100 and 100. Default value is -0.131825904205311970493132056385139.
15690 @end table
15691
15692 @section mptestsrc
15693
15694 Generate various test patterns, as generated by the MPlayer test filter.
15695
15696 The size of the generated video is fixed, and is 256x256.
15697 This source is useful in particular for testing encoding features.
15698
15699 This source accepts the following options:
15700
15701 @table @option
15702
15703 @item rate, r
15704 Specify the frame rate of the sourced video, as the number of frames
15705 generated per second. It has to be a string in the format
15706 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
15707 number or a valid video frame rate abbreviation. The default value is
15708 "25".
15709
15710 @item duration, d
15711 Set the duration of the sourced video. See
15712 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
15713 for the accepted syntax.
15714
15715 If not specified, or the expressed duration is negative, the video is
15716 supposed to be generated forever.
15717
15718 @item test, t
15719
15720 Set the number or the name of the test to perform. Supported tests are:
15721 @table @option
15722 @item dc_luma
15723 @item dc_chroma
15724 @item freq_luma
15725 @item freq_chroma
15726 @item amp_luma
15727 @item amp_chroma
15728 @item cbp
15729 @item mv
15730 @item ring1
15731 @item ring2
15732 @item all
15733
15734 @end table
15735
15736 Default value is "all", which will cycle through the list of all tests.
15737 @end table
15738
15739 Some examples:
15740 @example
15741 mptestsrc=t=dc_luma
15742 @end example
15743
15744 will generate a "dc_luma" test pattern.
15745
15746 @section frei0r_src
15747
15748 Provide a frei0r source.
15749
15750 To enable compilation of this filter you need to install the frei0r
15751 header and configure FFmpeg with @code{--enable-frei0r}.
15752
15753 This source accepts the following parameters:
15754
15755 @table @option
15756
15757 @item size
15758 The size of the video to generate. For the syntax of this option, check the
15759 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15760
15761 @item framerate
15762 The framerate of the generated video. It may be a string of the form
15763 @var{num}/@var{den} or a frame rate abbreviation.
15764
15765 @item filter_name
15766 The name to the frei0r source to load. For more information regarding frei0r and
15767 how to set the parameters, read the @ref{frei0r} section in the video filters
15768 documentation.
15769
15770 @item filter_params
15771 A '|'-separated list of parameters to pass to the frei0r source.
15772
15773 @end table
15774
15775 For example, to generate a frei0r partik0l source with size 200x200
15776 and frame rate 10 which is overlaid on the overlay filter main input:
15777 @example
15778 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
15779 @end example
15780
15781 @section life
15782
15783 Generate a life pattern.
15784
15785 This source is based on a generalization of John Conway's life game.
15786
15787 The sourced input represents a life grid, each pixel represents a cell
15788 which can be in one of two possible states, alive or dead. Every cell
15789 interacts with its eight neighbours, which are the cells that are
15790 horizontally, vertically, or diagonally adjacent.
15791
15792 At each interaction the grid evolves according to the adopted rule,
15793 which specifies the number of neighbor alive cells which will make a
15794 cell stay alive or born. The @option{rule} option allows one to specify
15795 the rule to adopt.
15796
15797 This source accepts the following options:
15798
15799 @table @option
15800 @item filename, f
15801 Set the file from which to read the initial grid state. In the file,
15802 each non-whitespace character is considered an alive cell, and newline
15803 is used to delimit the end of each row.
15804
15805 If this option is not specified, the initial grid is generated
15806 randomly.
15807
15808 @item rate, r
15809 Set the video rate, that is the number of frames generated per second.
15810 Default is 25.
15811
15812 @item random_fill_ratio, ratio
15813 Set the random fill ratio for the initial random grid. It is a
15814 floating point number value ranging from 0 to 1, defaults to 1/PHI.
15815 It is ignored when a file is specified.
15816
15817 @item random_seed, seed
15818 Set the seed for filling the initial random grid, must be an integer
15819 included between 0 and UINT32_MAX. If not specified, or if explicitly
15820 set to -1, the filter will try to use a good random seed on a best
15821 effort basis.
15822
15823 @item rule
15824 Set the life rule.
15825
15826 A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
15827 where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
15828 @var{NS} specifies the number of alive neighbor cells which make a
15829 live cell stay alive, and @var{NB} the number of alive neighbor cells
15830 which make a dead cell to become alive (i.e. to "born").
15831 "s" and "b" can be used in place of "S" and "B", respectively.
15832
15833 Alternatively a rule can be specified by an 18-bits integer. The 9
15834 high order bits are used to encode the next cell state if it is alive
15835 for each number of neighbor alive cells, the low order bits specify
15836 the rule for "borning" new cells. Higher order bits encode for an
15837 higher number of neighbor cells.
15838 For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
15839 rule of 12 and a born rule of 9, which corresponds to "S23/B03".
15840
15841 Default value is "S23/B3", which is the original Conway's game of life
15842 rule, and will keep a cell alive if it has 2 or 3 neighbor alive
15843 cells, and will born a new cell if there are three alive cells around
15844 a dead cell.
15845
15846 @item size, s
15847 Set the size of the output video. For the syntax of this option, check the
15848 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15849
15850 If @option{filename} is specified, the size is set by default to the
15851 same size of the input file. If @option{size} is set, it must contain
15852 the size specified in the input file, and the initial grid defined in
15853 that file is centered in the larger resulting area.
15854
15855 If a filename is not specified, the size value defaults to "320x240"
15856 (used for a randomly generated initial grid).
15857
15858 @item stitch
15859 If set to 1, stitch the left and right grid edges together, and the
15860 top and bottom edges also. Defaults to 1.
15861
15862 @item mold
15863 Set cell mold speed. If set, a dead cell will go from @option{death_color} to
15864 @option{mold_color} with a step of @option{mold}. @option{mold} can have a
15865 value from 0 to 255.
15866
15867 @item life_color
15868 Set the color of living (or new born) cells.
15869
15870 @item death_color
15871 Set the color of dead cells. If @option{mold} is set, this is the first color
15872 used to represent a dead cell.
15873
15874 @item mold_color
15875 Set mold color, for definitely dead and moldy cells.
15876
15877 For the syntax of these 3 color options, check the "Color" section in the
15878 ffmpeg-utils manual.
15879 @end table
15880
15881 @subsection Examples
15882
15883 @itemize
15884 @item
15885 Read a grid from @file{pattern}, and center it on a grid of size
15886 300x300 pixels:
15887 @example
15888 life=f=pattern:s=300x300
15889 @end example
15890
15891 @item
15892 Generate a random grid of size 200x200, with a fill ratio of 2/3:
15893 @example
15894 life=ratio=2/3:s=200x200
15895 @end example
15896
15897 @item
15898 Specify a custom rule for evolving a randomly generated grid:
15899 @example
15900 life=rule=S14/B34
15901 @end example
15902
15903 @item
15904 Full example with slow death effect (mold) using @command{ffplay}:
15905 @example
15906 ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
15907 @end example
15908 @end itemize
15909
15910 @anchor{allrgb}
15911 @anchor{allyuv}
15912 @anchor{color}
15913 @anchor{haldclutsrc}
15914 @anchor{nullsrc}
15915 @anchor{rgbtestsrc}
15916 @anchor{smptebars}
15917 @anchor{smptehdbars}
15918 @anchor{testsrc}
15919 @anchor{testsrc2}
15920 @anchor{yuvtestsrc}
15921 @section allrgb, allyuv, color, haldclutsrc, nullsrc, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
15922
15923 The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
15924
15925 The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
15926
15927 The @code{color} source provides an uniformly colored input.
15928
15929 The @code{haldclutsrc} source provides an identity Hald CLUT. See also
15930 @ref{haldclut} filter.
15931
15932 The @code{nullsrc} source returns unprocessed video frames. It is
15933 mainly useful to be employed in analysis / debugging tools, or as the
15934 source for filters which ignore the input data.
15935
15936 The @code{rgbtestsrc} source generates an RGB test pattern useful for
15937 detecting RGB vs BGR issues. You should see a red, green and blue
15938 stripe from top to bottom.
15939
15940 The @code{smptebars} source generates a color bars pattern, based on
15941 the SMPTE Engineering Guideline EG 1-1990.
15942
15943 The @code{smptehdbars} source generates a color bars pattern, based on
15944 the SMPTE RP 219-2002.
15945
15946 The @code{testsrc} source generates a test video pattern, showing a
15947 color pattern, a scrolling gradient and a timestamp. This is mainly
15948 intended for testing purposes.
15949
15950 The @code{testsrc2} source is similar to testsrc, but supports more
15951 pixel formats instead of just @code{rgb24}. This allows using it as an
15952 input for other tests without requiring a format conversion.
15953
15954 The @code{yuvtestsrc} source generates an YUV test pattern. You should
15955 see a y, cb and cr stripe from top to bottom.
15956
15957 The sources accept the following parameters:
15958
15959 @table @option
15960
15961 @item color, c
15962 Specify the color of the source, only available in the @code{color}
15963 source. For the syntax of this option, check the "Color" section in the
15964 ffmpeg-utils manual.
15965
15966 @item level
15967 Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
15968 source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
15969 pixels to be used as identity matrix for 3D lookup tables. Each component is
15970 coded on a @code{1/(N*N)} scale.
15971
15972 @item size, s
15973 Specify the size of the sourced video. For the syntax of this option, check the
15974 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
15975 The default value is @code{320x240}.
15976
15977 This option is not available with the @code{haldclutsrc} filter.
15978
15979 @item rate, r
15980 Specify the frame rate of the sourced video, as the number of frames
15981 generated per second. It has to be a string in the format
15982 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
15983 number or a valid video frame rate abbreviation. The default value is
15984 "25".
15985
15986 @item sar
15987 Set the sample aspect ratio of the sourced video.
15988
15989 @item duration, d
15990 Set the duration of the sourced video. See
15991 @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
15992 for the accepted syntax.
15993
15994 If not specified, or the expressed duration is negative, the video is
15995 supposed to be generated forever.
15996
15997 @item decimals, n
15998 Set the number of decimals to show in the timestamp, only available in the
15999 @code{testsrc} source.
16000
16001 The displayed timestamp value will correspond to the original
16002 timestamp value multiplied by the power of 10 of the specified
16003 value. Default value is 0.
16004 @end table
16005
16006 For example the following:
16007 @example
16008 testsrc=duration=5.3:size=qcif:rate=10
16009 @end example
16010
16011 will generate a video with a duration of 5.3 seconds, with size
16012 176x144 and a frame rate of 10 frames per second.
16013
16014 The following graph description will generate a red source
16015 with an opacity of 0.2, with size "qcif" and a frame rate of 10
16016 frames per second.
16017 @example
16018 color=c=red@@0.2:s=qcif:r=10
16019 @end example
16020
16021 If the input content is to be ignored, @code{nullsrc} can be used. The
16022 following command generates noise in the luminance plane by employing
16023 the @code{geq} filter:
16024 @example
16025 nullsrc=s=256x256, geq=random(1)*255:128:128
16026 @end example
16027
16028 @subsection Commands
16029
16030 The @code{color} source supports the following commands:
16031
16032 @table @option
16033 @item c, color
16034 Set the color of the created image. Accepts the same syntax of the
16035 corresponding @option{color} option.
16036 @end table
16037
16038 @c man end VIDEO SOURCES
16039
16040 @chapter Video Sinks
16041 @c man begin VIDEO SINKS
16042
16043 Below is a description of the currently available video sinks.
16044
16045 @section buffersink
16046
16047 Buffer video frames, and make them available to the end of the filter
16048 graph.
16049
16050 This sink is mainly intended for programmatic use, in particular
16051 through the interface defined in @file{libavfilter/buffersink.h}
16052 or the options system.
16053
16054 It accepts a pointer to an AVBufferSinkContext structure, which
16055 defines the incoming buffers' formats, to be passed as the opaque
16056 parameter to @code{avfilter_init_filter} for initialization.
16057
16058 @section nullsink
16059
16060 Null video sink: do absolutely nothing with the input video. It is
16061 mainly useful as a template and for use in analysis / debugging
16062 tools.
16063
16064 @c man end VIDEO SINKS
16065
16066 @chapter Multimedia Filters
16067 @c man begin MULTIMEDIA FILTERS
16068
16069 Below is a description of the currently available multimedia filters.
16070
16071 @section abitscope
16072
16073 Convert input audio to a video output, displaying the audio bit scope.
16074
16075 The filter accepts the following options:
16076
16077 @table @option
16078 @item rate, r
16079 Set frame rate, expressed as number of frames per second. Default
16080 value is "25".
16081
16082 @item size, s
16083 Specify the video size for the output. For the syntax of this option, check the
16084 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16085 Default value is @code{1024x256}.
16086
16087 @item colors
16088 Specify list of colors separated by space or by '|' which will be used to
16089 draw channels. Unrecognized or missing colors will be replaced
16090 by white color.
16091 @end table
16092
16093 @section ahistogram
16094
16095 Convert input audio to a video output, displaying the volume histogram.
16096
16097 The filter accepts the following options:
16098
16099 @table @option
16100 @item dmode
16101 Specify how histogram is calculated.
16102
16103 It accepts the following values:
16104 @table @samp
16105 @item single
16106 Use single histogram for all channels.
16107 @item separate
16108 Use separate histogram for each channel.
16109 @end table
16110 Default is @code{single}.
16111
16112 @item rate, r
16113 Set frame rate, expressed as number of frames per second. Default
16114 value is "25".
16115
16116 @item size, s
16117 Specify the video size for the output. For the syntax of this option, check the
16118 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16119 Default value is @code{hd720}.
16120
16121 @item scale
16122 Set display scale.
16123
16124 It accepts the following values:
16125 @table @samp
16126 @item log
16127 logarithmic
16128 @item sqrt
16129 square root
16130 @item cbrt
16131 cubic root
16132 @item lin
16133 linear
16134 @item rlog
16135 reverse logarithmic
16136 @end table
16137 Default is @code{log}.
16138
16139 @item ascale
16140 Set amplitude scale.
16141
16142 It accepts the following values:
16143 @table @samp
16144 @item log
16145 logarithmic
16146 @item lin
16147 linear
16148 @end table
16149 Default is @code{log}.
16150
16151 @item acount
16152 Set how much frames to accumulate in histogram.
16153 Defauls is 1. Setting this to -1 accumulates all frames.
16154
16155 @item rheight
16156 Set histogram ratio of window height.
16157
16158 @item slide
16159 Set sonogram sliding.
16160
16161 It accepts the following values:
16162 @table @samp
16163 @item replace
16164 replace old rows with new ones.
16165 @item scroll
16166 scroll from top to bottom.
16167 @end table
16168 Default is @code{replace}.
16169 @end table
16170
16171 @section aphasemeter
16172
16173 Convert input audio to a video output, displaying the audio phase.
16174
16175 The filter accepts the following options:
16176
16177 @table @option
16178 @item rate, r
16179 Set the output frame rate. Default value is @code{25}.
16180
16181 @item size, s
16182 Set the video size for the output. For the syntax of this option, check the
16183 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16184 Default value is @code{800x400}.
16185
16186 @item rc
16187 @item gc
16188 @item bc
16189 Specify the red, green, blue contrast. Default values are @code{2},
16190 @code{7} and @code{1}.
16191 Allowed range is @code{[0, 255]}.
16192
16193 @item mpc
16194 Set color which will be used for drawing median phase. If color is
16195 @code{none} which is default, no median phase value will be drawn.
16196
16197 @item video
16198 Enable video output. Default is enabled.
16199 @end table
16200
16201 The filter also exports the frame metadata @code{lavfi.aphasemeter.phase} which
16202 represents mean phase of current audio frame. Value is in range @code{[-1, 1]}.
16203 The @code{-1} means left and right channels are completely out of phase and
16204 @code{1} means channels are in phase.
16205
16206 @section avectorscope
16207
16208 Convert input audio to a video output, representing the audio vector
16209 scope.
16210
16211 The filter is used to measure the difference between channels of stereo
16212 audio stream. A monoaural signal, consisting of identical left and right
16213 signal, results in straight vertical line. Any stereo separation is visible
16214 as a deviation from this line, creating a Lissajous figure.
16215 If the straight (or deviation from it) but horizontal line appears this
16216 indicates that the left and right channels are out of phase.
16217
16218 The filter accepts the following options:
16219
16220 @table @option
16221 @item mode, m
16222 Set the vectorscope mode.
16223
16224 Available values are:
16225 @table @samp
16226 @item lissajous
16227 Lissajous rotated by 45 degrees.
16228
16229 @item lissajous_xy
16230 Same as above but not rotated.
16231
16232 @item polar
16233 Shape resembling half of circle.
16234 @end table
16235
16236 Default value is @samp{lissajous}.
16237
16238 @item size, s
16239 Set the video size for the output. For the syntax of this option, check the
16240 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16241 Default value is @code{400x400}.
16242
16243 @item rate, r
16244 Set the output frame rate. Default value is @code{25}.
16245
16246 @item rc
16247 @item gc
16248 @item bc
16249 @item ac
16250 Specify the red, green, blue and alpha contrast. Default values are @code{40},
16251 @code{160}, @code{80} and @code{255}.
16252 Allowed range is @code{[0, 255]}.
16253
16254 @item rf
16255 @item gf
16256 @item bf
16257 @item af
16258 Specify the red, green, blue and alpha fade. Default values are @code{15},
16259 @code{10}, @code{5} and @code{5}.
16260 Allowed range is @code{[0, 255]}.
16261
16262 @item zoom
16263 Set the zoom factor. Default value is @code{1}. Allowed range is @code{[1, 10]}.
16264
16265 @item draw
16266 Set the vectorscope drawing mode.
16267
16268 Available values are:
16269 @table @samp
16270 @item dot
16271 Draw dot for each sample.
16272
16273 @item line
16274 Draw line between previous and current sample.
16275 @end table
16276
16277 Default value is @samp{dot}.
16278
16279 @item scale
16280 Specify amplitude scale of audio samples.
16281
16282 Available values are:
16283 @table @samp
16284 @item lin
16285 Linear.
16286
16287 @item sqrt
16288 Square root.
16289
16290 @item cbrt
16291 Cubic root.
16292
16293 @item log
16294 Logarithmic.
16295 @end table
16296
16297 @end table
16298
16299 @subsection Examples
16300
16301 @itemize
16302 @item
16303 Complete example using @command{ffplay}:
16304 @example
16305 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
16306              [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
16307 @end example
16308 @end itemize
16309
16310 @section bench, abench
16311
16312 Benchmark part of a filtergraph.
16313
16314 The filter accepts the following options:
16315
16316 @table @option
16317 @item action
16318 Start or stop a timer.
16319
16320 Available values are:
16321 @table @samp
16322 @item start
16323 Get the current time, set it as frame metadata (using the key
16324 @code{lavfi.bench.start_time}), and forward the frame to the next filter.
16325
16326 @item stop
16327 Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
16328 the input frame metadata to get the time difference. Time difference, average,
16329 maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
16330 @code{min}) are then printed. The timestamps are expressed in seconds.
16331 @end table
16332 @end table
16333
16334 @subsection Examples
16335
16336 @itemize
16337 @item
16338 Benchmark @ref{selectivecolor} filter:
16339 @example
16340 bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
16341 @end example
16342 @end itemize
16343
16344 @section concat
16345
16346 Concatenate audio and video streams, joining them together one after the
16347 other.
16348
16349 The filter works on segments of synchronized video and audio streams. All
16350 segments must have the same number of streams of each type, and that will
16351 also be the number of streams at output.
16352
16353 The filter accepts the following options:
16354
16355 @table @option
16356
16357 @item n
16358 Set the number of segments. Default is 2.
16359
16360 @item v
16361 Set the number of output video streams, that is also the number of video
16362 streams in each segment. Default is 1.
16363
16364 @item a
16365 Set the number of output audio streams, that is also the number of audio
16366 streams in each segment. Default is 0.
16367
16368 @item unsafe
16369 Activate unsafe mode: do not fail if segments have a different format.
16370
16371 @end table
16372
16373 The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
16374 @var{a} audio outputs.
16375
16376 There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
16377 segment, in the same order as the outputs, then the inputs for the second
16378 segment, etc.
16379
16380 Related streams do not always have exactly the same duration, for various
16381 reasons including codec frame size or sloppy authoring. For that reason,
16382 related synchronized streams (e.g. a video and its audio track) should be
16383 concatenated at once. The concat filter will use the duration of the longest
16384 stream in each segment (except the last one), and if necessary pad shorter
16385 audio streams with silence.
16386
16387 For this filter to work correctly, all segments must start at timestamp 0.
16388
16389 All corresponding streams must have the same parameters in all segments; the
16390 filtering system will automatically select a common pixel format for video
16391 streams, and a common sample format, sample rate and channel layout for
16392 audio streams, but other settings, such as resolution, must be converted
16393 explicitly by the user.
16394
16395 Different frame rates are acceptable but will result in variable frame rate
16396 at output; be sure to configure the output file to handle it.
16397
16398 @subsection Examples
16399
16400 @itemize
16401 @item
16402 Concatenate an opening, an episode and an ending, all in bilingual version
16403 (video in stream 0, audio in streams 1 and 2):
16404 @example
16405 ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
16406   '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
16407    concat=n=3:v=1:a=2 [v] [a1] [a2]' \
16408   -map '[v]' -map '[a1]' -map '[a2]' output.mkv
16409 @end example
16410
16411 @item
16412 Concatenate two parts, handling audio and video separately, using the
16413 (a)movie sources, and adjusting the resolution:
16414 @example
16415 movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
16416 movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
16417 [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
16418 @end example
16419 Note that a desync will happen at the stitch if the audio and video streams
16420 do not have exactly the same duration in the first file.
16421
16422 @end itemize
16423
16424 @section drawgraph, adrawgraph
16425
16426 Draw a graph using input video or audio metadata.
16427
16428 It accepts the following parameters:
16429
16430 @table @option
16431 @item m1
16432 Set 1st frame metadata key from which metadata values will be used to draw a graph.
16433
16434 @item fg1
16435 Set 1st foreground color expression.
16436
16437 @item m2
16438 Set 2nd frame metadata key from which metadata values will be used to draw a graph.
16439
16440 @item fg2
16441 Set 2nd foreground color expression.
16442
16443 @item m3
16444 Set 3rd frame metadata key from which metadata values will be used to draw a graph.
16445
16446 @item fg3
16447 Set 3rd foreground color expression.
16448
16449 @item m4
16450 Set 4th frame metadata key from which metadata values will be used to draw a graph.
16451
16452 @item fg4
16453 Set 4th foreground color expression.
16454
16455 @item min
16456 Set minimal value of metadata value.
16457
16458 @item max
16459 Set maximal value of metadata value.
16460
16461 @item bg
16462 Set graph background color. Default is white.
16463
16464 @item mode
16465 Set graph mode.
16466
16467 Available values for mode is:
16468 @table @samp
16469 @item bar
16470 @item dot
16471 @item line
16472 @end table
16473
16474 Default is @code{line}.
16475
16476 @item slide
16477 Set slide mode.
16478
16479 Available values for slide is:
16480 @table @samp
16481 @item frame
16482 Draw new frame when right border is reached.
16483
16484 @item replace
16485 Replace old columns with new ones.
16486
16487 @item scroll
16488 Scroll from right to left.
16489
16490 @item rscroll
16491 Scroll from left to right.
16492
16493 @item picture
16494 Draw single picture.
16495 @end table
16496
16497 Default is @code{frame}.
16498
16499 @item size
16500 Set size of graph video. For the syntax of this option, check the
16501 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16502 The default value is @code{900x256}.
16503
16504 The foreground color expressions can use the following variables:
16505 @table @option
16506 @item MIN
16507 Minimal value of metadata value.
16508
16509 @item MAX
16510 Maximal value of metadata value.
16511
16512 @item VAL
16513 Current metadata key value.
16514 @end table
16515
16516 The color is defined as 0xAABBGGRR.
16517 @end table
16518
16519 Example using metadata from @ref{signalstats} filter:
16520 @example
16521 signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
16522 @end example
16523
16524 Example using metadata from @ref{ebur128} filter:
16525 @example
16526 ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
16527 @end example
16528
16529 @anchor{ebur128}
16530 @section ebur128
16531
16532 EBU R128 scanner filter. This filter takes an audio stream as input and outputs
16533 it unchanged. By default, it logs a message at a frequency of 10Hz with the
16534 Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
16535 Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
16536
16537 The filter also has a video output (see the @var{video} option) with a real
16538 time graph to observe the loudness evolution. The graphic contains the logged
16539 message mentioned above, so it is not printed anymore when this option is set,
16540 unless the verbose logging is set. The main graphing area contains the
16541 short-term loudness (3 seconds of analysis), and the gauge on the right is for
16542 the momentary loudness (400 milliseconds).
16543
16544 More information about the Loudness Recommendation EBU R128 on
16545 @url{http://tech.ebu.ch/loudness}.
16546
16547 The filter accepts the following options:
16548
16549 @table @option
16550
16551 @item video
16552 Activate the video output. The audio stream is passed unchanged whether this
16553 option is set or no. The video stream will be the first output stream if
16554 activated. Default is @code{0}.
16555
16556 @item size
16557 Set the video size. This option is for video only. For the syntax of this
16558 option, check the
16559 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
16560 Default and minimum resolution is @code{640x480}.
16561
16562 @item meter
16563 Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
16564 @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
16565 other integer value between this range is allowed.
16566
16567 @item metadata
16568 Set metadata injection. If set to @code{1}, the audio input will be segmented
16569 into 100ms output frames, each of them containing various loudness information
16570 in metadata.  All the metadata keys are prefixed with @code{lavfi.r128.}.
16571
16572 Default is @code{0}.
16573
16574 @item framelog
16575 Force the frame logging level.
16576
16577 Available values are:
16578 @table @samp
16579 @item info
16580 information logging level
16581 @item verbose
16582 verbose logging level
16583 @end table
16584
16585 By default, the logging level is set to @var{info}. If the @option{video} or
16586 the @option{metadata} options are set, it switches to @var{verbose}.
16587
16588 @item peak
16589 Set peak mode(s).
16590
16591 Available modes can be cumulated (the option is a @code{flag} type). Possible
16592 values are:
16593 @table @samp
16594 @item none
16595 Disable any peak mode (default).
16596 @item sample
16597 Enable sample-peak mode.
16598
16599 Simple peak mode looking for the higher sample value. It logs a message
16600 for sample-peak (identified by @code{SPK}).
16601 @item true
16602 Enable true-peak mode.
16603
16604 If enabled, the peak lookup is done on an over-sampled version of the input
16605 stream for better peak accuracy. It logs a message for true-peak.
16606 (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
16607 This mode requires a build with @code{libswresample}.
16608 @end table
16609
16610 @item dualmono
16611 Treat mono input files as "dual mono". If a mono file is intended for playback
16612 on a stereo system, its EBU R128 measurement will be perceptually incorrect.
16613 If set to @code{true}, this option will compensate for this effect.
16614 Multi-channel input files are not affected by this option.
16615
16616 @item panlaw
16617 Set a specific pan law to be used for the measurement of dual mono files.
16618 This parameter is optional, and has a default value of -3.01dB.
16619 @end table
16620
16621 @subsection Examples
16622
16623 @itemize
16624 @item
16625 Real-time graph using @command{ffplay}, with a EBU scale meter +18:
16626 @example
16627 ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
16628 @end example
16629
16630 @item
16631 Run an analysis with @command{ffmpeg}:
16632 @example
16633 ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
16634 @end example
16635 @end itemize
16636
16637 @section interleave, ainterleave
16638
16639 Temporally interleave frames from several inputs.
16640
16641 @code{interleave} works with video inputs, @code{ainterleave} with audio.
16642
16643 These filters read frames from several inputs and send the oldest
16644 queued frame to the output.
16645
16646 Input streams must have well defined, monotonically increasing frame
16647 timestamp values.
16648
16649 In order to submit one frame to output, these filters need to enqueue
16650 at least one frame for each input, so they cannot work in case one
16651 input is not yet terminated and will not receive incoming frames.
16652
16653 For example consider the case when one input is a @code{select} filter
16654 which always drops input frames. The @code{interleave} filter will keep
16655 reading from that input, but it will never be able to send new frames
16656 to output until the input sends an end-of-stream signal.
16657
16658 Also, depending on inputs synchronization, the filters will drop
16659 frames in case one input receives more frames than the other ones, and
16660 the queue is already filled.
16661
16662 These filters accept the following options:
16663
16664 @table @option
16665 @item nb_inputs, n
16666 Set the number of different inputs, it is 2 by default.
16667 @end table
16668
16669 @subsection Examples
16670
16671 @itemize
16672 @item
16673 Interleave frames belonging to different streams using @command{ffmpeg}:
16674 @example
16675 ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
16676 @end example
16677
16678 @item
16679 Add flickering blur effect:
16680 @example
16681 select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
16682 @end example
16683 @end itemize
16684
16685 @section metadata, ametadata
16686
16687 Manipulate frame metadata.
16688
16689 This filter accepts the following options:
16690
16691 @table @option
16692 @item mode
16693 Set mode of operation of the filter.
16694
16695 Can be one of the following:
16696
16697 @table @samp
16698 @item select
16699 If both @code{value} and @code{key} is set, select frames
16700 which have such metadata. If only @code{key} is set, select
16701 every frame that has such key in metadata.
16702
16703 @item add
16704 Add new metadata @code{key} and @code{value}. If key is already available
16705 do nothing.
16706
16707 @item modify
16708 Modify value of already present key.
16709
16710 @item delete
16711 If @code{value} is set, delete only keys that have such value.
16712 Otherwise, delete key. If @code{key} is not set, delete all metadata values in
16713 the frame.
16714
16715 @item print
16716 Print key and its value if metadata was found. If @code{key} is not set print all
16717 metadata values available in frame.
16718 @end table
16719
16720 @item key
16721 Set key used with all modes. Must be set for all modes except @code{print} and @code{delete}.
16722
16723 @item value
16724 Set metadata value which will be used. This option is mandatory for
16725 @code{modify} and @code{add} mode.
16726
16727 @item function
16728 Which function to use when comparing metadata value and @code{value}.
16729
16730 Can be one of following:
16731
16732 @table @samp
16733 @item same_str
16734 Values are interpreted as strings, returns true if metadata value is same as @code{value}.
16735
16736 @item starts_with
16737 Values are interpreted as strings, returns true if metadata value starts with
16738 the @code{value} option string.
16739
16740 @item less
16741 Values are interpreted as floats, returns true if metadata value is less than @code{value}.
16742
16743 @item equal
16744 Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
16745
16746 @item greater
16747 Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
16748
16749 @item expr
16750 Values are interpreted as floats, returns true if expression from option @code{expr}
16751 evaluates to true.
16752 @end table
16753
16754 @item expr
16755 Set expression which is used when @code{function} is set to @code{expr}.
16756 The expression is evaluated through the eval API and can contain the following
16757 constants:
16758
16759 @table @option
16760 @item VALUE1
16761 Float representation of @code{value} from metadata key.
16762
16763 @item VALUE2
16764 Float representation of @code{value} as supplied by user in @code{value} option.
16765 @end table
16766
16767 @item file
16768 If specified in @code{print} mode, output is written to the named file. Instead of
16769 plain filename any writable url can be specified. Filename ``-'' is a shorthand
16770 for standard output. If @code{file} option is not set, output is written to the log
16771 with AV_LOG_INFO loglevel.
16772
16773 @end table
16774
16775 @subsection Examples
16776
16777 @itemize
16778 @item
16779 Print all metadata values for frames with key @code{lavfi.singnalstats.YDIF} with values
16780 between 0 and 1.
16781 @example
16782 signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
16783 @end example
16784 @item
16785 Print silencedetect output to file @file{metadata.txt}.
16786 @example
16787 silencedetect,ametadata=mode=print:file=metadata.txt
16788 @end example
16789 @item
16790 Direct all metadata to a pipe with file descriptor 4.
16791 @example
16792 metadata=mode=print:file='pipe\:4'
16793 @end example
16794 @end itemize
16795
16796 @section perms, aperms
16797
16798 Set read/write permissions for the output frames.
16799
16800 These filters are mainly aimed at developers to test direct path in the
16801 following filter in the filtergraph.
16802
16803 The filters accept the following options:
16804
16805 @table @option
16806 @item mode
16807 Select the permissions mode.
16808
16809 It accepts the following values:
16810 @table @samp
16811 @item none
16812 Do nothing. This is the default.
16813 @item ro
16814 Set all the output frames read-only.
16815 @item rw
16816 Set all the output frames directly writable.
16817 @item toggle
16818 Make the frame read-only if writable, and writable if read-only.
16819 @item random
16820 Set each output frame read-only or writable randomly.
16821 @end table
16822
16823 @item seed
16824 Set the seed for the @var{random} mode, must be an integer included between
16825 @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
16826 @code{-1}, the filter will try to use a good random seed on a best effort
16827 basis.
16828 @end table
16829
16830 Note: in case of auto-inserted filter between the permission filter and the
16831 following one, the permission might not be received as expected in that
16832 following filter. Inserting a @ref{format} or @ref{aformat} filter before the
16833 perms/aperms filter can avoid this problem.
16834
16835 @section realtime, arealtime
16836
16837 Slow down filtering to match real time approximatively.
16838
16839 These filters will pause the filtering for a variable amount of time to
16840 match the output rate with the input timestamps.
16841 They are similar to the @option{re} option to @code{ffmpeg}.
16842
16843 They accept the following options:
16844
16845 @table @option
16846 @item limit
16847 Time limit for the pauses. Any pause longer than that will be considered
16848 a timestamp discontinuity and reset the timer. Default is 2 seconds.
16849 @end table
16850
16851 @anchor{select}
16852 @section select, aselect
16853
16854 Select frames to pass in output.
16855
16856 This filter accepts the following options:
16857
16858 @table @option
16859
16860 @item expr, e
16861 Set expression, which is evaluated for each input frame.
16862
16863 If the expression is evaluated to zero, the frame is discarded.
16864
16865 If the evaluation result is negative or NaN, the frame is sent to the
16866 first output; otherwise it is sent to the output with index
16867 @code{ceil(val)-1}, assuming that the input index starts from 0.
16868
16869 For example a value of @code{1.2} corresponds to the output with index
16870 @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
16871
16872 @item outputs, n
16873 Set the number of outputs. The output to which to send the selected
16874 frame is based on the result of the evaluation. Default value is 1.
16875 @end table
16876
16877 The expression can contain the following constants:
16878
16879 @table @option
16880 @item n
16881 The (sequential) number of the filtered frame, starting from 0.
16882
16883 @item selected_n
16884 The (sequential) number of the selected frame, starting from 0.
16885
16886 @item prev_selected_n
16887 The sequential number of the last selected frame. It's NAN if undefined.
16888
16889 @item TB
16890 The timebase of the input timestamps.
16891
16892 @item pts
16893 The PTS (Presentation TimeStamp) of the filtered video frame,
16894 expressed in @var{TB} units. It's NAN if undefined.
16895
16896 @item t
16897 The PTS of the filtered video frame,
16898 expressed in seconds. It's NAN if undefined.
16899
16900 @item prev_pts
16901 The PTS of the previously filtered video frame. It's NAN if undefined.
16902
16903 @item prev_selected_pts
16904 The PTS of the last previously filtered video frame. It's NAN if undefined.
16905
16906 @item prev_selected_t
16907 The PTS of the last previously selected video frame. It's NAN if undefined.
16908
16909 @item start_pts
16910 The PTS of the first video frame in the video. It's NAN if undefined.
16911
16912 @item start_t
16913 The time of the first video frame in the video. It's NAN if undefined.
16914
16915 @item pict_type @emph{(video only)}
16916 The type of the filtered frame. It can assume one of the following
16917 values:
16918 @table @option
16919 @item I
16920 @item P
16921 @item B
16922 @item S
16923 @item SI
16924 @item SP
16925 @item BI
16926 @end table
16927
16928 @item interlace_type @emph{(video only)}
16929 The frame interlace type. It can assume one of the following values:
16930 @table @option
16931 @item PROGRESSIVE
16932 The frame is progressive (not interlaced).
16933 @item TOPFIRST
16934 The frame is top-field-first.
16935 @item BOTTOMFIRST
16936 The frame is bottom-field-first.
16937 @end table
16938
16939 @item consumed_sample_n @emph{(audio only)}
16940 the number of selected samples before the current frame
16941
16942 @item samples_n @emph{(audio only)}
16943 the number of samples in the current frame
16944
16945 @item sample_rate @emph{(audio only)}
16946 the input sample rate
16947
16948 @item key
16949 This is 1 if the filtered frame is a key-frame, 0 otherwise.
16950
16951 @item pos
16952 the position in the file of the filtered frame, -1 if the information
16953 is not available (e.g. for synthetic video)
16954
16955 @item scene @emph{(video only)}
16956 value between 0 and 1 to indicate a new scene; a low value reflects a low
16957 probability for the current frame to introduce a new scene, while a higher
16958 value means the current frame is more likely to be one (see the example below)
16959
16960 @item concatdec_select
16961 The concat demuxer can select only part of a concat input file by setting an
16962 inpoint and an outpoint, but the output packets may not be entirely contained
16963 in the selected interval. By using this variable, it is possible to skip frames
16964 generated by the concat demuxer which are not exactly contained in the selected
16965 interval.
16966
16967 This works by comparing the frame pts against the @var{lavf.concat.start_time}
16968 and the @var{lavf.concat.duration} packet metadata values which are also
16969 present in the decoded frames.
16970
16971 The @var{concatdec_select} variable is -1 if the frame pts is at least
16972 start_time and either the duration metadata is missing or the frame pts is less
16973 than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
16974 missing.
16975
16976 That basically means that an input frame is selected if its pts is within the
16977 interval set by the concat demuxer.
16978
16979 @end table
16980
16981 The default value of the select expression is "1".
16982
16983 @subsection Examples
16984
16985 @itemize
16986 @item
16987 Select all frames in input:
16988 @example
16989 select
16990 @end example
16991
16992 The example above is the same as:
16993 @example
16994 select=1
16995 @end example
16996
16997 @item
16998 Skip all frames:
16999 @example
17000 select=0
17001 @end example
17002
17003 @item
17004 Select only I-frames:
17005 @example
17006 select='eq(pict_type\,I)'
17007 @end example
17008
17009 @item
17010 Select one frame every 100:
17011 @example
17012 select='not(mod(n\,100))'
17013 @end example
17014
17015 @item
17016 Select only frames contained in the 10-20 time interval:
17017 @example
17018 select=between(t\,10\,20)
17019 @end example
17020
17021 @item
17022 Select only I-frames contained in the 10-20 time interval:
17023 @example
17024 select=between(t\,10\,20)*eq(pict_type\,I)
17025 @end example
17026
17027 @item
17028 Select frames with a minimum distance of 10 seconds:
17029 @example
17030 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
17031 @end example
17032
17033 @item
17034 Use aselect to select only audio frames with samples number > 100:
17035 @example
17036 aselect='gt(samples_n\,100)'
17037 @end example
17038
17039 @item
17040 Create a mosaic of the first scenes:
17041 @example
17042 ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
17043 @end example
17044
17045 Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
17046 choice.
17047
17048 @item
17049 Send even and odd frames to separate outputs, and compose them:
17050 @example
17051 select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
17052 @end example
17053
17054 @item
17055 Select useful frames from an ffconcat file which is using inpoints and
17056 outpoints but where the source files are not intra frame only.
17057 @example
17058 ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
17059 @end example
17060 @end itemize
17061
17062 @section sendcmd, asendcmd
17063
17064 Send commands to filters in the filtergraph.
17065
17066 These filters read commands to be sent to other filters in the
17067 filtergraph.
17068
17069 @code{sendcmd} must be inserted between two video filters,
17070 @code{asendcmd} must be inserted between two audio filters, but apart
17071 from that they act the same way.
17072
17073 The specification of commands can be provided in the filter arguments
17074 with the @var{commands} option, or in a file specified by the
17075 @var{filename} option.
17076
17077 These filters accept the following options:
17078 @table @option
17079 @item commands, c
17080 Set the commands to be read and sent to the other filters.
17081 @item filename, f
17082 Set the filename of the commands to be read and sent to the other
17083 filters.
17084 @end table
17085
17086 @subsection Commands syntax
17087
17088 A commands description consists of a sequence of interval
17089 specifications, comprising a list of commands to be executed when a
17090 particular event related to that interval occurs. The occurring event
17091 is typically the current frame time entering or leaving a given time
17092 interval.
17093
17094 An interval is specified by the following syntax:
17095 @example
17096 @var{START}[-@var{END}] @var{COMMANDS};
17097 @end example
17098
17099 The time interval is specified by the @var{START} and @var{END} times.
17100 @var{END} is optional and defaults to the maximum time.
17101
17102 The current frame time is considered within the specified interval if
17103 it is included in the interval [@var{START}, @var{END}), that is when
17104 the time is greater or equal to @var{START} and is lesser than
17105 @var{END}.
17106
17107 @var{COMMANDS} consists of a sequence of one or more command
17108 specifications, separated by ",", relating to that interval.  The
17109 syntax of a command specification is given by:
17110 @example
17111 [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
17112 @end example
17113
17114 @var{FLAGS} is optional and specifies the type of events relating to
17115 the time interval which enable sending the specified command, and must
17116 be a non-null sequence of identifier flags separated by "+" or "|" and
17117 enclosed between "[" and "]".
17118
17119 The following flags are recognized:
17120 @table @option
17121 @item enter
17122 The command is sent when the current frame timestamp enters the
17123 specified interval. In other words, the command is sent when the
17124 previous frame timestamp was not in the given interval, and the
17125 current is.
17126
17127 @item leave
17128 The command is sent when the current frame timestamp leaves the
17129 specified interval. In other words, the command is sent when the
17130 previous frame timestamp was in the given interval, and the
17131 current is not.
17132 @end table
17133
17134 If @var{FLAGS} is not specified, a default value of @code{[enter]} is
17135 assumed.
17136
17137 @var{TARGET} specifies the target of the command, usually the name of
17138 the filter class or a specific filter instance name.
17139
17140 @var{COMMAND} specifies the name of the command for the target filter.
17141
17142 @var{ARG} is optional and specifies the optional list of argument for
17143 the given @var{COMMAND}.
17144
17145 Between one interval specification and another, whitespaces, or
17146 sequences of characters starting with @code{#} until the end of line,
17147 are ignored and can be used to annotate comments.
17148
17149 A simplified BNF description of the commands specification syntax
17150 follows:
17151 @example
17152 @var{COMMAND_FLAG}  ::= "enter" | "leave"
17153 @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
17154 @var{COMMAND}       ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
17155 @var{COMMANDS}      ::= @var{COMMAND} [,@var{COMMANDS}]
17156 @var{INTERVAL}      ::= @var{START}[-@var{END}] @var{COMMANDS}
17157 @var{INTERVALS}     ::= @var{INTERVAL}[;@var{INTERVALS}]
17158 @end example
17159
17160 @subsection Examples
17161
17162 @itemize
17163 @item
17164 Specify audio tempo change at second 4:
17165 @example
17166 asendcmd=c='4.0 atempo tempo 1.5',atempo
17167 @end example
17168
17169 @item
17170 Specify a list of drawtext and hue commands in a file.
17171 @example
17172 # show text in the interval 5-10
17173 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
17174          [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
17175
17176 # desaturate the image in the interval 15-20
17177 15.0-20.0 [enter] hue s 0,
17178           [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
17179           [leave] hue s 1,
17180           [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
17181
17182 # apply an exponential saturation fade-out effect, starting from time 25
17183 25 [enter] hue s exp(25-t)
17184 @end example
17185
17186 A filtergraph allowing to read and process the above command list
17187 stored in a file @file{test.cmd}, can be specified with:
17188 @example
17189 sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
17190 @end example
17191 @end itemize
17192
17193 @anchor{setpts}
17194 @section setpts, asetpts
17195
17196 Change the PTS (presentation timestamp) of the input frames.
17197
17198 @code{setpts} works on video frames, @code{asetpts} on audio frames.
17199
17200 This filter accepts the following options:
17201
17202 @table @option
17203
17204 @item expr
17205 The expression which is evaluated for each frame to construct its timestamp.
17206
17207 @end table
17208
17209 The expression is evaluated through the eval API and can contain the following
17210 constants:
17211
17212 @table @option
17213 @item FRAME_RATE
17214 frame rate, only defined for constant frame-rate video
17215
17216 @item PTS
17217 The presentation timestamp in input
17218
17219 @item N
17220 The count of the input frame for video or the number of consumed samples,
17221 not including the current frame for audio, starting from 0.
17222
17223 @item NB_CONSUMED_SAMPLES
17224 The number of consumed samples, not including the current frame (only
17225 audio)
17226
17227 @item NB_SAMPLES, S
17228 The number of samples in the current frame (only audio)
17229
17230 @item SAMPLE_RATE, SR
17231 The audio sample rate.
17232
17233 @item STARTPTS
17234 The PTS of the first frame.
17235
17236 @item STARTT
17237 the time in seconds of the first frame
17238
17239 @item INTERLACED
17240 State whether the current frame is interlaced.
17241
17242 @item T
17243 the time in seconds of the current frame
17244
17245 @item POS
17246 original position in the file of the frame, or undefined if undefined
17247 for the current frame
17248
17249 @item PREV_INPTS
17250 The previous input PTS.
17251
17252 @item PREV_INT
17253 previous input time in seconds
17254
17255 @item PREV_OUTPTS
17256 The previous output PTS.
17257
17258 @item PREV_OUTT
17259 previous output time in seconds
17260
17261 @item RTCTIME
17262 The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
17263 instead.
17264
17265 @item RTCSTART
17266 The wallclock (RTC) time at the start of the movie in microseconds.
17267
17268 @item TB
17269 The timebase of the input timestamps.
17270
17271 @end table
17272
17273 @subsection Examples
17274
17275 @itemize
17276 @item
17277 Start counting PTS from zero
17278 @example
17279 setpts=PTS-STARTPTS
17280 @end example
17281
17282 @item
17283 Apply fast motion effect:
17284 @example
17285 setpts=0.5*PTS
17286 @end example
17287
17288 @item
17289 Apply slow motion effect:
17290 @example
17291 setpts=2.0*PTS
17292 @end example
17293
17294 @item
17295 Set fixed rate of 25 frames per second:
17296 @example
17297 setpts=N/(25*TB)
17298 @end example
17299
17300 @item
17301 Set fixed rate 25 fps with some jitter:
17302 @example
17303 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
17304 @end example
17305
17306 @item
17307 Apply an offset of 10 seconds to the input PTS:
17308 @example
17309 setpts=PTS+10/TB
17310 @end example
17311
17312 @item
17313 Generate timestamps from a "live source" and rebase onto the current timebase:
17314 @example
17315 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
17316 @end example
17317
17318 @item
17319 Generate timestamps by counting samples:
17320 @example
17321 asetpts=N/SR/TB
17322 @end example
17323
17324 @end itemize
17325
17326 @section settb, asettb
17327
17328 Set the timebase to use for the output frames timestamps.
17329 It is mainly useful for testing timebase configuration.
17330
17331 It accepts the following parameters:
17332
17333 @table @option
17334
17335 @item expr, tb
17336 The expression which is evaluated into the output timebase.
17337
17338 @end table
17339
17340 The value for @option{tb} is an arithmetic expression representing a
17341 rational. The expression can contain the constants "AVTB" (the default
17342 timebase), "intb" (the input timebase) and "sr" (the sample rate,
17343 audio only). Default value is "intb".
17344
17345 @subsection Examples
17346
17347 @itemize
17348 @item
17349 Set the timebase to 1/25:
17350 @example
17351 settb=expr=1/25
17352 @end example
17353
17354 @item
17355 Set the timebase to 1/10:
17356 @example
17357 settb=expr=0.1
17358 @end example
17359
17360 @item
17361 Set the timebase to 1001/1000:
17362 @example
17363 settb=1+0.001
17364 @end example
17365
17366 @item
17367 Set the timebase to 2*intb:
17368 @example
17369 settb=2*intb
17370 @end example
17371
17372 @item
17373 Set the default timebase value:
17374 @example
17375 settb=AVTB
17376 @end example
17377 @end itemize
17378
17379 @section showcqt
17380 Convert input audio to a video output representing frequency spectrum
17381 logarithmically using Brown-Puckette constant Q transform algorithm with
17382 direct frequency domain coefficient calculation (but the transform itself
17383 is not really constant Q, instead the Q factor is actually variable/clamped),
17384 with musical tone scale, from E0 to D#10.
17385
17386 The filter accepts the following options:
17387
17388 @table @option
17389 @item size, s
17390 Specify the video size for the output. It must be even. For the syntax of this option,
17391 check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17392 Default value is @code{1920x1080}.
17393
17394 @item fps, rate, r
17395 Set the output frame rate. Default value is @code{25}.
17396
17397 @item bar_h
17398 Set the bargraph height. It must be even. Default value is @code{-1} which
17399 computes the bargraph height automatically.
17400
17401 @item axis_h
17402 Set the axis height. It must be even. Default value is @code{-1} which computes
17403 the axis height automatically.
17404
17405 @item sono_h
17406 Set the sonogram height. It must be even. Default value is @code{-1} which
17407 computes the sonogram height automatically.
17408
17409 @item fullhd
17410 Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
17411 instead. Default value is @code{1}.
17412
17413 @item sono_v, volume
17414 Specify the sonogram volume expression. It can contain variables:
17415 @table @option
17416 @item bar_v
17417 the @var{bar_v} evaluated expression
17418 @item frequency, freq, f
17419 the frequency where it is evaluated
17420 @item timeclamp, tc
17421 the value of @var{timeclamp} option
17422 @end table
17423 and functions:
17424 @table @option
17425 @item a_weighting(f)
17426 A-weighting of equal loudness
17427 @item b_weighting(f)
17428 B-weighting of equal loudness
17429 @item c_weighting(f)
17430 C-weighting of equal loudness.
17431 @end table
17432 Default value is @code{16}.
17433
17434 @item bar_v, volume2
17435 Specify the bargraph volume expression. It can contain variables:
17436 @table @option
17437 @item sono_v
17438 the @var{sono_v} evaluated expression
17439 @item frequency, freq, f
17440 the frequency where it is evaluated
17441 @item timeclamp, tc
17442 the value of @var{timeclamp} option
17443 @end table
17444 and functions:
17445 @table @option
17446 @item a_weighting(f)
17447 A-weighting of equal loudness
17448 @item b_weighting(f)
17449 B-weighting of equal loudness
17450 @item c_weighting(f)
17451 C-weighting of equal loudness.
17452 @end table
17453 Default value is @code{sono_v}.
17454
17455 @item sono_g, gamma
17456 Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
17457 higher gamma makes the spectrum having more range. Default value is @code{3}.
17458 Acceptable range is @code{[1, 7]}.
17459
17460 @item bar_g, gamma2
17461 Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
17462 @code{[1, 7]}.
17463
17464 @item bar_t
17465 Specify the bargraph transparency level. Lower value makes the bargraph sharper.
17466 Default value is @code{1}. Acceptable range is @code{[0, 1]}.
17467
17468 @item timeclamp, tc
17469 Specify the transform timeclamp. At low frequency, there is trade-off between
17470 accuracy in time domain and frequency domain. If timeclamp is lower,
17471 event in time domain is represented more accurately (such as fast bass drum),
17472 otherwise event in frequency domain is represented more accurately
17473 (such as bass guitar). Acceptable range is @code{[0.002, 1]}. Default value is @code{0.17}.
17474
17475 @item attack
17476 Set attack time in seconds. The default is @code{0} (disabled). Otherwise, it
17477 limits future samples by applying asymmetric windowing in time domain, useful
17478 when low latency is required. Accepted range is @code{[0, 1]}.
17479
17480 @item basefreq
17481 Specify the transform base frequency. Default value is @code{20.01523126408007475},
17482 which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
17483
17484 @item endfreq
17485 Specify the transform end frequency. Default value is @code{20495.59681441799654},
17486 which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
17487
17488 @item coeffclamp
17489 This option is deprecated and ignored.
17490
17491 @item tlength
17492 Specify the transform length in time domain. Use this option to control accuracy
17493 trade-off between time domain and frequency domain at every frequency sample.
17494 It can contain variables:
17495 @table @option
17496 @item frequency, freq, f
17497 the frequency where it is evaluated
17498 @item timeclamp, tc
17499 the value of @var{timeclamp} option.
17500 @end table
17501 Default value is @code{384*tc/(384+tc*f)}.
17502
17503 @item count
17504 Specify the transform count for every video frame. Default value is @code{6}.
17505 Acceptable range is @code{[1, 30]}.
17506
17507 @item fcount
17508 Specify the transform count for every single pixel. Default value is @code{0},
17509 which makes it computed automatically. Acceptable range is @code{[0, 10]}.
17510
17511 @item fontfile
17512 Specify font file for use with freetype to draw the axis. If not specified,
17513 use embedded font. Note that drawing with font file or embedded font is not
17514 implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
17515 option instead.
17516
17517 @item font
17518 Specify fontconfig pattern. This has lower priority than @var{fontfile}.
17519 The : in the pattern may be replaced by | to avoid unnecessary escaping.
17520
17521 @item fontcolor
17522 Specify font color expression. This is arithmetic expression that should return
17523 integer value 0xRRGGBB. It can contain variables:
17524 @table @option
17525 @item frequency, freq, f
17526 the frequency where it is evaluated
17527 @item timeclamp, tc
17528 the value of @var{timeclamp} option
17529 @end table
17530 and functions:
17531 @table @option
17532 @item midi(f)
17533 midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
17534 @item r(x), g(x), b(x)
17535 red, green, and blue value of intensity x.
17536 @end table
17537 Default value is @code{st(0, (midi(f)-59.5)/12);
17538 st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
17539 r(1-ld(1)) + b(ld(1))}.
17540
17541 @item axisfile
17542 Specify image file to draw the axis. This option override @var{fontfile} and
17543 @var{fontcolor} option.
17544
17545 @item axis, text
17546 Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
17547 the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
17548 Default value is @code{1}.
17549
17550 @item csp
17551 Set colorspace. The accepted values are:
17552 @table @samp
17553 @item unspecified
17554 Unspecified (default)
17555
17556 @item bt709
17557 BT.709
17558
17559 @item fcc
17560 FCC
17561
17562 @item bt470bg
17563 BT.470BG or BT.601-6 625
17564
17565 @item smpte170m
17566 SMPTE-170M or BT.601-6 525
17567
17568 @item smpte240m
17569 SMPTE-240M
17570
17571 @item bt2020ncl
17572 BT.2020 with non-constant luminance
17573
17574 @end table
17575
17576 @item cscheme
17577 Set spectrogram color scheme. This is list of floating point values with format
17578 @code{left_r|left_g|left_b|right_r|right_g|right_b}.
17579 The default is @code{1|0.5|0|0|0.5|1}.
17580
17581 @end table
17582
17583 @subsection Examples
17584
17585 @itemize
17586 @item
17587 Playing audio while showing the spectrum:
17588 @example
17589 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
17590 @end example
17591
17592 @item
17593 Same as above, but with frame rate 30 fps:
17594 @example
17595 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
17596 @end example
17597
17598 @item
17599 Playing at 1280x720:
17600 @example
17601 ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
17602 @end example
17603
17604 @item
17605 Disable sonogram display:
17606 @example
17607 sono_h=0
17608 @end example
17609
17610 @item
17611 A1 and its harmonics: A1, A2, (near)E3, A3:
17612 @example
17613 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),
17614                  asplit[a][out1]; [a] showcqt [out0]'
17615 @end example
17616
17617 @item
17618 Same as above, but with more accuracy in frequency domain:
17619 @example
17620 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),
17621                  asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
17622 @end example
17623
17624 @item
17625 Custom volume:
17626 @example
17627 bar_v=10:sono_v=bar_v*a_weighting(f)
17628 @end example
17629
17630 @item
17631 Custom gamma, now spectrum is linear to the amplitude.
17632 @example
17633 bar_g=2:sono_g=2
17634 @end example
17635
17636 @item
17637 Custom tlength equation:
17638 @example
17639 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)))'
17640 @end example
17641
17642 @item
17643 Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
17644 @example
17645 fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
17646 @end example
17647
17648 @item
17649 Custom font using fontconfig:
17650 @example
17651 font='Courier New,Monospace,mono|bold'
17652 @end example
17653
17654 @item
17655 Custom frequency range with custom axis using image file:
17656 @example
17657 axisfile=myaxis.png:basefreq=40:endfreq=10000
17658 @end example
17659 @end itemize
17660
17661 @section showfreqs
17662
17663 Convert input audio to video output representing the audio power spectrum.
17664 Audio amplitude is on Y-axis while frequency is on X-axis.
17665
17666 The filter accepts the following options:
17667
17668 @table @option
17669 @item size, s
17670 Specify size of video. For the syntax of this option, check the
17671 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17672 Default is @code{1024x512}.
17673
17674 @item mode
17675 Set display mode.
17676 This set how each frequency bin will be represented.
17677
17678 It accepts the following values:
17679 @table @samp
17680 @item line
17681 @item bar
17682 @item dot
17683 @end table
17684 Default is @code{bar}.
17685
17686 @item ascale
17687 Set amplitude scale.
17688
17689 It accepts the following values:
17690 @table @samp
17691 @item lin
17692 Linear scale.
17693
17694 @item sqrt
17695 Square root scale.
17696
17697 @item cbrt
17698 Cubic root scale.
17699
17700 @item log
17701 Logarithmic scale.
17702 @end table
17703 Default is @code{log}.
17704
17705 @item fscale
17706 Set frequency scale.
17707
17708 It accepts the following values:
17709 @table @samp
17710 @item lin
17711 Linear scale.
17712
17713 @item log
17714 Logarithmic scale.
17715
17716 @item rlog
17717 Reverse logarithmic scale.
17718 @end table
17719 Default is @code{lin}.
17720
17721 @item win_size
17722 Set window size.
17723
17724 It accepts the following values:
17725 @table @samp
17726 @item w16
17727 @item w32
17728 @item w64
17729 @item w128
17730 @item w256
17731 @item w512
17732 @item w1024
17733 @item w2048
17734 @item w4096
17735 @item w8192
17736 @item w16384
17737 @item w32768
17738 @item w65536
17739 @end table
17740 Default is @code{w2048}
17741
17742 @item win_func
17743 Set windowing function.
17744
17745 It accepts the following values:
17746 @table @samp
17747 @item rect
17748 @item bartlett
17749 @item hanning
17750 @item hamming
17751 @item blackman
17752 @item welch
17753 @item flattop
17754 @item bharris
17755 @item bnuttall
17756 @item bhann
17757 @item sine
17758 @item nuttall
17759 @item lanczos
17760 @item gauss
17761 @item tukey
17762 @item dolph
17763 @item cauchy
17764 @item parzen
17765 @item poisson
17766 @end table
17767 Default is @code{hanning}.
17768
17769 @item overlap
17770 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
17771 which means optimal overlap for selected window function will be picked.
17772
17773 @item averaging
17774 Set time averaging. Setting this to 0 will display current maximal peaks.
17775 Default is @code{1}, which means time averaging is disabled.
17776
17777 @item colors
17778 Specify list of colors separated by space or by '|' which will be used to
17779 draw channel frequencies. Unrecognized or missing colors will be replaced
17780 by white color.
17781
17782 @item cmode
17783 Set channel display mode.
17784
17785 It accepts the following values:
17786 @table @samp
17787 @item combined
17788 @item separate
17789 @end table
17790 Default is @code{combined}.
17791
17792 @item minamp
17793 Set minimum amplitude used in @code{log} amplitude scaler.
17794
17795 @end table
17796
17797 @anchor{showspectrum}
17798 @section showspectrum
17799
17800 Convert input audio to a video output, representing the audio frequency
17801 spectrum.
17802
17803 The filter accepts the following options:
17804
17805 @table @option
17806 @item size, s
17807 Specify the video size for the output. For the syntax of this option, check the
17808 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17809 Default value is @code{640x512}.
17810
17811 @item slide
17812 Specify how the spectrum should slide along the window.
17813
17814 It accepts the following values:
17815 @table @samp
17816 @item replace
17817 the samples start again on the left when they reach the right
17818 @item scroll
17819 the samples scroll from right to left
17820 @item fullframe
17821 frames are only produced when the samples reach the right
17822 @item rscroll
17823 the samples scroll from left to right
17824 @end table
17825
17826 Default value is @code{replace}.
17827
17828 @item mode
17829 Specify display mode.
17830
17831 It accepts the following values:
17832 @table @samp
17833 @item combined
17834 all channels are displayed in the same row
17835 @item separate
17836 all channels are displayed in separate rows
17837 @end table
17838
17839 Default value is @samp{combined}.
17840
17841 @item color
17842 Specify display color mode.
17843
17844 It accepts the following values:
17845 @table @samp
17846 @item channel
17847 each channel is displayed in a separate color
17848 @item intensity
17849 each channel is displayed using the same color scheme
17850 @item rainbow
17851 each channel is displayed using the rainbow color scheme
17852 @item moreland
17853 each channel is displayed using the moreland color scheme
17854 @item nebulae
17855 each channel is displayed using the nebulae color scheme
17856 @item fire
17857 each channel is displayed using the fire color scheme
17858 @item fiery
17859 each channel is displayed using the fiery color scheme
17860 @item fruit
17861 each channel is displayed using the fruit color scheme
17862 @item cool
17863 each channel is displayed using the cool color scheme
17864 @end table
17865
17866 Default value is @samp{channel}.
17867
17868 @item scale
17869 Specify scale used for calculating intensity color values.
17870
17871 It accepts the following values:
17872 @table @samp
17873 @item lin
17874 linear
17875 @item sqrt
17876 square root, default
17877 @item cbrt
17878 cubic root
17879 @item log
17880 logarithmic
17881 @item 4thrt
17882 4th root
17883 @item 5thrt
17884 5th root
17885 @end table
17886
17887 Default value is @samp{sqrt}.
17888
17889 @item saturation
17890 Set saturation modifier for displayed colors. Negative values provide
17891 alternative color scheme. @code{0} is no saturation at all.
17892 Saturation must be in [-10.0, 10.0] range.
17893 Default value is @code{1}.
17894
17895 @item win_func
17896 Set window function.
17897
17898 It accepts the following values:
17899 @table @samp
17900 @item rect
17901 @item bartlett
17902 @item hann
17903 @item hanning
17904 @item hamming
17905 @item blackman
17906 @item welch
17907 @item flattop
17908 @item bharris
17909 @item bnuttall
17910 @item bhann
17911 @item sine
17912 @item nuttall
17913 @item lanczos
17914 @item gauss
17915 @item tukey
17916 @item dolph
17917 @item cauchy
17918 @item parzen
17919 @item poisson
17920 @end table
17921
17922 Default value is @code{hann}.
17923
17924 @item orientation
17925 Set orientation of time vs frequency axis. Can be @code{vertical} or
17926 @code{horizontal}. Default is @code{vertical}.
17927
17928 @item overlap
17929 Set ratio of overlap window. Default value is @code{0}.
17930 When value is @code{1} overlap is set to recommended size for specific
17931 window function currently used.
17932
17933 @item gain
17934 Set scale gain for calculating intensity color values.
17935 Default value is @code{1}.
17936
17937 @item data
17938 Set which data to display. Can be @code{magnitude}, default or @code{phase}.
17939
17940 @item rotation
17941 Set color rotation, must be in [-1.0, 1.0] range.
17942 Default value is @code{0}.
17943 @end table
17944
17945 The usage is very similar to the showwaves filter; see the examples in that
17946 section.
17947
17948 @subsection Examples
17949
17950 @itemize
17951 @item
17952 Large window with logarithmic color scaling:
17953 @example
17954 showspectrum=s=1280x480:scale=log
17955 @end example
17956
17957 @item
17958 Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
17959 @example
17960 ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
17961              [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
17962 @end example
17963 @end itemize
17964
17965 @section showspectrumpic
17966
17967 Convert input audio to a single video frame, representing the audio frequency
17968 spectrum.
17969
17970 The filter accepts the following options:
17971
17972 @table @option
17973 @item size, s
17974 Specify the video size for the output. For the syntax of this option, check the
17975 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
17976 Default value is @code{4096x2048}.
17977
17978 @item mode
17979 Specify display mode.
17980
17981 It accepts the following values:
17982 @table @samp
17983 @item combined
17984 all channels are displayed in the same row
17985 @item separate
17986 all channels are displayed in separate rows
17987 @end table
17988 Default value is @samp{combined}.
17989
17990 @item color
17991 Specify display color mode.
17992
17993 It accepts the following values:
17994 @table @samp
17995 @item channel
17996 each channel is displayed in a separate color
17997 @item intensity
17998 each channel is displayed using the same color scheme
17999 @item rainbow
18000 each channel is displayed using the rainbow color scheme
18001 @item moreland
18002 each channel is displayed using the moreland color scheme
18003 @item nebulae
18004 each channel is displayed using the nebulae color scheme
18005 @item fire
18006 each channel is displayed using the fire color scheme
18007 @item fiery
18008 each channel is displayed using the fiery color scheme
18009 @item fruit
18010 each channel is displayed using the fruit color scheme
18011 @item cool
18012 each channel is displayed using the cool color scheme
18013 @end table
18014 Default value is @samp{intensity}.
18015
18016 @item scale
18017 Specify scale used for calculating intensity color values.
18018
18019 It accepts the following values:
18020 @table @samp
18021 @item lin
18022 linear
18023 @item sqrt
18024 square root, default
18025 @item cbrt
18026 cubic root
18027 @item log
18028 logarithmic
18029 @item 4thrt
18030 4th root
18031 @item 5thrt
18032 5th root
18033 @end table
18034 Default value is @samp{log}.
18035
18036 @item saturation
18037 Set saturation modifier for displayed colors. Negative values provide
18038 alternative color scheme. @code{0} is no saturation at all.
18039 Saturation must be in [-10.0, 10.0] range.
18040 Default value is @code{1}.
18041
18042 @item win_func
18043 Set window function.
18044
18045 It accepts the following values:
18046 @table @samp
18047 @item rect
18048 @item bartlett
18049 @item hann
18050 @item hanning
18051 @item hamming
18052 @item blackman
18053 @item welch
18054 @item flattop
18055 @item bharris
18056 @item bnuttall
18057 @item bhann
18058 @item sine
18059 @item nuttall
18060 @item lanczos
18061 @item gauss
18062 @item tukey
18063 @item dolph
18064 @item cauchy
18065 @item parzen
18066 @item poisson
18067 @end table
18068 Default value is @code{hann}.
18069
18070 @item orientation
18071 Set orientation of time vs frequency axis. Can be @code{vertical} or
18072 @code{horizontal}. Default is @code{vertical}.
18073
18074 @item gain
18075 Set scale gain for calculating intensity color values.
18076 Default value is @code{1}.
18077
18078 @item legend
18079 Draw time and frequency axes and legends. Default is enabled.
18080
18081 @item rotation
18082 Set color rotation, must be in [-1.0, 1.0] range.
18083 Default value is @code{0}.
18084 @end table
18085
18086 @subsection Examples
18087
18088 @itemize
18089 @item
18090 Extract an audio spectrogram of a whole audio track
18091 in a 1024x1024 picture using @command{ffmpeg}:
18092 @example
18093 ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
18094 @end example
18095 @end itemize
18096
18097 @section showvolume
18098
18099 Convert input audio volume to a video output.
18100
18101 The filter accepts the following options:
18102
18103 @table @option
18104 @item rate, r
18105 Set video rate.
18106
18107 @item b
18108 Set border width, allowed range is [0, 5]. Default is 1.
18109
18110 @item w
18111 Set channel width, allowed range is [80, 8192]. Default is 400.
18112
18113 @item h
18114 Set channel height, allowed range is [1, 900]. Default is 20.
18115
18116 @item f
18117 Set fade, allowed range is [0.001, 1]. Default is 0.95.
18118
18119 @item c
18120 Set volume color expression.
18121
18122 The expression can use the following variables:
18123
18124 @table @option
18125 @item VOLUME
18126 Current max volume of channel in dB.
18127
18128 @item PEAK
18129 Current peak.
18130
18131 @item CHANNEL
18132 Current channel number, starting from 0.
18133 @end table
18134
18135 @item t
18136 If set, displays channel names. Default is enabled.
18137
18138 @item v
18139 If set, displays volume values. Default is enabled.
18140
18141 @item o
18142 Set orientation, can be @code{horizontal} or @code{vertical},
18143 default is @code{horizontal}.
18144
18145 @item s
18146 Set step size, allowed range s [0, 5]. Default is 0, which means
18147 step is disabled.
18148 @end table
18149
18150 @section showwaves
18151
18152 Convert input audio to a video output, representing the samples waves.
18153
18154 The filter accepts the following options:
18155
18156 @table @option
18157 @item size, s
18158 Specify the video size for the output. For the syntax of this option, check the
18159 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18160 Default value is @code{600x240}.
18161
18162 @item mode
18163 Set display mode.
18164
18165 Available values are:
18166 @table @samp
18167 @item point
18168 Draw a point for each sample.
18169
18170 @item line
18171 Draw a vertical line for each sample.
18172
18173 @item p2p
18174 Draw a point for each sample and a line between them.
18175
18176 @item cline
18177 Draw a centered vertical line for each sample.
18178 @end table
18179
18180 Default value is @code{point}.
18181
18182 @item n
18183 Set the number of samples which are printed on the same column. A
18184 larger value will decrease the frame rate. Must be a positive
18185 integer. This option can be set only if the value for @var{rate}
18186 is not explicitly specified.
18187
18188 @item rate, r
18189 Set the (approximate) output frame rate. This is done by setting the
18190 option @var{n}. Default value is "25".
18191
18192 @item split_channels
18193 Set if channels should be drawn separately or overlap. Default value is 0.
18194
18195 @item colors
18196 Set colors separated by '|' which are going to be used for drawing of each channel.
18197
18198 @item scale
18199 Set amplitude scale.
18200
18201 Available values are:
18202 @table @samp
18203 @item lin
18204 Linear.
18205
18206 @item log
18207 Logarithmic.
18208
18209 @item sqrt
18210 Square root.
18211
18212 @item cbrt
18213 Cubic root.
18214 @end table
18215
18216 Default is linear.
18217 @end table
18218
18219 @subsection Examples
18220
18221 @itemize
18222 @item
18223 Output the input file audio and the corresponding video representation
18224 at the same time:
18225 @example
18226 amovie=a.mp3,asplit[out0],showwaves[out1]
18227 @end example
18228
18229 @item
18230 Create a synthetic signal and show it with showwaves, forcing a
18231 frame rate of 30 frames per second:
18232 @example
18233 aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
18234 @end example
18235 @end itemize
18236
18237 @section showwavespic
18238
18239 Convert input audio to a single video frame, representing the samples waves.
18240
18241 The filter accepts the following options:
18242
18243 @table @option
18244 @item size, s
18245 Specify the video size for the output. For the syntax of this option, check the
18246 @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
18247 Default value is @code{600x240}.
18248
18249 @item split_channels
18250 Set if channels should be drawn separately or overlap. Default value is 0.
18251
18252 @item colors
18253 Set colors separated by '|' which are going to be used for drawing of each channel.
18254
18255 @item scale
18256 Set amplitude scale.
18257
18258 Available values are:
18259 @table @samp
18260 @item lin
18261 Linear.
18262
18263 @item log
18264 Logarithmic.
18265
18266 @item sqrt
18267 Square root.
18268
18269 @item cbrt
18270 Cubic root.
18271 @end table
18272
18273 Default is linear.
18274 @end table
18275
18276 @subsection Examples
18277
18278 @itemize
18279 @item
18280 Extract a channel split representation of the wave form of a whole audio track
18281 in a 1024x800 picture using @command{ffmpeg}:
18282 @example
18283 ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
18284 @end example
18285 @end itemize
18286
18287 @section sidedata, asidedata
18288
18289 Delete frame side data, or select frames based on it.
18290
18291 This filter accepts the following options:
18292
18293 @table @option
18294 @item mode
18295 Set mode of operation of the filter.
18296
18297 Can be one of the following:
18298
18299 @table @samp
18300 @item select
18301 Select every frame with side data of @code{type}.
18302
18303 @item delete
18304 Delete side data of @code{type}. If @code{type} is not set, delete all side
18305 data in the frame.
18306
18307 @end table
18308
18309 @item type
18310 Set side data type used with all modes. Must be set for @code{select} mode. For
18311 the list of frame side data types, refer to the @code{AVFrameSideDataType} enum
18312 in @file{libavutil/frame.h}. For example, to choose
18313 @code{AV_FRAME_DATA_PANSCAN} side data, you must specify @code{PANSCAN}.
18314
18315 @end table
18316
18317 @section spectrumsynth
18318
18319 Sythesize audio from 2 input video spectrums, first input stream represents
18320 magnitude across time and second represents phase across time.
18321 The filter will transform from frequency domain as displayed in videos back
18322 to time domain as presented in audio output.
18323
18324 This filter is primarily created for reversing processed @ref{showspectrum}
18325 filter outputs, but can synthesize sound from other spectrograms too.
18326 But in such case results are going to be poor if the phase data is not
18327 available, because in such cases phase data need to be recreated, usually
18328 its just recreated from random noise.
18329 For best results use gray only output (@code{channel} color mode in
18330 @ref{showspectrum} filter) and @code{log} scale for magnitude video and
18331 @code{lin} scale for phase video. To produce phase, for 2nd video, use
18332 @code{data} option. Inputs videos should generally use @code{fullframe}
18333 slide mode as that saves resources needed for decoding video.
18334
18335 The filter accepts the following options:
18336
18337 @table @option
18338 @item sample_rate
18339 Specify sample rate of output audio, the sample rate of audio from which
18340 spectrum was generated may differ.
18341
18342 @item channels
18343 Set number of channels represented in input video spectrums.
18344
18345 @item scale
18346 Set scale which was used when generating magnitude input spectrum.
18347 Can be @code{lin} or @code{log}. Default is @code{log}.
18348
18349 @item slide
18350 Set slide which was used when generating inputs spectrums.
18351 Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
18352 Default is @code{fullframe}.
18353
18354 @item win_func
18355 Set window function used for resynthesis.
18356
18357 @item overlap
18358 Set window overlap. In range @code{[0, 1]}. Default is @code{1},
18359 which means optimal overlap for selected window function will be picked.
18360
18361 @item orientation
18362 Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
18363 Default is @code{vertical}.
18364 @end table
18365
18366 @subsection Examples
18367
18368 @itemize
18369 @item
18370 First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
18371 then resynthesize videos back to audio with spectrumsynth:
18372 @example
18373 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
18374 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
18375 ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
18376 @end example
18377 @end itemize
18378
18379 @section split, asplit
18380
18381 Split input into several identical outputs.
18382
18383 @code{asplit} works with audio input, @code{split} with video.
18384
18385 The filter accepts a single parameter which specifies the number of outputs. If
18386 unspecified, it defaults to 2.
18387
18388 @subsection Examples
18389
18390 @itemize
18391 @item
18392 Create two separate outputs from the same input:
18393 @example
18394 [in] split [out0][out1]
18395 @end example
18396
18397 @item
18398 To create 3 or more outputs, you need to specify the number of
18399 outputs, like in:
18400 @example
18401 [in] asplit=3 [out0][out1][out2]
18402 @end example
18403
18404 @item
18405 Create two separate outputs from the same input, one cropped and
18406 one padded:
18407 @example
18408 [in] split [splitout1][splitout2];
18409 [splitout1] crop=100:100:0:0    [cropout];
18410 [splitout2] pad=200:200:100:100 [padout];
18411 @end example
18412
18413 @item
18414 Create 5 copies of the input audio with @command{ffmpeg}:
18415 @example
18416 ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
18417 @end example
18418 @end itemize
18419
18420 @section zmq, azmq
18421
18422 Receive commands sent through a libzmq client, and forward them to
18423 filters in the filtergraph.
18424
18425 @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
18426 must be inserted between two video filters, @code{azmq} between two
18427 audio filters.
18428
18429 To enable these filters you need to install the libzmq library and
18430 headers and configure FFmpeg with @code{--enable-libzmq}.
18431
18432 For more information about libzmq see:
18433 @url{http://www.zeromq.org/}
18434
18435 The @code{zmq} and @code{azmq} filters work as a libzmq server, which
18436 receives messages sent through a network interface defined by the
18437 @option{bind_address} option.
18438
18439 The received message must be in the form:
18440 @example
18441 @var{TARGET} @var{COMMAND} [@var{ARG}]
18442 @end example
18443
18444 @var{TARGET} specifies the target of the command, usually the name of
18445 the filter class or a specific filter instance name.
18446
18447 @var{COMMAND} specifies the name of the command for the target filter.
18448
18449 @var{ARG} is optional and specifies the optional argument list for the
18450 given @var{COMMAND}.
18451
18452 Upon reception, the message is processed and the corresponding command
18453 is injected into the filtergraph. Depending on the result, the filter
18454 will send a reply to the client, adopting the format:
18455 @example
18456 @var{ERROR_CODE} @var{ERROR_REASON}
18457 @var{MESSAGE}
18458 @end example
18459
18460 @var{MESSAGE} is optional.
18461
18462 @subsection Examples
18463
18464 Look at @file{tools/zmqsend} for an example of a zmq client which can
18465 be used to send commands processed by these filters.
18466
18467 Consider the following filtergraph generated by @command{ffplay}
18468 @example
18469 ffplay -dumpgraph 1 -f lavfi "
18470 color=s=100x100:c=red  [l];
18471 color=s=100x100:c=blue [r];
18472 nullsrc=s=200x100, zmq [bg];
18473 [bg][l]   overlay      [bg+l];
18474 [bg+l][r] overlay=x=100 "
18475 @end example
18476
18477 To change the color of the left side of the video, the following
18478 command can be used:
18479 @example
18480 echo Parsed_color_0 c yellow | tools/zmqsend
18481 @end example
18482
18483 To change the right side:
18484 @example
18485 echo Parsed_color_1 c pink | tools/zmqsend
18486 @end example
18487
18488 @c man end MULTIMEDIA FILTERS
18489
18490 @chapter Multimedia Sources
18491 @c man begin MULTIMEDIA SOURCES
18492
18493 Below is a description of the currently available multimedia sources.
18494
18495 @section amovie
18496
18497 This is the same as @ref{movie} source, except it selects an audio
18498 stream by default.
18499
18500 @anchor{movie}
18501 @section movie
18502
18503 Read audio and/or video stream(s) from a movie container.
18504
18505 It accepts the following parameters:
18506
18507 @table @option
18508 @item filename
18509 The name of the resource to read (not necessarily a file; it can also be a
18510 device or a stream accessed through some protocol).
18511
18512 @item format_name, f
18513 Specifies the format assumed for the movie to read, and can be either
18514 the name of a container or an input device. If not specified, the
18515 format is guessed from @var{movie_name} or by probing.
18516
18517 @item seek_point, sp
18518 Specifies the seek point in seconds. The frames will be output
18519 starting from this seek point. The parameter is evaluated with
18520 @code{av_strtod}, so the numerical value may be suffixed by an IS
18521 postfix. The default value is "0".
18522
18523 @item streams, s
18524 Specifies the streams to read. Several streams can be specified,
18525 separated by "+". The source will then have as many outputs, in the
18526 same order. The syntax is explained in the ``Stream specifiers''
18527 section in the ffmpeg manual. Two special names, "dv" and "da" specify
18528 respectively the default (best suited) video and audio stream. Default
18529 is "dv", or "da" if the filter is called as "amovie".
18530
18531 @item stream_index, si
18532 Specifies the index of the video stream to read. If the value is -1,
18533 the most suitable video stream will be automatically selected. The default
18534 value is "-1". Deprecated. If the filter is called "amovie", it will select
18535 audio instead of video.
18536
18537 @item loop
18538 Specifies how many times to read the stream in sequence.
18539 If the value is 0, the stream will be looped infinitely.
18540 Default value is "1".
18541
18542 Note that when the movie is looped the source timestamps are not
18543 changed, so it will generate non monotonically increasing timestamps.
18544
18545 @item discontinuity
18546 Specifies the time difference between frames above which the point is
18547 considered a timestamp discontinuity which is removed by adjusting the later
18548 timestamps.
18549 @end table
18550
18551 It allows overlaying a second video on top of the main input of
18552 a filtergraph, as shown in this graph:
18553 @example
18554 input -----------> deltapts0 --> overlay --> output
18555                                     ^
18556                                     |
18557 movie --> scale--> deltapts1 -------+
18558 @end example
18559 @subsection Examples
18560
18561 @itemize
18562 @item
18563 Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
18564 on top of the input labelled "in":
18565 @example
18566 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
18567 [in] setpts=PTS-STARTPTS [main];
18568 [main][over] overlay=16:16 [out]
18569 @end example
18570
18571 @item
18572 Read from a video4linux2 device, and overlay it on top of the input
18573 labelled "in":
18574 @example
18575 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
18576 [in] setpts=PTS-STARTPTS [main];
18577 [main][over] overlay=16:16 [out]
18578 @end example
18579
18580 @item
18581 Read the first video stream and the audio stream with id 0x81 from
18582 dvd.vob; the video is connected to the pad named "video" and the audio is
18583 connected to the pad named "audio":
18584 @example
18585 movie=dvd.vob:s=v:0+#0x81 [video] [audio]
18586 @end example
18587 @end itemize
18588
18589 @subsection Commands
18590
18591 Both movie and amovie support the following commands:
18592 @table @option
18593 @item seek
18594 Perform seek using "av_seek_frame".
18595 The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
18596 @itemize
18597 @item
18598 @var{stream_index}: If stream_index is -1, a default
18599 stream is selected, and @var{timestamp} is automatically converted
18600 from AV_TIME_BASE units to the stream specific time_base.
18601 @item
18602 @var{timestamp}: Timestamp in AVStream.time_base units
18603 or, if no stream is specified, in AV_TIME_BASE units.
18604 @item
18605 @var{flags}: Flags which select direction and seeking mode.
18606 @end itemize
18607
18608 @item get_duration
18609 Get movie duration in AV_TIME_BASE units.
18610
18611 @end table
18612
18613 @c man end MULTIMEDIA SOURCES