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.

916 lines
24KB

  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 cropdetect
  134. Auto-detect crop size.
  135. Calculate necessary cropping parameters and prints the recommended
  136. parameters through the logging system. The detected dimensions
  137. correspond to the non-black area of the input video.
  138. It accepts the syntax:
  139. @example
  140. cropdetect[=@var{limit}[:@var{round}[:@var{reset}]]]
  141. @end example
  142. @table @option
  143. @item limit
  144. Threshold, which can be optionally specified from nothing (0) to
  145. everything (255), defaults to 24.
  146. @item round
  147. Value which the width/height should be divisible by, defaults to
  148. 16. The offset is automatically adjusted to center the video. Use 2 to
  149. get only even dimensions (needed for 4:2:2 video). 16 is best when
  150. encoding to most video codecs.
  151. @item reset
  152. Counter that determines after how many frames cropdetect will reset
  153. the previously detected largest video area and start over to detect
  154. the current optimal crop area. Defaults to 0.
  155. This can be useful when channel logos distort the video area. 0
  156. indicates never reset and return the largest area encountered during
  157. playback.
  158. @end table
  159. @section drawbox
  160. Draw a colored box on the input image.
  161. It accepts the syntax:
  162. @example
  163. drawbox=@var{x}:@var{y}:@var{width}:@var{height}:@var{color}
  164. @end example
  165. @table @option
  166. @item x, y
  167. Specify the top left corner coordinates of the box. Default to 0.
  168. @item width, height
  169. Specify the width and height of the box, if 0 they are interpreted as
  170. the input width and height. Default to 0.
  171. @item color
  172. Specify the color of the box to write, it can be the name of a color
  173. (case insensitive match) or a 0xRRGGBB[AA] sequence.
  174. @end table
  175. Follow some examples:
  176. @example
  177. # draw a black box around the edge of the input image
  178. drawbox
  179. # draw a box with color red and an opacity of 50%
  180. drawbox=10:20:200:60:red@@0.5"
  181. @end example
  182. @section fifo
  183. Buffer input images and send them when they are requested.
  184. This filter is mainly useful when auto-inserted by the libavfilter
  185. framework.
  186. The filter does not take parameters.
  187. @section format
  188. Convert the input video to one of the specified pixel formats.
  189. Libavfilter will try to pick one that is supported for the input to
  190. the next filter.
  191. The filter accepts a list of pixel format names, separated by ":",
  192. for example "yuv420p:monow:rgb24".
  193. The following command:
  194. @example
  195. ./ffmpeg -i in.avi -vf "format=yuv420p" out.avi
  196. @end example
  197. will convert the input video to the format "yuv420p".
  198. @anchor{frei0r}
  199. @section frei0r
  200. Apply a frei0r effect to the input video.
  201. To enable compilation of this filter you need to install the frei0r
  202. header and configure FFmpeg with --enable-frei0r.
  203. The filter supports the syntax:
  204. @example
  205. @var{filter_name}[@{:|=@}@var{param1}:@var{param2}:...:@var{paramN}]
  206. @end example
  207. @var{filter_name} is the name to the frei0r effect to load. If the
  208. environment variable @env{FREI0R_PATH} is defined, the frei0r effect
  209. is searched in each one of the directories specified by the colon
  210. separated list in @env{FREIOR_PATH}, otherwise in the standard frei0r
  211. paths, which are in this order: @file{HOME/.frei0r-1/lib/},
  212. @file{/usr/local/lib/frei0r-1/}, @file{/usr/lib/frei0r-1/}.
  213. @var{param1}, @var{param2}, ... , @var{paramN} specify the parameters
  214. for the frei0r effect.
  215. A frei0r effect parameter can be a boolean (whose values are specified
  216. with "y" and "n"), a double, a color (specified by the syntax
  217. @var{R}/@var{G}/@var{B}, @var{R}, @var{G}, and @var{B} being float
  218. numbers from 0.0 to 1.0) or by an @code{av_parse_color()} color
  219. description), a position (specified by the syntax @var{X}/@var{Y},
  220. @var{X} and @var{Y} being float numbers) and a string.
  221. The number and kind of parameters depend on the loaded effect. If an
  222. effect parameter is not specified the default value is set.
  223. Some examples follow:
  224. @example
  225. # apply the distort0r effect, set the first two double parameters
  226. frei0r=distort0r:0.5:0.01
  227. # apply the colordistance effect, takes a color as first parameter
  228. frei0r=colordistance:0.2/0.3/0.4
  229. frei0r=colordistance:violet
  230. frei0r=colordistance:0x112233
  231. # apply the perspective effect, specify the top left and top right
  232. # image positions
  233. frei0r=perspective:0.2/0.2:0.8/0.2
  234. @end example
  235. For more information see:
  236. @url{http://piksel.org/frei0r}
  237. @section hflip
  238. Flip the input video horizontally.
  239. For example to horizontally flip the video in input with
  240. @file{ffmpeg}:
  241. @example
  242. ffmpeg -i in.avi -vf "hflip" out.avi
  243. @end example
  244. @section noformat
  245. Force libavfilter not to use any of the specified pixel formats for the
  246. input to the next filter.
  247. The filter accepts a list of pixel format names, separated by ":",
  248. for example "yuv420p:monow:rgb24".
  249. The following command:
  250. @example
  251. ./ffmpeg -i in.avi -vf "noformat=yuv420p, vflip" out.avi
  252. @end example
  253. will make libavfilter use a format different from "yuv420p" for the
  254. input to the vflip filter.
  255. @section null
  256. Pass the video source unchanged to the output.
  257. @section ocv_smooth
  258. Apply smooth transform using libopencv.
  259. To enable this filter install libopencv library and headers and
  260. configure FFmpeg with --enable-libopencv.
  261. The filter accepts the following parameters:
  262. @var{type}:@var{param1}:@var{param2}:@var{param3}:@var{param4}.
  263. @var{type} is the type of smooth filter to apply, and can be one of
  264. the following values: "blur", "blur_no_scale", "median", "gaussian",
  265. "bilateral". The default value is "gaussian".
  266. @var{param1}, @var{param2}, @var{param3}, and @var{param4} are
  267. parameters whose meanings depend on smooth type. @var{param1} and
  268. @var{param2} accept integer positive values or 0, @var{param3} and
  269. @var{param4} accept float values.
  270. The default value for @var{param1} is 3, the default value for the
  271. other parameters is 0.
  272. These parameters correspond to the parameters assigned to the
  273. libopencv function @code{cvSmooth}. Refer to the official libopencv
  274. documentation for the exact meaning of the parameters:
  275. @url{http://opencv.willowgarage.com/documentation/c/image_filtering.html}
  276. @section overlay
  277. Overlay one video on top of another.
  278. It takes two inputs and one output, the first input is the "main"
  279. video on which the second input is overlayed.
  280. It accepts the parameters: @var{x}:@var{y}.
  281. @var{x} is the x coordinate of the overlayed video on the main video,
  282. @var{y} is the y coordinate. The parameters are expressions containing
  283. the following parameters:
  284. @table @option
  285. @item main_w, main_h
  286. main input width and height
  287. @item W, H
  288. same as @var{main_w} and @var{main_h}
  289. @item overlay_w, overlay_h
  290. overlay input width and height
  291. @item w, h
  292. same as @var{overlay_w} and @var{overlay_h}
  293. @end table
  294. Be aware that frames are taken from each input video in timestamp
  295. order, hence, if their initial timestamps differ, it is a a good idea
  296. to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
  297. have them begin in the same zero timestamp, as it does the example for
  298. the @var{movie} filter.
  299. Follow some examples:
  300. @example
  301. # draw the overlay at 10 pixels from the bottom right
  302. # corner of the main video.
  303. overlay=main_w-overlay_w-10:main_h-overlay_h-10
  304. # insert a transparent PNG logo in the bottom left corner of the input
  305. movie=0:png:logo.png [logo];
  306. [in][logo] overlay=10:main_h-overlay_h-10 [out]
  307. # insert 2 different transparent PNG logos (second logo on bottom
  308. # right corner):
  309. movie=0:png:logo1.png [logo1];
  310. movie=0:png:logo2.png [logo2];
  311. [in][logo1] overlay=10:H-h-10 [in+logo1];
  312. [in+logo1][logo2] overlay=W-w-10:H-h-10 [out]
  313. # add a transparent color layer on top of the main video,
  314. # WxH specifies the size of the main input to the overlay filter
  315. color=red@.3:WxH [over]; [in][over] overlay [out]
  316. @end example
  317. You can chain togheter more overlays but the efficiency of such
  318. approach is yet to be tested.
  319. @section pad
  320. Add paddings to the input image, and places the original input at the
  321. given coordinates @var{x}, @var{y}.
  322. It accepts the following parameters:
  323. @var{width}:@var{height}:@var{x}:@var{y}:@var{color}.
  324. Follows the description of the accepted parameters.
  325. @table @option
  326. @item width, height
  327. Specify the size of the output image with the paddings added. If the
  328. value for @var{width} or @var{height} is 0, the corresponding input size
  329. is used for the output.
  330. The default value of @var{width} and @var{height} is 0.
  331. @item x, y
  332. Specify the offsets where to place the input image in the padded area
  333. with respect to the top/left border of the output image.
  334. The default value of @var{x} and @var{y} is 0.
  335. @item color
  336. Specify the color of the padded area, it can be the name of a color
  337. (case insensitive match) or a 0xRRGGBB[AA] sequence.
  338. The default value of @var{color} is "black".
  339. @end table
  340. For example:
  341. @example
  342. # Add paddings with color "violet" to the input video. Output video
  343. # size is 640x480, the top-left corner of the input video is placed at
  344. # row 0, column 40.
  345. pad=640:480:0:40:violet
  346. @end example
  347. @section pixdesctest
  348. Pixel format descriptor test filter, mainly useful for internal
  349. testing. The output video should be equal to the input video.
  350. For example:
  351. @example
  352. format=monow, pixdesctest
  353. @end example
  354. can be used to test the monowhite pixel format descriptor definition.
  355. @section scale
  356. Scale the input video to @var{width}:@var{height} and/or convert the image format.
  357. For example the command:
  358. @example
  359. ./ffmpeg -i in.avi -vf "scale=200:100" out.avi
  360. @end example
  361. will scale the input video to a size of 200x100.
  362. If the input image format is different from the format requested by
  363. the next filter, the scale filter will convert the input to the
  364. requested format.
  365. If the value for @var{width} or @var{height} is 0, the respective input
  366. size is used for the output.
  367. If the value for @var{width} or @var{height} is -1, the scale filter will
  368. use, for the respective output size, a value that maintains the aspect
  369. ratio of the input image.
  370. The default value of @var{width} and @var{height} is 0.
  371. @section setpts
  372. Change the PTS (presentation timestamp) of the input video frames.
  373. Accept in input an expression evaluated through the eval API, which
  374. can contain the following constants:
  375. @table @option
  376. @item PTS
  377. the presentation timestamp in input
  378. @item PI
  379. Greek PI
  380. @item PHI
  381. golden ratio
  382. @item E
  383. Euler number
  384. @item N
  385. the count of the input frame, starting from 0.
  386. @item STARTPTS
  387. the PTS of the first video frame
  388. @item INTERLACED
  389. tell if the current frame is interlaced
  390. @item POS
  391. original position in the file of the frame, or undefined if undefined
  392. for the current frame
  393. @item PREV_INPTS
  394. previous input PTS
  395. @item PREV_OUTPTS
  396. previous output PTS
  397. @end table
  398. Some examples follow:
  399. @example
  400. # start counting PTS from zero
  401. setpts=PTS-STARTPTS
  402. # fast motion
  403. setpts=0.5*PTS
  404. # slow motion
  405. setpts=2.0*PTS
  406. # fixed rate 25 fps
  407. setpts=N/(25*TB)
  408. # fixed rate 25 fps with some jitter
  409. setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
  410. @end example
  411. @section settb
  412. Set the timebase to use for the output frames timestamps.
  413. It is mainly useful for testing timebase configuration.
  414. It accepts in input an arithmetic expression representing a rational.
  415. The expression can contain the constants "PI", "E", "PHI", "AVTB" (the
  416. default timebase), and "intb" (the input timebase).
  417. The default value for the input is "intb".
  418. Follow some examples.
  419. @example
  420. # set the timebase to 1/25
  421. settb=1/25
  422. # set the timebase to 1/10
  423. settb=0.1
  424. #set the timebase to 1001/1000
  425. settb=1+0.001
  426. #set the timebase to 2*intb
  427. settb=2*intb
  428. #set the default timebase value
  429. settb=AVTB
  430. @end example
  431. @section slicify
  432. Pass the images of input video on to next video filter as multiple
  433. slices.
  434. @example
  435. ./ffmpeg -i in.avi -vf "slicify=32" out.avi
  436. @end example
  437. The filter accepts the slice height as parameter. If the parameter is
  438. not specified it will use the default value of 16.
  439. Adding this in the beginning of filter chains should make filtering
  440. faster due to better use of the memory cache.
  441. @section transpose
  442. Transpose rows with columns in the input video and optionally flip it.
  443. It accepts a parameter representing an integer, which can assume the
  444. values:
  445. @table @samp
  446. @item 0
  447. Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
  448. @example
  449. L.R L.l
  450. . . -> . .
  451. l.r R.r
  452. @end example
  453. @item 1
  454. Rotate by 90 degrees clockwise, that is:
  455. @example
  456. L.R l.L
  457. . . -> . .
  458. l.r r.R
  459. @end example
  460. @item 2
  461. Rotate by 90 degrees counterclockwise, that is:
  462. @example
  463. L.R R.r
  464. . . -> . .
  465. l.r L.l
  466. @end example
  467. @item 3
  468. Rotate by 90 degrees clockwise and vertically flip, that is:
  469. @example
  470. L.R r.R
  471. . . -> . .
  472. l.r l.L
  473. @end example
  474. @end table
  475. @section unsharp
  476. Sharpen or blur the input video.
  477. It accepts the following parameters:
  478. @var{luma_msize_x}:@var{luma_msize_y}:@var{luma_amount}:@var{chroma_msize_x}:@var{chroma_msize_y}:@var{chroma_amount}
  479. Negative values for the amount will blur the input video, while positive
  480. values will sharpen. All parameters are optional and default to the
  481. equivalent of the string '5:5:1.0:0:0:0.0'.
  482. @table @option
  483. @item luma_msize_x
  484. Set the luma matrix horizontal size. It can be an integer between 3
  485. and 13, default value is 5.
  486. @item luma_msize_y
  487. Set the luma matrix vertical size. It can be an integer between 3
  488. and 13, default value is 5.
  489. @item luma_amount
  490. Set the luma effect strength. It can be a float number between -2.0
  491. and 5.0, default value is 1.0.
  492. @item chroma_msize_x
  493. Set the chroma matrix horizontal size. It can be an integer between 3
  494. and 13, default value is 0.
  495. @item chroma_msize_y
  496. Set the chroma matrix vertical size. It can be an integer between 3
  497. and 13, default value is 0.
  498. @item luma_amount
  499. Set the chroma effect strength. It can be a float number between -2.0
  500. and 5.0, default value is 0.0.
  501. @end table
  502. @example
  503. # Strong luma sharpen effect parameters
  504. unsharp=7:7:2.5
  505. # Strong blur of both luma and chroma parameters
  506. unsharp=7:7:-2:7:7:-2
  507. # Use the default values with @command{ffmpeg}
  508. ./ffmpeg -i in.avi -vf "unsharp" out.mp4
  509. @end example
  510. @section vflip
  511. Flip the input video vertically.
  512. @example
  513. ./ffmpeg -i in.avi -vf "vflip" out.avi
  514. @end example
  515. @section yadif
  516. yadif is "yet another deinterlacing filter".
  517. It accepts the syntax:
  518. @example
  519. yadif=[@var{mode}[:@var{parity}]]
  520. @end example
  521. @table @option
  522. @item mode
  523. Specify the interlacing mode to adopt, accepts one of the following values.
  524. 0: Output 1 frame for each frame.
  525. 1: Output 1 frame for each field.
  526. 2: Like 0 but skips spatial interlacing check.
  527. 3: Like 1 but skips spatial interlacing check.
  528. Default value is 0.
  529. @item parity
  530. 0 if is bottom field first, 1 if the interlaced video is top field
  531. first, -1 to enable automatic detection.
  532. @end table
  533. @c man end VIDEO FILTERS
  534. @chapter Video Sources
  535. @c man begin VIDEO SOURCES
  536. Below is a description of the currently available video sources.
  537. @section buffer
  538. Buffer video frames, and make them available to the filter chain.
  539. This source is mainly intended for a programmatic use, in particular
  540. through the interface defined in @file{libavfilter/vsrc_buffer.h}.
  541. It accepts the following parameters:
  542. @var{width}:@var{height}:@var{pix_fmt_string}:@var{timebase_num}:@var{timebase_den}
  543. All the parameters need to be explicitely defined.
  544. Follows the list of the accepted parameters.
  545. @table @option
  546. @item width, height
  547. Specify the width and height of the buffered video frames.
  548. @item pix_fmt_string
  549. A string representing the pixel format of the buffered video frames.
  550. It may be a number corresponding to a pixel format, or a pixel format
  551. name.
  552. @item timebase_num, timebase_den
  553. Specify numerator and denomitor of the timebase assumed by the
  554. timestamps of the buffered frames.
  555. @end table
  556. For example:
  557. @example
  558. buffer=320:240:yuv410p:1:24
  559. @end example
  560. will instruct the source to accept video frames with size 320x240 and
  561. with format "yuv410p" and assuming 1/24 as the timestamps timebase.
  562. Since the pixel format with name "yuv410p" corresponds to the number 6
  563. (check the enum PixelFormat definition in @file{libavutil/pixfmt.h}),
  564. this example corresponds to:
  565. @example
  566. buffer=320:240:6:1:24
  567. @end example
  568. @section color
  569. Provide an uniformly colored input.
  570. It accepts the following parameters:
  571. @var{color}:@var{frame_size}:@var{frame_rate}
  572. Follows the description of the accepted parameters.
  573. @table @option
  574. @item color
  575. Specify the color of the source. It can be the name of a color (case
  576. insensitive match) or a 0xRRGGBB[AA] sequence, possibly followed by an
  577. alpha specifier. The default value is "black".
  578. @item frame_size
  579. Specify the size of the sourced video, it may be a string of the form
  580. @var{width}x@var{heigth}, or the name of a size abbreviation. The
  581. default value is "320x240".
  582. @item frame_rate
  583. Specify the frame rate of the sourced video, as the number of frames
  584. generated per second. It has to be a string in the format
  585. @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a float
  586. number or a valid video frame rate abbreviation. The default value is
  587. "25".
  588. @end table
  589. For example the following graph description will generate a red source
  590. with an opacity of 0.2, with size "qcif" and a frame rate of 10
  591. frames per second, which will be overlayed over the source connected
  592. to the pad with identifier "in".
  593. @example
  594. "color=red@@0.2:qcif:10 [color]; [in][color] overlay [out]"
  595. @end example
  596. @section nullsrc
  597. Null video source, never return images. It is mainly useful as a
  598. template and to be employed in analysis / debugging tools.
  599. It accepts as optional parameter a string of the form
  600. @var{width}:@var{height}:@var{timebase}.
  601. @var{width} and @var{height} specify the size of the configured
  602. source. The default values of @var{width} and @var{height} are
  603. respectively 352 and 288 (corresponding to the CIF size format).
  604. @var{timebase} specifies an arithmetic expression representing a
  605. timebase. The expression can contain the constants "PI", "E", "PHI",
  606. "AVTB" (the default timebase), and defaults to the value "AVTB".
  607. @section frei0r_src
  608. Provide a frei0r source.
  609. To enable compilation of this filter you need to install the frei0r
  610. header and configure FFmpeg with --enable-frei0r.
  611. The source supports the syntax:
  612. @example
  613. @var{size}:@var{rate}:@var{src_name}[@{=|:@}@var{param1}:@var{param2}:...:@var{paramN}]
  614. @end example
  615. @var{size} is the size of the video to generate, may be a string of the
  616. form @var{width}x@var{height} or a frame size abbreviation.
  617. @var{rate} is the rate of the video to generate, may be a string of
  618. the form @var{num}/@var{den} or a frame rate abbreviation.
  619. @var{src_name} is the name to the frei0r source to load. For more
  620. information regarding frei0r and how to set the parameters read the
  621. section "frei0r" (@pxref{frei0r}) in the description of the video
  622. filters.
  623. Some examples follow:
  624. @example
  625. # generate a frei0r partik0l source with size 200x200 and framerate 10
  626. # which is overlayed on the overlay filter main input
  627. frei0r_src=200x200:10:partik0l=1234 [overlay]; [in][overlay] overlay
  628. @end example
  629. @c man end VIDEO SOURCES
  630. @chapter Video Sinks
  631. @c man begin VIDEO SINKS
  632. Below is a description of the currently available video sinks.
  633. @section nullsink
  634. Null video sink, do absolutely nothing with the input video. It is
  635. mainly useful as a template and to be employed in analysis / debugging
  636. tools.
  637. @c man end VIDEO SINKS