1 @chapter Filtergraph description
2 @c man begin FILTERGRAPH DESCRIPTION
4 A filtergraph is a directed graph of connected filters. It can contain
5 cycles, and there can be multiple links between a pair of
6 filters. Each link has one input pad on one side connecting it to one
7 filter from which it takes its input, and one output pad on the other
8 side connecting it to the one filter accepting its output.
10 Each filter in a filtergraph is an instance of a filter class
11 registered in the application, which defines the features and the
12 number of input and output pads of the filter.
14 A filter with no input pads is called a "source", a filter with no
15 output pads is called a "sink".
17 @anchor{Filtergraph syntax}
18 @section Filtergraph syntax
20 A filtergraph can be represented using a textual representation, which is
21 recognized by the @option{-filter}/@option{-vf} and @option{-filter_complex}
22 options in @command{avconv} and @option{-vf} in @command{avplay}, and by the
23 @code{avfilter_graph_parse()}/@code{avfilter_graph_parse2()} function defined in
24 @file{libavfilter/avfilter.h}.
26 A filterchain consists of a sequence of connected filters, each one
27 connected to the previous one in the sequence. A filterchain is
28 represented by a list of ","-separated filter descriptions.
30 A filtergraph consists of a sequence of filterchains. A sequence of
31 filterchains is represented by a list of ";"-separated filterchain
34 A filter is represented by a string of the form:
35 [@var{in_link_1}]...[@var{in_link_N}]@var{filter_name}=@var{arguments}[@var{out_link_1}]...[@var{out_link_M}]
37 @var{filter_name} is the name of the filter class of which the
38 described filter is an instance of, and has to be the name of one of
39 the filter classes registered in the program.
40 The name of the filter class is optionally followed by a string
43 @var{arguments} is a string which contains the parameters used to
44 initialize the filter instance. It may have one of the two allowed forms:
48 A ':'-separated list of @var{key=value} pairs.
51 A ':'-separated list of @var{value}. In this case, the keys are assumed to be
52 the option names in the order they are declared. E.g. the @code{fade} filter
53 declares three options in this order -- @option{type}, @option{start_frame} and
54 @option{nb_frames}. Then the parameter list @var{in:0:30} means that the value
55 @var{in} is assigned to the option @option{type}, @var{0} to
56 @option{start_frame} and @var{30} to @option{nb_frames}.
60 If the option value itself is a list of items (e.g. the @code{format} filter
61 takes a list of pixel formats), the items in the list are usually separated by
64 The list of arguments can be quoted using the character "'" as initial
65 and ending mark, and the character '\' for escaping the characters
66 within the quoted text; otherwise the argument string is considered
67 terminated when the next special character (belonging to the set
68 "[]=;,") is encountered.
70 The name and arguments of the filter are optionally preceded and
71 followed by a list of link labels.
72 A link label allows to name a link and associate it to a filter output
73 or input pad. The preceding labels @var{in_link_1}
74 ... @var{in_link_N}, are associated to the filter input pads,
75 the following labels @var{out_link_1} ... @var{out_link_M}, are
76 associated to the output pads.
78 When two link labels with the same name are found in the
79 filtergraph, a link between the corresponding input and output pad is
82 If an output pad is not labelled, it is linked by default to the first
83 unlabelled input pad of the next filter in the filterchain.
84 For example in the filterchain:
86 nullsrc, split[L1], [L2]overlay, nullsink
88 the split filter instance has two output pads, and the overlay filter
89 instance two input pads. The first output pad of split is labelled
90 "L1", the first input pad of overlay is labelled "L2", and the second
91 output pad of split is linked to the second input pad of overlay,
92 which are both unlabelled.
94 In a complete filterchain all the unlabelled filter input and output
95 pads must be connected. A filtergraph is considered valid if all the
96 filter input and output pads of all the filterchains are connected.
98 Libavfilter will automatically insert @ref{scale} filters where format
99 conversion is required. It is possible to specify swscale flags
100 for those automatically inserted scalers by prepending
101 @code{sws_flags=@var{flags};}
102 to the filtergraph description.
104 Follows a BNF description for the filtergraph syntax:
106 @var{NAME} ::= sequence of alphanumeric characters and '_'
107 @var{LINKLABEL} ::= "[" @var{NAME} "]"
108 @var{LINKLABELS} ::= @var{LINKLABEL} [@var{LINKLABELS}]
109 @var{FILTER_ARGUMENTS} ::= sequence of chars (eventually quoted)
110 @var{FILTER} ::= [@var{LINKLABELS}] @var{NAME} ["=" @var{FILTER_ARGUMENTS}] [@var{LINKLABELS}]
111 @var{FILTERCHAIN} ::= @var{FILTER} [,@var{FILTERCHAIN}]
112 @var{FILTERGRAPH} ::= [sws_flags=@var{flags};] @var{FILTERCHAIN} [;@var{FILTERGRAPH}]
115 @c man end FILTERGRAPH DESCRIPTION
117 @chapter Audio Filters
118 @c man begin AUDIO FILTERS
120 When you configure your Libav build, you can disable any of the
121 existing filters using --disable-filters.
122 The configure output will show the audio filters included in your
125 Below is a description of the currently available audio filters.
129 Convert the input audio to one of the specified formats. The framework will
130 negotiate the most appropriate format to minimize conversions.
132 The filter accepts the following named parameters:
136 A '|'-separated list of requested sample formats.
139 A '|'-separated list of requested sample rates.
141 @item channel_layouts
142 A '|'-separated list of requested channel layouts.
146 If a parameter is omitted, all values are allowed.
148 For example to force the output to either unsigned 8-bit or signed 16-bit stereo:
150 aformat=sample_fmts=u8|s16:channel_layouts=stereo
155 Mixes multiple audio inputs into a single output.
159 avconv -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
161 will mix 3 input audio streams to a single output with the same duration as the
162 first input and a dropout transition time of 3 seconds.
164 The filter accepts the following named parameters:
168 Number of inputs. If unspecified, it defaults to 2.
171 How to determine the end-of-stream.
175 Duration of longest input. (default)
178 Duration of shortest input.
181 Duration of first input.
185 @item dropout_transition
186 Transition time, in seconds, for volume renormalization when an input
187 stream ends. The default value is 2 seconds.
193 Pass the audio source unchanged to the output.
197 Change the PTS (presentation timestamp) of the input audio frames.
199 This filter accepts the following options:
204 The expression which is evaluated for each frame to construct its timestamp.
208 The expression is evaluated through the eval API and can contain the following
213 the presentation timestamp in input
225 Number of the audio samples pass through the filter so far, starting at 0.
228 Number of the audio samples in the current frame.
234 the PTS of the first frame
243 wallclock (RTC) time in microseconds
246 wallclock (RTC) time at the start of the movie in microseconds
250 Some examples follow:
253 # start counting PTS from zero
254 asetpts=expr=PTS-STARTPTS
256 #generate timestamps by counting samples
259 # generate timestamps from a "live source" and rebase onto the current timebase
260 asetpts='(RTCTIME - RTCSTART) / (TB * 1000000)"
266 Show a line containing various information for each input audio frame.
267 The input audio is not modified.
269 The shown line contains a sequence of key/value pairs of the form
270 @var{key}:@var{value}.
272 A description of each shown parameter follows:
276 sequential number of the input frame, starting from 0
279 Presentation timestamp of the input frame, in time base units; the time base
280 depends on the filter input pad, and is usually 1/@var{sample_rate}.
283 presentation timestamp of the input frame in seconds
292 sample rate for the audio frame
295 number of samples (per channel) in the frame
298 Adler-32 checksum (printed in hexadecimal) of the audio data. For planar audio
299 the data is treated as if all the planes were concatenated.
301 @item plane_checksums
302 A list of Adler-32 checksums for each data plane.
307 Split input audio into several identical outputs.
309 The filter accepts a single parameter which specifies the number of outputs. If
310 unspecified, it defaults to 2.
314 avconv -i INPUT -filter_complex asplit=5 OUTPUT
316 will create 5 copies of the input audio.
319 Synchronize audio data with timestamps by squeezing/stretching it and/or
320 dropping samples/adding silence when needed.
322 The filter accepts the following named parameters:
326 Enable stretching/squeezing the data to make it match the timestamps. Disabled
327 by default. When disabled, time gaps are covered with silence.
330 Minimum difference between timestamps and audio data (in seconds) to trigger
331 adding/dropping samples. Default value is 0.1. If you get non-perfect sync with
332 this filter, try setting this parameter to 0.
335 Maximum compensation in samples per second. Relevant only with compensate=1.
339 Assume the first pts should be this value. The time base is 1 / sample rate.
340 This allows for padding/trimming at the start of stream. By default, no
341 assumption is made about the first frame's expected pts, so no padding or
342 trimming is done. For example, this could be set to 0 to pad the beginning with
343 silence if an audio stream starts after the video stream or to trim any samples
344 with a negative pts due to encoder delay.
349 Trim the input so that the output contains one continuous subpart of the input.
351 This filter accepts the following options:
354 Timestamp (in seconds) of the start of the kept section. I.e. the audio sample
355 with the timestamp @var{start} will be the first sample in the output.
358 Timestamp (in seconds) of the first audio sample that will be dropped. I.e. the
359 audio sample immediately preceding the one with the timestamp @var{end} will be
360 the last sample in the output.
363 Same as @var{start}, except this option sets the start timestamp in samples
367 Same as @var{end}, except this option sets the end timestamp in samples instead
371 Maximum duration of the output in seconds.
374 Number of the first sample that should be passed to output.
377 Number of the first sample that should be dropped.
380 Note that the first two sets of the start/end options and the @option{duration}
381 option look at the frame timestamp, while the _sample options simply count the
382 samples that pass through the filter. So start/end_pts and start/end_sample will
383 give different results when the timestamps are wrong, inexact or do not start at
384 zero. Also note that this filter does not modify the timestamps. If you wish
385 that the output timestamps start at zero, insert the asetpts filter after the
388 If multiple start or end options are set, this filter tries to be greedy and
389 keep all samples that match at least one of the specified constraints. To keep
390 only the part that matches all the constraints at once, chain multiple atrim
393 The defaults are such that all the input is kept. So it is possible to set e.g.
394 just the end values to keep everything before the specified time.
399 drop everything except the second minute of input
401 avconv -i INPUT -af atrim=60:120
405 keep only the first 1000 samples
407 avconv -i INPUT -af atrim=end_sample=1000
412 @section channelsplit
413 Split each channel in input audio stream into a separate output stream.
415 This filter accepts the following named parameters:
418 Channel layout of the input stream. Default is "stereo".
421 For example, assuming a stereo input MP3 file
423 avconv -i in.mp3 -filter_complex channelsplit out.mkv
425 will create an output Matroska file with two audio streams, one containing only
426 the left channel and the other the right channel.
428 To split a 5.1 WAV file into per-channel files
430 avconv -i in.wav -filter_complex
431 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
432 -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
433 front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
438 Remap input channels to new locations.
440 This filter accepts the following named parameters:
443 Channel layout of the output stream.
446 Map channels from input to output. The argument is a '|'-separated list of
447 mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
448 @var{in_channel} form. @var{in_channel} can be either the name of the input
449 channel (e.g. FL for front left) or its index in the input channel layout.
450 @var{out_channel} is the name of the output channel or its index in the output
451 channel layout. If @var{out_channel} is not given then it is implicitly an
452 index, starting with zero and increasing by one for each mapping.
455 If no mapping is present, the filter will implicitly map input channels to
456 output channels preserving index.
458 For example, assuming a 5.1+downmix input MOV file
460 avconv -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
462 will create an output WAV file tagged as stereo from the downmix channels of
465 To fix a 5.1 WAV improperly encoded in AAC's native channel order
467 avconv -i in.wav -filter 'channelmap=1|2|0|5|3|4:channel_layout=5.1' out.wav
471 Compress or expand audio dynamic range.
473 A description of the accepted options follows.
479 Set list of times in seconds for each channel over which the instantaneous level
480 of the input signal is averaged to determine its volume. @var{attacks} refers to
481 increase of volume and @var{decays} refers to decrease of volume. For most
482 situations, the attack time (response to the audio getting louder) should be
483 shorter than the decay time because the human ear is more sensitive to sudden
484 loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
485 a typical value for decay is 0.8 seconds.
488 Set list of points for the transfer function, specified in dB relative to the
489 maximum possible signal amplitude. Each key points list must be defined using
490 the following syntax: @code{x0/y0|x1/y1|x2/y2|....}
492 The input values must be in strictly increasing order but the transfer function
493 does not have to be monotonically rising. The point @code{0/0} is assumed but
494 may be overridden (by @code{0/out-dBn}). Typical values for the transfer
495 function are @code{-70/-70|-60/-20}.
498 Set the curve radius in dB for all joints. Defaults to 0.01.
501 Set additional gain in dB to be applied at all points on the transfer function.
502 This allows easy adjustment of the overall gain. Defaults to 0.
505 Set initial volume in dB to be assumed for each channel when filtering starts.
506 This permits the user to supply a nominal level initially, so that, for
507 example, a very large gain is not applied to initial signal levels before the
508 companding has begun to operate. A typical value for audio which is initially
509 quiet is -90 dB. Defaults to 0.
512 Set delay in seconds. The input audio is analyzed immediately, but audio is
513 delayed before being fed to the volume adjuster. Specifying a delay
514 approximately equal to the attack/decay times allows the filter to effectively
515 operate in predictive rather than reactive mode. Defaults to 0.
523 Make music with both quiet and loud passages suitable for listening in a noisy
526 compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
530 Noise gate for when the noise is at a lower level than the signal:
532 compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
536 Here is another noise gate, this time for when the noise is at a higher level
537 than the signal (making it, in some ways, similar to squelch):
539 compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
544 Join multiple input streams into one multi-channel stream.
546 The filter accepts the following named parameters:
550 Number of input streams. Defaults to 2.
553 Desired output channel layout. Defaults to stereo.
556 Map channels from inputs to output. The argument is a '|'-separated list of
557 mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
558 form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
559 can be either the name of the input channel (e.g. FL for front left) or its
560 index in the specified input stream. @var{out_channel} is the name of the output
564 The filter will attempt to guess the mappings when those are not specified
565 explicitly. It does so by first trying to find an unused matching input channel
566 and if that fails it picks the first unused input channel.
568 E.g. to join 3 inputs (with properly set channel layouts)
570 avconv -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
573 To build a 5.1 output from 6 single-channel streams:
575 avconv -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
576 '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'
581 Convert the audio sample format, sample rate and channel layout. This filter is
582 not meant to be used directly, it is inserted automatically by libavfilter
583 whenever conversion is needed. Use the @var{aformat} filter to force a specific
588 Adjust the input audio volume.
590 The filter accepts the following named parameters:
594 Expresses how the audio volume will be increased or decreased.
596 Output values are clipped to the maximum value.
598 The output audio volume is given by the relation:
600 @var{output_volume} = @var{volume} * @var{input_volume}
603 Default value for @var{volume} is 1.0.
606 Mathematical precision.
608 This determines which input sample formats will be allowed, which affects the
609 precision of the volume scaling.
613 8-bit fixed-point; limits input sample format to U8, S16, and S32.
615 32-bit floating-point; limits input sample format to FLT. (default)
617 64-bit floating-point; limits input sample format to DBL.
625 Halve the input audio volume:
629 volume=volume=-6.0206dB
633 Increase input audio power by 6 decibels using fixed-point precision:
635 volume=volume=6dB:precision=fixed
639 @c man end AUDIO FILTERS
641 @chapter Audio Sources
642 @c man begin AUDIO SOURCES
644 Below is a description of the currently available audio sources.
648 Null audio source, never return audio frames. It is mainly useful as a
649 template and to be employed in analysis / debugging tools.
651 It accepts as optional parameter a string of the form
652 @var{sample_rate}:@var{channel_layout}.
654 @var{sample_rate} specify the sample rate, and defaults to 44100.
656 @var{channel_layout} specify the channel layout, and can be either an
657 integer or a string representing a channel layout. The default value
658 of @var{channel_layout} is 3, which corresponds to CH_LAYOUT_STEREO.
660 Check the channel_layout_map definition in
661 @file{libavutil/channel_layout.c} for the mapping between strings and
662 channel layout values.
664 Follow some examples:
666 # set the sample rate to 48000 Hz and the channel layout to CH_LAYOUT_MONO.
674 Buffer audio frames, and make them available to the filter chain.
676 This source is not intended to be part of user-supplied graph descriptions but
677 for insertion by calling programs through the interface defined in
678 @file{libavfilter/buffersrc.h}.
680 It accepts the following named parameters:
684 Timebase which will be used for timestamps of submitted frames. It must be
685 either a floating-point number or in @var{numerator}/@var{denominator} form.
691 Name of the sample format, as returned by @code{av_get_sample_fmt_name()}.
694 Channel layout of the audio data, in the form that can be accepted by
695 @code{av_get_channel_layout()}.
698 All the parameters need to be explicitly defined.
700 @c man end AUDIO SOURCES
703 @c man begin AUDIO SINKS
705 Below is a description of the currently available audio sinks.
709 Null audio sink, do absolutely nothing with the input audio. It is
710 mainly useful as a template and to be employed in analysis / debugging
714 This sink is intended for programmatic use. Frames that arrive on this sink can
715 be retrieved by the calling program using the interface defined in
716 @file{libavfilter/buffersink.h}.
718 This filter accepts no parameters.
720 @c man end AUDIO SINKS
722 @chapter Video Filters
723 @c man begin VIDEO FILTERS
725 When you configure your Libav build, you can disable any of the
726 existing filters using --disable-filters.
727 The configure output will show the video filters included in your
730 Below is a description of the currently available video filters.
734 Detect frames that are (almost) completely black. Can be useful to
735 detect chapter transitions or commercials. Output lines consist of
736 the frame number of the detected frame, the percentage of blackness,
737 the position in the file if known or -1 and the timestamp in seconds.
739 In order to display the output lines, you need to set the loglevel at
740 least to the AV_LOG_INFO value.
742 The filter accepts the following options:
747 The percentage of the pixels that have to be below the threshold, defaults to
751 Threshold below which a pixel value is considered black, defaults to 32.
757 Apply boxblur algorithm to the input video.
759 This filter accepts the following options:
772 Chroma and alpha parameters are optional, if not specified they default
773 to the corresponding values set for @var{luma_radius} and
776 @var{luma_radius}, @var{chroma_radius}, and @var{alpha_radius} represent
777 the radius in pixels of the box used for blurring the corresponding
778 input plane. They are expressions, and can contain the following
782 the input width and height in pixels
785 the input chroma image width and height in pixels
788 horizontal and vertical chroma subsample values. For example for the
789 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
792 The radius must be a non-negative number, and must not be greater than
793 the value of the expression @code{min(w,h)/2} for the luma and alpha planes,
794 and of @code{min(cw,ch)/2} for the chroma planes.
796 @var{luma_power}, @var{chroma_power}, and @var{alpha_power} represent
797 how many times the boxblur filter is applied to the corresponding
800 Some examples follow:
805 Apply a boxblur filter with luma, chroma, and alpha radius
808 boxblur=luma_radius=2:luma_power=1
812 Set luma radius to 2, alpha and chroma radius to 0
818 Set luma and chroma radius to a fraction of the video dimension
820 boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
827 Copy the input source unchanged to the output. Mainly useful for
832 Crop the input video to given dimensions.
834 This filter accepts the following options:
839 Width of the output video.
842 Height of the output video.
845 Horizontal position, in the input video, of the left edge of the output video.
848 Vertical position, in the input video, of the top edge of the output video.
852 The parameters are expressions containing the following constants:
856 the corresponding mathematical approximated values for e
857 (euler number), pi (greek PI), PHI (golden ratio)
860 the computed values for @var{x} and @var{y}. They are evaluated for
864 the input width and height
867 same as @var{in_w} and @var{in_h}
870 the output (cropped) width and height
873 same as @var{out_w} and @var{out_h}
876 the number of input frame, starting from 0
879 timestamp expressed in seconds, NAN if the input timestamp is unknown
883 The @var{out_w} and @var{out_h} parameters specify the expressions for
884 the width and height of the output (cropped) video. They are
885 evaluated just at the configuration of the filter.
887 The default value of @var{out_w} is "in_w", and the default value of
888 @var{out_h} is "in_h".
890 The expression for @var{out_w} may depend on the value of @var{out_h},
891 and the expression for @var{out_h} may depend on @var{out_w}, but they
892 cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
893 evaluated after @var{out_w} and @var{out_h}.
895 The @var{x} and @var{y} parameters specify the expressions for the
896 position of the top-left corner of the output (non-cropped) area. They
897 are evaluated for each frame. If the evaluated value is not valid, it
898 is approximated to the nearest valid value.
900 The default value of @var{x} is "(in_w-out_w)/2", and the default
901 value for @var{y} is "(in_h-out_h)/2", which set the cropped area at
902 the center of the input image.
904 The expression for @var{x} may depend on @var{y}, and the expression
905 for @var{y} may depend on @var{x}.
907 Follow some examples:
909 # crop the central input area with size 100x100
910 crop=out_w=100:out_h=100
912 # crop the central input area with size 2/3 of the input video
913 "crop=out_w=2/3*in_w:out_h=2/3*in_h"
915 # crop the input video central square
918 # delimit the rectangle with the top-left corner placed at position
919 # 100:100 and the right-bottom corner corresponding to the right-bottom
920 # corner of the input image.
921 crop=out_w=in_w-100:out_h=in_h-100:x=100:y=100
923 # crop 10 pixels from the left and right borders, and 20 pixels from
924 # the top and bottom borders
925 "crop=out_w=in_w-2*10:out_h=in_h-2*20"
927 # keep only the bottom right quarter of the input image
928 "crop=out_w=in_w/2:out_h=in_h/2:x=in_w/2:y=in_h/2"
930 # crop height for getting Greek harmony
931 "crop=out_w=in_w:out_h=1/PHI*in_w"
934 "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)"
936 # erratic camera effect depending on timestamp
937 "crop=out_w=in_w/2:out_h=in_h/2:x=(in_w-out_w)/2+((in_w-out_w)/2)*sin(t*10):y=(in_h-out_h)/2 +((in_h-out_h)/2)*sin(t*13)"
939 # set x depending on the value of y
940 "crop=in_w/2:in_h/2:y:10+10*sin(n/10)"
945 Auto-detect crop size.
947 Calculate necessary cropping parameters and prints the recommended
948 parameters through the logging system. The detected dimensions
949 correspond to the non-black area of the input video.
951 This filter accepts the following options:
956 Threshold, which can be optionally specified from nothing (0) to
957 everything (255), defaults to 24.
960 Value which the width/height should be divisible by, defaults to
961 16. The offset is automatically adjusted to center the video. Use 2 to
962 get only even dimensions (needed for 4:2:2 video). 16 is best when
963 encoding to most video codecs.
966 Counter that determines after how many frames cropdetect will reset
967 the previously detected largest video area and start over to detect
968 the current optimal crop area. Defaults to 0.
970 This can be useful when channel logos distort the video area. 0
971 indicates never reset and return the largest area encountered during
977 Suppress a TV station logo by a simple interpolation of the surrounding
978 pixels. Just set a rectangle covering the logo and watch it disappear
979 (and sometimes something even uglier appear - your mileage may vary).
981 This filter accepts the following options:
985 Specify the top left corner coordinates of the logo. They must be
989 Specify the width and height of the logo to clear. They must be
993 Specify the thickness of the fuzzy edge of the rectangle (added to
994 @var{w} and @var{h}). The default value is 4.
997 When set to 1, a green rectangle is drawn on the screen to simplify
998 finding the right @var{x}, @var{y}, @var{w}, @var{h} parameters, and
999 @var{band} is set to 4. The default value is 0.
1003 Some examples follow.
1008 Set a rectangle covering the area with top left corner coordinates 0,0
1009 and size 100x77, setting a band of size 10:
1011 delogo=x=0:y=0:w=100:h=77:band=10
1018 Draw a colored box on the input image.
1020 This filter accepts the following options:
1025 Specify the top left corner coordinates of the box. Default to 0.
1028 Specify the width and height of the box, if 0 they are interpreted as
1029 the input width and height. Default to 0.
1032 Specify the color of the box to write, it can be the name of a color
1033 (case insensitive match) or a 0xRRGGBB[AA] sequence.
1036 Follow some examples:
1038 # draw a black box around the edge of the input image
1041 # draw a box with color red and an opacity of 50%
1042 drawbox=x=10:y=20:width=200:height=60:color=red@@0.5"
1047 Draw text string or text from specified file on top of video using the
1048 libfreetype library.
1050 To enable compilation of this filter you need to configure Libav with
1051 @code{--enable-libfreetype}.
1053 The filter also recognizes strftime() sequences in the provided text
1054 and expands them accordingly. Check the documentation of strftime().
1056 The description of the accepted parameters follows.
1061 The font file to be used for drawing text. Path must be included.
1062 This parameter is mandatory.
1065 The text string to be drawn. The text must be a sequence of UTF-8
1067 This parameter is mandatory if no file is specified with the parameter
1071 A text file containing text to be drawn. The text must be a sequence
1072 of UTF-8 encoded characters.
1074 This parameter is mandatory if no text string is specified with the
1075 parameter @var{text}.
1077 If both text and textfile are specified, an error is thrown.
1080 The offsets where text will be drawn within the video frame.
1081 Relative to the top/left border of the output image.
1082 They accept expressions similar to the @ref{overlay} filter:
1086 the computed values for @var{x} and @var{y}. They are evaluated for
1089 @item main_w, main_h
1090 main input width and height
1093 same as @var{main_w} and @var{main_h}
1095 @item text_w, text_h
1096 rendered text width and height
1099 same as @var{text_w} and @var{text_h}
1102 the number of frames processed, starting from 0
1105 timestamp expressed in seconds, NAN if the input timestamp is unknown
1109 The default value of @var{x} and @var{y} is 0.
1112 The font size to be used for drawing text.
1113 The default value of @var{fontsize} is 16.
1116 The color to be used for drawing fonts.
1117 Either a string (e.g. "red") or in 0xRRGGBB[AA] format
1118 (e.g. "0xff000033"), possibly followed by an alpha specifier.
1119 The default value of @var{fontcolor} is "black".
1122 The color to be used for drawing box around text.
1123 Either a string (e.g. "yellow") or in 0xRRGGBB[AA] format
1124 (e.g. "0xff00ff"), possibly followed by an alpha specifier.
1125 The default value of @var{boxcolor} is "white".
1128 Used to draw a box around text using background color.
1129 Value should be either 1 (enable) or 0 (disable).
1130 The default value of @var{box} is 0.
1132 @item shadowx, shadowy
1133 The x and y offsets for the text shadow position with respect to the
1134 position of the text. They can be either positive or negative
1135 values. Default value for both is "0".
1138 The color to be used for drawing a shadow behind the drawn text. It
1139 can be a color name (e.g. "yellow") or a string in the 0xRRGGBB[AA]
1140 form (e.g. "0xff00ff"), possibly followed by an alpha specifier.
1141 The default value of @var{shadowcolor} is "black".
1144 Flags to be used for loading the fonts.
1146 The flags map the corresponding flags supported by libfreetype, and are
1147 a combination of the following values:
1154 @item vertical_layout
1155 @item force_autohint
1158 @item ignore_global_advance_width
1160 @item ignore_transform
1167 Default value is "render".
1169 For more information consult the documentation for the FT_LOAD_*
1173 The size in number of spaces to use for rendering the tab.
1177 If true, check and fix text coords to avoid clipping.
1180 For example the command:
1182 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
1185 will draw "Test Text" with font FreeSerif, using the default values
1186 for the optional parameters.
1190 drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
1191 x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
1194 will draw 'Test Text' with font FreeSerif of size 24 at position x=100
1195 and y=50 (counting from the top-left corner of the screen), text is
1196 yellow with a red box around it. Both the text and the box have an
1199 Note that the double quotes are not necessary if spaces are not used
1200 within the parameter list.
1202 For more information about libfreetype, check:
1203 @url{http://www.freetype.org/}.
1207 Apply fade-in/out effect to input video.
1209 This filter accepts the following options:
1214 The effect type -- can be either "in" for fade-in, or "out" for a fade-out
1218 The number of the start frame for starting to apply the fade effect.
1221 The number of frames for which the fade effect has to last. At the end of the
1222 fade-in effect the output video will have the same intensity as the input video,
1223 at the end of the fade-out transition the output video will be completely black.
1227 A few usage examples follow, usable too as test scenarios.
1229 # fade in first 30 frames of video
1230 fade=type=in:nb_frames=30
1232 # fade out last 45 frames of a 200-frame video
1233 fade=type=out:start_frame=155:nb_frames=45
1235 # fade in first 25 frames and fade out last 25 frames of a 1000-frame video
1236 fade=type=in:start_frame=0:nb_frames=25, fade=type=out:start_frame=975:nb_frames=25
1238 # make first 5 frames black, then fade in from frame 5-24
1239 fade=type=in:start_frame=5:nb_frames=20
1244 Transform the field order of the input video.
1246 This filter accepts the following options:
1251 Output field order. Valid values are @var{tff} for top field first or @var{bff}
1252 for bottom field first.
1255 Default value is "tff".
1257 Transformation is achieved by shifting the picture content up or down
1258 by one line, and filling the remaining line with appropriate picture content.
1259 This method is consistent with most broadcast field order converters.
1261 If the input video is not flagged as being interlaced, or it is already
1262 flagged as being of the required output field order then this filter does
1263 not alter the incoming video.
1265 This filter is very useful when converting to or from PAL DV material,
1266 which is bottom field first.
1270 ./avconv -i in.vob -vf "fieldorder=order=bff" out.dv
1275 Buffer input images and send them when they are requested.
1277 This filter is mainly useful when auto-inserted by the libavfilter
1280 The filter does not take parameters.
1284 Convert the input video to one of the specified pixel formats.
1285 Libavfilter will try to pick one that is supported for the input to
1288 This filter accepts the following parameters:
1292 A '|'-separated list of pixel format names, for example
1293 "pix_fmts=yuv420p|monow|rgb24".
1297 Some examples follow:
1299 # convert the input video to the format "yuv420p"
1300 format=pix_fmts=yuv420p
1302 # convert the input video to any of the formats in the list
1303 format=pix_fmts=yuv420p|yuv444p|yuv410p
1309 Convert the video to specified constant framerate by duplicating or dropping
1310 frames as necessary.
1312 This filter accepts the following named parameters:
1316 Desired output framerate.
1319 Assume the first PTS should be the given value, in seconds. This allows for
1320 padding/trimming at the start of stream. By default, no assumption is made
1321 about the first frame's expected PTS, so no padding or trimming is done.
1322 For example, this could be set to 0 to pad the beginning with duplicates of
1323 the first frame if a video stream starts after the audio stream or to trim any
1324 frames with a negative PTS.
1330 Pack two different video streams into a stereoscopic video, setting proper
1331 metadata on supported codecs. The two views should have the same size and
1332 framerate and processing will stop when the shorter video ends. Please note
1333 that you may conveniently adjust view properties with the @ref{scale} and
1336 This filter accepts the following named parameters:
1340 Desired packing format. Supported values are:
1345 Views are next to each other (default).
1348 Views are on top of each other.
1351 Views are packed by line.
1354 Views are eacked by column.
1357 Views are temporally interleaved.
1363 Some examples follow:
1366 # Convert left and right views into a frame sequential video.
1367 avconv -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
1369 # Convert views into a side-by-side video with the same output resolution as the input.
1370 avconv -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
1376 Apply a frei0r effect to the input video.
1378 To enable compilation of this filter you need to install the frei0r
1379 header and configure Libav with --enable-frei0r.
1381 This filter accepts the following options:
1386 The name to the frei0r effect to load. If the environment variable
1387 @env{FREI0R_PATH} is defined, the frei0r effect is searched in each one of the
1388 directories specified by the colon separated list in @env{FREIOR_PATH},
1389 otherwise in the standard frei0r paths, which are in this order:
1390 @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
1391 @file{/usr/lib/frei0r-1/}.
1394 A '|'-separated list of parameters to pass to the frei0r effect.
1398 A frei0r effect parameter can be a boolean (whose values are specified
1399 with "y" and "n"), a double, a color (specified by the syntax
1400 @var{R}/@var{G}/@var{B}, @var{R}, @var{G}, and @var{B} being float
1401 numbers from 0.0 to 1.0) or by an @code{av_parse_color()} color
1402 description), a position (specified by the syntax @var{X}/@var{Y},
1403 @var{X} and @var{Y} being float numbers) and a string.
1405 The number and kind of parameters depend on the loaded effect. If an
1406 effect parameter is not specified the default value is set.
1408 Some examples follow:
1410 # apply the distort0r effect, set the first two double parameters
1411 frei0r=filter_name=distort0r:filter_params=0.5|0.01
1413 # apply the colordistance effect, takes a color as first parameter
1414 frei0r=colordistance:0.2/0.3/0.4
1415 frei0r=colordistance:violet
1416 frei0r=colordistance:0x112233
1418 # apply the perspective effect, specify the top left and top right
1420 frei0r=perspective:0.2/0.2|0.8/0.2
1423 For more information see:
1424 @url{http://piksel.org/frei0r}
1428 Fix the banding artifacts that are sometimes introduced into nearly flat
1429 regions by truncation to 8bit colordepth.
1430 Interpolate the gradients that should go where the bands are, and
1433 This filter is designed for playback only. Do not use it prior to
1434 lossy compression, because compression tends to lose the dither and
1435 bring back the bands.
1437 This filter accepts the following options:
1442 The maximum amount by which the filter will change any one pixel. Also the
1443 threshold for detecting nearly flat regions. Acceptable values range from .51 to
1444 64, default value is 1.2, out-of-range values will be clipped to the valid
1448 The neighborhood to fit the gradient to. A larger radius makes for smoother
1449 gradients, but also prevents the filter from modifying the pixels near detailed
1450 regions. Acceptable values are 8-32, default value is 16, out-of-range values
1451 will be clipped to the valid range.
1456 # default parameters
1457 gradfun=strength=1.2:radius=16
1465 Flip the input video horizontally.
1467 For example to horizontally flip the input video with @command{avconv}:
1469 avconv -i in.avi -vf "hflip" out.avi
1474 High precision/quality 3d denoise filter. This filter aims to reduce
1475 image noise producing smooth images and making still images really
1476 still. It should enhance compressibility.
1478 It accepts the following optional parameters:
1482 a non-negative float number which specifies spatial luma strength,
1485 @item chroma_spatial
1486 a non-negative float number which specifies spatial chroma strength,
1487 defaults to 3.0*@var{luma_spatial}/4.0
1490 a float number which specifies luma temporal strength, defaults to
1491 6.0*@var{luma_spatial}/4.0
1494 a float number which specifies chroma temporal strength, defaults to
1495 @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}
1500 Simple interlacing filter from progressive contents. This interleaves upper (or
1501 lower) lines from odd frames with lower (or upper) lines from even frames,
1502 halving the frame rate and preserving image height. A vertical lowpass filter
1503 is always applied in order to avoid twitter effects and reduce moiré patterns.
1506 Original Original New Frame
1507 Frame 'j' Frame 'j+1' (tff)
1508 ========== =========== ==================
1509 Line 0 --------------------> Frame 'j' Line 0
1510 Line 1 Line 1 ----> Frame 'j+1' Line 1
1511 Line 2 ---------------------> Frame 'j' Line 2
1512 Line 3 Line 3 ----> Frame 'j+1' Line 3
1514 New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
1517 It accepts the following optional parameters:
1521 determines whether the interlaced frame is taken from the even (tff - default)
1522 or odd (bff) lines of the progressive frame.
1525 @section lut, lutrgb, lutyuv
1527 Compute a look-up table for binding each pixel component input value
1528 to an output value, and apply it to input video.
1530 @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
1531 to an RGB input video.
1533 These filters accept the following options:
1535 @item @var{c0} (first pixel component)
1536 @item @var{c1} (second pixel component)
1537 @item @var{c2} (third pixel component)
1538 @item @var{c3} (fourth pixel component, corresponds to the alpha component)
1540 @item @var{r} (red component)
1541 @item @var{g} (green component)
1542 @item @var{b} (blue component)
1543 @item @var{a} (alpha component)
1545 @item @var{y} (Y/luminance component)
1546 @item @var{u} (U/Cb component)
1547 @item @var{v} (V/Cr component)
1550 Each of them specifies the expression to use for computing the lookup table for
1551 the corresponding pixel component values.
1553 The exact component associated to each of the @var{c*} options depends on the
1556 The @var{lut} filter requires either YUV or RGB pixel formats in input,
1557 @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
1559 The expressions can contain the following constants and functions:
1563 the corresponding mathematical approximated values for e
1564 (euler number), pi (greek PI), PHI (golden ratio)
1567 the input width and height
1570 input value for the pixel component
1573 the input value clipped in the @var{minval}-@var{maxval} range
1576 maximum value for the pixel component
1579 minimum value for the pixel component
1582 the negated value for the pixel component value clipped in the
1583 @var{minval}-@var{maxval} range , it corresponds to the expression
1584 "maxval-clipval+minval"
1587 the computed value in @var{val} clipped in the
1588 @var{minval}-@var{maxval} range
1590 @item gammaval(gamma)
1591 the computed gamma correction value of the pixel component value
1592 clipped in the @var{minval}-@var{maxval} range, corresponds to the
1594 "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
1598 All expressions default to "val".
1600 Some examples follow:
1602 # negate input video
1603 lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
1604 lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
1606 # the above is the same as
1607 lutrgb="r=negval:g=negval:b=negval"
1608 lutyuv="y=negval:u=negval:v=negval"
1613 # remove chroma components, turns the video into a graytone image
1614 lutyuv="u=128:v=128"
1616 # apply a luma burning effect
1619 # remove green and blue components
1622 # set a constant alpha channel value on input
1623 format=rgba,lutrgb=a="maxval-minval/2"
1625 # correct luminance gamma by a 0.5 factor
1626 lutyuv=y=gammaval(0.5)
1633 This filter accepts an integer in input, if non-zero it negates the
1634 alpha component (if available). The default value in input is 0.
1638 Force libavfilter not to use any of the specified pixel formats for the
1639 input to the next filter.
1641 This filter accepts the following parameters:
1645 A '|'-separated list of pixel format names, for example
1646 "pix_fmts=yuv420p|monow|rgb24".
1650 Some examples follow:
1652 # force libavfilter to use a format different from "yuv420p" for the
1653 # input to the vflip filter
1654 noformat=pix_fmts=yuv420p,vflip
1656 # convert the input video to any of the formats not contained in the list
1657 noformat=yuv420p|yuv444p|yuv410p
1662 Pass the video source unchanged to the output.
1666 Apply video transform using libopencv.
1668 To enable this filter install libopencv library and headers and
1669 configure Libav with --enable-libopencv.
1671 This filter accepts the following parameters:
1676 The name of the libopencv filter to apply.
1679 The parameters to pass to the libopencv filter. If not specified the default
1684 Refer to the official libopencv documentation for more precise
1686 @url{http://opencv.willowgarage.com/documentation/c/image_filtering.html}
1688 Follows the list of supported libopencv filters.
1693 Dilate an image by using a specific structuring element.
1694 This filter corresponds to the libopencv function @code{cvDilate}.
1696 It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
1698 @var{struct_el} represents a structuring element, and has the syntax:
1699 @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
1701 @var{cols} and @var{rows} represent the number of columns and rows of
1702 the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
1703 point, and @var{shape} the shape for the structuring element, and
1704 can be one of the values "rect", "cross", "ellipse", "custom".
1706 If the value for @var{shape} is "custom", it must be followed by a
1707 string of the form "=@var{filename}". The file with name
1708 @var{filename} is assumed to represent a binary image, with each
1709 printable character corresponding to a bright pixel. When a custom
1710 @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
1711 or columns and rows of the read file are assumed instead.
1713 The default value for @var{struct_el} is "3x3+0x0/rect".
1715 @var{nb_iterations} specifies the number of times the transform is
1716 applied to the image, and defaults to 1.
1718 Follow some example:
1720 # use the default values
1723 # dilate using a structuring element with a 5x5 cross, iterate two times
1724 ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
1726 # read the shape from the file diamond.shape, iterate two times
1727 # the file diamond.shape may contain a pattern of characters like this:
1733 # the specified cols and rows are ignored (but not the anchor point coordinates)
1734 ocv=dilate:0x0+2x2/custom=diamond.shape|2
1739 Erode an image by using a specific structuring element.
1740 This filter corresponds to the libopencv function @code{cvErode}.
1742 The filter accepts the parameters: @var{struct_el}:@var{nb_iterations},
1743 with the same syntax and semantics as the @ref{dilate} filter.
1747 Smooth the input video.
1749 The filter takes the following parameters:
1750 @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
1752 @var{type} is the type of smooth filter to apply, and can be one of
1753 the following values: "blur", "blur_no_scale", "median", "gaussian",
1754 "bilateral". The default value is "gaussian".
1756 @var{param1}, @var{param2}, @var{param3}, and @var{param4} are
1757 parameters whose meanings depend on smooth type. @var{param1} and
1758 @var{param2} accept integer positive values or 0, @var{param3} and
1759 @var{param4} accept float values.
1761 The default value for @var{param1} is 3, the default value for the
1762 other parameters is 0.
1764 These parameters correspond to the parameters assigned to the
1765 libopencv function @code{cvSmooth}.
1770 Overlay one video on top of another.
1772 It takes two inputs and one output, the first input is the "main"
1773 video on which the second input is overlayed.
1775 This filter accepts the following parameters:
1780 The horizontal position of the left edge of the overlaid video on the main video.
1783 The vertical position of the top edge of the overlaid video on the main video.
1787 The parameters are expressions containing the following parameters:
1790 @item main_w, main_h
1791 main input width and height
1794 same as @var{main_w} and @var{main_h}
1796 @item overlay_w, overlay_h
1797 overlay input width and height
1800 same as @var{overlay_w} and @var{overlay_h}
1803 The action to take when EOF is encountered on the secondary input, accepts one
1804 of the following values:
1808 repeat the last frame (the default)
1812 pass through the main input
1817 Be aware that frames are taken from each input video in timestamp
1818 order, hence, if their initial timestamps differ, it is a a good idea
1819 to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
1820 have them begin in the same zero timestamp, as it does the example for
1821 the @var{movie} filter.
1823 Follow some examples:
1825 # draw the overlay at 10 pixels from the bottom right
1826 # corner of the main video.
1827 overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
1829 # insert a transparent PNG logo in the bottom left corner of the input
1830 avconv -i input -i logo -filter_complex 'overlay=x=10:y=main_h-overlay_h-10' output
1832 # insert 2 different transparent PNG logos (second logo on bottom
1834 avconv -i input -i logo1 -i logo2 -filter_complex
1835 'overlay=x=10:y=H-h-10,overlay=x=W-w-10:y=H-h-10' output
1837 # add a transparent color layer on top of the main video,
1838 # WxH specifies the size of the main input to the overlay filter
1839 color=red@.3:WxH [over]; [in][over] overlay [out]
1841 # mask 10-20 seconds of a video by applying the delogo filter to a section
1842 avconv -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
1843 -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]'
1847 You can chain together more overlays but the efficiency of such
1848 approach is yet to be tested.
1852 Add paddings to the input image, and places the original input at the
1853 given coordinates @var{x}, @var{y}.
1855 This filter accepts the following parameters:
1860 Specify the size of the output image with the paddings added. If the
1861 value for @var{width} or @var{height} is 0, the corresponding input size
1862 is used for the output.
1864 The @var{width} expression can reference the value set by the
1865 @var{height} expression, and vice versa.
1867 The default value of @var{width} and @var{height} is 0.
1871 Specify the offsets where to place the input image in the padded area
1872 with respect to the top/left border of the output image.
1874 The @var{x} expression can reference the value set by the @var{y}
1875 expression, and vice versa.
1877 The default value of @var{x} and @var{y} is 0.
1881 Specify the color of the padded area, it can be the name of a color
1882 (case insensitive match) or a 0xRRGGBB[AA] sequence.
1884 The default value of @var{color} is "black".
1888 The parameters @var{width}, @var{height}, @var{x}, and @var{y} are
1889 expressions containing the following constants:
1893 the corresponding mathematical approximated values for e
1894 (euler number), pi (greek PI), phi (golden ratio)
1897 the input video width and height
1900 same as @var{in_w} and @var{in_h}
1903 the output width and height, that is the size of the padded area as
1904 specified by the @var{width} and @var{height} expressions
1907 same as @var{out_w} and @var{out_h}
1910 x and y offsets as specified by the @var{x} and @var{y}
1911 expressions, or NAN if not yet specified
1914 input display aspect ratio, same as @var{iw} / @var{ih}
1917 horizontal and vertical chroma subsample values. For example for the
1918 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
1921 Some examples follow:
1924 # Add paddings with color "violet" to the input video. Output video
1925 # size is 640x480, the top-left corner of the input video is placed at
1927 pad=width=640:height=480:x=0:y=40:color=violet
1929 # pad the input to get an output with dimensions increased bt 3/2,
1930 # and put the input video at the center of the padded area
1931 pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
1933 # pad the input to get a squared output with size equal to the maximum
1934 # value between the input width and height, and put the input video at
1935 # the center of the padded area
1936 pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
1938 # pad the input to get a final w/h ratio of 16:9
1939 pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
1941 # double output size and put the input video in the bottom-right
1942 # corner of the output padded area
1943 pad="2*iw:2*ih:ow-iw:oh-ih"
1946 @section pixdesctest
1948 Pixel format descriptor test filter, mainly useful for internal
1949 testing. The output video should be equal to the input video.
1953 format=monow, pixdesctest
1956 can be used to test the monowhite pixel format descriptor definition.
1961 Scale the input video and/or convert the image format.
1963 This filter accepts the following options:
1971 Output video height.
1975 The parameters @var{w} and @var{h} are expressions containing
1976 the following constants:
1980 the corresponding mathematical approximated values for e
1981 (euler number), pi (greek PI), phi (golden ratio)
1984 the input width and height
1987 same as @var{in_w} and @var{in_h}
1990 the output (cropped) width and height
1993 same as @var{out_w} and @var{out_h}
1996 same as @var{iw} / @var{ih}
1999 input sample aspect ratio
2002 input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
2005 horizontal and vertical chroma subsample values. For example for the
2006 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
2009 If the input image format is different from the format requested by
2010 the next filter, the scale filter will convert the input to the
2013 If the value for @var{w} or @var{h} is 0, the respective input
2014 size is used for the output.
2016 If the value for @var{w} or @var{h} is -1, the scale filter will use, for the
2017 respective output size, a value that maintains the aspect ratio of the input
2020 The default value of @var{w} and @var{h} is 0.
2022 Some examples follow:
2024 # scale the input video to a size of 200x100.
2027 # scale the input to 2x
2029 # the above is the same as
2032 # scale the input to half size
2035 # increase the width, and set the height to the same size
2038 # seek for Greek harmony
2042 # increase the height, and set the width to 3/2 of the height
2043 scale=w=3/2*oh:h=3/5*ih
2045 # increase the size, but make the size a multiple of the chroma
2046 scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
2048 # increase the width to a maximum of 500 pixels, keep the same input aspect ratio
2049 scale=w='min(500\, iw*3/2):h=-1'
2053 Select frames to pass in output.
2055 This filter accepts the following options:
2060 An expression, which is evaluated for each input frame. If the expression is
2061 evaluated to a non-zero value, the frame is selected and passed to the output,
2062 otherwise it is discarded.
2066 The expression can contain the following constants:
2079 the sequential number of the filtered frame, starting from 0
2082 the sequential number of the selected frame, starting from 0
2084 @item prev_selected_n
2085 the sequential number of the last selected frame, NAN if undefined
2088 timebase of the input timestamps
2091 the PTS (Presentation TimeStamp) of the filtered video frame,
2092 expressed in @var{TB} units, NAN if undefined
2095 the PTS (Presentation TimeStamp) of the filtered video frame,
2096 expressed in seconds, NAN if undefined
2099 the PTS of the previously filtered video frame, NAN if undefined
2101 @item prev_selected_pts
2102 the PTS of the last previously filtered video frame, NAN if undefined
2104 @item prev_selected_t
2105 the PTS of the last previously selected video frame, NAN if undefined
2108 the PTS of the first video frame in the video, NAN if undefined
2111 the time of the first video frame in the video, NAN if undefined
2114 the type of the filtered frame, can assume one of the following
2126 @item interlace_type
2127 the frame interlace type, can assume one of the following values:
2130 the frame is progressive (not interlaced)
2132 the frame is top-field-first
2134 the frame is bottom-field-first
2138 1 if the filtered frame is a key-frame, 0 otherwise
2142 The default value of the select expression is "1".
2144 Some examples follow:
2147 # select all frames in input
2150 # the above is the same as:
2156 # select only I-frames
2157 select='expr=eq(pict_type\,I)'
2159 # select one frame every 100
2160 select='not(mod(n\,100))'
2162 # select only frames contained in the 10-20 time interval
2163 select='gte(t\,10)*lte(t\,20)'
2165 # select only I frames contained in the 10-20 time interval
2166 select='gte(t\,10)*lte(t\,20)*eq(pict_type\,I)'
2168 # select frames with a minimum distance of 10 seconds
2169 select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
2175 Set the Display Aspect Ratio for the filter output video.
2177 This is done by changing the specified Sample (aka Pixel) Aspect
2178 Ratio, according to the following equation:
2179 @math{DAR = HORIZONTAL_RESOLUTION / VERTICAL_RESOLUTION * SAR}
2181 Keep in mind that this filter does not modify the pixel dimensions of
2182 the video frame. Also the display aspect ratio set by this filter may
2183 be changed by later filters in the filterchain, e.g. in case of
2184 scaling or if another "setdar" or a "setsar" filter is applied.
2186 This filter accepts the following options:
2191 Output display aspect ratio.
2195 The parameter @var{dar} is an expression containing
2196 the following constants:
2200 the corresponding mathematical approximated values for e
2201 (euler number), pi (greek PI), phi (golden ratio)
2204 the input width and height
2207 same as @var{w} / @var{h}
2210 input sample aspect ratio
2213 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
2216 horizontal and vertical chroma subsample values. For example for the
2217 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
2220 For example to change the display aspect ratio to 16:9, specify:
2223 # the above is equivalent to
2227 See also the @ref{setsar} filter documentation.
2231 Change the PTS (presentation timestamp) of the input video frames.
2233 This filter accepts the following options:
2238 The expression which is evaluated for each frame to construct its timestamp.
2242 The expression is evaluated through the eval API and can contain the following
2247 the presentation timestamp in input
2259 the count of the input frame, starting from 0.
2262 the PTS of the first video frame
2265 tell if the current frame is interlaced
2274 wallclock (RTC) time in microseconds
2277 wallclock (RTC) time at the start of the movie in microseconds
2280 timebase of the input timestamps
2284 Some examples follow:
2287 # start counting PTS from zero
2288 setpts=expr=PTS-STARTPTS
2299 # fixed rate 25 fps with some jitter
2300 setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
2302 # generate timestamps from a "live source" and rebase onto the current timebase
2303 setpts='(RTCTIME - RTCSTART) / (TB * 1000000)"
2309 Set the Sample (aka Pixel) Aspect Ratio for the filter output video.
2311 Note that as a consequence of the application of this filter, the
2312 output display aspect ratio will change according to the following
2314 @math{DAR = HORIZONTAL_RESOLUTION / VERTICAL_RESOLUTION * SAR}
2316 Keep in mind that the sample aspect ratio set by this filter may be
2317 changed by later filters in the filterchain, e.g. if another "setsar"
2318 or a "setdar" filter is applied.
2320 This filter accepts the following options:
2325 Output sample aspect ratio.
2329 The parameter @var{sar} is an expression containing
2330 the following constants:
2334 the corresponding mathematical approximated values for e
2335 (euler number), pi (greek PI), phi (golden ratio)
2338 the input width and height
2341 same as @var{w} / @var{h}
2344 input sample aspect ratio
2347 input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
2350 horizontal and vertical chroma subsample values. For example for the
2351 pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
2354 For example to change the sample aspect ratio to 10:11, specify:
2361 Set the timebase to use for the output frames timestamps.
2362 It is mainly useful for testing timebase configuration.
2364 This filter accepts the following options:
2369 The expression which is evaluated into the output timebase.
2373 The expression can contain the constants "PI", "E", "PHI", "AVTB" (the
2374 default timebase), and "intb" (the input timebase).
2376 The default value for the input is "intb".
2378 Follow some examples.
2381 # set the timebase to 1/25
2384 # set the timebase to 1/10
2387 #set the timebase to 1001/1000
2390 #set the timebase to 2*intb
2393 #set the default timebase value
2399 Show a line containing various information for each input video frame.
2400 The input video is not modified.
2402 The shown line contains a sequence of key/value pairs of the form
2403 @var{key}:@var{value}.
2405 A description of each shown parameter follows:
2409 sequential number of the input frame, starting from 0
2412 Presentation TimeStamp of the input frame, expressed as a number of
2413 time base units. The time base unit depends on the filter input pad.
2416 Presentation TimeStamp of the input frame, expressed as a number of
2420 position of the frame in the input stream, -1 if this information in
2421 unavailable and/or meaningless (for example in case of synthetic video)
2427 sample aspect ratio of the input frame, expressed in the form
2431 size of the input frame, expressed in the form
2432 @var{width}x@var{height}
2435 interlaced mode ("P" for "progressive", "T" for top field first, "B"
2436 for bottom field first)
2439 1 if the frame is a key frame, 0 otherwise
2442 picture type of the input frame ("I" for an I-frame, "P" for a
2443 P-frame, "B" for a B-frame, "?" for unknown type).
2444 Check also the documentation of the @code{AVPictureType} enum and of
2445 the @code{av_get_picture_type_char} function defined in
2446 @file{libavutil/avutil.h}.
2449 Adler-32 checksum of all the planes of the input frame
2451 @item plane_checksum
2452 Adler-32 checksum of each plane of the input frame, expressed in the form
2453 "[@var{c0} @var{c1} @var{c2} @var{c3}]"
2458 Split input video into several identical outputs.
2460 The filter accepts a single parameter which specifies the number of outputs. If
2461 unspecified, it defaults to 2.
2465 avconv -i INPUT -filter_complex split=5 OUTPUT
2467 will create 5 copies of the input video.
2471 Transpose rows with columns in the input video and optionally flip it.
2473 This filter accepts the following options:
2478 The direction of the transpose.
2482 The direction can assume the following values:
2486 Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
2494 Rotate by 90 degrees clockwise, that is:
2502 Rotate by 90 degrees counterclockwise, that is:
2510 Rotate by 90 degrees clockwise and vertically flip, that is:
2519 Trim the input so that the output contains one continuous subpart of the input.
2521 This filter accepts the following options:
2524 Timestamp (in seconds) of the start of the kept section. I.e. the frame with the
2525 timestamp @var{start} will be the first frame in the output.
2528 Timestamp (in seconds) of the first frame that will be dropped. I.e. the frame
2529 immediately preceding the one with the timestamp @var{end} will be the last
2530 frame in the output.
2533 Same as @var{start}, except this option sets the start timestamp in timebase
2534 units instead of seconds.
2537 Same as @var{end}, except this option sets the end timestamp in timebase units
2541 Maximum duration of the output in seconds.
2544 Number of the first frame that should be passed to output.
2547 Number of the first frame that should be dropped.
2550 Note that the first two sets of the start/end options and the @option{duration}
2551 option look at the frame timestamp, while the _frame variants simply count the
2552 frames that pass through the filter. Also note that this filter does not modify
2553 the timestamps. If you wish that the output timestamps start at zero, insert a
2554 setpts filter after the trim filter.
2556 If multiple start or end options are set, this filter tries to be greedy and
2557 keep all the frames that match at least one of the specified constraints. To keep
2558 only the part that matches all the constraints at once, chain multiple trim
2561 The defaults are such that all the input is kept. So it is possible to set e.g.
2562 just the end values to keep everything before the specified time.
2567 drop everything except the second minute of input
2569 avconv -i INPUT -vf trim=60:120
2573 keep only the first second
2575 avconv -i INPUT -vf trim=duration=1
2581 Sharpen or blur the input video.
2583 It accepts the following parameters:
2588 Set the luma matrix horizontal size. It can be an integer between 3
2589 and 13, default value is 5.
2592 Set the luma matrix vertical size. It can be an integer between 3
2593 and 13, default value is 5.
2596 Set the luma effect strength. It can be a float number between -2.0
2597 and 5.0, default value is 1.0.
2599 @item chroma_msize_x
2600 Set the chroma matrix horizontal size. It can be an integer between 3
2601 and 13, default value is 5.
2603 @item chroma_msize_y
2604 Set the chroma matrix vertical size. It can be an integer between 3
2605 and 13, default value is 5.
2608 Set the chroma effect strength. It can be a float number between -2.0
2609 and 5.0, default value is 0.0.
2613 Negative values for the amount will blur the input video, while positive
2614 values will sharpen. All parameters are optional and default to the
2615 equivalent of the string '5:5:1.0:5:5:0.0'.
2618 # Strong luma sharpen effect parameters
2619 unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
2621 # Strong blur of both luma and chroma parameters
2622 unsharp=7:7:-2:7:7:-2
2624 # Use the default values with @command{avconv}
2625 ./avconv -i in.avi -vf "unsharp" out.mp4
2630 Flip the input video vertically.
2633 ./avconv -i in.avi -vf "vflip" out.avi
2638 Deinterlace the input video ("yadif" means "yet another deinterlacing
2641 This filter accepts the following options:
2646 The interlacing mode to adopt, accepts one of the following values:
2650 output 1 frame for each frame
2652 output 1 frame for each field
2654 like 0 but skips spatial interlacing check
2656 like 1 but skips spatial interlacing check
2662 The picture field parity assumed for the input interlaced video, accepts one of
2663 the following values:
2667 assume top field first
2669 assume bottom field first
2671 enable automatic detection
2674 Default value is -1.
2675 If interlacing is unknown or decoder does not export this information,
2676 top field first will be assumed.
2679 Whether deinterlacer should trust the interlaced flag and only deinterlace
2680 frames marked as interlaced
2684 deinterlace all frames
2686 only deinterlace frames marked as interlaced
2693 @c man end VIDEO FILTERS
2695 @chapter Video Sources
2696 @c man begin VIDEO SOURCES
2698 Below is a description of the currently available video sources.
2702 Buffer video frames, and make them available to the filter chain.
2704 This source is mainly intended for a programmatic use, in particular
2705 through the interface defined in @file{libavfilter/vsrc_buffer.h}.
2707 This filter accepts the following parameters:
2718 Name of the input video pixel format.
2721 The time base used for input timestamps.
2724 Sample (pixel) aspect ratio of the input video.
2730 buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
2733 will instruct the source to accept video frames with size 320x240 and
2734 with format "yuv410p", assuming 1/24 as the timestamps timebase and
2735 square pixels (1:1 sample aspect ratio).
2739 Provide an uniformly colored input.
2741 It accepts the following parameters:
2746 Specify the color of the source. It can be the name of a color (case
2747 insensitive match) or a 0xRRGGBB[AA] sequence, possibly followed by an
2748 alpha specifier. The default value is "black".
2751 Specify the size of the sourced video, it may be a string of the form
2752 @var{width}x@var{height}, or the name of a size abbreviation. The
2753 default value is "320x240".
2756 Specify the frame rate of the sourced video, as the number of frames
2757 generated per second. It has to be a string in the format
2758 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a float
2759 number or a valid video frame rate abbreviation. The default value is
2764 For example the following graph description will generate a red source
2765 with an opacity of 0.2, with size "qcif" and a frame rate of 10
2766 frames per second, which will be overlayed over the source connected
2767 to the pad with identifier "in".
2770 "color=red@@0.2:qcif:10 [color]; [in][color] overlay [out]"
2775 Read a video stream from a movie container.
2777 Note that this source is a hack that bypasses the standard input path. It can be
2778 useful in applications that do not support arbitrary filter graphs, but its use
2779 is discouraged in those that do. Specifically in @command{avconv} this filter
2780 should never be used, the @option{-filter_complex} option fully replaces it.
2782 This filter accepts the following options:
2787 The name of the resource to read (not necessarily a file but also a device or a
2788 stream accessed through some protocol).
2790 @item format_name, f
2791 Specifies the format assumed for the movie to read, and can be either
2792 the name of a container or an input device. If not specified the
2793 format is guessed from @var{movie_name} or by probing.
2795 @item seek_point, sp
2796 Specifies the seek point in seconds, the frames will be output
2797 starting from this seek point, the parameter is evaluated with
2798 @code{av_strtod} so the numerical value may be suffixed by an IS
2799 postfix. Default value is "0".
2801 @item stream_index, si
2802 Specifies the index of the video stream to read. If the value is -1,
2803 the best suited video stream will be automatically selected. Default
2808 This filter allows to overlay a second video on top of main input of
2809 a filtergraph as shown in this graph:
2811 input -----------> deltapts0 --> overlay --> output
2814 movie --> scale--> deltapts1 -------+
2817 Some examples follow:
2819 # skip 3.2 seconds from the start of the avi file in.avi, and overlay it
2820 # on top of the input labelled as "in".
2821 movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [movie];
2822 [in] setpts=PTS-STARTPTS, [movie] overlay=16:16 [out]
2824 # read from a video4linux2 device, and overlay it on top of the input
2826 movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [movie];
2827 [in] setpts=PTS-STARTPTS, [movie] overlay=16:16 [out]
2833 Null video source, never return images. It is mainly useful as a
2834 template and to be employed in analysis / debugging tools.
2836 It accepts as optional parameter a string of the form
2837 @var{width}:@var{height}:@var{timebase}.
2839 @var{width} and @var{height} specify the size of the configured
2840 source. The default values of @var{width} and @var{height} are
2841 respectively 352 and 288 (corresponding to the CIF size format).
2843 @var{timebase} specifies an arithmetic expression representing a
2844 timebase. The expression can contain the constants "PI", "E", "PHI",
2845 "AVTB" (the default timebase), and defaults to the value "AVTB".
2849 Provide a frei0r source.
2851 To enable compilation of this filter you need to install the frei0r
2852 header and configure Libav with --enable-frei0r.
2854 This source accepts the following options:
2859 The size of the video to generate, may be a string of the form
2860 @var{width}x@var{height} or a frame size abbreviation.
2863 Framerate of the generated video, may be a string of the form
2864 @var{num}/@var{den} or a frame rate abbreviation.
2867 The name to the frei0r source to load. For more information regarding frei0r and
2868 how to set the parameters read the section @ref{frei0r} in the description of
2872 A '|'-separated list of parameters to pass to the frei0r source.
2876 Some examples follow:
2878 # generate a frei0r partik0l source with size 200x200 and framerate 10
2879 # which is overlayed on the overlay filter main input
2880 frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
2883 @section rgbtestsrc, testsrc
2885 The @code{rgbtestsrc} source generates an RGB test pattern useful for
2886 detecting RGB vs BGR issues. You should see a red, green and blue
2887 stripe from top to bottom.
2889 The @code{testsrc} source generates a test video pattern, showing a
2890 color pattern, a scrolling gradient and a timestamp. This is mainly
2891 intended for testing purposes.
2893 The sources accept the following options:
2898 Specify the size of the sourced video, it may be a string of the form
2899 @var{width}x@var{height}, or the name of a size abbreviation. The
2900 default value is "320x240".
2903 Specify the frame rate of the sourced video, as the number of frames
2904 generated per second. It has to be a string in the format
2905 @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a float
2906 number or a valid video frame rate abbreviation. The default value is
2910 Set the sample aspect ratio of the sourced video.
2913 Set the video duration of the sourced video. The accepted syntax is:
2915 [-]HH[:MM[:SS[.m...]]]
2918 See also the function @code{av_parse_time()}.
2920 If not specified, or the expressed duration is negative, the video is
2921 supposed to be generated forever.
2924 For example the following:
2926 testsrc=duration=5.3:size=qcif:rate=10
2929 will generate a video with a duration of 5.3 seconds, with size
2930 176x144 and a framerate of 10 frames per second.
2932 @c man end VIDEO SOURCES
2934 @chapter Video Sinks
2935 @c man begin VIDEO SINKS
2937 Below is a description of the currently available video sinks.
2941 Buffer video frames, and make them available to the end of the filter
2944 This sink is intended for a programmatic use through the interface defined in
2945 @file{libavfilter/buffersink.h}.
2949 Null video sink, do absolutely nothing with the input video. It is
2950 mainly useful as a template and to be employed in analysis / debugging
2953 @c man end VIDEO SINKS