ffmpeg / doc / filters.texi @ 3275ac6a
History | View | Annotate | Download (6.18 KB)
1 |
@chapter Video Filters |
---|---|
2 |
@c man begin VIDEO FILTERS |
3 |
|
4 |
When you configure your FFmpeg build, you can disable any of the |
5 |
existing filters using --disable-filters. |
6 |
The configure output will show the video filters included in your |
7 |
build. |
8 |
|
9 |
Below is a description of the currently available video filters. |
10 |
|
11 |
@section crop |
12 |
|
13 |
Crop the input video to @var{x}:@var{y}:@var{width}:@var{height}. |
14 |
|
15 |
@example |
16 |
./ffmpeg -i in.avi -vf "crop=0:0:0:240" out.avi |
17 |
@end example |
18 |
|
19 |
@var{x} and @var{y} specify the position of the top-left corner of the |
20 |
output (non-cropped) area. |
21 |
|
22 |
The default value of @var{x} and @var{y} is 0. |
23 |
|
24 |
The @var{width} and @var{height} parameters specify the width and height |
25 |
of the output (non-cropped) area. |
26 |
|
27 |
A value of 0 is interpreted as the maximum possible size contained in |
28 |
the area delimited by the top-left corner at position x:y. |
29 |
|
30 |
For example the parameters: |
31 |
|
32 |
@example |
33 |
"crop=100:100:0:0" |
34 |
@end example |
35 |
|
36 |
will delimit the rectangle with the top-left corner placed at position |
37 |
100:100 and the right-bottom corner corresponding to the right-bottom |
38 |
corner of the input image. |
39 |
|
40 |
The default value of @var{width} and @var{height} is 0. |
41 |
|
42 |
@section format |
43 |
|
44 |
Convert the input video to one of the specified pixel formats. |
45 |
Libavfilter will try to pick one that is supported for the input to |
46 |
the next filter. |
47 |
|
48 |
The filter accepts a list of pixel format names, separated by ``:'', |
49 |
for example ``yuv420p:monow:rgb24''. |
50 |
|
51 |
The following command: |
52 |
|
53 |
@example |
54 |
./ffmpeg -i in.avi -vf "format=yuv420p" out.avi |
55 |
@end example |
56 |
|
57 |
will convert the input video to the format ``yuv420p''. |
58 |
|
59 |
@section noformat |
60 |
|
61 |
Force libavfilter not to use any of the specified pixel formats for the |
62 |
input to the next filter. |
63 |
|
64 |
The filter accepts a list of pixel format names, separated by ``:'', |
65 |
for example ``yuv420p:monow:rgb24''. |
66 |
|
67 |
The following command: |
68 |
|
69 |
@example |
70 |
./ffmpeg -i in.avi -vf "noformat=yuv420p, vflip" out.avi |
71 |
@end example |
72 |
|
73 |
will make libavfilter use a format different from ``yuv420p'' for the |
74 |
input to the vflip filter. |
75 |
|
76 |
@section null |
77 |
|
78 |
Pass the source unchanged to the output. |
79 |
|
80 |
@section pad |
81 |
|
82 |
Add paddings to the input image, and places the original input at the |
83 |
given coordinates @var{x}, @var{y}. |
84 |
|
85 |
It accepts the following parameters: |
86 |
@var{width}:@var{height}:@var{x}:@var{y}:@var{color}. |
87 |
|
88 |
Follows the description of the accepted parameters. |
89 |
|
90 |
@table @option |
91 |
@item width, height |
92 |
|
93 |
Specify the size of the output image with the paddings added. If the |
94 |
value for @var{width} or @var{height} is 0, the corresponding input size |
95 |
is used for the output. |
96 |
|
97 |
The default value of @var{width} and @var{height} is 0. |
98 |
|
99 |
@item x, y |
100 |
|
101 |
Specify the offsets where to place the input image in the padded area |
102 |
with respect to the top/left border of the output image. |
103 |
|
104 |
The default value of @var{x} and @var{y} is 0. |
105 |
|
106 |
@item color |
107 |
|
108 |
Specify the color of the padded area, it can be the name of a color |
109 |
(case insensitive match) or a 0xRRGGBB[AA] sequence. |
110 |
|
111 |
The default value of @var{color} is ``black''. |
112 |
|
113 |
@end table |
114 |
|
115 |
@section scale |
116 |
|
117 |
Scale the input video to @var{width}:@var{height} and/or convert the image format. |
118 |
|
119 |
For example the command: |
120 |
|
121 |
@example |
122 |
./ffmpeg -i in.avi -vf "scale=200:100" out.avi |
123 |
@end example |
124 |
|
125 |
will scale the input video to a size of 200x100. |
126 |
|
127 |
If the input image format is different from the format requested by |
128 |
the next filter, the scale filter will convert the input to the |
129 |
requested format. |
130 |
|
131 |
If the value for @var{width} or @var{height} is 0, the respective input |
132 |
size is used for the output. |
133 |
|
134 |
If the value for @var{width} or @var{height} is -1, the scale filter will |
135 |
use, for the respective output size, a value that maintains the aspect |
136 |
ratio of the input image. |
137 |
|
138 |
The default value of @var{width} and @var{height} is 0. |
139 |
|
140 |
@section slicify |
141 |
|
142 |
Pass the images of input video on to next video filter as multiple |
143 |
slices. |
144 |
|
145 |
@example |
146 |
./ffmpeg -i in.avi -vf "slicify=32" out.avi |
147 |
@end example |
148 |
|
149 |
The filter accepts the slice height as parameter. If the parameter is |
150 |
not specified it will use the default value of 16. |
151 |
|
152 |
Adding this in the beginning of filter chains should make filtering |
153 |
faster due to better use of the memory cache. |
154 |
|
155 |
@section unsharp |
156 |
|
157 |
Sharpen or blur the input video. It accepts the following parameters: |
158 |
|
159 |
Negative values for the amount will blur the input video, while positive |
160 |
values will sharpen. All parameters are optional and default to the |
161 |
equivalent of the string '5:5:1.0:0:0:0.0'. |
162 |
|
163 |
@table @option |
164 |
|
165 |
@item luma_msize_x |
166 |
Set the luma matrix horizontal size. It can be an integer between 3 |
167 |
and 13, default value is 5. |
168 |
|
169 |
@item luma_msize_y |
170 |
Set the luma matrix vertical size. It can be an integer between 3 |
171 |
and 13, default value is 5. |
172 |
|
173 |
@item luma_amount |
174 |
Set the luma effect strength. It can be a float number between -2.0 |
175 |
and 5.0, default value is 1.0. |
176 |
|
177 |
@item chroma_msize_x |
178 |
Set the chroma matrix horizontal size. It can be an integer between 3 |
179 |
and 13, default value is 0. |
180 |
|
181 |
@item chroma_msize_y |
182 |
Set the chroma matrix vertical size. It can be an integer between 3 |
183 |
and 13, default value is 0. |
184 |
|
185 |
@item luma_amount |
186 |
Set the chroma effect strength. It can be a float number between -2.0 |
187 |
and 5.0, default value is 0.0. |
188 |
|
189 |
@end table |
190 |
|
191 |
@example |
192 |
# Strong luma sharpen effect parameters |
193 |
unsharp=7:7:2.5 |
194 |
|
195 |
# Strong blur of both luma and chroma parameters |
196 |
unsharp=7:7:-2:7:7:-2 |
197 |
|
198 |
# Use the default values with @command{ffmpeg} |
199 |
./ffmpeg -i in.avi -vf "unsharp" out.mp4 |
200 |
@end example |
201 |
|
202 |
@section vflip |
203 |
|
204 |
Flip the input video vertically. |
205 |
|
206 |
@example |
207 |
./ffmpeg -i in.avi -vf "vflip" out.avi |
208 |
@end example |
209 |
|
210 |
@c man end VIDEO FILTERS |
211 |
|
212 |
@chapter Video Sources |
213 |
@c man begin VIDEO SOURCES |
214 |
|
215 |
Below is a description of the currently available video sources. |
216 |
|
217 |
@section nullsrc |
218 |
|
219 |
Null video source, never return images. It is mainly useful as a |
220 |
template and to be employed in analysis / debugging tools. |
221 |
|
222 |
It accepts as optional parameter a string of the form |
223 |
@var{width}:@var{height}, where @var{width} and @var{height} specify the size of |
224 |
the configured source. |
225 |
|
226 |
The default values of @var{width} and @var{height} are respectively 352 |
227 |
and 288 (corresponding to the CIF size format). |
228 |
|
229 |
@c man end VIDEO SOURCES |
230 |
|
231 |
@chapter Video Sinks |
232 |
@c man begin VIDEO SINKS |
233 |
|
234 |
Below is a description of the currently available video sinks. |
235 |
|
236 |
@section nullsink |
237 |
|
238 |
Null video sink, do absolutely nothing with the input video. It is |
239 |
mainly useful as a template and to be employed in analysis / debugging |
240 |
tools. |
241 |
|
242 |
@c man end VIDEO SINKS |
243 |
|