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.

247 lines
6.3KB

  1. @chapter Video Filters
  2. @c man begin VIDEO 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 video filters included in your
  6. build.
  7. Below is a description of the currently available video filters.
  8. @section crop
  9. Crop the input video to @var{x}:@var{y}:@var{width}:@var{height}.
  10. @example
  11. ./ffmpeg -i in.avi -vf "crop=0:0:0:240" out.avi
  12. @end example
  13. @var{x} and @var{y} specify the position of the top-left corner of the
  14. output (non-cropped) area.
  15. The default value of @var{x} and @var{y} is 0.
  16. The @var{width} and @var{height} parameters specify the width and height
  17. of the output (non-cropped) area.
  18. A value of 0 is interpreted as the maximum possible size contained in
  19. the area delimited by the top-left corner at position x:y.
  20. For example the parameters:
  21. @example
  22. "crop=100:100:0:0"
  23. @end example
  24. will delimit the rectangle with the top-left corner placed at position
  25. 100:100 and the right-bottom corner corresponding to the right-bottom
  26. corner of the input image.
  27. The default value of @var{width} and @var{height} is 0.
  28. @section format
  29. Convert the input video to one of the specified pixel formats.
  30. Libavfilter will try to pick one that is supported for the input to
  31. the next filter.
  32. The filter accepts a list of pixel format names, separated by ``:'',
  33. for example ``yuv420p:monow:rgb24''.
  34. The following command:
  35. @example
  36. ./ffmpeg -i in.avi -vf "format=yuv420p" out.avi
  37. @end example
  38. will convert the input video to the format ``yuv420p''.
  39. @section noformat
  40. Force libavfilter not to use any of the specified pixel formats for the
  41. input to the next filter.
  42. The filter accepts a list of pixel format names, separated by ``:'',
  43. for example ``yuv420p:monow:rgb24''.
  44. The following command:
  45. @example
  46. ./ffmpeg -i in.avi -vf "noformat=yuv420p, vflip" out.avi
  47. @end example
  48. will make libavfilter use a format different from ``yuv420p'' for the
  49. input to the vflip filter.
  50. @section null
  51. Pass the source unchanged to the output.
  52. @section pad
  53. Add paddings to the input image, and places the original input at the
  54. given coordinates @var{x}, @var{y}.
  55. It accepts the following parameters:
  56. @var{width}:@var{height}:@var{x}:@var{y}:@var{color}.
  57. Follows the description of the accepted parameters.
  58. @table @option
  59. @item width, height
  60. Specify the size of the output image with the paddings added. If the
  61. value for @var{width} or @var{height} is 0, the corresponding input size
  62. is used for the output.
  63. The default value of @var{width} and @var{height} is 0.
  64. @item x, y
  65. Specify the offsets where to place the input image in the padded area
  66. with respect to the top/left border of the output image.
  67. The default value of @var{x} and @var{y} is 0.
  68. @item color
  69. Specify the color of the padded area, it can be the name of a color
  70. (case insensitive match) or a 0xRRGGBB[AA] sequence.
  71. The default value of @var{color} is ``black''.
  72. @end table
  73. @section scale
  74. Scale the input video to @var{width}:@var{height} and/or convert the image format.
  75. For example the command:
  76. @example
  77. ./ffmpeg -i in.avi -vf "scale=200:100" out.avi
  78. @end example
  79. will scale the input video to a size of 200x100.
  80. If the input image format is different from the format requested by
  81. the next filter, the scale filter will convert the input to the
  82. requested format.
  83. If the value for @var{width} or @var{height} is 0, the respective input
  84. size is used for the output.
  85. If the value for @var{width} or @var{height} is -1, the scale filter will
  86. use, for the respective output size, a value that maintains the aspect
  87. ratio of the input image.
  88. The default value of @var{width} and @var{height} is 0.
  89. @section slicify
  90. Pass the images of input video on to next video filter as multiple
  91. slices.
  92. @example
  93. ./ffmpeg -i in.avi -vf "slicify=32" out.avi
  94. @end example
  95. The filter accepts the slice height as parameter. If the parameter is
  96. not specified it will use the default value of 16.
  97. Adding this in the beginning of filter chains should make filtering
  98. faster due to better use of the memory cache.
  99. @section unsharp
  100. Sharpen or blur the input video.
  101. It accepts the following parameters:
  102. @var{luma_msize_x}:@var{luma_msize_y}:@var{luma_amount}:@var{chroma_msize_x}:@var{chroma_msize_y}:@var{chroma_amount}
  103. Negative values for the amount will blur the input video, while positive
  104. values will sharpen. All parameters are optional and default to the
  105. equivalent of the string '5:5:1.0:0:0:0.0'.
  106. @table @option
  107. @item luma_msize_x
  108. Set the luma matrix horizontal size. It can be an integer between 3
  109. and 13, default value is 5.
  110. @item luma_msize_y
  111. Set the luma matrix vertical size. It can be an integer between 3
  112. and 13, default value is 5.
  113. @item luma_amount
  114. Set the luma effect strength. It can be a float number between -2.0
  115. and 5.0, default value is 1.0.
  116. @item chroma_msize_x
  117. Set the chroma matrix horizontal size. It can be an integer between 3
  118. and 13, default value is 0.
  119. @item chroma_msize_y
  120. Set the chroma matrix vertical size. It can be an integer between 3
  121. and 13, default value is 0.
  122. @item luma_amount
  123. Set the chroma effect strength. It can be a float number between -2.0
  124. and 5.0, default value is 0.0.
  125. @end table
  126. @example
  127. # Strong luma sharpen effect parameters
  128. unsharp=7:7:2.5
  129. # Strong blur of both luma and chroma parameters
  130. unsharp=7:7:-2:7:7:-2
  131. # Use the default values with @command{ffmpeg}
  132. ./ffmpeg -i in.avi -vf "unsharp" out.mp4
  133. @end example
  134. @section vflip
  135. Flip the input video vertically.
  136. @example
  137. ./ffmpeg -i in.avi -vf "vflip" out.avi
  138. @end example
  139. @c man end VIDEO FILTERS
  140. @chapter Video Sources
  141. @c man begin VIDEO SOURCES
  142. Below is a description of the currently available video sources.
  143. @section nullsrc
  144. Null video source, never return images. It is mainly useful as a
  145. template and to be employed in analysis / debugging tools.
  146. It accepts as optional parameter a string of the form
  147. @var{width}:@var{height}, where @var{width} and @var{height} specify the size of
  148. the configured source.
  149. The default values of @var{width} and @var{height} are respectively 352
  150. and 288 (corresponding to the CIF size format).
  151. @c man end VIDEO SOURCES
  152. @chapter Video Sinks
  153. @c man begin VIDEO SINKS
  154. Below is a description of the currently available video sinks.
  155. @section nullsink
  156. Null video sink, do absolutely nothing with the input video. It is
  157. mainly useful as a template and to be employed in analysis / debugging
  158. tools.
  159. @c man end VIDEO SINKS