You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

647 lines
18KB

  1. @chapter Audio Filters
  2. @c man begin AUDIO FILTERS
  3. When you configure your FFmpeg build, you can disable any of the
  4. existing filters using --disable-filters.
  5. The configure output will show the audio filters included in your
  6. build.
  7. Below is a description of the currently available audio filters.
  8. @section anull
  9. Pass the audio source unchanged to the output.
  10. @c man end AUDIO FILTERS
  11. @chapter Audio Sources
  12. @c man begin AUDIO SOURCES
  13. Below is a description of the currently available audio sources.
  14. @section anullsrc
  15. Null audio source, never return audio frames. It is mainly useful as a
  16. template and to be employed in analysis / debugging tools.
  17. It accepts as optional parameter a string of the form
  18. @var{sample_rate}:@var{channel_layout}.
  19. @var{sample_rate} specify the sample rate, and defaults to 44100.
  20. @var{channel_layout} specify the channel layout, and can be either an
  21. integer or a string representing a channel layout. The default value
  22. of @var{channel_layout} is 3, which corresponds to CH_LAYOUT_STEREO.
  23. Check the channel_layout_map definition in
  24. @file{libavcodec/audioconvert.c} for the mapping between strings and
  25. channel layout values.
  26. Follow some examples:
  27. @example
  28. # set the sample rate to 48000 Hz and the channel layout to CH_LAYOUT_MONO.
  29. anullsrc=48000:4
  30. # same as
  31. anullsrc=48000:mono
  32. @end example
  33. @c man end AUDIO SOURCES
  34. @chapter Audio Sinks
  35. @c man begin AUDIO SINKS
  36. Below is a description of the currently available audio sinks.
  37. @section anullsink
  38. Null audio sink, do absolutely nothing with the input audio. It is
  39. mainly useful as a template and to be employed in analysis / debugging
  40. tools.
  41. @c man end AUDIO SINKS
  42. @chapter Video Filters
  43. @c man begin VIDEO FILTERS
  44. When you configure your FFmpeg build, you can disable any of the
  45. existing filters using --disable-filters.
  46. The configure output will show the video filters included in your
  47. build.
  48. Below is a description of the currently available video filters.
  49. @section blackframe
  50. Detect frames that are (almost) completely black. Can be useful to
  51. detect chapter transitions or commercials. Output lines consist of
  52. the frame number of the detected frame, the percentage of blackness,
  53. the position in the file if known or -1 and the timestamp in seconds.
  54. In order to display the output lines, you need to set the loglevel at
  55. least to the AV_LOG_INFO value.
  56. The filter accepts the syntax:
  57. @example
  58. blackframe[=@var{amount}:[@var{threshold}]]
  59. @end example
  60. @var{amount} is the percentage of the pixels that have to be below the
  61. threshold, and defaults to 98.
  62. @var{threshold} is the threshold below which a pixel value is
  63. considered black, and defaults to 32.
  64. @section crop
  65. Crop the input video to @var{out_w}:@var{out_h}:@var{x}:@var{y}.
  66. The parameters are expressions containing the following constants:
  67. @table @option
  68. @item E, PI, PHI
  69. the corresponding mathematical approximated values for e
  70. (euler number), pi (greek PI), PHI (golden ratio)
  71. @item x, y
  72. the computed values for @var{x} and @var{y}. They are evaluated for
  73. each new frame.
  74. @item in_w, in_h
  75. the input width and heigth
  76. @item iw, ih
  77. same as @var{in_w} and @var{in_h}
  78. @item out_w, out_h
  79. the output (cropped) width and heigth
  80. @item ow, oh
  81. same as @var{out_w} and @var{out_h}
  82. @item n
  83. the number of input frame, starting from 0
  84. @item pos
  85. the position in the file of the input frame, NAN if unknown
  86. @item t
  87. timestamp expressed in seconds, NAN if the input timestamp is unknown
  88. @end table
  89. The @var{out_w} and @var{out_h} parameters specify the expressions for
  90. the width and height of the output (cropped) video. They are
  91. evaluated just at the configuration of the filter.
  92. The default value of @var{out_w} is "in_w", and the default value of
  93. @var{out_h} is "in_h".
  94. The expression for @var{out_w} may depend on the value of @var{out_h},
  95. and the expression for @var{out_h} may depend on @var{out_w}, but they
  96. cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
  97. evaluated after @var{out_w} and @var{out_h}.
  98. The @var{x} and @var{y} parameters specify the expressions for the
  99. position of the top-left corner of the output (non-cropped) area. They
  100. are evaluated for each frame. If the evaluated value is not valid, it
  101. is approximated to the nearest valid value.
  102. The default value of @var{x} is "(in_w-out_w)/2", and the default
  103. value for @var{y} is "(in_h-out_h)/2", which set the cropped area at
  104. the center of the input image.
  105. The expression for @var{x} may depend on @var{y}, and the expression
  106. for @var{y} may depend on @var{x}.
  107. Follow some examples:
  108. @example
  109. # crop the central input area with size 100x100
  110. crop=100:100
  111. # crop the central input area with size 2/3 of the input video
  112. "crop=2/3*in_w:2/3*in_h"
  113. # crop the input video central square
  114. crop=in_h
  115. # delimit the rectangle with the top-left corner placed at position
  116. # 100:100 and the right-bottom corner corresponding to the right-bottom
  117. # corner of the input image.
  118. crop=in_w-100:in_h-100:100:100
  119. # crop 10 pixels from the lefth and right borders, and 20 pixels from
  120. # the top and bottom borders
  121. "crop=in_w-2*10:in_h-2*20"
  122. # keep only the bottom right quarter of the input image
  123. "crop=in_w/2:in_h/2:in_w/2:in_h/2"
  124. # crop height for getting Greek harmony
  125. "crop=in_w:1/PHI*in_w"
  126. # trembling effect
  127. "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)"
  128. # erratic camera effect depending on timestamp and position
  129. "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)"
  130. # set x depending on the value of y
  131. "crop=in_w/2:in_h/2:y:10+10*sin(n/10)"
  132. @end example
  133. @section drawbox
  134. Draw a colored box on the input image.
  135. It accepts the syntax:
  136. @example
  137. drawbox=@var{x}:@var{y}:@var{width}:@var{height}:@var{color}
  138. @end example
  139. @table @option
  140. @item x, y
  141. Specify the top left corner coordinates of the box. Default to 0.
  142. @item width, height
  143. Specify the width and height of the box, if 0 they are interpreted as
  144. the input width and height. Default to 0.
  145. @item color
  146. Specify the color of the box to write, it can be the name of a color
  147. (case insensitive match) or a 0xRRGGBB[AA] sequence.
  148. @end table
  149. Follow some examples:
  150. @example
  151. # draw a black box around the edge of the input image
  152. drawbox
  153. # draw a box with color red and an opacity of 50%
  154. drawbox=10:20:200:60:red@@0.5"
  155. @end example
  156. @section fifo
  157. Buffer input images and send them when they are requested.
  158. This filter is mainly useful when auto-inserted by the libavfilter
  159. framework.
  160. The filter does not take parameters.
  161. @section format
  162. Convert the input video to one of the specified pixel formats.
  163. Libavfilter will try to pick one that is supported for the input to
  164. the next filter.
  165. The filter accepts a list of pixel format names, separated by ":",
  166. for example "yuv420p:monow:rgb24".
  167. The following command:
  168. @example
  169. ./ffmpeg -i in.avi -vf "format=yuv420p" out.avi
  170. @end example
  171. will convert the input video to the format "yuv420p".
  172. @section frei0r
  173. Apply a frei0r effect to the input video.
  174. To enable compilation of this filter you need to install the frei0r
  175. header and configure FFmpeg with --enable-frei0r.
  176. The filter supports the syntax:
  177. @example
  178. @var{filter_name}:@var{param1}:@var{param2}:...:@var{paramN}
  179. @end example
  180. @var{filter_name} is the name to the frei0r effect to load. If the
  181. environment variable @env{FREI0R_PATH} is defined, the frei0r effect
  182. is searched in each one of the directories specified by the colon
  183. separated list in @env{FREIOR_PATH}, otherwise in the standard frei0r
  184. paths, which are in this order: @file{HOME/.frei0r-1/lib/},
  185. @file{/usr/local/lib/frei0r-1/}, @file{/usr/lib/frei0r-1/}.
  186. @var{param1}, @var{param2}, ... , @var{paramN} specify the parameters
  187. for the frei0r effect.
  188. A frei0r effect parameter can be a boolean (whose values are specified
  189. with "y" and "n"), a double, a color (specified by the syntax
  190. @var{R}/@var{G}/@var{B}, @var{R}, @var{G}, and @var{B} being float
  191. numbers from 0.0 to 1.0) or by an @code{av_parse_color()} color
  192. description), a position (specified by the syntax @var{X}/@var{Y},
  193. @var{X} and @var{Y} being float numbers) and a string.
  194. The number and kind of parameters depend on the loaded effect. If an
  195. effect parameter is not specified the default value is set.
  196. Some examples follow:
  197. @example
  198. # apply the distort0r effect, set the first two double parameters
  199. frei0r=distort0r:0.5:0.01
  200. # apply the colordistance effect, takes a color as first parameter
  201. frei0r=colordistance:0.2/0.3/0.4
  202. frei0r=colordistance:violet
  203. frei0r=colordistance:0x112233
  204. # apply the perspective effect, specify the top left and top right
  205. # image positions
  206. frei0r=perspective:0.2/0.2:0.8/0.2
  207. @end example
  208. For more information see:
  209. @url{http://piksel.org/frei0r}
  210. @section hflip
  211. Flip the input video horizontally.
  212. For example to horizontally flip the video in input with
  213. @file{ffmpeg}:
  214. @example
  215. ffmpeg -i in.avi -vf "hflip" out.avi
  216. @end example
  217. @section noformat
  218. Force libavfilter not to use any of the specified pixel formats for the
  219. input to the next filter.
  220. The filter accepts a list of pixel format names, separated by ":",
  221. for example "yuv420p:monow:rgb24".
  222. The following command:
  223. @example
  224. ./ffmpeg -i in.avi -vf "noformat=yuv420p, vflip" out.avi
  225. @end example
  226. will make libavfilter use a format different from "yuv420p" for the
  227. input to the vflip filter.
  228. @section null
  229. Pass the video source unchanged to the output.
  230. @section ocv_smooth
  231. Apply smooth transform using libopencv.
  232. To enable this filter install libopencv library and headers and
  233. configure FFmpeg with --enable-libopencv.
  234. The filter accepts the following parameters:
  235. @var{type}:@var{param1}:@var{param2}:@var{param3}:@var{param4}.
  236. @var{type} is the type of smooth filter to apply, and can be one of
  237. the following values: "blur", "blur_no_scale", "median", "gaussian",
  238. "bilateral". The default value is "gaussian".
  239. @var{param1}, @var{param2}, @var{param3}, and @var{param4} are
  240. parameters whose meanings depend on smooth type. @var{param1} and
  241. @var{param2} accept integer positive values or 0, @var{param3} and
  242. @var{param4} accept float values.
  243. The default value for @var{param1} is 3, the default value for the
  244. other parameters is 0.
  245. These parameters correspond to the parameters assigned to the
  246. libopencv function @code{cvSmooth}. Refer to the official libopencv
  247. documentation for the exact meaning of the parameters:
  248. @url{http://opencv.willowgarage.com/documentation/c/image_filtering.html}
  249. @section pad
  250. Add paddings to the input image, and places the original input at the
  251. given coordinates @var{x}, @var{y}.
  252. It accepts the following parameters:
  253. @var{width}:@var{height}:@var{x}:@var{y}:@var{color}.
  254. Follows the description of the accepted parameters.
  255. @table @option
  256. @item width, height
  257. Specify the size of the output image with the paddings added. If the
  258. value for @var{width} or @var{height} is 0, the corresponding input size
  259. is used for the output.
  260. The default value of @var{width} and @var{height} is 0.
  261. @item x, y
  262. Specify the offsets where to place the input image in the padded area
  263. with respect to the top/left border of the output image.
  264. The default value of @var{x} and @var{y} is 0.
  265. @item color
  266. Specify the color of the padded area, it can be the name of a color
  267. (case insensitive match) or a 0xRRGGBB[AA] sequence.
  268. The default value of @var{color} is "black".
  269. @end table
  270. @section pixdesctest
  271. Pixel format descriptor test filter, mainly useful for internal
  272. testing. The output video should be equal to the input video.
  273. For example:
  274. @example
  275. format=monow, pixdesctest
  276. @end example
  277. can be used to test the monowhite pixel format descriptor definition.
  278. @section scale
  279. Scale the input video to @var{width}:@var{height} and/or convert the image format.
  280. For example the command:
  281. @example
  282. ./ffmpeg -i in.avi -vf "scale=200:100" out.avi
  283. @end example
  284. will scale the input video to a size of 200x100.
  285. If the input image format is different from the format requested by
  286. the next filter, the scale filter will convert the input to the
  287. requested format.
  288. If the value for @var{width} or @var{height} is 0, the respective input
  289. size is used for the output.
  290. If the value for @var{width} or @var{height} is -1, the scale filter will
  291. use, for the respective output size, a value that maintains the aspect
  292. ratio of the input image.
  293. The default value of @var{width} and @var{height} is 0.
  294. @section slicify
  295. Pass the images of input video on to next video filter as multiple
  296. slices.
  297. @example
  298. ./ffmpeg -i in.avi -vf "slicify=32" out.avi
  299. @end example
  300. The filter accepts the slice height as parameter. If the parameter is
  301. not specified it will use the default value of 16.
  302. Adding this in the beginning of filter chains should make filtering
  303. faster due to better use of the memory cache.
  304. @section unsharp
  305. Sharpen or blur the input video.
  306. It accepts the following parameters:
  307. @var{luma_msize_x}:@var{luma_msize_y}:@var{luma_amount}:@var{chroma_msize_x}:@var{chroma_msize_y}:@var{chroma_amount}
  308. Negative values for the amount will blur the input video, while positive
  309. values will sharpen. All parameters are optional and default to the
  310. equivalent of the string '5:5:1.0:0:0:0.0'.
  311. @table @option
  312. @item luma_msize_x
  313. Set the luma matrix horizontal size. It can be an integer between 3
  314. and 13, default value is 5.
  315. @item luma_msize_y
  316. Set the luma matrix vertical size. It can be an integer between 3
  317. and 13, default value is 5.
  318. @item luma_amount
  319. Set the luma effect strength. It can be a float number between -2.0
  320. and 5.0, default value is 1.0.
  321. @item chroma_msize_x
  322. Set the chroma matrix horizontal size. It can be an integer between 3
  323. and 13, default value is 0.
  324. @item chroma_msize_y
  325. Set the chroma matrix vertical size. It can be an integer between 3
  326. and 13, default value is 0.
  327. @item luma_amount
  328. Set the chroma effect strength. It can be a float number between -2.0
  329. and 5.0, default value is 0.0.
  330. @end table
  331. @example
  332. # Strong luma sharpen effect parameters
  333. unsharp=7:7:2.5
  334. # Strong blur of both luma and chroma parameters
  335. unsharp=7:7:-2:7:7:-2
  336. # Use the default values with @command{ffmpeg}
  337. ./ffmpeg -i in.avi -vf "unsharp" out.mp4
  338. @end example
  339. @section vflip
  340. Flip the input video vertically.
  341. @example
  342. ./ffmpeg -i in.avi -vf "vflip" out.avi
  343. @end example
  344. @section yadif
  345. yadif is "yet another deinterlacing filter".
  346. It accepts the syntax:
  347. @example
  348. yadif=[@var{mode}[:@var{parity}]]
  349. @end example
  350. @table @option
  351. @item mode
  352. Specify the interlacing mode to adopt, accepts one of the following values.
  353. 0: Output 1 frame for each frame.
  354. 1: Output 1 frame for each field.
  355. 2: Like 0 but skips spatial interlacing check.
  356. 3: Like 1 but skips spatial interlacing check.
  357. Default value is 0.
  358. @item parity
  359. 0 if is bottom field first, 1 if the interlaced video is top field
  360. first, -1 to enable automatic detection.
  361. @end table
  362. @c man end VIDEO FILTERS
  363. @chapter Video Sources
  364. @c man begin VIDEO SOURCES
  365. Below is a description of the currently available video sources.
  366. @section buffer
  367. Buffer video frames, and make them available to the filter chain.
  368. This source is mainly intended for a programmatic use, in particular
  369. through the interface defined in @file{libavfilter/vsrc_buffer.h}.
  370. It accepts the following parameters:
  371. @var{width}:@var{height}:@var{pix_fmt_string}
  372. All the parameters need to be explicitely defined.
  373. Follows the list of the accepted parameters.
  374. @table @option
  375. @item width, height
  376. Specify the width and height of the buffered video frames.
  377. @item pix_fmt_string
  378. A string representing the pixel format of the buffered video frames.
  379. It may be a number corresponding to a pixel format, or a pixel format
  380. name.
  381. @end table
  382. For example:
  383. @example
  384. buffer=320:240:yuv410p
  385. @end example
  386. will instruct the source to accept video frames with size 320x240 and
  387. with format "yuv410p". Since the pixel format with name "yuv410p"
  388. corresponds to the number 6 (check the enum PixelFormat definition in
  389. @file{libavutil/pixfmt.h}), this example corresponds to:
  390. @example
  391. buffer=320:240:6
  392. @end example
  393. @section color
  394. Provide an uniformly colored input.
  395. It accepts the following parameters:
  396. @var{color}:@var{frame_size}:@var{frame_rate}
  397. Follows the description of the accepted parameters.
  398. @table @option
  399. @item color
  400. Specify the color of the source. It can be the name of a color (case
  401. insensitive match) or a 0xRRGGBB[AA] sequence, possibly followed by an
  402. alpha specifier. The default value is "black".
  403. @item frame_size
  404. Specify the size of the sourced video, it may be a string of the form
  405. @var{width}x@var{heigth}, or the name of a size abbreviation. The
  406. default value is "320x240".
  407. @item frame_rate
  408. Specify the frame rate of the sourced video, as the number of frames
  409. generated per second. It has to be a string in the format
  410. @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a float
  411. number or a valid video frame rate abbreviation. The default value is
  412. "25".
  413. @end table
  414. For example the following graph description will generate a red source
  415. with an opacity of 0.2, with size "qcif" and a frame rate of 10
  416. frames per second, which will be overlayed over the source connected
  417. to the pad with identifier "in".
  418. @example
  419. "color=red@@0.2:qcif:10 [color]; [in][color] overlay [out]"
  420. @end example
  421. @section nullsrc
  422. Null video source, never return images. It is mainly useful as a
  423. template and to be employed in analysis / debugging tools.
  424. It accepts as optional parameter a string of the form
  425. @var{width}:@var{height}, where @var{width} and @var{height} specify the size of
  426. the configured source.
  427. The default values of @var{width} and @var{height} are respectively 352
  428. and 288 (corresponding to the CIF size format).
  429. @c man end VIDEO SOURCES
  430. @chapter Video Sinks
  431. @c man begin VIDEO SINKS
  432. Below is a description of the currently available video sinks.
  433. @section nullsink
  434. Null video sink, do absolutely nothing with the input video. It is
  435. mainly useful as a template and to be employed in analysis / debugging
  436. tools.
  437. @c man end VIDEO SINKS