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.

2155 lines
60KB

  1. @chapter Filtergraph description
  2. @c man begin FILTERGRAPH DESCRIPTION
  3. A filtergraph is a directed graph of connected filters. It can contain
  4. cycles, and there can be multiple links between a pair of
  5. filters. Each link has one input pad on one side connecting it to one
  6. filter from which it takes its input, and one output pad on the other
  7. side connecting it to the one filter accepting its output.
  8. Each filter in a filtergraph is an instance of a filter class
  9. registered in the application, which defines the features and the
  10. number of input and output pads of the filter.
  11. A filter with no input pads is called a "source", a filter with no
  12. output pads is called a "sink".
  13. @section Filtergraph syntax
  14. A filtergraph can be represented using a textual representation, which
  15. is recognized by the @code{-vf} and @code{-af} options of the ff*
  16. tools, and by the @code{avfilter_graph_parse()} function defined in
  17. @file{libavfilter/avfiltergraph.h}.
  18. A filterchain consists of a sequence of connected filters, each one
  19. connected to the previous one in the sequence. A filterchain is
  20. represented by a list of ","-separated filter descriptions.
  21. A filtergraph consists of a sequence of filterchains. A sequence of
  22. filterchains is represented by a list of ";"-separated filterchain
  23. descriptions.
  24. A filter is represented by a string of the form:
  25. [@var{in_link_1}]...[@var{in_link_N}]@var{filter_name}=@var{arguments}[@var{out_link_1}]...[@var{out_link_M}]
  26. @var{filter_name} is the name of the filter class of which the
  27. described filter is an instance of, and has to be the name of one of
  28. the filter classes registered in the program.
  29. The name of the filter class is optionally followed by a string
  30. "=@var{arguments}".
  31. @var{arguments} is a string which contains the parameters used to
  32. initialize the filter instance, and are described in the filter
  33. descriptions below.
  34. The list of arguments can be quoted using the character "'" as initial
  35. and ending mark, and the character '\' for escaping the characters
  36. within the quoted text; otherwise the argument string is considered
  37. terminated when the next special character (belonging to the set
  38. "[]=;,") is encountered.
  39. The name and arguments of the filter are optionally preceded and
  40. followed by a list of link labels.
  41. A link label allows to name a link and associate it to a filter output
  42. or input pad. The preceding labels @var{in_link_1}
  43. ... @var{in_link_N}, are associated to the filter input pads,
  44. the following labels @var{out_link_1} ... @var{out_link_M}, are
  45. associated to the output pads.
  46. When two link labels with the same name are found in the
  47. filtergraph, a link between the corresponding input and output pad is
  48. created.
  49. If an output pad is not labelled, it is linked by default to the first
  50. unlabelled input pad of the next filter in the filterchain.
  51. For example in the filterchain:
  52. @example
  53. nullsrc, split[L1], [L2]overlay, nullsink
  54. @end example
  55. the split filter instance has two output pads, and the overlay filter
  56. instance two input pads. The first output pad of split is labelled
  57. "L1", the first input pad of overlay is labelled "L2", and the second
  58. output pad of split is linked to the second input pad of overlay,
  59. which are both unlabelled.
  60. In a complete filterchain all the unlabelled filter input and output
  61. pads must be connected. A filtergraph is considered valid if all the
  62. filter input and output pads of all the filterchains are connected.
  63. Follows a BNF description for the filtergraph syntax:
  64. @example
  65. @var{NAME} ::= sequence of alphanumeric characters and '_'
  66. @var{LINKLABEL} ::= "[" @var{NAME} "]"
  67. @var{LINKLABELS} ::= @var{LINKLABEL} [@var{LINKLABELS}]
  68. @var{FILTER_ARGUMENTS} ::= sequence of chars (eventually quoted)
  69. @var{FILTER} ::= [@var{LINKNAMES}] @var{NAME} ["=" @var{ARGUMENTS}] [@var{LINKNAMES}]
  70. @var{FILTERCHAIN} ::= @var{FILTER} [,@var{FILTERCHAIN}]
  71. @var{FILTERGRAPH} ::= @var{FILTERCHAIN} [;@var{FILTERGRAPH}]
  72. @end example
  73. @c man end FILTERGRAPH DESCRIPTION
  74. @chapter Audio Filters
  75. @c man begin AUDIO FILTERS
  76. When you configure your FFmpeg build, you can disable any of the
  77. existing filters using --disable-filters.
  78. The configure output will show the audio filters included in your
  79. build.
  80. Below is a description of the currently available audio filters.
  81. @section anull
  82. Pass the audio source unchanged to the output.
  83. @c man end AUDIO FILTERS
  84. @chapter Audio Sources
  85. @c man begin AUDIO SOURCES
  86. Below is a description of the currently available audio sources.
  87. @section anullsrc
  88. Null audio source, never return audio frames. It is mainly useful as a
  89. template and to be employed in analysis / debugging tools.
  90. It accepts as optional parameter a string of the form
  91. @var{sample_rate}:@var{channel_layout}.
  92. @var{sample_rate} specify the sample rate, and defaults to 44100.
  93. @var{channel_layout} specify the channel layout, and can be either an
  94. integer or a string representing a channel layout. The default value
  95. of @var{channel_layout} is 3, which corresponds to CH_LAYOUT_STEREO.
  96. Check the channel_layout_map definition in
  97. @file{libavcodec/audioconvert.c} for the mapping between strings and
  98. channel layout values.
  99. Follow some examples:
  100. @example
  101. # set the sample rate to 48000 Hz and the channel layout to CH_LAYOUT_MONO.
  102. anullsrc=48000:4
  103. # same as
  104. anullsrc=48000:mono
  105. @end example
  106. @c man end AUDIO SOURCES
  107. @chapter Audio Sinks
  108. @c man begin AUDIO SINKS
  109. Below is a description of the currently available audio sinks.
  110. @section abuffersink
  111. Buffer audio frames, and make them available to the end of filter chain.
  112. This sink is mainly intended for programmatic use, in particular
  113. through the interface defined in @file{libavfilter/asink_abuffer.h}.
  114. It requires a pointer to a ABufferSinkContext structure, which defines the
  115. incoming buffers' format, to be passed as the opaque parameter to
  116. @code{avfilter_init_filter} for initialization.
  117. @section anullsink
  118. Null audio sink, do absolutely nothing with the input audio. It is
  119. mainly useful as a template and to be employed in analysis / debugging
  120. tools.
  121. @c man end AUDIO SINKS
  122. @chapter Video Filters
  123. @c man begin VIDEO FILTERS
  124. When you configure your FFmpeg build, you can disable any of the
  125. existing filters using --disable-filters.
  126. The configure output will show the video filters included in your
  127. build.
  128. Below is a description of the currently available video filters.
  129. @section blackframe
  130. Detect frames that are (almost) completely black. Can be useful to
  131. detect chapter transitions or commercials. Output lines consist of
  132. the frame number of the detected frame, the percentage of blackness,
  133. the position in the file if known or -1 and the timestamp in seconds.
  134. In order to display the output lines, you need to set the loglevel at
  135. least to the AV_LOG_INFO value.
  136. The filter accepts the syntax:
  137. @example
  138. blackframe[=@var{amount}:[@var{threshold}]]
  139. @end example
  140. @var{amount} is the percentage of the pixels that have to be below the
  141. threshold, and defaults to 98.
  142. @var{threshold} is the threshold below which a pixel value is
  143. considered black, and defaults to 32.
  144. @section boxblur
  145. Apply boxblur algorithm to the input video.
  146. This filter accepts the parameters:
  147. @var{luma_power}:@var{luma_radius}:@var{chroma_radius}:@var{chroma_power}:@var{alpha_radius}:@var{alpha_power}
  148. Chroma and alpha parameters are optional, if not specified they default
  149. to the corresponding values set for @var{luma_radius} and
  150. @var{luma_power}.
  151. @var{luma_radius}, @var{chroma_radius}, and @var{alpha_radius} represent
  152. the radius in pixels of the box used for blurring the corresponding
  153. input plane. They are expressions, and can contain the following
  154. constants:
  155. @table @option
  156. @item w, h
  157. the input width and heigth in pixels
  158. @item cw, ch
  159. the input chroma image width and height in pixels
  160. @item hsub, vsub
  161. horizontal and vertical chroma subsample values. For example for the
  162. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  163. @end table
  164. The radius must be a non-negative number, and must be not greater than
  165. the value of the expression @code{min(w,h)/2} for the luma and alpha planes,
  166. and of @code{min(cw,ch)/2} for the chroma planes.
  167. @var{luma_power}, @var{chroma_power}, and @var{alpha_power} represent
  168. how many times the boxblur filter is applied to the corresponding
  169. plane.
  170. Some examples follow:
  171. @itemize
  172. @item
  173. Apply a boxblur filter with luma, chroma, and alpha radius
  174. set to 2:
  175. @example
  176. boxblur=2:1
  177. @end example
  178. @item
  179. Set luma radius to 2, alpha and chroma radius to 0
  180. @example
  181. boxblur=2:1:0:0:0:0
  182. @end example
  183. @item
  184. Set luma and chroma radius to a fraction of the video dimension
  185. @example
  186. boxblur=min(h\,w)/10:1:min(cw\,ch)/10:1
  187. @end example
  188. @end itemize
  189. @section copy
  190. Copy the input source unchanged to the output. Mainly useful for
  191. testing purposes.
  192. @section crop
  193. Crop the input video to @var{out_w}:@var{out_h}:@var{x}:@var{y}.
  194. The parameters are expressions containing the following constants:
  195. @table @option
  196. @item E, PI, PHI
  197. the corresponding mathematical approximated values for e
  198. (euler number), pi (greek PI), PHI (golden ratio)
  199. @item x, y
  200. the computed values for @var{x} and @var{y}. They are evaluated for
  201. each new frame.
  202. @item in_w, in_h
  203. the input width and heigth
  204. @item iw, ih
  205. same as @var{in_w} and @var{in_h}
  206. @item out_w, out_h
  207. the output (cropped) width and heigth
  208. @item ow, oh
  209. same as @var{out_w} and @var{out_h}
  210. @item a
  211. same as @var{iw} / @var{ih}
  212. @item sar
  213. input sample aspect ratio
  214. @item dar
  215. input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
  216. @item hsub, vsub
  217. horizontal and vertical chroma subsample values. For example for the
  218. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  219. @item n
  220. the number of input frame, starting from 0
  221. @item pos
  222. the position in the file of the input frame, NAN if unknown
  223. @item t
  224. timestamp expressed in seconds, NAN if the input timestamp is unknown
  225. @end table
  226. The @var{out_w} and @var{out_h} parameters specify the expressions for
  227. the width and height of the output (cropped) video. They are
  228. evaluated just at the configuration of the filter.
  229. The default value of @var{out_w} is "in_w", and the default value of
  230. @var{out_h} is "in_h".
  231. The expression for @var{out_w} may depend on the value of @var{out_h},
  232. and the expression for @var{out_h} may depend on @var{out_w}, but they
  233. cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
  234. evaluated after @var{out_w} and @var{out_h}.
  235. The @var{x} and @var{y} parameters specify the expressions for the
  236. position of the top-left corner of the output (non-cropped) area. They
  237. are evaluated for each frame. If the evaluated value is not valid, it
  238. is approximated to the nearest valid value.
  239. The default value of @var{x} is "(in_w-out_w)/2", and the default
  240. value for @var{y} is "(in_h-out_h)/2", which set the cropped area at
  241. the center of the input image.
  242. The expression for @var{x} may depend on @var{y}, and the expression
  243. for @var{y} may depend on @var{x}.
  244. Follow some examples:
  245. @example
  246. # crop the central input area with size 100x100
  247. crop=100:100
  248. # crop the central input area with size 2/3 of the input video
  249. "crop=2/3*in_w:2/3*in_h"
  250. # crop the input video central square
  251. crop=in_h
  252. # delimit the rectangle with the top-left corner placed at position
  253. # 100:100 and the right-bottom corner corresponding to the right-bottom
  254. # corner of the input image.
  255. crop=in_w-100:in_h-100:100:100
  256. # crop 10 pixels from the left and right borders, and 20 pixels from
  257. # the top and bottom borders
  258. "crop=in_w-2*10:in_h-2*20"
  259. # keep only the bottom right quarter of the input image
  260. "crop=in_w/2:in_h/2:in_w/2:in_h/2"
  261. # crop height for getting Greek harmony
  262. "crop=in_w:1/PHI*in_w"
  263. # trembling effect
  264. "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)"
  265. # erratic camera effect depending on timestamp
  266. "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)"
  267. # set x depending on the value of y
  268. "crop=in_w/2:in_h/2:y:10+10*sin(n/10)"
  269. @end example
  270. @section cropdetect
  271. Auto-detect crop size.
  272. Calculate necessary cropping parameters and prints the recommended
  273. parameters through the logging system. The detected dimensions
  274. correspond to the non-black area of the input video.
  275. It accepts the syntax:
  276. @example
  277. cropdetect[=@var{limit}[:@var{round}[:@var{reset}]]]
  278. @end example
  279. @table @option
  280. @item limit
  281. Threshold, which can be optionally specified from nothing (0) to
  282. everything (255), defaults to 24.
  283. @item round
  284. Value which the width/height should be divisible by, defaults to
  285. 16. The offset is automatically adjusted to center the video. Use 2 to
  286. get only even dimensions (needed for 4:2:2 video). 16 is best when
  287. encoding to most video codecs.
  288. @item reset
  289. Counter that determines after how many frames cropdetect will reset
  290. the previously detected largest video area and start over to detect
  291. the current optimal crop area. Defaults to 0.
  292. This can be useful when channel logos distort the video area. 0
  293. indicates never reset and return the largest area encountered during
  294. playback.
  295. @end table
  296. @section drawbox
  297. Draw a colored box on the input image.
  298. It accepts the syntax:
  299. @example
  300. drawbox=@var{x}:@var{y}:@var{width}:@var{height}:@var{color}
  301. @end example
  302. @table @option
  303. @item x, y
  304. Specify the top left corner coordinates of the box. Default to 0.
  305. @item width, height
  306. Specify the width and height of the box, if 0 they are interpreted as
  307. the input width and height. Default to 0.
  308. @item color
  309. Specify the color of the box to write, it can be the name of a color
  310. (case insensitive match) or a 0xRRGGBB[AA] sequence.
  311. @end table
  312. Follow some examples:
  313. @example
  314. # draw a black box around the edge of the input image
  315. drawbox
  316. # draw a box with color red and an opacity of 50%
  317. drawbox=10:20:200:60:red@@0.5"
  318. @end example
  319. @section drawtext
  320. Draw text string or text from specified file on top of video using the
  321. libfreetype library.
  322. To enable compilation of this filter you need to configure FFmpeg with
  323. @code{--enable-libfreetype}.
  324. The filter also recognizes strftime() sequences in the provided text
  325. and expands them accordingly. Check the documentation of strftime().
  326. The filter accepts parameters as a list of @var{key}=@var{value} pairs,
  327. separated by ":".
  328. The description of the accepted parameters follows.
  329. @table @option
  330. @item fontfile
  331. The font file to be used for drawing text. Path must be included.
  332. This parameter is mandatory.
  333. @item text
  334. The text string to be drawn. The text must be a sequence of UTF-8
  335. encoded characters.
  336. This parameter is mandatory if no file is specified with the parameter
  337. @var{textfile}.
  338. @item textfile
  339. A text file containing text to be drawn. The text must be a sequence
  340. of UTF-8 encoded characters.
  341. This parameter is mandatory if no text string is specified with the
  342. parameter @var{text}.
  343. If both text and textfile are specified, an error is thrown.
  344. @item x, y
  345. The offsets where text will be drawn within the video frame.
  346. Relative to the top/left border of the output image.
  347. The default value of @var{x} and @var{y} is 0.
  348. @item fontsize
  349. The font size to be used for drawing text.
  350. The default value of @var{fontsize} is 16.
  351. @item fontcolor
  352. The color to be used for drawing fonts.
  353. Either a string (e.g. "red") or in 0xRRGGBB[AA] format
  354. (e.g. "0xff000033"), possibly followed by an alpha specifier.
  355. The default value of @var{fontcolor} is "black".
  356. @item boxcolor
  357. The color to be used for drawing box around text.
  358. Either a string (e.g. "yellow") or in 0xRRGGBB[AA] format
  359. (e.g. "0xff00ff"), possibly followed by an alpha specifier.
  360. The default value of @var{boxcolor} is "white".
  361. @item box
  362. Used to draw a box around text using background color.
  363. Value should be either 1 (enable) or 0 (disable).
  364. The default value of @var{box} is 0.
  365. @item shadowx, shadowy
  366. The x and y offsets for the text shadow position with respect to the
  367. position of the text. They can be either positive or negative
  368. values. Default value for both is "0".
  369. @item shadowcolor
  370. The color to be used for drawing a shadow behind the drawn text. It
  371. can be a color name (e.g. "yellow") or a string in the 0xRRGGBB[AA]
  372. form (e.g. "0xff00ff"), possibly followed by an alpha specifier.
  373. The default value of @var{shadowcolor} is "black".
  374. @item ft_load_flags
  375. Flags to be used for loading the fonts.
  376. The flags map the corresponding flags supported by libfreetype, and are
  377. a combination of the following values:
  378. @table @var
  379. @item default
  380. @item no_scale
  381. @item no_hinting
  382. @item render
  383. @item no_bitmap
  384. @item vertical_layout
  385. @item force_autohint
  386. @item crop_bitmap
  387. @item pedantic
  388. @item ignore_global_advance_width
  389. @item no_recurse
  390. @item ignore_transform
  391. @item monochrome
  392. @item linear_design
  393. @item no_autohint
  394. @item end table
  395. @end table
  396. Default value is "render".
  397. For more information consult the documentation for the FT_LOAD_*
  398. libfreetype flags.
  399. @item tabsize
  400. The size in number of spaces to use for rendering the tab.
  401. Default value is 4.
  402. @end table
  403. For example the command:
  404. @example
  405. drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
  406. @end example
  407. will draw "Test Text" with font FreeSerif, using the default values
  408. for the optional parameters.
  409. The command:
  410. @example
  411. drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
  412. x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
  413. @end example
  414. will draw 'Test Text' with font FreeSerif of size 24 at position x=100
  415. and y=50 (counting from the top-left corner of the screen), text is
  416. yellow with a red box around it. Both the text and the box have an
  417. opacity of 20%.
  418. Note that the double quotes are not necessary if spaces are not used
  419. within the parameter list.
  420. For more information about libfreetype, check:
  421. @url{http://www.freetype.org/}.
  422. @section fade
  423. Apply fade-in/out effect to input video.
  424. It accepts the parameters:
  425. @var{type}:@var{start_frame}:@var{nb_frames}
  426. @var{type} specifies if the effect type, can be either "in" for
  427. fade-in, or "out" for a fade-out effect.
  428. @var{start_frame} specifies the number of the start frame for starting
  429. to apply the fade effect.
  430. @var{nb_frames} specifies the number of frames for which the fade
  431. effect has to last. At the end of the fade-in effect the output video
  432. will have the same intensity as the input video, at the end of the
  433. fade-out transition the output video will be completely black.
  434. A few usage examples follow, usable too as test scenarios.
  435. @example
  436. # fade in first 30 frames of video
  437. fade=in:0:30
  438. # fade out last 45 frames of a 200-frame video
  439. fade=out:155:45
  440. # fade in first 25 frames and fade out last 25 frames of a 1000-frame video
  441. fade=in:0:25, fade=out:975:25
  442. # make first 5 frames black, then fade in from frame 5-24
  443. fade=in:5:20
  444. @end example
  445. @section fieldorder
  446. Transform the field order of the input video.
  447. It accepts one parameter which specifies the required field order that
  448. the input interlaced video will be transformed to. The parameter can
  449. assume one of the following values:
  450. @table @option
  451. @item 0 or bff
  452. output bottom field first
  453. @item 1 or tff
  454. output top field first
  455. @end table
  456. Default value is "tff".
  457. Transformation is achieved by shifting the picture content up or down
  458. by one line, and filling the remaining line with appropriate picture content.
  459. This method is consistent with most broadcast field order converters.
  460. If the input video is not flagged as being interlaced, or it is already
  461. flagged as being of the required output field order then this filter does
  462. not alter the incoming video.
  463. This filter is very useful when converting to or from PAL DV material,
  464. which is bottom field first.
  465. For example:
  466. @example
  467. ./ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
  468. @end example
  469. @section fifo
  470. Buffer input images and send them when they are requested.
  471. This filter is mainly useful when auto-inserted by the libavfilter
  472. framework.
  473. The filter does not take parameters.
  474. @section format
  475. Convert the input video to one of the specified pixel formats.
  476. Libavfilter will try to pick one that is supported for the input to
  477. the next filter.
  478. The filter accepts a list of pixel format names, separated by ":",
  479. for example "yuv420p:monow:rgb24".
  480. Some examples follow:
  481. @example
  482. # convert the input video to the format "yuv420p"
  483. format=yuv420p
  484. # convert the input video to any of the formats in the list
  485. format=yuv420p:yuv444p:yuv410p
  486. @end example
  487. @anchor{frei0r}
  488. @section frei0r
  489. Apply a frei0r effect to the input video.
  490. To enable compilation of this filter you need to install the frei0r
  491. header and configure FFmpeg with --enable-frei0r.
  492. The filter supports the syntax:
  493. @example
  494. @var{filter_name}[@{:|=@}@var{param1}:@var{param2}:...:@var{paramN}]
  495. @end example
  496. @var{filter_name} is the name to the frei0r effect to load. If the
  497. environment variable @env{FREI0R_PATH} is defined, the frei0r effect
  498. is searched in each one of the directories specified by the colon
  499. separated list in @env{FREIOR_PATH}, otherwise in the standard frei0r
  500. paths, which are in this order: @file{HOME/.frei0r-1/lib/},
  501. @file{/usr/local/lib/frei0r-1/}, @file{/usr/lib/frei0r-1/}.
  502. @var{param1}, @var{param2}, ... , @var{paramN} specify the parameters
  503. for the frei0r effect.
  504. A frei0r effect parameter can be a boolean (whose values are specified
  505. with "y" and "n"), a double, a color (specified by the syntax
  506. @var{R}/@var{G}/@var{B}, @var{R}, @var{G}, and @var{B} being float
  507. numbers from 0.0 to 1.0) or by an @code{av_parse_color()} color
  508. description), a position (specified by the syntax @var{X}/@var{Y},
  509. @var{X} and @var{Y} being float numbers) and a string.
  510. The number and kind of parameters depend on the loaded effect. If an
  511. effect parameter is not specified the default value is set.
  512. Some examples follow:
  513. @example
  514. # apply the distort0r effect, set the first two double parameters
  515. frei0r=distort0r:0.5:0.01
  516. # apply the colordistance effect, takes a color as first parameter
  517. frei0r=colordistance:0.2/0.3/0.4
  518. frei0r=colordistance:violet
  519. frei0r=colordistance:0x112233
  520. # apply the perspective effect, specify the top left and top right
  521. # image positions
  522. frei0r=perspective:0.2/0.2:0.8/0.2
  523. @end example
  524. For more information see:
  525. @url{http://piksel.org/frei0r}
  526. @section gradfun
  527. Fix the banding artifacts that are sometimes introduced into nearly flat
  528. regions by truncation to 8bit colordepth.
  529. Interpolate the gradients that should go where the bands are, and
  530. dither them.
  531. This filter is designed for playback only. Do not use it prior to
  532. lossy compression, because compression tends to lose the dither and
  533. bring back the bands.
  534. The filter takes two optional parameters, separated by ':':
  535. @var{strength}:@var{radius}
  536. @var{strength} is the maximum amount by which the filter will change
  537. any one pixel. Also the threshold for detecting nearly flat
  538. regions. Acceptable values range from .51 to 255, default value is
  539. 1.2, out-of-range values will be clipped to the valid range.
  540. @var{radius} is the neighborhood to fit the gradient to. A larger
  541. radius makes for smoother gradients, but also prevents the filter from
  542. modifying the pixels near detailed regions. Acceptable values are
  543. 8-32, default value is 16, out-of-range values will be clipped to the
  544. valid range.
  545. @example
  546. # default parameters
  547. gradfun=1.2:16
  548. # omitting radius
  549. gradfun=1.2
  550. @end example
  551. @section hflip
  552. Flip the input video horizontally.
  553. For example to horizontally flip the video in input with
  554. @file{ffmpeg}:
  555. @example
  556. ffmpeg -i in.avi -vf "hflip" out.avi
  557. @end example
  558. @section hqdn3d
  559. High precision/quality 3d denoise filter. This filter aims to reduce
  560. image noise producing smooth images and making still images really
  561. still. It should enhance compressibility.
  562. It accepts the following optional parameters:
  563. @var{luma_spatial}:@var{chroma_spatial}:@var{luma_tmp}:@var{chroma_tmp}
  564. @table @option
  565. @item luma_spatial
  566. a non-negative float number which specifies spatial luma strength,
  567. defaults to 4.0
  568. @item chroma_spatial
  569. a non-negative float number which specifies spatial chroma strength,
  570. defaults to 3.0*@var{luma_spatial}/4.0
  571. @item luma_tmp
  572. a float number which specifies luma temporal strength, defaults to
  573. 6.0*@var{luma_spatial}/4.0
  574. @item chroma_tmp
  575. a float number which specifies chroma temporal strength, defaults to
  576. @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}
  577. @end table
  578. @section lut, lutrgb, lutyuv
  579. Compute a look-up table for binding each pixel component input value
  580. to an output value, and apply it to input video.
  581. @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
  582. to an RGB input video.
  583. These filters accept in input a ":"-separated list of options, which
  584. specify the expressions used for computing the lookup table for the
  585. corresponding pixel component values.
  586. The @var{lut} filter requires either YUV or RGB pixel formats in
  587. input, and accepts the options:
  588. @table @option
  589. @var{c0} (first pixel component)
  590. @var{c1} (second pixel component)
  591. @var{c2} (third pixel component)
  592. @var{c3} (fourth pixel component, corresponds to the alpha component)
  593. @end table
  594. The exact component associated to each option depends on the format in
  595. input.
  596. The @var{lutrgb} filter requires RGB pixel formats in input, and
  597. accepts the options:
  598. @table @option
  599. @var{r} (red component)
  600. @var{g} (green component)
  601. @var{b} (blue component)
  602. @var{a} (alpha component)
  603. @end table
  604. The @var{lutyuv} filter requires YUV pixel formats in input, and
  605. accepts the options:
  606. @table @option
  607. @var{y} (Y/luminance component)
  608. @var{u} (U/Cb component)
  609. @var{v} (V/Cr component)
  610. @var{a} (alpha component)
  611. @end table
  612. The expressions can contain the following constants and functions:
  613. @table @option
  614. @item E, PI, PHI
  615. the corresponding mathematical approximated values for e
  616. (euler number), pi (greek PI), PHI (golden ratio)
  617. @item w, h
  618. the input width and heigth
  619. @item val
  620. input value for the pixel component
  621. @item clipval
  622. the input value clipped in the @var{minval}-@var{maxval} range
  623. @item maxval
  624. maximum value for the pixel component
  625. @item minval
  626. minimum value for the pixel component
  627. @item negval
  628. the negated value for the pixel component value clipped in the
  629. @var{minval}-@var{maxval} range , it corresponds to the expression
  630. "maxval-clipval+minval"
  631. @item clip(val)
  632. the computed value in @var{val} clipped in the
  633. @var{minval}-@var{maxval} range
  634. @item gammaval(gamma)
  635. the computed gamma correction value of the pixel component value
  636. clipped in the @var{minval}-@var{maxval} range, corresponds to the
  637. expression
  638. "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
  639. @end table
  640. All expressions default to "val".
  641. Some examples follow:
  642. @example
  643. # negate input video
  644. lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
  645. lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
  646. # the above is the same as
  647. lutrgb="r=negval:g=negval:b=negval"
  648. lutyuv="y=negval:u=negval:v=negval"
  649. # negate luminance
  650. lutyuv=negval
  651. # remove chroma components, turns the video into a graytone image
  652. lutyuv="u=128:v=128"
  653. # apply a luma burning effect
  654. lutyuv="y=2*val"
  655. # remove green and blue components
  656. lutrgb="g=0:b=0"
  657. # set a constant alpha channel value on input
  658. format=rgba,lutrgb=a="maxval-minval/2"
  659. # correct luminance gamma by a 0.5 factor
  660. lutyuv=y=gammaval(0.5)
  661. @end example
  662. @section mp
  663. Apply an MPlayer filter to the input video.
  664. This filter provides a wrapper around most of the filters of
  665. MPlayer/MEncoder.
  666. This wrapper is considered experimental. Some of the wrapped filters
  667. may not work properly and we may drop support for them, as they will
  668. be implemented natively into FFmpeg. Thus you should avoid
  669. depending on them when writing portable scripts.
  670. The filters accepts the parameters:
  671. @var{filter_name}[:=]@var{filter_params}
  672. @var{filter_name} is the name of a supported MPlayer filter,
  673. @var{filter_params} is a string containing the parameters accepted by
  674. the named filter.
  675. The list of the currently supported filters follows:
  676. @table @var
  677. @item 2xsai
  678. @item decimate
  679. @item delogo
  680. @item denoise3d
  681. @item detc
  682. @item dint
  683. @item divtc
  684. @item down3dright
  685. @item dsize
  686. @item eq2
  687. @item eq
  688. @item field
  689. @item fil
  690. @item fixpts
  691. @item framestep
  692. @item fspp
  693. @item geq
  694. @item harddup
  695. @item hqdn3d
  696. @item hue
  697. @item il
  698. @item ilpack
  699. @item ivtc
  700. @item kerndeint
  701. @item mcdeint
  702. @item mirror
  703. @item noise
  704. @item ow
  705. @item palette
  706. @item perspective
  707. @item phase
  708. @item pp7
  709. @item pullup
  710. @item qp
  711. @item rectangle
  712. @item remove-logo
  713. @item rotate
  714. @item sab
  715. @item screenshot
  716. @item smartblur
  717. @item softpulldown
  718. @item softskip
  719. @item spp
  720. @item swapuv
  721. @item telecine
  722. @item test
  723. @item tile
  724. @item tinterlace
  725. @item unsharp
  726. @item uspp
  727. @item yuvcsp
  728. @item yvu9
  729. @end table
  730. The parameter syntax and behavior for the listed filters are the same
  731. of the corresponding MPlayer filters. For detailed instructions check
  732. the "VIDEO FILTERS" section in the MPlayer manual.
  733. Some examples follow:
  734. @example
  735. # remove a logo by interpolating the surrounding pixels
  736. mp=delogo=200:200:80:20:1
  737. # adjust gamma, brightness, contrast
  738. mp=eq2=1.0:2:0.5
  739. # tweak hue and saturation
  740. mp=hue=100:-10
  741. @end example
  742. See also mplayer(1), @url{http://www.mplayerhq.hu/}.
  743. @section negate
  744. Negate input video.
  745. This filter accepts an integer in input, if non-zero it negates the
  746. alpha component (if available). The default value in input is 0.
  747. @section noformat
  748. Force libavfilter not to use any of the specified pixel formats for the
  749. input to the next filter.
  750. The filter accepts a list of pixel format names, separated by ":",
  751. for example "yuv420p:monow:rgb24".
  752. Some examples follow:
  753. @example
  754. # force libavfilter to use a format different from "yuv420p" for the
  755. # input to the vflip filter
  756. noformat=yuv420p,vflip
  757. # convert the input video to any of the formats not contained in the list
  758. noformat=yuv420p:yuv444p:yuv410p
  759. @end example
  760. @section null
  761. Pass the video source unchanged to the output.
  762. @section ocv
  763. Apply video transform using libopencv.
  764. To enable this filter install libopencv library and headers and
  765. configure FFmpeg with --enable-libopencv.
  766. The filter takes the parameters: @var{filter_name}@{:=@}@var{filter_params}.
  767. @var{filter_name} is the name of the libopencv filter to apply.
  768. @var{filter_params} specifies the parameters to pass to the libopencv
  769. filter. If not specified the default values are assumed.
  770. Refer to the official libopencv documentation for more precise
  771. informations:
  772. @url{http://opencv.willowgarage.com/documentation/c/image_filtering.html}
  773. Follows the list of supported libopencv filters.
  774. @anchor{dilate}
  775. @subsection dilate
  776. Dilate an image by using a specific structuring element.
  777. This filter corresponds to the libopencv function @code{cvDilate}.
  778. It accepts the parameters: @var{struct_el}:@var{nb_iterations}.
  779. @var{struct_el} represents a structuring element, and has the syntax:
  780. @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
  781. @var{cols} and @var{rows} represent the number of colums and rows of
  782. the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
  783. point, and @var{shape} the shape for the structuring element, and
  784. can be one of the values "rect", "cross", "ellipse", "custom".
  785. If the value for @var{shape} is "custom", it must be followed by a
  786. string of the form "=@var{filename}". The file with name
  787. @var{filename} is assumed to represent a binary image, with each
  788. printable character corresponding to a bright pixel. When a custom
  789. @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
  790. or columns and rows of the read file are assumed instead.
  791. The default value for @var{struct_el} is "3x3+0x0/rect".
  792. @var{nb_iterations} specifies the number of times the transform is
  793. applied to the image, and defaults to 1.
  794. Follow some example:
  795. @example
  796. # use the default values
  797. ocv=dilate
  798. # dilate using a structuring element with a 5x5 cross, iterate two times
  799. ocv=dilate=5x5+2x2/cross:2
  800. # read the shape from the file diamond.shape, iterate two times
  801. # the file diamond.shape may contain a pattern of characters like this:
  802. # *
  803. # ***
  804. # *****
  805. # ***
  806. # *
  807. # the specified cols and rows are ignored (but not the anchor point coordinates)
  808. ocv=0x0+2x2/custom=diamond.shape:2
  809. @end example
  810. @subsection erode
  811. Erode an image by using a specific structuring element.
  812. This filter corresponds to the libopencv function @code{cvErode}.
  813. The filter accepts the parameters: @var{struct_el}:@var{nb_iterations},
  814. with the same syntax and semantics as the @ref{dilate} filter.
  815. @subsection smooth
  816. Smooth the input video.
  817. The filter takes the following parameters:
  818. @var{type}:@var{param1}:@var{param2}:@var{param3}:@var{param4}.
  819. @var{type} is the type of smooth filter to apply, and can be one of
  820. the following values: "blur", "blur_no_scale", "median", "gaussian",
  821. "bilateral". The default value is "gaussian".
  822. @var{param1}, @var{param2}, @var{param3}, and @var{param4} are
  823. parameters whose meanings depend on smooth type. @var{param1} and
  824. @var{param2} accept integer positive values or 0, @var{param3} and
  825. @var{param4} accept float values.
  826. The default value for @var{param1} is 3, the default value for the
  827. other parameters is 0.
  828. These parameters correspond to the parameters assigned to the
  829. libopencv function @code{cvSmooth}.
  830. @section overlay
  831. Overlay one video on top of another.
  832. It takes two inputs and one output, the first input is the "main"
  833. video on which the second input is overlayed.
  834. It accepts the parameters: @var{x}:@var{y}.
  835. @var{x} is the x coordinate of the overlayed video on the main video,
  836. @var{y} is the y coordinate. The parameters are expressions containing
  837. the following parameters:
  838. @table @option
  839. @item main_w, main_h
  840. main input width and height
  841. @item W, H
  842. same as @var{main_w} and @var{main_h}
  843. @item overlay_w, overlay_h
  844. overlay input width and height
  845. @item w, h
  846. same as @var{overlay_w} and @var{overlay_h}
  847. @end table
  848. Be aware that frames are taken from each input video in timestamp
  849. order, hence, if their initial timestamps differ, it is a a good idea
  850. to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
  851. have them begin in the same zero timestamp, as it does the example for
  852. the @var{movie} filter.
  853. Follow some examples:
  854. @example
  855. # draw the overlay at 10 pixels from the bottom right
  856. # corner of the main video.
  857. overlay=main_w-overlay_w-10:main_h-overlay_h-10
  858. # insert a transparent PNG logo in the bottom left corner of the input
  859. movie=logo.png [logo];
  860. [in][logo] overlay=10:main_h-overlay_h-10 [out]
  861. # insert 2 different transparent PNG logos (second logo on bottom
  862. # right corner):
  863. movie=logo1.png [logo1];
  864. movie=logo2.png [logo2];
  865. [in][logo1] overlay=10:H-h-10 [in+logo1];
  866. [in+logo1][logo2] overlay=W-w-10:H-h-10 [out]
  867. # add a transparent color layer on top of the main video,
  868. # WxH specifies the size of the main input to the overlay filter
  869. color=red@.3:WxH [over]; [in][over] overlay [out]
  870. @end example
  871. You can chain togheter more overlays but the efficiency of such
  872. approach is yet to be tested.
  873. @section pad
  874. Add paddings to the input image, and places the original input at the
  875. given coordinates @var{x}, @var{y}.
  876. It accepts the following parameters:
  877. @var{width}:@var{height}:@var{x}:@var{y}:@var{color}.
  878. The parameters @var{width}, @var{height}, @var{x}, and @var{y} are
  879. expressions containing the following constants:
  880. @table @option
  881. @item E, PI, PHI
  882. the corresponding mathematical approximated values for e
  883. (euler number), pi (greek PI), phi (golden ratio)
  884. @item in_w, in_h
  885. the input video width and heigth
  886. @item iw, ih
  887. same as @var{in_w} and @var{in_h}
  888. @item out_w, out_h
  889. the output width and heigth, that is the size of the padded area as
  890. specified by the @var{width} and @var{height} expressions
  891. @item ow, oh
  892. same as @var{out_w} and @var{out_h}
  893. @item x, y
  894. x and y offsets as specified by the @var{x} and @var{y}
  895. expressions, or NAN if not yet specified
  896. @item a
  897. same as @var{iw} / @var{ih}
  898. @item sar
  899. input sample aspect ratio
  900. @item dar
  901. input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
  902. @item hsub, vsub
  903. horizontal and vertical chroma subsample values. For example for the
  904. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  905. @end table
  906. Follows the description of the accepted parameters.
  907. @table @option
  908. @item width, height
  909. Specify the size of the output image with the paddings added. If the
  910. value for @var{width} or @var{height} is 0, the corresponding input size
  911. is used for the output.
  912. The @var{width} expression can reference the value set by the
  913. @var{height} expression, and viceversa.
  914. The default value of @var{width} and @var{height} is 0.
  915. @item x, y
  916. Specify the offsets where to place the input image in the padded area
  917. with respect to the top/left border of the output image.
  918. The @var{x} expression can reference the value set by the @var{y}
  919. expression, and viceversa.
  920. The default value of @var{x} and @var{y} is 0.
  921. @item color
  922. Specify the color of the padded area, it can be the name of a color
  923. (case insensitive match) or a 0xRRGGBB[AA] sequence.
  924. The default value of @var{color} is "black".
  925. @end table
  926. Some examples follow:
  927. @example
  928. # Add paddings with color "violet" to the input video. Output video
  929. # size is 640x480, the top-left corner of the input video is placed at
  930. # column 0, row 40.
  931. pad=640:480:0:40:violet
  932. # pad the input to get an output with dimensions increased bt 3/2,
  933. # and put the input video at the center of the padded area
  934. pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
  935. # pad the input to get a squared output with size equal to the maximum
  936. # value between the input width and height, and put the input video at
  937. # the center of the padded area
  938. pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
  939. # pad the input to get a final w/h ratio of 16:9
  940. pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
  941. # for anamorphic video, in order to set the output display aspect ratio,
  942. # it is necessary to use sar in the expression, according to the relation:
  943. # (ih * X / ih) * sar = output_dar
  944. # X = output_dar / sar
  945. pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
  946. # double output size and put the input video in the bottom-right
  947. # corner of the output padded area
  948. pad="2*iw:2*ih:ow-iw:oh-ih"
  949. @end example
  950. @section pixdesctest
  951. Pixel format descriptor test filter, mainly useful for internal
  952. testing. The output video should be equal to the input video.
  953. For example:
  954. @example
  955. format=monow, pixdesctest
  956. @end example
  957. can be used to test the monowhite pixel format descriptor definition.
  958. @section scale
  959. Scale the input video to @var{width}:@var{height} and/or convert the image format.
  960. The parameters @var{width} and @var{height} are expressions containing
  961. the following constants:
  962. @table @option
  963. @item E, PI, PHI
  964. the corresponding mathematical approximated values for e
  965. (euler number), pi (greek PI), phi (golden ratio)
  966. @item in_w, in_h
  967. the input width and heigth
  968. @item iw, ih
  969. same as @var{in_w} and @var{in_h}
  970. @item out_w, out_h
  971. the output (cropped) width and heigth
  972. @item ow, oh
  973. same as @var{out_w} and @var{out_h}
  974. @item a
  975. same as @var{iw} / @var{ih}
  976. @item sar
  977. input sample aspect ratio
  978. @item dar
  979. input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
  980. @item hsub, vsub
  981. horizontal and vertical chroma subsample values. For example for the
  982. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  983. @end table
  984. If the input image format is different from the format requested by
  985. the next filter, the scale filter will convert the input to the
  986. requested format.
  987. If the value for @var{width} or @var{height} is 0, the respective input
  988. size is used for the output.
  989. If the value for @var{width} or @var{height} is -1, the scale filter will
  990. use, for the respective output size, a value that maintains the aspect
  991. ratio of the input image.
  992. The default value of @var{width} and @var{height} is 0.
  993. Some examples follow:
  994. @example
  995. # scale the input video to a size of 200x100.
  996. scale=200:100
  997. # scale the input to 2x
  998. scale=2*iw:2*ih
  999. # the above is the same as
  1000. scale=2*in_w:2*in_h
  1001. # scale the input to half size
  1002. scale=iw/2:ih/2
  1003. # increase the width, and set the height to the same size
  1004. scale=3/2*iw:ow
  1005. # seek for Greek harmony
  1006. scale=iw:1/PHI*iw
  1007. scale=ih*PHI:ih
  1008. # increase the height, and set the width to 3/2 of the height
  1009. scale=3/2*oh:3/5*ih
  1010. # increase the size, but make the size a multiple of the chroma
  1011. scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
  1012. # increase the width to a maximum of 500 pixels, keep the same input aspect ratio
  1013. scale='min(500\, iw*3/2):-1'
  1014. @end example
  1015. @section select
  1016. Select frames to pass in output.
  1017. It accepts in input an expression, which is evaluated for each input
  1018. frame. If the expression is evaluated to a non-zero value, the frame
  1019. is selected and passed to the output, otherwise it is discarded.
  1020. The expression can contain the following constants:
  1021. @table @option
  1022. @item PI
  1023. Greek PI
  1024. @item PHI
  1025. golden ratio
  1026. @item E
  1027. Euler number
  1028. @item n
  1029. the sequential number of the filtered frame, starting from 0
  1030. @item selected_n
  1031. the sequential number of the selected frame, starting from 0
  1032. @item prev_selected_n
  1033. the sequential number of the last selected frame, NAN if undefined
  1034. @item TB
  1035. timebase of the input timestamps
  1036. @item pts
  1037. the PTS (Presentation TimeStamp) of the filtered video frame,
  1038. expressed in @var{TB} units, NAN if undefined
  1039. @item t
  1040. the PTS (Presentation TimeStamp) of the filtered video frame,
  1041. expressed in seconds, NAN if undefined
  1042. @item prev_pts
  1043. the PTS of the previously filtered video frame, NAN if undefined
  1044. @item prev_selected_pts
  1045. the PTS of the last previously filtered video frame, NAN if undefined
  1046. @item prev_selected_t
  1047. the PTS of the last previously selected video frame, NAN if undefined
  1048. @item start_pts
  1049. the PTS of the first video frame in the video, NAN if undefined
  1050. @item start_t
  1051. the time of the first video frame in the video, NAN if undefined
  1052. @item pict_type
  1053. the picture type of the filtered frame, can assume one of the following
  1054. values:
  1055. @table @option
  1056. @item PICT_TYPE_I
  1057. @item PICT_TYPE_P
  1058. @item PICT_TYPE_B
  1059. @item PICT_TYPE_S
  1060. @item PICT_TYPE_SI
  1061. @item PICT_TYPE_SP
  1062. @item PICT_TYPE_BI
  1063. @end table
  1064. @item interlace_type
  1065. the frame interlace type, can assume one of the following values:
  1066. @table @option
  1067. @item INTERLACE_TYPE_P
  1068. the frame is progressive (not interlaced)
  1069. @item INTERLACE_TYPE_T
  1070. the frame is top-field-first
  1071. @item INTERLACE_TYPE_B
  1072. the frame is bottom-field-first
  1073. @end table
  1074. @item key
  1075. 1 if the filtered frame is a key-frame, 0 otherwise
  1076. @item pos
  1077. the position in the file of the filtered frame, -1 if the information
  1078. is not available (e.g. for synthetic video)
  1079. @end table
  1080. The default value of the select expression is "1".
  1081. Some examples follow:
  1082. @example
  1083. # select all frames in input
  1084. select
  1085. # the above is the same as:
  1086. select=1
  1087. # skip all frames:
  1088. select=0
  1089. # select only I-frames
  1090. select='eq(pict_type\,PICT_TYPE_I)'
  1091. # select one frame every 100
  1092. select='not(mod(n\,100))'
  1093. # select only frames contained in the 10-20 time interval
  1094. select='gte(t\,10)*lte(t\,20)'
  1095. # select only I frames contained in the 10-20 time interval
  1096. select='gte(t\,10)*lte(t\,20)*eq(pict_type\,PICT_TYPE_I)'
  1097. # select frames with a minimum distance of 10 seconds
  1098. select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
  1099. @end example
  1100. @anchor{setdar}
  1101. @section setdar
  1102. Set the Display Aspect Ratio for the filter output video.
  1103. This is done by changing the specified Sample (aka Pixel) Aspect
  1104. Ratio, according to the following equation:
  1105. @math{DAR = HORIZONTAL_RESOLUTION / VERTICAL_RESOLUTION * SAR}
  1106. Keep in mind that this filter does not modify the pixel dimensions of
  1107. the video frame. Also the display aspect ratio set by this filter may
  1108. be changed by later filters in the filterchain, e.g. in case of
  1109. scaling or if another "setdar" or a "setsar" filter is applied.
  1110. The filter accepts a parameter string which represents the wanted
  1111. display aspect ratio.
  1112. The parameter can be a floating point number string, or an expression
  1113. of the form @var{num}:@var{den}, where @var{num} and @var{den} are the
  1114. numerator and denominator of the aspect ratio.
  1115. If the parameter is not specified, it is assumed the value "0:1".
  1116. For example to change the display aspect ratio to 16:9, specify:
  1117. @example
  1118. setdar=16:9
  1119. # the above is equivalent to
  1120. setdar=1.77777
  1121. @end example
  1122. See also the @ref{setsar} filter documentation.
  1123. @section setpts
  1124. Change the PTS (presentation timestamp) of the input video frames.
  1125. Accept in input an expression evaluated through the eval API, which
  1126. can contain the following constants:
  1127. @table @option
  1128. @item PTS
  1129. the presentation timestamp in input
  1130. @item PI
  1131. Greek PI
  1132. @item PHI
  1133. golden ratio
  1134. @item E
  1135. Euler number
  1136. @item N
  1137. the count of the input frame, starting from 0.
  1138. @item STARTPTS
  1139. the PTS of the first video frame
  1140. @item INTERLACED
  1141. tell if the current frame is interlaced
  1142. @item POS
  1143. original position in the file of the frame, or undefined if undefined
  1144. for the current frame
  1145. @item PREV_INPTS
  1146. previous input PTS
  1147. @item PREV_OUTPTS
  1148. previous output PTS
  1149. @end table
  1150. Some examples follow:
  1151. @example
  1152. # start counting PTS from zero
  1153. setpts=PTS-STARTPTS
  1154. # fast motion
  1155. setpts=0.5*PTS
  1156. # slow motion
  1157. setpts=2.0*PTS
  1158. # fixed rate 25 fps
  1159. setpts=N/(25*TB)
  1160. # fixed rate 25 fps with some jitter
  1161. setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
  1162. @end example
  1163. @anchor{setsar}
  1164. @section setsar
  1165. Set the Sample (aka Pixel) Aspect Ratio for the filter output video.
  1166. Note that as a consequence of the application of this filter, the
  1167. output display aspect ratio will change according to the following
  1168. equation:
  1169. @math{DAR = HORIZONTAL_RESOLUTION / VERTICAL_RESOLUTION * SAR}
  1170. Keep in mind that the sample aspect ratio set by this filter may be
  1171. changed by later filters in the filterchain, e.g. if another "setsar"
  1172. or a "setdar" filter is applied.
  1173. The filter accepts a parameter string which represents the wanted
  1174. sample aspect ratio.
  1175. The parameter can be a floating point number string, or an expression
  1176. of the form @var{num}:@var{den}, where @var{num} and @var{den} are the
  1177. numerator and denominator of the aspect ratio.
  1178. If the parameter is not specified, it is assumed the value "0:1".
  1179. For example to change the sample aspect ratio to 10:11, specify:
  1180. @example
  1181. setsar=10:11
  1182. @end example
  1183. @section settb
  1184. Set the timebase to use for the output frames timestamps.
  1185. It is mainly useful for testing timebase configuration.
  1186. It accepts in input an arithmetic expression representing a rational.
  1187. The expression can contain the constants "PI", "E", "PHI", "AVTB" (the
  1188. default timebase), and "intb" (the input timebase).
  1189. The default value for the input is "intb".
  1190. Follow some examples.
  1191. @example
  1192. # set the timebase to 1/25
  1193. settb=1/25
  1194. # set the timebase to 1/10
  1195. settb=0.1
  1196. #set the timebase to 1001/1000
  1197. settb=1+0.001
  1198. #set the timebase to 2*intb
  1199. settb=2*intb
  1200. #set the default timebase value
  1201. settb=AVTB
  1202. @end example
  1203. @section showinfo
  1204. Show a line containing various information for each input video frame.
  1205. The input video is not modified.
  1206. The shown line contains a sequence of key/value pairs of the form
  1207. @var{key}:@var{value}.
  1208. A description of each shown parameter follows:
  1209. @table @option
  1210. @item n
  1211. sequential number of the input frame, starting from 0
  1212. @item pts
  1213. Presentation TimeStamp of the input frame, expressed as a number of
  1214. time base units. The time base unit depends on the filter input pad.
  1215. @item pts_time
  1216. Presentation TimeStamp of the input frame, expressed as a number of
  1217. seconds
  1218. @item pos
  1219. position of the frame in the input stream, -1 if this information in
  1220. unavailable and/or meanigless (for example in case of synthetic video)
  1221. @item fmt
  1222. pixel format name
  1223. @item sar
  1224. sample aspect ratio of the input frame, expressed in the form
  1225. @var{num}/@var{den}
  1226. @item s
  1227. size of the input frame, expressed in the form
  1228. @var{width}x@var{height}
  1229. @item i
  1230. interlaced mode ("P" for "progressive", "T" for top field first, "B"
  1231. for bottom field first)
  1232. @item iskey
  1233. 1 if the frame is a key frame, 0 otherwise
  1234. @item type
  1235. picture type of the input frame ("I" for an I-frame, "P" for a
  1236. P-frame, "B" for a B-frame, "?" for unknown type).
  1237. Check also the documentation of the @code{AVPictureType} enum and of
  1238. the @code{av_get_picture_type_char} function defined in
  1239. @file{libavutil/avutil.h}.
  1240. @item checksum
  1241. Adler-32 checksum of all the planes of the input frame
  1242. @item plane_checksum
  1243. Adler-32 checksum of each plane of the input frame, expressed in the form
  1244. "[@var{c0} @var{c1} @var{c2} @var{c3}]"
  1245. @end table
  1246. @section slicify
  1247. Pass the images of input video on to next video filter as multiple
  1248. slices.
  1249. @example
  1250. ./ffmpeg -i in.avi -vf "slicify=32" out.avi
  1251. @end example
  1252. The filter accepts the slice height as parameter. If the parameter is
  1253. not specified it will use the default value of 16.
  1254. Adding this in the beginning of filter chains should make filtering
  1255. faster due to better use of the memory cache.
  1256. @section split
  1257. Pass on the input video to two outputs. Both outputs are identical to
  1258. the input video.
  1259. For example:
  1260. @example
  1261. [in] split [splitout1][splitout2];
  1262. [splitout1] crop=100:100:0:0 [cropout];
  1263. [splitout2] pad=200:200:100:100 [padout];
  1264. @end example
  1265. will create two separate outputs from the same input, one cropped and
  1266. one padded.
  1267. @section transpose
  1268. Transpose rows with columns in the input video and optionally flip it.
  1269. It accepts a parameter representing an integer, which can assume the
  1270. values:
  1271. @table @samp
  1272. @item 0
  1273. Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
  1274. @example
  1275. L.R L.l
  1276. . . -> . .
  1277. l.r R.r
  1278. @end example
  1279. @item 1
  1280. Rotate by 90 degrees clockwise, that is:
  1281. @example
  1282. L.R l.L
  1283. . . -> . .
  1284. l.r r.R
  1285. @end example
  1286. @item 2
  1287. Rotate by 90 degrees counterclockwise, that is:
  1288. @example
  1289. L.R R.r
  1290. . . -> . .
  1291. l.r L.l
  1292. @end example
  1293. @item 3
  1294. Rotate by 90 degrees clockwise and vertically flip, that is:
  1295. @example
  1296. L.R r.R
  1297. . . -> . .
  1298. l.r l.L
  1299. @end example
  1300. @end table
  1301. @section unsharp
  1302. Sharpen or blur the input video.
  1303. It accepts the following parameters:
  1304. @var{luma_msize_x}:@var{luma_msize_y}:@var{luma_amount}:@var{chroma_msize_x}:@var{chroma_msize_y}:@var{chroma_amount}
  1305. Negative values for the amount will blur the input video, while positive
  1306. values will sharpen. All parameters are optional and default to the
  1307. equivalent of the string '5:5:1.0:0:0:0.0'.
  1308. @table @option
  1309. @item luma_msize_x
  1310. Set the luma matrix horizontal size. It can be an integer between 3
  1311. and 13, default value is 5.
  1312. @item luma_msize_y
  1313. Set the luma matrix vertical size. It can be an integer between 3
  1314. and 13, default value is 5.
  1315. @item luma_amount
  1316. Set the luma effect strength. It can be a float number between -2.0
  1317. and 5.0, default value is 1.0.
  1318. @item chroma_msize_x
  1319. Set the chroma matrix horizontal size. It can be an integer between 3
  1320. and 13, default value is 0.
  1321. @item chroma_msize_y
  1322. Set the chroma matrix vertical size. It can be an integer between 3
  1323. and 13, default value is 0.
  1324. @item luma_amount
  1325. Set the chroma effect strength. It can be a float number between -2.0
  1326. and 5.0, default value is 0.0.
  1327. @end table
  1328. @example
  1329. # Strong luma sharpen effect parameters
  1330. unsharp=7:7:2.5
  1331. # Strong blur of both luma and chroma parameters
  1332. unsharp=7:7:-2:7:7:-2
  1333. # Use the default values with @command{ffmpeg}
  1334. ./ffmpeg -i in.avi -vf "unsharp" out.mp4
  1335. @end example
  1336. @section vflip
  1337. Flip the input video vertically.
  1338. @example
  1339. ./ffmpeg -i in.avi -vf "vflip" out.avi
  1340. @end example
  1341. @section yadif
  1342. Deinterlace the input video ("yadif" means "yet another deinterlacing
  1343. filter").
  1344. It accepts the optional parameters: @var{mode}:@var{parity}:@var{auto}.
  1345. @var{mode} specifies the interlacing mode to adopt, accepts one of the
  1346. following values:
  1347. @table @option
  1348. @item 0
  1349. output 1 frame for each frame
  1350. @item 1
  1351. output 1 frame for each field
  1352. @item 2
  1353. like 0 but skips spatial interlacing check
  1354. @item 3
  1355. like 1 but skips spatial interlacing check
  1356. @end table
  1357. Default value is 0.
  1358. @var{parity} specifies the picture field parity assumed for the input
  1359. interlaced video, accepts one of the following values:
  1360. @table @option
  1361. @item 0
  1362. assume top field first
  1363. @item 1
  1364. assume bottom field first
  1365. @item -1
  1366. enable automatic detection
  1367. @end table
  1368. Default value is -1.
  1369. If interlacing is unknown or decoder does not export this information,
  1370. top field first will be assumed.
  1371. @var{auto} specifies if deinterlacer should trust the interlaced flag
  1372. and only deinterlace frames marked as interlaced
  1373. @table @option
  1374. @item 0
  1375. deinterlace all frames
  1376. @item 1
  1377. only deinterlace frames marked as interlaced
  1378. @end table
  1379. Default value is 0.
  1380. @c man end VIDEO FILTERS
  1381. @chapter Video Sources
  1382. @c man begin VIDEO SOURCES
  1383. Below is a description of the currently available video sources.
  1384. @section buffer
  1385. Buffer video frames, and make them available to the filter chain.
  1386. This source is mainly intended for a programmatic use, in particular
  1387. through the interface defined in @file{libavfilter/vsrc_buffer.h}.
  1388. It accepts the following parameters:
  1389. @var{width}:@var{height}:@var{pix_fmt_string}:@var{timebase_num}:@var{timebase_den}:@var{sample_aspect_ratio_num}:@var{sample_aspect_ratio.den}:@var{scale_params}
  1390. All the parameters but @var{scale_params} need to be explicitely
  1391. defined.
  1392. Follows the list of the accepted parameters.
  1393. @table @option
  1394. @item width, height
  1395. Specify the width and height of the buffered video frames.
  1396. @item pix_fmt_string
  1397. A string representing the pixel format of the buffered video frames.
  1398. It may be a number corresponding to a pixel format, or a pixel format
  1399. name.
  1400. @item timebase_num, timebase_den
  1401. Specify numerator and denomitor of the timebase assumed by the
  1402. timestamps of the buffered frames.
  1403. @item sample_aspect_ratio.num, sample_aspect_ratio.den
  1404. Specify numerator and denominator of the sample aspect ratio assumed
  1405. by the video frames.
  1406. @item scale_params
  1407. Specify the optional parameters to be used for the scale filter which
  1408. is automatically inserted when an input change is detected in the
  1409. input size or format.
  1410. @end table
  1411. For example:
  1412. @example
  1413. buffer=320:240:yuv410p:1:24:1:1
  1414. @end example
  1415. will instruct the source to accept video frames with size 320x240 and
  1416. with format "yuv410p", assuming 1/24 as the timestamps timebase and
  1417. square pixels (1:1 sample aspect ratio).
  1418. Since the pixel format with name "yuv410p" corresponds to the number 6
  1419. (check the enum PixelFormat definition in @file{libavutil/pixfmt.h}),
  1420. this example corresponds to:
  1421. @example
  1422. buffer=320:240:6:1:24:1:1
  1423. @end example
  1424. @section color
  1425. Provide an uniformly colored input.
  1426. It accepts the following parameters:
  1427. @var{color}:@var{frame_size}:@var{frame_rate}
  1428. Follows the description of the accepted parameters.
  1429. @table @option
  1430. @item color
  1431. Specify the color of the source. It can be the name of a color (case
  1432. insensitive match) or a 0xRRGGBB[AA] sequence, possibly followed by an
  1433. alpha specifier. The default value is "black".
  1434. @item frame_size
  1435. Specify the size of the sourced video, it may be a string of the form
  1436. @var{width}x@var{heigth}, or the name of a size abbreviation. The
  1437. default value is "320x240".
  1438. @item frame_rate
  1439. Specify the frame rate of the sourced video, as the number of frames
  1440. generated per second. It has to be a string in the format
  1441. @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a float
  1442. number or a valid video frame rate abbreviation. The default value is
  1443. "25".
  1444. @end table
  1445. For example the following graph description will generate a red source
  1446. with an opacity of 0.2, with size "qcif" and a frame rate of 10
  1447. frames per second, which will be overlayed over the source connected
  1448. to the pad with identifier "in".
  1449. @example
  1450. "color=red@@0.2:qcif:10 [color]; [in][color] overlay [out]"
  1451. @end example
  1452. @section movie
  1453. Read a video stream from a movie container.
  1454. It accepts the syntax: @var{movie_name}[:@var{options}] where
  1455. @var{movie_name} is the name of the resource to read (not necessarily
  1456. a file but also a device or a stream accessed through some protocol),
  1457. and @var{options} is an optional sequence of @var{key}=@var{value}
  1458. pairs, separated by ":".
  1459. The description of the accepted options follows.
  1460. @table @option
  1461. @item format_name, f
  1462. Specifies the format assumed for the movie to read, and can be either
  1463. the name of a container or an input device. If not specified the
  1464. format is guessed from @var{movie_name} or by probing.
  1465. @item seek_point, sp
  1466. Specifies the seek point in seconds, the frames will be output
  1467. starting from this seek point, the parameter is evaluated with
  1468. @code{av_strtod} so the numerical value may be suffixed by an IS
  1469. postfix. Default value is "0".
  1470. @item stream_index, si
  1471. Specifies the index of the video stream to read. If the value is -1,
  1472. the best suited video stream will be automatically selected. Default
  1473. value is "-1".
  1474. @end table
  1475. This filter allows to overlay a second video on top of main input of
  1476. a filtergraph as shown in this graph:
  1477. @example
  1478. input -----------> deltapts0 --> overlay --> output
  1479. ^
  1480. |
  1481. movie --> scale--> deltapts1 -------+
  1482. @end example
  1483. Some examples follow:
  1484. @example
  1485. # skip 3.2 seconds from the start of the avi file in.avi, and overlay it
  1486. # on top of the input labelled as "in".
  1487. movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [movie];
  1488. [in] setpts=PTS-STARTPTS, [movie] overlay=16:16 [out]
  1489. # read from a video4linux2 device, and overlay it on top of the input
  1490. # labelled as "in"
  1491. movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [movie];
  1492. [in] setpts=PTS-STARTPTS, [movie] overlay=16:16 [out]
  1493. @end example
  1494. @section nullsrc
  1495. Null video source, never return images. It is mainly useful as a
  1496. template and to be employed in analysis / debugging tools.
  1497. It accepts as optional parameter a string of the form
  1498. @var{width}:@var{height}:@var{timebase}.
  1499. @var{width} and @var{height} specify the size of the configured
  1500. source. The default values of @var{width} and @var{height} are
  1501. respectively 352 and 288 (corresponding to the CIF size format).
  1502. @var{timebase} specifies an arithmetic expression representing a
  1503. timebase. The expression can contain the constants "PI", "E", "PHI",
  1504. "AVTB" (the default timebase), and defaults to the value "AVTB".
  1505. @section frei0r_src
  1506. Provide a frei0r source.
  1507. To enable compilation of this filter you need to install the frei0r
  1508. header and configure FFmpeg with --enable-frei0r.
  1509. The source supports the syntax:
  1510. @example
  1511. @var{size}:@var{rate}:@var{src_name}[@{=|:@}@var{param1}:@var{param2}:...:@var{paramN}]
  1512. @end example
  1513. @var{size} is the size of the video to generate, may be a string of the
  1514. form @var{width}x@var{height} or a frame size abbreviation.
  1515. @var{rate} is the rate of the video to generate, may be a string of
  1516. the form @var{num}/@var{den} or a frame rate abbreviation.
  1517. @var{src_name} is the name to the frei0r source to load. For more
  1518. information regarding frei0r and how to set the parameters read the
  1519. section @ref{frei0r} in the description of the video filters.
  1520. Some examples follow:
  1521. @example
  1522. # generate a frei0r partik0l source with size 200x200 and framerate 10
  1523. # which is overlayed on the overlay filter main input
  1524. frei0r_src=200x200:10:partik0l=1234 [overlay]; [in][overlay] overlay
  1525. @end example
  1526. @section rgbtestsrc, testsrc
  1527. The @code{rgbtestsrc} source generates an RGB test pattern useful for
  1528. detecting RGB vs BGR issues. You should see a red, green and blue
  1529. stripe from top to bottom.
  1530. The @code{testsrc} source generates a test video pattern, showing a
  1531. color pattern, a scrolling gradient and a timestamp. This is mainly
  1532. intended for testing purposes.
  1533. Both sources accept an optional sequence of @var{key}=@var{value} pairs,
  1534. separated by ":". The description of the accepted options follows.
  1535. @table @option
  1536. @item size, s
  1537. Specify the size of the sourced video, it may be a string of the form
  1538. @var{width}x@var{heigth}, or the name of a size abbreviation. The
  1539. default value is "320x240".
  1540. @item rate, r
  1541. Specify the frame rate of the sourced video, as the number of frames
  1542. generated per second. It has to be a string in the format
  1543. @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a float
  1544. number or a valid video frame rate abbreviation. The default value is
  1545. "25".
  1546. @item duration
  1547. Set the video duration of the sourced video. The accepted syntax is:
  1548. @example
  1549. [-]HH[:MM[:SS[.m...]]]
  1550. [-]S+[.m...]
  1551. @end example
  1552. See also the function @code{av_parse_time()}.
  1553. If not specified, or the expressed duration is negative, the video is
  1554. supposed to be generated forever.
  1555. @end table
  1556. For example the following:
  1557. @example
  1558. testsrc=duration=5.3:size=qcif:rate=10
  1559. @end example
  1560. will generate a video with a duration of 5.3 seconds, with size
  1561. 176x144 and a framerate of 10 frames per second.
  1562. @c man end VIDEO SOURCES
  1563. @chapter Video Sinks
  1564. @c man begin VIDEO SINKS
  1565. Below is a description of the currently available video sinks.
  1566. @section buffersink
  1567. Buffer video frames, and make them available to the end of the filter
  1568. graph.
  1569. This sink is mainly intended for a programmatic use, in particular
  1570. through the interface defined in @file{libavfilter/vsink_buffer.h}.
  1571. It does not require a string parameter in input, but you need to
  1572. specify a pointer to a list of supported pixel formats terminated by
  1573. -1 in the opaque parameter provided to @code{avfilter_init_filter}
  1574. when initializing this sink.
  1575. @section nullsink
  1576. Null video sink, do absolutely nothing with the input video. It is
  1577. mainly useful as a template and to be employed in analysis / debugging
  1578. tools.
  1579. @c man end VIDEO SINKS