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.

3542 lines
99KB

  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. @anchor{Filtergraph syntax}
  14. @section Filtergraph syntax
  15. A filtergraph can be represented using a textual representation, which is
  16. recognized by the @option{-filter}/@option{-vf} and @option{-filter_complex}
  17. options in @command{ffmpeg} and @option{-vf} in @command{ffplay}, and by the
  18. @code{avfilter_graph_parse()}/@code{avfilter_graph_parse2()} function defined in
  19. @file{libavfilter/avfiltergraph.h}.
  20. A filterchain consists of a sequence of connected filters, each one
  21. connected to the previous one in the sequence. A filterchain is
  22. represented by a list of ","-separated filter descriptions.
  23. A filtergraph consists of a sequence of filterchains. A sequence of
  24. filterchains is represented by a list of ";"-separated filterchain
  25. descriptions.
  26. A filter is represented by a string of the form:
  27. [@var{in_link_1}]...[@var{in_link_N}]@var{filter_name}=@var{arguments}[@var{out_link_1}]...[@var{out_link_M}]
  28. @var{filter_name} is the name of the filter class of which the
  29. described filter is an instance of, and has to be the name of one of
  30. the filter classes registered in the program.
  31. The name of the filter class is optionally followed by a string
  32. "=@var{arguments}".
  33. @var{arguments} is a string which contains the parameters used to
  34. initialize the filter instance, and are described in the filter
  35. descriptions below.
  36. The list of arguments can be quoted using the character "'" as initial
  37. and ending mark, and the character '\' for escaping the characters
  38. within the quoted text; otherwise the argument string is considered
  39. terminated when the next special character (belonging to the set
  40. "[]=;,") is encountered.
  41. The name and arguments of the filter are optionally preceded and
  42. followed by a list of link labels.
  43. A link label allows to name a link and associate it to a filter output
  44. or input pad. The preceding labels @var{in_link_1}
  45. ... @var{in_link_N}, are associated to the filter input pads,
  46. the following labels @var{out_link_1} ... @var{out_link_M}, are
  47. associated to the output pads.
  48. When two link labels with the same name are found in the
  49. filtergraph, a link between the corresponding input and output pad is
  50. created.
  51. If an output pad is not labelled, it is linked by default to the first
  52. unlabelled input pad of the next filter in the filterchain.
  53. For example in the filterchain:
  54. @example
  55. nullsrc, split[L1], [L2]overlay, nullsink
  56. @end example
  57. the split filter instance has two output pads, and the overlay filter
  58. instance two input pads. The first output pad of split is labelled
  59. "L1", the first input pad of overlay is labelled "L2", and the second
  60. output pad of split is linked to the second input pad of overlay,
  61. which are both unlabelled.
  62. In a complete filterchain all the unlabelled filter input and output
  63. pads must be connected. A filtergraph is considered valid if all the
  64. filter input and output pads of all the filterchains are connected.
  65. Libavfilter will automatically insert scale filters where format
  66. conversion is required. It is possible to specify swscale flags
  67. for those automatically inserted scalers by prepending
  68. @code{sws_flags=@var{flags};}
  69. to the filtergraph description.
  70. Follows a BNF description for the filtergraph syntax:
  71. @example
  72. @var{NAME} ::= sequence of alphanumeric characters and '_'
  73. @var{LINKLABEL} ::= "[" @var{NAME} "]"
  74. @var{LINKLABELS} ::= @var{LINKLABEL} [@var{LINKLABELS}]
  75. @var{FILTER_ARGUMENTS} ::= sequence of chars (eventually quoted)
  76. @var{FILTER} ::= [@var{LINKNAMES}] @var{NAME} ["=" @var{ARGUMENTS}] [@var{LINKNAMES}]
  77. @var{FILTERCHAIN} ::= @var{FILTER} [,@var{FILTERCHAIN}]
  78. @var{FILTERGRAPH} ::= [sws_flags=@var{flags};] @var{FILTERCHAIN} [;@var{FILTERGRAPH}]
  79. @end example
  80. @c man end FILTERGRAPH DESCRIPTION
  81. @chapter Audio Filters
  82. @c man begin AUDIO FILTERS
  83. When you configure your FFmpeg build, you can disable any of the
  84. existing filters using @code{--disable-filters}.
  85. The configure output will show the audio filters included in your
  86. build.
  87. Below is a description of the currently available audio filters.
  88. @section aconvert
  89. Convert the input audio format to the specified formats.
  90. The filter accepts a string of the form:
  91. "@var{sample_format}:@var{channel_layout}".
  92. @var{sample_format} specifies the sample format, and can be a string or the
  93. corresponding numeric value defined in @file{libavutil/samplefmt.h}. Use 'p'
  94. suffix for a planar sample format.
  95. @var{channel_layout} specifies the channel layout, and can be a string
  96. or the corresponding number value defined in @file{libavutil/audioconvert.h}.
  97. The special parameter "auto", signifies that the filter will
  98. automatically select the output format depending on the output filter.
  99. Some examples follow.
  100. @itemize
  101. @item
  102. Convert input to float, planar, stereo:
  103. @example
  104. aconvert=fltp:stereo
  105. @end example
  106. @item
  107. Convert input to unsigned 8-bit, automatically select out channel layout:
  108. @example
  109. aconvert=u8:auto
  110. @end example
  111. @end itemize
  112. @section aformat
  113. Convert the input audio to one of the specified formats. The framework will
  114. negotiate the most appropriate format to minimize conversions.
  115. The filter accepts three lists of formats, separated by ":", in the form:
  116. "@var{sample_formats}:@var{channel_layouts}:@var{packing_formats}".
  117. Elements in each list are separated by "," which has to be escaped in the
  118. filtergraph specification.
  119. The special parameter "all", in place of a list of elements, signifies all
  120. supported formats.
  121. Some examples follow:
  122. @example
  123. aformat=u8\\,s16:mono:packed
  124. aformat=s16:mono\\,stereo:all
  125. @end example
  126. @section amerge
  127. Merge two audio streams into a single multi-channel stream.
  128. This filter does not need any argument.
  129. If the channel layouts of the inputs are disjoint, and therefore compatible,
  130. the channel layout of the output will be set accordingly and the channels
  131. will be reordered as necessary. If the channel layouts of the inputs are not
  132. disjoint, the output will have all the channels of the first input then all
  133. the channels of the second input, in that order, and the channel layout of
  134. the output will be the default value corresponding to the total number of
  135. channels.
  136. For example, if the first input is in 2.1 (FL+FR+LF) and the second input
  137. is FC+BL+BR, then the output will be in 5.1, with the channels in the
  138. following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
  139. first input, b1 is the first channel of the second input).
  140. On the other hand, if both input are in stereo, the output channels will be
  141. in the default order: a1, a2, b1, b2, and the channel layout will be
  142. arbitrarily set to 4.0, which may or may not be the expected value.
  143. Both inputs must have the same sample rate, format and packing.
  144. If inputs do not have the same duration, the output will stop with the
  145. shortest.
  146. Example: merge two mono files into a stereo stream:
  147. @example
  148. amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
  149. @end example
  150. If you need to do multiple merges (for instance multiple mono audio streams in
  151. a single video media), you can do:
  152. @example
  153. ffmpeg -f lavfi -i "
  154. amovie=input.mkv:si=0 [a0];
  155. amovie=input.mkv:si=1 [a1];
  156. amovie=input.mkv:si=2 [a2];
  157. amovie=input.mkv:si=3 [a3];
  158. amovie=input.mkv:si=4 [a4];
  159. amovie=input.mkv:si=5 [a5];
  160. [a0][a1] amerge [x0];
  161. [x0][a2] amerge [x1];
  162. [x1][a3] amerge [x2];
  163. [x2][a4] amerge [x3];
  164. [x3][a5] amerge" -c:a pcm_s16le output.mkv
  165. @end example
  166. @section anull
  167. Pass the audio source unchanged to the output.
  168. @section aresample
  169. Resample the input audio to the specified sample rate.
  170. The filter accepts exactly one parameter, the output sample rate. If not
  171. specified then the filter will automatically convert between its input
  172. and output sample rates.
  173. For example, to resample the input audio to 44100Hz:
  174. @example
  175. aresample=44100
  176. @end example
  177. @section ashowinfo
  178. Show a line containing various information for each input audio frame.
  179. The input audio is not modified.
  180. The shown line contains a sequence of key/value pairs of the form
  181. @var{key}:@var{value}.
  182. A description of each shown parameter follows:
  183. @table @option
  184. @item n
  185. sequential number of the input frame, starting from 0
  186. @item pts
  187. presentation TimeStamp of the input frame, expressed as a number of
  188. time base units. The time base unit depends on the filter input pad, and
  189. is usually 1/@var{sample_rate}.
  190. @item pts_time
  191. presentation TimeStamp of the input frame, expressed as a number of
  192. seconds
  193. @item pos
  194. position of the frame in the input stream, -1 if this information in
  195. unavailable and/or meaningless (for example in case of synthetic audio)
  196. @item fmt
  197. sample format name
  198. @item chlayout
  199. channel layout description
  200. @item nb_samples
  201. number of samples (per each channel) contained in the filtered frame
  202. @item rate
  203. sample rate for the audio frame
  204. @item planar
  205. if the packing format is planar, 0 if packed
  206. @item checksum
  207. Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame
  208. @item plane_checksum
  209. Adler-32 checksum (printed in hexadecimal) for each input frame plane,
  210. expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3} @var{c4} @var{c5}
  211. @var{c6} @var{c7}]"
  212. @end table
  213. @section asplit
  214. Pass on the input audio to two outputs. Both outputs are identical to
  215. the input audio.
  216. For example:
  217. @example
  218. [in] asplit[out0], showaudio[out1]
  219. @end example
  220. will create two separate outputs from the same input, one cropped and
  221. one padded.
  222. @section astreamsync
  223. Forward two audio streams and control the order the buffers are forwarded.
  224. The argument to the filter is an expression deciding which stream should be
  225. forwarded next: if the result is negative, the first stream is forwarded; if
  226. the result is positive or zero, the second stream is forwarded. It can use
  227. the following variables:
  228. @table @var
  229. @item b1 b2
  230. number of buffers forwarded so far on each stream
  231. @item s1 s2
  232. number of samples forwarded so far on each stream
  233. @item t1 t2
  234. current timestamp of each stream
  235. @end table
  236. The default value is @code{t1-t2}, which means to always forward the stream
  237. that has a smaller timestamp.
  238. Example: stress-test @code{amerge} by randomly sending buffers on the wrong
  239. input, while avoiding too much of a desynchronization:
  240. @example
  241. amovie=file.ogg [a] ; amovie=file.mp3 [b] ;
  242. [a] [b] astreamsync=(2*random(1))-1+tanh(5*(t1-t2)) [a2] [b2] ;
  243. [a2] [b2] amerge
  244. @end example
  245. @section earwax
  246. Make audio easier to listen to on headphones.
  247. This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
  248. so that when listened to on headphones the stereo image is moved from
  249. inside your head (standard for headphones) to outside and in front of
  250. the listener (standard for speakers).
  251. Ported from SoX.
  252. @section pan
  253. Mix channels with specific gain levels. The filter accepts the output
  254. channel layout followed by a set of channels definitions.
  255. This filter is also designed to remap efficiently the channels of an audio
  256. stream.
  257. The filter accepts parameters of the form:
  258. "@var{l}:@var{outdef}:@var{outdef}:..."
  259. @table @option
  260. @item l
  261. output channel layout or number of channels
  262. @item outdef
  263. output channel specification, of the form:
  264. "@var{out_name}=[@var{gain}*]@var{in_name}[+[@var{gain}*]@var{in_name}...]"
  265. @item out_name
  266. output channel to define, either a channel name (FL, FR, etc.) or a channel
  267. number (c0, c1, etc.)
  268. @item gain
  269. multiplicative coefficient for the channel, 1 leaving the volume unchanged
  270. @item in_name
  271. input channel to use, see out_name for details; it is not possible to mix
  272. named and numbered input channels
  273. @end table
  274. If the `=' in a channel specification is replaced by `<', then the gains for
  275. that specification will be renormalized so that the total is 1, thus
  276. avoiding clipping noise.
  277. @subsection Mixing examples
  278. For example, if you want to down-mix from stereo to mono, but with a bigger
  279. factor for the left channel:
  280. @example
  281. pan=1:c0=0.9*c0+0.1*c1
  282. @end example
  283. A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
  284. 7-channels surround:
  285. @example
  286. pan=stereo: FL < FL + 0.5*FC + 0.6*BL + 0.6*SL : FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
  287. @end example
  288. Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
  289. that should be preferred (see "-ac" option) unless you have very specific
  290. needs.
  291. @subsection Remapping examples
  292. The channel remapping will be effective if, and only if:
  293. @itemize
  294. @item gain coefficients are zeroes or ones,
  295. @item only one input per channel output,
  296. @end itemize
  297. If all these conditions are satisfied, the filter will notify the user ("Pure
  298. channel mapping detected"), and use an optimized and lossless method to do the
  299. remapping.
  300. For example, if you have a 5.1 source and want a stereo audio stream by
  301. dropping the extra channels:
  302. @example
  303. pan="stereo: c0=FL : c1=FR"
  304. @end example
  305. Given the same source, you can also switch front left and front right channels
  306. and keep the input channel layout:
  307. @example
  308. pan="5.1: c0=c1 : c1=c0 : c2=c2 : c3=c3 : c4=c4 : c5=c5"
  309. @end example
  310. If the input is a stereo audio stream, you can mute the front left channel (and
  311. still keep the stereo channel layout) with:
  312. @example
  313. pan="stereo:c1=c1"
  314. @end example
  315. Still with a stereo audio stream input, you can copy the right channel in both
  316. front left and right:
  317. @example
  318. pan="stereo: c0=FR : c1=FR"
  319. @end example
  320. @section silencedetect
  321. Detect silence in an audio stream.
  322. This filter logs a message when it detects that the input audio volume is less
  323. or equal to a noise tolerance value for a duration greater or equal to the
  324. minimum detected noise duration.
  325. The printed times and duration are expressed in seconds.
  326. @table @option
  327. @item duration, d
  328. Set silence duration until notification (default is 2 seconds).
  329. @item noise, n
  330. Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
  331. specified value) or amplitude ratio. Default is -60dB, or 0.001.
  332. @end table
  333. Detect 5 seconds of silence with -50dB noise tolerance:
  334. @example
  335. silencedetect=n=-50dB:d=5
  336. @end example
  337. Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
  338. tolerance in @file{silence.mp3}:
  339. @example
  340. ffmpeg -f lavfi -i amovie=silence.mp3,silencedetect=noise=0.0001 -f null -
  341. @end example
  342. @section volume
  343. Adjust the input audio volume.
  344. The filter accepts exactly one parameter @var{vol}, which expresses
  345. how the audio volume will be increased or decreased.
  346. Output values are clipped to the maximum value.
  347. If @var{vol} is expressed as a decimal number, the output audio
  348. volume is given by the relation:
  349. @example
  350. @var{output_volume} = @var{vol} * @var{input_volume}
  351. @end example
  352. If @var{vol} is expressed as a decimal number followed by the string
  353. "dB", the value represents the requested change in decibels of the
  354. input audio power, and the output audio volume is given by the
  355. relation:
  356. @example
  357. @var{output_volume} = 10^(@var{vol}/20) * @var{input_volume}
  358. @end example
  359. Otherwise @var{vol} is considered an expression and its evaluated
  360. value is used for computing the output audio volume according to the
  361. first relation.
  362. Default value for @var{vol} is 1.0.
  363. @subsection Examples
  364. @itemize
  365. @item
  366. Half the input audio volume:
  367. @example
  368. volume=0.5
  369. @end example
  370. The above example is equivalent to:
  371. @example
  372. volume=1/2
  373. @end example
  374. @item
  375. Decrease input audio power by 12 decibels:
  376. @example
  377. volume=-12dB
  378. @end example
  379. @end itemize
  380. @c man end AUDIO FILTERS
  381. @chapter Audio Sources
  382. @c man begin AUDIO SOURCES
  383. Below is a description of the currently available audio sources.
  384. @section abuffer
  385. Buffer audio frames, and make them available to the filter chain.
  386. This source is mainly intended for a programmatic use, in particular
  387. through the interface defined in @file{libavfilter/asrc_abuffer.h}.
  388. It accepts the following mandatory parameters:
  389. @var{sample_rate}:@var{sample_fmt}:@var{channel_layout}:@var{packing}
  390. @table @option
  391. @item sample_rate
  392. The sample rate of the incoming audio buffers.
  393. @item sample_fmt
  394. The sample format of the incoming audio buffers.
  395. Either a sample format name or its corresponging integer representation from
  396. the enum AVSampleFormat in @file{libavutil/samplefmt.h}
  397. @item channel_layout
  398. The channel layout of the incoming audio buffers.
  399. Either a channel layout name from channel_layout_map in
  400. @file{libavutil/audioconvert.c} or its corresponding integer representation
  401. from the AV_CH_LAYOUT_* macros in @file{libavutil/audioconvert.h}
  402. @item packing
  403. Either "packed" or "planar", or their integer representation: 0 or 1
  404. respectively.
  405. @end table
  406. For example:
  407. @example
  408. abuffer=44100:s16:stereo:planar
  409. @end example
  410. will instruct the source to accept planar 16bit signed stereo at 44100Hz.
  411. Since the sample format with name "s16" corresponds to the number
  412. 1 and the "stereo" channel layout corresponds to the value 0x3, this is
  413. equivalent to:
  414. @example
  415. abuffer=44100:1:0x3:1
  416. @end example
  417. @section aevalsrc
  418. Generate an audio signal specified by an expression.
  419. This source accepts in input one or more expressions (one for each
  420. channel), which are evaluated and used to generate a corresponding
  421. audio signal.
  422. It accepts the syntax: @var{exprs}[::@var{options}].
  423. @var{exprs} is a list of expressions separated by ":", one for each
  424. separate channel. The output channel layout depends on the number of
  425. provided expressions, up to 8 channels are supported.
  426. @var{options} is an optional sequence of @var{key}=@var{value} pairs,
  427. separated by ":".
  428. The description of the accepted options follows.
  429. @table @option
  430. @item duration, d
  431. Set the minimum duration of the sourced audio. See the function
  432. @code{av_parse_time()} for the accepted format.
  433. Note that the resulting duration may be greater than the specified
  434. duration, as the generated audio is always cut at the end of a
  435. complete frame.
  436. If not specified, or the expressed duration is negative, the audio is
  437. supposed to be generated forever.
  438. @item nb_samples, n
  439. Set the number of samples per channel per each output frame,
  440. default to 1024.
  441. @item sample_rate, s
  442. Specify the sample rate, default to 44100.
  443. @end table
  444. Each expression in @var{exprs} can contain the following constants:
  445. @table @option
  446. @item n
  447. number of the evaluated sample, starting from 0
  448. @item t
  449. time of the evaluated sample expressed in seconds, starting from 0
  450. @item s
  451. sample rate
  452. @end table
  453. @subsection Examples
  454. @itemize
  455. @item
  456. Generate silence:
  457. @example
  458. aevalsrc=0
  459. @end example
  460. @item
  461. Generate a sin signal with frequency of 440 Hz, set sample rate to
  462. 8000 Hz:
  463. @example
  464. aevalsrc="sin(440*2*PI*t)::s=8000"
  465. @end example
  466. @item
  467. Generate white noise:
  468. @example
  469. aevalsrc="-2+random(0)"
  470. @end example
  471. @item
  472. Generate an amplitude modulated signal:
  473. @example
  474. aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
  475. @end example
  476. @item
  477. Generate 2.5 Hz binaural beats on a 360 Hz carrier:
  478. @example
  479. aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) : 0.1*sin(2*PI*(360+2.5/2)*t)"
  480. @end example
  481. @end itemize
  482. @section amovie
  483. Read an audio stream from a movie container.
  484. It accepts the syntax: @var{movie_name}[:@var{options}] where
  485. @var{movie_name} is the name of the resource to read (not necessarily
  486. a file but also a device or a stream accessed through some protocol),
  487. and @var{options} is an optional sequence of @var{key}=@var{value}
  488. pairs, separated by ":".
  489. The description of the accepted options follows.
  490. @table @option
  491. @item format_name, f
  492. Specify the format assumed for the movie to read, and can be either
  493. the name of a container or an input device. If not specified the
  494. format is guessed from @var{movie_name} or by probing.
  495. @item seek_point, sp
  496. Specify the seek point in seconds, the frames will be output
  497. starting from this seek point, the parameter is evaluated with
  498. @code{av_strtod} so the numerical value may be suffixed by an IS
  499. postfix. Default value is "0".
  500. @item stream_index, si
  501. Specify the index of the audio stream to read. If the value is -1,
  502. the best suited audio stream will be automatically selected. Default
  503. value is "-1".
  504. @end table
  505. @section anullsrc
  506. Null audio source, return unprocessed audio frames. It is mainly useful
  507. as a template and to be employed in analysis / debugging tools, or as
  508. the source for filters which ignore the input data (for example the sox
  509. synth filter).
  510. It accepts an optional sequence of @var{key}=@var{value} pairs,
  511. separated by ":".
  512. The description of the accepted options follows.
  513. @table @option
  514. @item sample_rate, s
  515. Specify the sample rate, and defaults to 44100.
  516. @item channel_layout, cl
  517. Specify the channel layout, and can be either an integer or a string
  518. representing a channel layout. The default value of @var{channel_layout}
  519. is "stereo".
  520. Check the channel_layout_map definition in
  521. @file{libavcodec/audioconvert.c} for the mapping between strings and
  522. channel layout values.
  523. @item nb_samples, n
  524. Set the number of samples per requested frames.
  525. @end table
  526. Follow some examples:
  527. @example
  528. # set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
  529. anullsrc=r=48000:cl=4
  530. # same as
  531. anullsrc=r=48000:cl=mono
  532. @end example
  533. @c man end AUDIO SOURCES
  534. @chapter Audio Sinks
  535. @c man begin AUDIO SINKS
  536. Below is a description of the currently available audio sinks.
  537. @section abuffersink
  538. Buffer audio frames, and make them available to the end of filter chain.
  539. This sink is mainly intended for programmatic use, in particular
  540. through the interface defined in @file{libavfilter/buffersink.h}.
  541. It requires a pointer to an AVABufferSinkContext structure, which
  542. defines the incoming buffers' formats, to be passed as the opaque
  543. parameter to @code{avfilter_init_filter} for initialization.
  544. @section anullsink
  545. Null audio sink, do absolutely nothing with the input audio. It is
  546. mainly useful as a template and to be employed in analysis / debugging
  547. tools.
  548. @c man end AUDIO SINKS
  549. @chapter Video Filters
  550. @c man begin VIDEO FILTERS
  551. When you configure your FFmpeg build, you can disable any of the
  552. existing filters using @code{--disable-filters}.
  553. The configure output will show the video filters included in your
  554. build.
  555. Below is a description of the currently available video filters.
  556. @section ass
  557. Draw ASS (Advanced Substation Alpha) subtitles on top of input video
  558. using the libass library.
  559. To enable compilation of this filter you need to configure FFmpeg with
  560. @code{--enable-libass}.
  561. This filter accepts the syntax: @var{ass_filename}[:@var{options}],
  562. where @var{ass_filename} is the filename of the ASS file to read, and
  563. @var{options} is an optional sequence of @var{key}=@var{value} pairs,
  564. separated by ":".
  565. A description of the accepted options follows.
  566. @table @option
  567. @item original_size
  568. Specifies the size of the original video, the video for which the ASS file
  569. was composed. Due to a misdesign in ASS aspect ratio arithmetic, this is
  570. necessary to correctly scale the fonts if the aspect ratio has been changed.
  571. @end table
  572. For example, to render the file @file{sub.ass} on top of the input
  573. video, use the command:
  574. @example
  575. ass=sub.ass
  576. @end example
  577. @section bbox
  578. Compute the bounding box for the non-black pixels in the input frame
  579. luminance plane.
  580. This filter computes the bounding box containing all the pixels with a
  581. luminance value greater than the minimum allowed value.
  582. The parameters describing the bounding box are printed on the filter
  583. log.
  584. @section blackdetect
  585. Detect video intervals that are (almost) completely black. Can be
  586. useful to detect chapter transitions, commercials, or invalid
  587. recordings. Output lines contains the time for the start, end and
  588. duration of the detected black interval expressed in seconds.
  589. In order to display the output lines, you need to set the loglevel at
  590. least to the AV_LOG_INFO value.
  591. This filter accepts a list of options in the form of
  592. @var{key}=@var{value} pairs separated by ":". A description of the
  593. accepted options follows.
  594. @table @option
  595. @item black_min_duration, d
  596. Set the minimum detected black duration expressed in seconds. It must
  597. be a non-negative floating point number.
  598. Default value is 2.0.
  599. @item picture_black_ratio_th, pic_th
  600. Set the threshold for considering a picture "black".
  601. Express the minimum value for the ratio:
  602. @example
  603. @var{nb_black_pixels} / @var{nb_pixels}
  604. @end example
  605. for which a picture is considered black.
  606. Default value is 0.98.
  607. @item pixel_black_th, pix_th
  608. Set the threshold for considering a pixel "black".
  609. The threshold expresses the maximum pixel luminance value for which a
  610. pixel is considered "black". The provided value is scaled according to
  611. the following equation:
  612. @example
  613. @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
  614. @end example
  615. @var{luminance_range_size} and @var{luminance_minimum_value} depend on
  616. the input video format, the range is [0-255] for YUV full-range
  617. formats and [16-235] for YUV non full-range formats.
  618. Default value is 0.10.
  619. @end table
  620. The following example sets the maximum pixel threshold to the minimum
  621. value, and detects only black intervals of 2 or more seconds:
  622. @example
  623. blackdetect=d=2:pix_th=0.00
  624. @end example
  625. @section blackframe
  626. Detect frames that are (almost) completely black. Can be useful to
  627. detect chapter transitions or commercials. Output lines consist of
  628. the frame number of the detected frame, the percentage of blackness,
  629. the position in the file if known or -1 and the timestamp in seconds.
  630. In order to display the output lines, you need to set the loglevel at
  631. least to the AV_LOG_INFO value.
  632. The filter accepts the syntax:
  633. @example
  634. blackframe[=@var{amount}:[@var{threshold}]]
  635. @end example
  636. @var{amount} is the percentage of the pixels that have to be below the
  637. threshold, and defaults to 98.
  638. @var{threshold} is the threshold below which a pixel value is
  639. considered black, and defaults to 32.
  640. @section boxblur
  641. Apply boxblur algorithm to the input video.
  642. This filter accepts the parameters:
  643. @var{luma_radius}:@var{luma_power}:@var{chroma_radius}:@var{chroma_power}:@var{alpha_radius}:@var{alpha_power}
  644. Chroma and alpha parameters are optional, if not specified they default
  645. to the corresponding values set for @var{luma_radius} and
  646. @var{luma_power}.
  647. @var{luma_radius}, @var{chroma_radius}, and @var{alpha_radius} represent
  648. the radius in pixels of the box used for blurring the corresponding
  649. input plane. They are expressions, and can contain the following
  650. constants:
  651. @table @option
  652. @item w, h
  653. the input width and height in pixels
  654. @item cw, ch
  655. the input chroma image width and height in pixels
  656. @item hsub, vsub
  657. horizontal and vertical chroma subsample values. For example for the
  658. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  659. @end table
  660. The radius must be a non-negative number, and must not be greater than
  661. the value of the expression @code{min(w,h)/2} for the luma and alpha planes,
  662. and of @code{min(cw,ch)/2} for the chroma planes.
  663. @var{luma_power}, @var{chroma_power}, and @var{alpha_power} represent
  664. how many times the boxblur filter is applied to the corresponding
  665. plane.
  666. Some examples follow:
  667. @itemize
  668. @item
  669. Apply a boxblur filter with luma, chroma, and alpha radius
  670. set to 2:
  671. @example
  672. boxblur=2:1
  673. @end example
  674. @item
  675. Set luma radius to 2, alpha and chroma radius to 0
  676. @example
  677. boxblur=2:1:0:0:0:0
  678. @end example
  679. @item
  680. Set luma and chroma radius to a fraction of the video dimension
  681. @example
  682. boxblur=min(h\,w)/10:1:min(cw\,ch)/10:1
  683. @end example
  684. @end itemize
  685. @section colormatrix
  686. The colormatrix filter allows conversion between any of the following color
  687. space: BT.709 (@var{bt709}), BT.601 (@var{bt601}), SMPTE-240M (@var{smpte240m})
  688. and FCC (@var{fcc}).
  689. The syntax of the parameters is @var{source}:@var{destination}:
  690. @example
  691. colormatrix=bt601:smpte240m
  692. @end example
  693. @section copy
  694. Copy the input source unchanged to the output. Mainly useful for
  695. testing purposes.
  696. @section crop
  697. Crop the input video to @var{out_w}:@var{out_h}:@var{x}:@var{y}:@var{keep_aspect}
  698. The @var{keep_aspect} parameter is optional, if specified and set to a
  699. non-zero value will force the output display aspect ratio to be the
  700. same of the input, by changing the output sample aspect ratio.
  701. The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
  702. expressions containing the following constants:
  703. @table @option
  704. @item x, y
  705. the computed values for @var{x} and @var{y}. They are evaluated for
  706. each new frame.
  707. @item in_w, in_h
  708. the input width and height
  709. @item iw, ih
  710. same as @var{in_w} and @var{in_h}
  711. @item out_w, out_h
  712. the output (cropped) width and height
  713. @item ow, oh
  714. same as @var{out_w} and @var{out_h}
  715. @item a
  716. same as @var{iw} / @var{ih}
  717. @item sar
  718. input sample aspect ratio
  719. @item dar
  720. input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
  721. @item hsub, vsub
  722. horizontal and vertical chroma subsample values. For example for the
  723. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  724. @item n
  725. the number of input frame, starting from 0
  726. @item pos
  727. the position in the file of the input frame, NAN if unknown
  728. @item t
  729. timestamp expressed in seconds, NAN if the input timestamp is unknown
  730. @end table
  731. The @var{out_w} and @var{out_h} parameters specify the expressions for
  732. the width and height of the output (cropped) video. They are
  733. evaluated just at the configuration of the filter.
  734. The default value of @var{out_w} is "in_w", and the default value of
  735. @var{out_h} is "in_h".
  736. The expression for @var{out_w} may depend on the value of @var{out_h},
  737. and the expression for @var{out_h} may depend on @var{out_w}, but they
  738. cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
  739. evaluated after @var{out_w} and @var{out_h}.
  740. The @var{x} and @var{y} parameters specify the expressions for the
  741. position of the top-left corner of the output (non-cropped) area. They
  742. are evaluated for each frame. If the evaluated value is not valid, it
  743. is approximated to the nearest valid value.
  744. The default value of @var{x} is "(in_w-out_w)/2", and the default
  745. value for @var{y} is "(in_h-out_h)/2", which set the cropped area at
  746. the center of the input image.
  747. The expression for @var{x} may depend on @var{y}, and the expression
  748. for @var{y} may depend on @var{x}.
  749. Follow some examples:
  750. @example
  751. # crop the central input area with size 100x100
  752. crop=100:100
  753. # crop the central input area with size 2/3 of the input video
  754. "crop=2/3*in_w:2/3*in_h"
  755. # crop the input video central square
  756. crop=in_h
  757. # delimit the rectangle with the top-left corner placed at position
  758. # 100:100 and the right-bottom corner corresponding to the right-bottom
  759. # corner of the input image.
  760. crop=in_w-100:in_h-100:100:100
  761. # crop 10 pixels from the left and right borders, and 20 pixels from
  762. # the top and bottom borders
  763. "crop=in_w-2*10:in_h-2*20"
  764. # keep only the bottom right quarter of the input image
  765. "crop=in_w/2:in_h/2:in_w/2:in_h/2"
  766. # crop height for getting Greek harmony
  767. "crop=in_w:1/PHI*in_w"
  768. # trembling effect
  769. "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)"
  770. # erratic camera effect depending on timestamp
  771. "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)"
  772. # set x depending on the value of y
  773. "crop=in_w/2:in_h/2:y:10+10*sin(n/10)"
  774. @end example
  775. @section cropdetect
  776. Auto-detect crop size.
  777. Calculate necessary cropping parameters and prints the recommended
  778. parameters through the logging system. The detected dimensions
  779. correspond to the non-black area of the input video.
  780. It accepts the syntax:
  781. @example
  782. cropdetect[=@var{limit}[:@var{round}[:@var{reset}]]]
  783. @end example
  784. @table @option
  785. @item limit
  786. Threshold, which can be optionally specified from nothing (0) to
  787. everything (255), defaults to 24.
  788. @item round
  789. Value which the width/height should be divisible by, defaults to
  790. 16. The offset is automatically adjusted to center the video. Use 2 to
  791. get only even dimensions (needed for 4:2:2 video). 16 is best when
  792. encoding to most video codecs.
  793. @item reset
  794. Counter that determines after how many frames cropdetect will reset
  795. the previously detected largest video area and start over to detect
  796. the current optimal crop area. Defaults to 0.
  797. This can be useful when channel logos distort the video area. 0
  798. indicates never reset and return the largest area encountered during
  799. playback.
  800. @end table
  801. @section delogo
  802. Suppress a TV station logo by a simple interpolation of the surrounding
  803. pixels. Just set a rectangle covering the logo and watch it disappear
  804. (and sometimes something even uglier appear - your mileage may vary).
  805. The filter accepts parameters as a string of the form
  806. "@var{x}:@var{y}:@var{w}:@var{h}:@var{band}", or as a list of
  807. @var{key}=@var{value} pairs, separated by ":".
  808. The description of the accepted parameters follows.
  809. @table @option
  810. @item x, y
  811. Specify the top left corner coordinates of the logo. They must be
  812. specified.
  813. @item w, h
  814. Specify the width and height of the logo to clear. They must be
  815. specified.
  816. @item band, t
  817. Specify the thickness of the fuzzy edge of the rectangle (added to
  818. @var{w} and @var{h}). The default value is 4.
  819. @item show
  820. When set to 1, a green rectangle is drawn on the screen to simplify
  821. finding the right @var{x}, @var{y}, @var{w}, @var{h} parameters, and
  822. @var{band} is set to 4. The default value is 0.
  823. @end table
  824. Some examples follow.
  825. @itemize
  826. @item
  827. Set a rectangle covering the area with top left corner coordinates 0,0
  828. and size 100x77, setting a band of size 10:
  829. @example
  830. delogo=0:0:100:77:10
  831. @end example
  832. @item
  833. As the previous example, but use named options:
  834. @example
  835. delogo=x=0:y=0:w=100:h=77:band=10
  836. @end example
  837. @end itemize
  838. @section deshake
  839. Attempt to fix small changes in horizontal and/or vertical shift. This
  840. filter helps remove camera shake from hand-holding a camera, bumping a
  841. tripod, moving on a vehicle, etc.
  842. The filter accepts parameters as a string of the form
  843. "@var{x}:@var{y}:@var{w}:@var{h}:@var{rx}:@var{ry}:@var{edge}:@var{blocksize}:@var{contrast}:@var{search}:@var{filename}"
  844. A description of the accepted parameters follows.
  845. @table @option
  846. @item x, y, w, h
  847. Specify a rectangular area where to limit the search for motion
  848. vectors.
  849. If desired the search for motion vectors can be limited to a
  850. rectangular area of the frame defined by its top left corner, width
  851. and height. These parameters have the same meaning as the drawbox
  852. filter which can be used to visualise the position of the bounding
  853. box.
  854. This is useful when simultaneous movement of subjects within the frame
  855. might be confused for camera motion by the motion vector search.
  856. If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
  857. then the full frame is used. This allows later options to be set
  858. without specifying the bounding box for the motion vector search.
  859. Default - search the whole frame.
  860. @item rx, ry
  861. Specify the maximum extent of movement in x and y directions in the
  862. range 0-64 pixels. Default 16.
  863. @item edge
  864. Specify how to generate pixels to fill blanks at the edge of the
  865. frame. An integer from 0 to 3 as follows:
  866. @table @option
  867. @item 0
  868. Fill zeroes at blank locations
  869. @item 1
  870. Original image at blank locations
  871. @item 2
  872. Extruded edge value at blank locations
  873. @item 3
  874. Mirrored edge at blank locations
  875. @end table
  876. The default setting is mirror edge at blank locations.
  877. @item blocksize
  878. Specify the blocksize to use for motion search. Range 4-128 pixels,
  879. default 8.
  880. @item contrast
  881. Specify the contrast threshold for blocks. Only blocks with more than
  882. the specified contrast (difference between darkest and lightest
  883. pixels) will be considered. Range 1-255, default 125.
  884. @item search
  885. Specify the search strategy 0 = exhaustive search, 1 = less exhaustive
  886. search. Default - exhaustive search.
  887. @item filename
  888. If set then a detailed log of the motion search is written to the
  889. specified file.
  890. @end table
  891. @section drawbox
  892. Draw a colored box on the input image.
  893. It accepts the syntax:
  894. @example
  895. drawbox=@var{x}:@var{y}:@var{width}:@var{height}:@var{color}
  896. @end example
  897. @table @option
  898. @item x, y
  899. Specify the top left corner coordinates of the box. Default to 0.
  900. @item width, height
  901. Specify the width and height of the box, if 0 they are interpreted as
  902. the input width and height. Default to 0.
  903. @item color
  904. Specify the color of the box to write, it can be the name of a color
  905. (case insensitive match) or a 0xRRGGBB[AA] sequence.
  906. @end table
  907. Follow some examples:
  908. @example
  909. # draw a black box around the edge of the input image
  910. drawbox
  911. # draw a box with color red and an opacity of 50%
  912. drawbox=10:20:200:60:red@@0.5"
  913. @end example
  914. @section drawtext
  915. Draw text string or text from specified file on top of video using the
  916. libfreetype library.
  917. To enable compilation of this filter you need to configure FFmpeg with
  918. @code{--enable-libfreetype}.
  919. The filter also recognizes strftime() sequences in the provided text
  920. and expands them accordingly. Check the documentation of strftime().
  921. The filter accepts parameters as a list of @var{key}=@var{value} pairs,
  922. separated by ":".
  923. The description of the accepted parameters follows.
  924. @table @option
  925. @item fontfile
  926. The font file to be used for drawing text. Path must be included.
  927. This parameter is mandatory.
  928. @item text
  929. The text string to be drawn. The text must be a sequence of UTF-8
  930. encoded characters.
  931. This parameter is mandatory if no file is specified with the parameter
  932. @var{textfile}.
  933. @item textfile
  934. A text file containing text to be drawn. The text must be a sequence
  935. of UTF-8 encoded characters.
  936. This parameter is mandatory if no text string is specified with the
  937. parameter @var{text}.
  938. If both text and textfile are specified, an error is thrown.
  939. @item x, y
  940. The expressions which specify the offsets where text will be drawn
  941. within the video frame. They are relative to the top/left border of the
  942. output image.
  943. The default value of @var{x} and @var{y} is "0".
  944. See below for the list of accepted constants.
  945. @item fontsize
  946. The font size to be used for drawing text.
  947. The default value of @var{fontsize} is 16.
  948. @item fontcolor
  949. The color to be used for drawing fonts.
  950. Either a string (e.g. "red") or in 0xRRGGBB[AA] format
  951. (e.g. "0xff000033"), possibly followed by an alpha specifier.
  952. The default value of @var{fontcolor} is "black".
  953. @item boxcolor
  954. The color to be used for drawing box around text.
  955. Either a string (e.g. "yellow") or in 0xRRGGBB[AA] format
  956. (e.g. "0xff00ff"), possibly followed by an alpha specifier.
  957. The default value of @var{boxcolor} is "white".
  958. @item box
  959. Used to draw a box around text using background color.
  960. Value should be either 1 (enable) or 0 (disable).
  961. The default value of @var{box} is 0.
  962. @item shadowx, shadowy
  963. The x and y offsets for the text shadow position with respect to the
  964. position of the text. They can be either positive or negative
  965. values. Default value for both is "0".
  966. @item shadowcolor
  967. The color to be used for drawing a shadow behind the drawn text. It
  968. can be a color name (e.g. "yellow") or a string in the 0xRRGGBB[AA]
  969. form (e.g. "0xff00ff"), possibly followed by an alpha specifier.
  970. The default value of @var{shadowcolor} is "black".
  971. @item ft_load_flags
  972. Flags to be used for loading the fonts.
  973. The flags map the corresponding flags supported by libfreetype, and are
  974. a combination of the following values:
  975. @table @var
  976. @item default
  977. @item no_scale
  978. @item no_hinting
  979. @item render
  980. @item no_bitmap
  981. @item vertical_layout
  982. @item force_autohint
  983. @item crop_bitmap
  984. @item pedantic
  985. @item ignore_global_advance_width
  986. @item no_recurse
  987. @item ignore_transform
  988. @item monochrome
  989. @item linear_design
  990. @item no_autohint
  991. @item end table
  992. @end table
  993. Default value is "render".
  994. For more information consult the documentation for the FT_LOAD_*
  995. libfreetype flags.
  996. @item tabsize
  997. The size in number of spaces to use for rendering the tab.
  998. Default value is 4.
  999. @item fix_bounds
  1000. If true, check and fix text coords to avoid clipping.
  1001. @end table
  1002. The parameters for @var{x} and @var{y} are expressions containing the
  1003. following constants:
  1004. @table @option
  1005. @item W, H
  1006. the input width and height
  1007. @item tw, text_w
  1008. the width of the rendered text
  1009. @item th, text_h
  1010. the height of the rendered text
  1011. @item lh, line_h
  1012. the height of each text line
  1013. @item sar
  1014. input sample aspect ratio
  1015. @item dar
  1016. input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
  1017. @item hsub, vsub
  1018. horizontal and vertical chroma subsample values. For example for the
  1019. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  1020. @item max_glyph_w
  1021. maximum glyph width, that is the maximum width for all the glyphs
  1022. contained in the rendered text
  1023. @item max_glyph_h
  1024. maximum glyph height, that is the maximum height for all the glyphs
  1025. contained in the rendered text, it is equivalent to @var{ascent} -
  1026. @var{descent}.
  1027. @item max_glyph_a, ascent
  1028. the maximum distance from the baseline to the highest/upper grid
  1029. coordinate used to place a glyph outline point, for all the rendered
  1030. glyphs.
  1031. It is a positive value, due to the grid's orientation with the Y axis
  1032. upwards.
  1033. @item max_glyph_d, descent
  1034. the maximum distance from the baseline to the lowest grid coordinate
  1035. used to place a glyph outline point, for all the rendered glyphs.
  1036. This is a negative value, due to the grid's orientation, with the Y axis
  1037. upwards.
  1038. @item n
  1039. the number of input frame, starting from 0
  1040. @item t
  1041. timestamp expressed in seconds, NAN if the input timestamp is unknown
  1042. @item timecode
  1043. initial timecode representation in "hh:mm:ss[:;.]ff" format. It can be used
  1044. with or without text parameter. @var{rate} option must be specified.
  1045. @item r, rate
  1046. frame rate (timecode only)
  1047. @end table
  1048. If libavfilter was built with @code{--enable-fontconfig}, then
  1049. @option{fontfile} can be a fontconfig pattern or omitted.
  1050. Some examples follow.
  1051. @itemize
  1052. @item
  1053. Draw "Test Text" with font FreeSerif, using the default values for the
  1054. optional parameters.
  1055. @example
  1056. drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
  1057. @end example
  1058. @item
  1059. Draw 'Test Text' with font FreeSerif of size 24 at position x=100
  1060. and y=50 (counting from the top-left corner of the screen), text is
  1061. yellow with a red box around it. Both the text and the box have an
  1062. opacity of 20%.
  1063. @example
  1064. drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
  1065. x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
  1066. @end example
  1067. Note that the double quotes are not necessary if spaces are not used
  1068. within the parameter list.
  1069. @item
  1070. Show the text at the center of the video frame:
  1071. @example
  1072. drawtext=fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h-line_h)/2"
  1073. @end example
  1074. @item
  1075. Show a text line sliding from right to left in the last row of the video
  1076. frame. The file @file{LONG_LINE} is assumed to contain a single line
  1077. with no newlines.
  1078. @example
  1079. drawtext=fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t
  1080. @end example
  1081. @item
  1082. Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
  1083. @example
  1084. drawtext=fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
  1085. @end example
  1086. @item
  1087. Draw a single green letter "g", at the center of the input video.
  1088. The glyph baseline is placed at half screen height.
  1089. @example
  1090. drawtext=fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent
  1091. @end example
  1092. @item
  1093. Use fontconfig to set the font. Note that the colons need to be escaped.
  1094. @example
  1095. drawtext='fontfile=Linux Libertine O-40\\:style=Semibold:text=FFmpeg'
  1096. @end example
  1097. @end itemize
  1098. For more information about libfreetype, check:
  1099. @url{http://www.freetype.org/}.
  1100. For more information about fontconfig, check:
  1101. @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
  1102. @section fade
  1103. Apply fade-in/out effect to input video.
  1104. It accepts the parameters:
  1105. @var{type}:@var{start_frame}:@var{nb_frames}[:@var{options}]
  1106. @var{type} specifies if the effect type, can be either "in" for
  1107. fade-in, or "out" for a fade-out effect.
  1108. @var{start_frame} specifies the number of the start frame for starting
  1109. to apply the fade effect.
  1110. @var{nb_frames} specifies the number of frames for which the fade
  1111. effect has to last. At the end of the fade-in effect the output video
  1112. will have the same intensity as the input video, at the end of the
  1113. fade-out transition the output video will be completely black.
  1114. @var{options} is an optional sequence of @var{key}=@var{value} pairs,
  1115. separated by ":". The description of the accepted options follows.
  1116. @table @option
  1117. @item type, t
  1118. See @var{type}.
  1119. @item start_frame, s
  1120. See @var{start_frame}.
  1121. @item nb_frames, n
  1122. See @var{nb_frames}.
  1123. @item alpha
  1124. If set to 1, fade only alpha channel, if one exists on the input.
  1125. Default value is 0.
  1126. @end table
  1127. A few usage examples follow, usable too as test scenarios.
  1128. @example
  1129. # fade in first 30 frames of video
  1130. fade=in:0:30
  1131. # fade out last 45 frames of a 200-frame video
  1132. fade=out:155:45
  1133. # fade in first 25 frames and fade out last 25 frames of a 1000-frame video
  1134. fade=in:0:25, fade=out:975:25
  1135. # make first 5 frames black, then fade in from frame 5-24
  1136. fade=in:5:20
  1137. # fade in alpha over first 25 frames of video
  1138. fade=in:0:25:alpha=1
  1139. @end example
  1140. @section fieldorder
  1141. Transform the field order of the input video.
  1142. It accepts one parameter which specifies the required field order that
  1143. the input interlaced video will be transformed to. The parameter can
  1144. assume one of the following values:
  1145. @table @option
  1146. @item 0 or bff
  1147. output bottom field first
  1148. @item 1 or tff
  1149. output top field first
  1150. @end table
  1151. Default value is "tff".
  1152. Transformation is achieved by shifting the picture content up or down
  1153. by one line, and filling the remaining line with appropriate picture content.
  1154. This method is consistent with most broadcast field order converters.
  1155. If the input video is not flagged as being interlaced, or it is already
  1156. flagged as being of the required output field order then this filter does
  1157. not alter the incoming video.
  1158. This filter is very useful when converting to or from PAL DV material,
  1159. which is bottom field first.
  1160. For example:
  1161. @example
  1162. ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
  1163. @end example
  1164. @section fifo
  1165. Buffer input images and send them when they are requested.
  1166. This filter is mainly useful when auto-inserted by the libavfilter
  1167. framework.
  1168. The filter does not take parameters.
  1169. @section format
  1170. Convert the input video to one of the specified pixel formats.
  1171. Libavfilter will try to pick one that is supported for the input to
  1172. the next filter.
  1173. The filter accepts a list of pixel format names, separated by ":",
  1174. for example "yuv420p:monow:rgb24".
  1175. Some examples follow:
  1176. @example
  1177. # convert the input video to the format "yuv420p"
  1178. format=yuv420p
  1179. # convert the input video to any of the formats in the list
  1180. format=yuv420p:yuv444p:yuv410p
  1181. @end example
  1182. @anchor{frei0r}
  1183. @section frei0r
  1184. Apply a frei0r effect to the input video.
  1185. To enable compilation of this filter you need to install the frei0r
  1186. header and configure FFmpeg with @code{--enable-frei0r}.
  1187. The filter supports the syntax:
  1188. @example
  1189. @var{filter_name}[@{:|=@}@var{param1}:@var{param2}:...:@var{paramN}]
  1190. @end example
  1191. @var{filter_name} is the name to the frei0r effect to load. If the
  1192. environment variable @env{FREI0R_PATH} is defined, the frei0r effect
  1193. is searched in each one of the directories specified by the colon
  1194. separated list in @env{FREIOR_PATH}, otherwise in the standard frei0r
  1195. paths, which are in this order: @file{HOME/.frei0r-1/lib/},
  1196. @file{/usr/local/lib/frei0r-1/}, @file{/usr/lib/frei0r-1/}.
  1197. @var{param1}, @var{param2}, ... , @var{paramN} specify the parameters
  1198. for the frei0r effect.
  1199. A frei0r effect parameter can be a boolean (whose values are specified
  1200. with "y" and "n"), a double, a color (specified by the syntax
  1201. @var{R}/@var{G}/@var{B}, @var{R}, @var{G}, and @var{B} being float
  1202. numbers from 0.0 to 1.0) or by an @code{av_parse_color()} color
  1203. description), a position (specified by the syntax @var{X}/@var{Y},
  1204. @var{X} and @var{Y} being float numbers) and a string.
  1205. The number and kind of parameters depend on the loaded effect. If an
  1206. effect parameter is not specified the default value is set.
  1207. Some examples follow:
  1208. @example
  1209. # apply the distort0r effect, set the first two double parameters
  1210. frei0r=distort0r:0.5:0.01
  1211. # apply the colordistance effect, takes a color as first parameter
  1212. frei0r=colordistance:0.2/0.3/0.4
  1213. frei0r=colordistance:violet
  1214. frei0r=colordistance:0x112233
  1215. # apply the perspective effect, specify the top left and top right
  1216. # image positions
  1217. frei0r=perspective:0.2/0.2:0.8/0.2
  1218. @end example
  1219. For more information see:
  1220. @url{http://piksel.org/frei0r}
  1221. @section gradfun
  1222. Fix the banding artifacts that are sometimes introduced into nearly flat
  1223. regions by truncation to 8bit color depth.
  1224. Interpolate the gradients that should go where the bands are, and
  1225. dither them.
  1226. This filter is designed for playback only. Do not use it prior to
  1227. lossy compression, because compression tends to lose the dither and
  1228. bring back the bands.
  1229. The filter takes two optional parameters, separated by ':':
  1230. @var{strength}:@var{radius}
  1231. @var{strength} is the maximum amount by which the filter will change
  1232. any one pixel. Also the threshold for detecting nearly flat
  1233. regions. Acceptable values range from .51 to 255, default value is
  1234. 1.2, out-of-range values will be clipped to the valid range.
  1235. @var{radius} is the neighborhood to fit the gradient to. A larger
  1236. radius makes for smoother gradients, but also prevents the filter from
  1237. modifying the pixels near detailed regions. Acceptable values are
  1238. 8-32, default value is 16, out-of-range values will be clipped to the
  1239. valid range.
  1240. @example
  1241. # default parameters
  1242. gradfun=1.2:16
  1243. # omitting radius
  1244. gradfun=1.2
  1245. @end example
  1246. @section hflip
  1247. Flip the input video horizontally.
  1248. For example to horizontally flip the input video with @command{ffmpeg}:
  1249. @example
  1250. ffmpeg -i in.avi -vf "hflip" out.avi
  1251. @end example
  1252. @section hqdn3d
  1253. High precision/quality 3d denoise filter. This filter aims to reduce
  1254. image noise producing smooth images and making still images really
  1255. still. It should enhance compressibility.
  1256. It accepts the following optional parameters:
  1257. @var{luma_spatial}:@var{chroma_spatial}:@var{luma_tmp}:@var{chroma_tmp}
  1258. @table @option
  1259. @item luma_spatial
  1260. a non-negative float number which specifies spatial luma strength,
  1261. defaults to 4.0
  1262. @item chroma_spatial
  1263. a non-negative float number which specifies spatial chroma strength,
  1264. defaults to 3.0*@var{luma_spatial}/4.0
  1265. @item luma_tmp
  1266. a float number which specifies luma temporal strength, defaults to
  1267. 6.0*@var{luma_spatial}/4.0
  1268. @item chroma_tmp
  1269. a float number which specifies chroma temporal strength, defaults to
  1270. @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}
  1271. @end table
  1272. @section idet
  1273. Interlaceing detect filter. This filter tries to detect if the input is
  1274. interlaced or progressive. Top or bottom field first.
  1275. @section lut, lutrgb, lutyuv
  1276. Compute a look-up table for binding each pixel component input value
  1277. to an output value, and apply it to input video.
  1278. @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
  1279. to an RGB input video.
  1280. These filters accept in input a ":"-separated list of options, which
  1281. specify the expressions used for computing the lookup table for the
  1282. corresponding pixel component values.
  1283. The @var{lut} filter requires either YUV or RGB pixel formats in
  1284. input, and accepts the options:
  1285. @table @option
  1286. @item c0
  1287. first pixel component
  1288. @item c1
  1289. second pixel component
  1290. @item c2
  1291. third pixel component
  1292. @item c3
  1293. fourth pixel component, corresponds to the alpha component
  1294. @end table
  1295. The exact component associated to each option depends on the format in
  1296. input.
  1297. The @var{lutrgb} filter requires RGB pixel formats in input, and
  1298. accepts the options:
  1299. @table @option
  1300. @item r
  1301. red component
  1302. @item g
  1303. green component
  1304. @item b
  1305. blue component
  1306. @item a
  1307. alpha component
  1308. @end table
  1309. The @var{lutyuv} filter requires YUV pixel formats in input, and
  1310. accepts the options:
  1311. @table @option
  1312. @item y
  1313. Y/luminance component
  1314. @item u
  1315. U/Cb component
  1316. @item v
  1317. V/Cr component
  1318. @item a
  1319. alpha component
  1320. @end table
  1321. The expressions can contain the following constants and functions:
  1322. @table @option
  1323. @item w, h
  1324. the input width and height
  1325. @item val
  1326. input value for the pixel component
  1327. @item clipval
  1328. the input value clipped in the @var{minval}-@var{maxval} range
  1329. @item maxval
  1330. maximum value for the pixel component
  1331. @item minval
  1332. minimum value for the pixel component
  1333. @item negval
  1334. the negated value for the pixel component value clipped in the
  1335. @var{minval}-@var{maxval} range , it corresponds to the expression
  1336. "maxval-clipval+minval"
  1337. @item clip(val)
  1338. the computed value in @var{val} clipped in the
  1339. @var{minval}-@var{maxval} range
  1340. @item gammaval(gamma)
  1341. the computed gamma correction value of the pixel component value
  1342. clipped in the @var{minval}-@var{maxval} range, corresponds to the
  1343. expression
  1344. "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
  1345. @end table
  1346. All expressions default to "val".
  1347. Some examples follow:
  1348. @example
  1349. # negate input video
  1350. lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
  1351. lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
  1352. # the above is the same as
  1353. lutrgb="r=negval:g=negval:b=negval"
  1354. lutyuv="y=negval:u=negval:v=negval"
  1355. # negate luminance
  1356. lutyuv=y=negval
  1357. # remove chroma components, turns the video into a graytone image
  1358. lutyuv="u=128:v=128"
  1359. # apply a luma burning effect
  1360. lutyuv="y=2*val"
  1361. # remove green and blue components
  1362. lutrgb="g=0:b=0"
  1363. # set a constant alpha channel value on input
  1364. format=rgba,lutrgb=a="maxval-minval/2"
  1365. # correct luminance gamma by a 0.5 factor
  1366. lutyuv=y=gammaval(0.5)
  1367. @end example
  1368. @section mp
  1369. Apply an MPlayer filter to the input video.
  1370. This filter provides a wrapper around most of the filters of
  1371. MPlayer/MEncoder.
  1372. This wrapper is considered experimental. Some of the wrapped filters
  1373. may not work properly and we may drop support for them, as they will
  1374. be implemented natively into FFmpeg. Thus you should avoid
  1375. depending on them when writing portable scripts.
  1376. The filters accepts the parameters:
  1377. @var{filter_name}[:=]@var{filter_params}
  1378. @var{filter_name} is the name of a supported MPlayer filter,
  1379. @var{filter_params} is a string containing the parameters accepted by
  1380. the named filter.
  1381. The list of the currently supported filters follows:
  1382. @table @var
  1383. @item decimate
  1384. @item denoise3d
  1385. @item detc
  1386. @item dint
  1387. @item divtc
  1388. @item down3dright
  1389. @item dsize
  1390. @item eq2
  1391. @item eq
  1392. @item field
  1393. @item fil
  1394. @item fixpts
  1395. @item framestep
  1396. @item fspp
  1397. @item geq
  1398. @item harddup
  1399. @item hqdn3d
  1400. @item hue
  1401. @item il
  1402. @item ilpack
  1403. @item ivtc
  1404. @item kerndeint
  1405. @item mcdeint
  1406. @item noise
  1407. @item ow
  1408. @item palette
  1409. @item perspective
  1410. @item phase
  1411. @item pp7
  1412. @item pullup
  1413. @item qp
  1414. @item rectangle
  1415. @item rotate
  1416. @item sab
  1417. @item screenshot
  1418. @item smartblur
  1419. @item softpulldown
  1420. @item softskip
  1421. @item spp
  1422. @item telecine
  1423. @item tile
  1424. @item tinterlace
  1425. @item unsharp
  1426. @item uspp
  1427. @item yuvcsp
  1428. @item yvu9
  1429. @end table
  1430. The parameter syntax and behavior for the listed filters are the same
  1431. of the corresponding MPlayer filters. For detailed instructions check
  1432. the "VIDEO FILTERS" section in the MPlayer manual.
  1433. Some examples follow:
  1434. @example
  1435. # adjust gamma, brightness, contrast
  1436. mp=eq2=1.0:2:0.5
  1437. # tweak hue and saturation
  1438. mp=hue=100:-10
  1439. @end example
  1440. See also mplayer(1), @url{http://www.mplayerhq.hu/}.
  1441. @section negate
  1442. Negate input video.
  1443. This filter accepts an integer in input, if non-zero it negates the
  1444. alpha component (if available). The default value in input is 0.
  1445. @section noformat
  1446. Force libavfilter not to use any of the specified pixel formats for the
  1447. input to the next filter.
  1448. The filter accepts a list of pixel format names, separated by ":",
  1449. for example "yuv420p:monow:rgb24".
  1450. Some examples follow:
  1451. @example
  1452. # force libavfilter to use a format different from "yuv420p" for the
  1453. # input to the vflip filter
  1454. noformat=yuv420p,vflip
  1455. # convert the input video to any of the formats not contained in the list
  1456. noformat=yuv420p:yuv444p:yuv410p
  1457. @end example
  1458. @section null
  1459. Pass the video source unchanged to the output.
  1460. @section ocv
  1461. Apply video transform using libopencv.
  1462. To enable this filter install libopencv library and headers and
  1463. configure FFmpeg with @code{--enable-libopencv}.
  1464. The filter takes the parameters: @var{filter_name}@{:=@}@var{filter_params}.
  1465. @var{filter_name} is the name of the libopencv filter to apply.
  1466. @var{filter_params} specifies the parameters to pass to the libopencv
  1467. filter. If not specified the default values are assumed.
  1468. Refer to the official libopencv documentation for more precise
  1469. information:
  1470. @url{http://opencv.willowgarage.com/documentation/c/image_filtering.html}
  1471. Follows the list of supported libopencv filters.
  1472. @anchor{dilate}
  1473. @subsection dilate
  1474. Dilate an image by using a specific structuring element.
  1475. This filter corresponds to the libopencv function @code{cvDilate}.
  1476. It accepts the parameters: @var{struct_el}:@var{nb_iterations}.
  1477. @var{struct_el} represents a structuring element, and has the syntax:
  1478. @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
  1479. @var{cols} and @var{rows} represent the number of columns and rows of
  1480. the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
  1481. point, and @var{shape} the shape for the structuring element, and
  1482. can be one of the values "rect", "cross", "ellipse", "custom".
  1483. If the value for @var{shape} is "custom", it must be followed by a
  1484. string of the form "=@var{filename}". The file with name
  1485. @var{filename} is assumed to represent a binary image, with each
  1486. printable character corresponding to a bright pixel. When a custom
  1487. @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
  1488. or columns and rows of the read file are assumed instead.
  1489. The default value for @var{struct_el} is "3x3+0x0/rect".
  1490. @var{nb_iterations} specifies the number of times the transform is
  1491. applied to the image, and defaults to 1.
  1492. Follow some example:
  1493. @example
  1494. # use the default values
  1495. ocv=dilate
  1496. # dilate using a structuring element with a 5x5 cross, iterate two times
  1497. ocv=dilate=5x5+2x2/cross:2
  1498. # read the shape from the file diamond.shape, iterate two times
  1499. # the file diamond.shape may contain a pattern of characters like this:
  1500. # *
  1501. # ***
  1502. # *****
  1503. # ***
  1504. # *
  1505. # the specified cols and rows are ignored (but not the anchor point coordinates)
  1506. ocv=0x0+2x2/custom=diamond.shape:2
  1507. @end example
  1508. @subsection erode
  1509. Erode an image by using a specific structuring element.
  1510. This filter corresponds to the libopencv function @code{cvErode}.
  1511. The filter accepts the parameters: @var{struct_el}:@var{nb_iterations},
  1512. with the same syntax and semantics as the @ref{dilate} filter.
  1513. @subsection smooth
  1514. Smooth the input video.
  1515. The filter takes the following parameters:
  1516. @var{type}:@var{param1}:@var{param2}:@var{param3}:@var{param4}.
  1517. @var{type} is the type of smooth filter to apply, and can be one of
  1518. the following values: "blur", "blur_no_scale", "median", "gaussian",
  1519. "bilateral". The default value is "gaussian".
  1520. @var{param1}, @var{param2}, @var{param3}, and @var{param4} are
  1521. parameters whose meanings depend on smooth type. @var{param1} and
  1522. @var{param2} accept integer positive values or 0, @var{param3} and
  1523. @var{param4} accept float values.
  1524. The default value for @var{param1} is 3, the default value for the
  1525. other parameters is 0.
  1526. These parameters correspond to the parameters assigned to the
  1527. libopencv function @code{cvSmooth}.
  1528. @anchor{overlay}
  1529. @section overlay
  1530. Overlay one video on top of another.
  1531. It takes two inputs and one output, the first input is the "main"
  1532. video on which the second input is overlayed.
  1533. It accepts the parameters: @var{x}:@var{y}[:@var{options}].
  1534. @var{x} is the x coordinate of the overlayed video on the main video,
  1535. @var{y} is the y coordinate. @var{x} and @var{y} are expressions containing
  1536. the following parameters:
  1537. @table @option
  1538. @item main_w, main_h
  1539. main input width and height
  1540. @item W, H
  1541. same as @var{main_w} and @var{main_h}
  1542. @item overlay_w, overlay_h
  1543. overlay input width and height
  1544. @item w, h
  1545. same as @var{overlay_w} and @var{overlay_h}
  1546. @end table
  1547. @var{options} is an optional list of @var{key}=@var{value} pairs,
  1548. separated by ":".
  1549. The description of the accepted options follows.
  1550. @table @option
  1551. @item rgb
  1552. If set to 1, force the filter to accept inputs in the RGB
  1553. color space. Default value is 0.
  1554. @end table
  1555. Be aware that frames are taken from each input video in timestamp
  1556. order, hence, if their initial timestamps differ, it is a a good idea
  1557. to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
  1558. have them begin in the same zero timestamp, as it does the example for
  1559. the @var{movie} filter.
  1560. Follow some examples:
  1561. @example
  1562. # draw the overlay at 10 pixels from the bottom right
  1563. # corner of the main video.
  1564. overlay=main_w-overlay_w-10:main_h-overlay_h-10
  1565. # insert a transparent PNG logo in the bottom left corner of the input
  1566. ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
  1567. # insert 2 different transparent PNG logos (second logo on bottom
  1568. # right corner):
  1569. ffmpeg -i input -i logo1 -i logo2 -filter_complex
  1570. 'overlay=10:H-h-10,overlay=W-w-10:H-h-10' output
  1571. # add a transparent color layer on top of the main video,
  1572. # WxH specifies the size of the main input to the overlay filter
  1573. color=red@.3:WxH [over]; [in][over] overlay [out]
  1574. @end example
  1575. You can chain together more overlays but the efficiency of such
  1576. approach is yet to be tested.
  1577. @section pad
  1578. Add paddings to the input image, and places the original input at the
  1579. given coordinates @var{x}, @var{y}.
  1580. It accepts the following parameters:
  1581. @var{width}:@var{height}:@var{x}:@var{y}:@var{color}.
  1582. The parameters @var{width}, @var{height}, @var{x}, and @var{y} are
  1583. expressions containing the following constants:
  1584. @table @option
  1585. @item in_w, in_h
  1586. the input video width and height
  1587. @item iw, ih
  1588. same as @var{in_w} and @var{in_h}
  1589. @item out_w, out_h
  1590. the output width and height, that is the size of the padded area as
  1591. specified by the @var{width} and @var{height} expressions
  1592. @item ow, oh
  1593. same as @var{out_w} and @var{out_h}
  1594. @item x, y
  1595. x and y offsets as specified by the @var{x} and @var{y}
  1596. expressions, or NAN if not yet specified
  1597. @item a
  1598. same as @var{iw} / @var{ih}
  1599. @item sar
  1600. input sample aspect ratio
  1601. @item dar
  1602. input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
  1603. @item hsub, vsub
  1604. horizontal and vertical chroma subsample values. For example for the
  1605. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  1606. @end table
  1607. Follows the description of the accepted parameters.
  1608. @table @option
  1609. @item width, height
  1610. Specify the size of the output image with the paddings added. If the
  1611. value for @var{width} or @var{height} is 0, the corresponding input size
  1612. is used for the output.
  1613. The @var{width} expression can reference the value set by the
  1614. @var{height} expression, and vice versa.
  1615. The default value of @var{width} and @var{height} is 0.
  1616. @item x, y
  1617. Specify the offsets where to place the input image in the padded area
  1618. with respect to the top/left border of the output image.
  1619. The @var{x} expression can reference the value set by the @var{y}
  1620. expression, and vice versa.
  1621. The default value of @var{x} and @var{y} is 0.
  1622. @item color
  1623. Specify the color of the padded area, it can be the name of a color
  1624. (case insensitive match) or a 0xRRGGBB[AA] sequence.
  1625. The default value of @var{color} is "black".
  1626. @end table
  1627. Some examples follow:
  1628. @example
  1629. # Add paddings with color "violet" to the input video. Output video
  1630. # size is 640x480, the top-left corner of the input video is placed at
  1631. # column 0, row 40.
  1632. pad=640:480:0:40:violet
  1633. # pad the input to get an output with dimensions increased bt 3/2,
  1634. # and put the input video at the center of the padded area
  1635. pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
  1636. # pad the input to get a squared output with size equal to the maximum
  1637. # value between the input width and height, and put the input video at
  1638. # the center of the padded area
  1639. pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
  1640. # pad the input to get a final w/h ratio of 16:9
  1641. pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
  1642. # for anamorphic video, in order to set the output display aspect ratio,
  1643. # it is necessary to use sar in the expression, according to the relation:
  1644. # (ih * X / ih) * sar = output_dar
  1645. # X = output_dar / sar
  1646. pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
  1647. # double output size and put the input video in the bottom-right
  1648. # corner of the output padded area
  1649. pad="2*iw:2*ih:ow-iw:oh-ih"
  1650. @end example
  1651. @section pixdesctest
  1652. Pixel format descriptor test filter, mainly useful for internal
  1653. testing. The output video should be equal to the input video.
  1654. For example:
  1655. @example
  1656. format=monow, pixdesctest
  1657. @end example
  1658. can be used to test the monowhite pixel format descriptor definition.
  1659. @section removelogo
  1660. Suppress a TV station logo, using an image file to determine which
  1661. pixels comprise the logo. It works by filling in the pixels that
  1662. comprise the logo with neighboring pixels.
  1663. This filter requires one argument which specifies the filter bitmap
  1664. file, which can be any image format supported by libavformat. The
  1665. width and height of the image file must match those of the video
  1666. stream being processed.
  1667. Pixels in the provided bitmap image with a value of zero are not
  1668. considered part of the logo, non-zero pixels are considered part of
  1669. the logo. If you use white (255) for the logo and black (0) for the
  1670. rest, you will be safe. For making the filter bitmap, it is
  1671. recommended to take a screen capture of a black frame with the logo
  1672. visible, and then using a threshold filter followed by the erode
  1673. filter once or twice.
  1674. If needed, little splotches can be fixed manually. Remember that if
  1675. logo pixels are not covered, the filter quality will be much
  1676. reduced. Marking too many pixels as part of the logo does not hurt as
  1677. much, but it will increase the amount of blurring needed to cover over
  1678. the image and will destroy more information than necessary, and extra
  1679. pixels will slow things down on a large logo.
  1680. @section scale
  1681. Scale the input video to @var{width}:@var{height}[:@var{interl}=@{1|-1@}] and/or convert the image format.
  1682. The scale filter forces the output display aspect ratio to be the same
  1683. of the input, by changing the output sample aspect ratio.
  1684. The parameters @var{width} and @var{height} are expressions containing
  1685. the following constants:
  1686. @table @option
  1687. @item in_w, in_h
  1688. the input width and height
  1689. @item iw, ih
  1690. same as @var{in_w} and @var{in_h}
  1691. @item out_w, out_h
  1692. the output (cropped) width and height
  1693. @item ow, oh
  1694. same as @var{out_w} and @var{out_h}
  1695. @item a
  1696. same as @var{iw} / @var{ih}
  1697. @item sar
  1698. input sample aspect ratio
  1699. @item dar
  1700. input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
  1701. @item hsub, vsub
  1702. horizontal and vertical chroma subsample values. For example for the
  1703. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  1704. @end table
  1705. If the input image format is different from the format requested by
  1706. the next filter, the scale filter will convert the input to the
  1707. requested format.
  1708. If the value for @var{width} or @var{height} is 0, the respective input
  1709. size is used for the output.
  1710. If the value for @var{width} or @var{height} is -1, the scale filter will
  1711. use, for the respective output size, a value that maintains the aspect
  1712. ratio of the input image.
  1713. The default value of @var{width} and @var{height} is 0.
  1714. Valid values for the optional parameter @var{interl} are:
  1715. @table @option
  1716. @item 1
  1717. force interlaced aware scaling
  1718. @item -1
  1719. select interlaced aware scaling depending on whether the source frames
  1720. are flagged as interlaced or not
  1721. @end table
  1722. Unless @var{interl} is set to one of the above options, interlaced scaling will not be used.
  1723. Some examples follow:
  1724. @example
  1725. # scale the input video to a size of 200x100.
  1726. scale=200:100
  1727. # scale the input to 2x
  1728. scale=2*iw:2*ih
  1729. # the above is the same as
  1730. scale=2*in_w:2*in_h
  1731. # scale the input to 2x with forced interlaced scaling
  1732. scale=2*iw:2*ih:interl=1
  1733. # scale the input to half size
  1734. scale=iw/2:ih/2
  1735. # increase the width, and set the height to the same size
  1736. scale=3/2*iw:ow
  1737. # seek for Greek harmony
  1738. scale=iw:1/PHI*iw
  1739. scale=ih*PHI:ih
  1740. # increase the height, and set the width to 3/2 of the height
  1741. scale=3/2*oh:3/5*ih
  1742. # increase the size, but make the size a multiple of the chroma
  1743. scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
  1744. # increase the width to a maximum of 500 pixels, keep the same input aspect ratio
  1745. scale='min(500\, iw*3/2):-1'
  1746. @end example
  1747. @section select
  1748. Select frames to pass in output.
  1749. It accepts in input an expression, which is evaluated for each input
  1750. frame. If the expression is evaluated to a non-zero value, the frame
  1751. is selected and passed to the output, otherwise it is discarded.
  1752. The expression can contain the following constants:
  1753. @table @option
  1754. @item n
  1755. the sequential number of the filtered frame, starting from 0
  1756. @item selected_n
  1757. the sequential number of the selected frame, starting from 0
  1758. @item prev_selected_n
  1759. the sequential number of the last selected frame, NAN if undefined
  1760. @item TB
  1761. timebase of the input timestamps
  1762. @item pts
  1763. the PTS (Presentation TimeStamp) of the filtered video frame,
  1764. expressed in @var{TB} units, NAN if undefined
  1765. @item t
  1766. the PTS (Presentation TimeStamp) of the filtered video frame,
  1767. expressed in seconds, NAN if undefined
  1768. @item prev_pts
  1769. the PTS of the previously filtered video frame, NAN if undefined
  1770. @item prev_selected_pts
  1771. the PTS of the last previously filtered video frame, NAN if undefined
  1772. @item prev_selected_t
  1773. the PTS of the last previously selected video frame, NAN if undefined
  1774. @item start_pts
  1775. the PTS of the first video frame in the video, NAN if undefined
  1776. @item start_t
  1777. the time of the first video frame in the video, NAN if undefined
  1778. @item pict_type
  1779. the type of the filtered frame, can assume one of the following
  1780. values:
  1781. @table @option
  1782. @item I
  1783. @item P
  1784. @item B
  1785. @item S
  1786. @item SI
  1787. @item SP
  1788. @item BI
  1789. @end table
  1790. @item interlace_type
  1791. the frame interlace type, can assume one of the following values:
  1792. @table @option
  1793. @item PROGRESSIVE
  1794. the frame is progressive (not interlaced)
  1795. @item TOPFIRST
  1796. the frame is top-field-first
  1797. @item BOTTOMFIRST
  1798. the frame is bottom-field-first
  1799. @end table
  1800. @item key
  1801. 1 if the filtered frame is a key-frame, 0 otherwise
  1802. @item pos
  1803. the position in the file of the filtered frame, -1 if the information
  1804. is not available (e.g. for synthetic video)
  1805. @end table
  1806. The default value of the select expression is "1".
  1807. Some examples follow:
  1808. @example
  1809. # select all frames in input
  1810. select
  1811. # the above is the same as:
  1812. select=1
  1813. # skip all frames:
  1814. select=0
  1815. # select only I-frames
  1816. select='eq(pict_type\,I)'
  1817. # select one frame every 100
  1818. select='not(mod(n\,100))'
  1819. # select only frames contained in the 10-20 time interval
  1820. select='gte(t\,10)*lte(t\,20)'
  1821. # select only I frames contained in the 10-20 time interval
  1822. select='gte(t\,10)*lte(t\,20)*eq(pict_type\,I)'
  1823. # select frames with a minimum distance of 10 seconds
  1824. select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
  1825. @end example
  1826. @section setdar, setsar
  1827. The @code{setdar} filter sets the Display Aspect Ratio for the filter
  1828. output video.
  1829. This is done by changing the specified Sample (aka Pixel) Aspect
  1830. Ratio, according to the following equation:
  1831. @example
  1832. @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
  1833. @end example
  1834. Keep in mind that the @code{setdar} filter does not modify the pixel
  1835. dimensions of the video frame. Also the display aspect ratio set by
  1836. this filter may be changed by later filters in the filterchain,
  1837. e.g. in case of scaling or if another "setdar" or a "setsar" filter is
  1838. applied.
  1839. The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
  1840. the filter output video.
  1841. Note that as a consequence of the application of this filter, the
  1842. output display aspect ratio will change according to the equation
  1843. above.
  1844. Keep in mind that the sample aspect ratio set by the @code{setsar}
  1845. filter may be changed by later filters in the filterchain, e.g. if
  1846. another "setsar" or a "setdar" filter is applied.
  1847. The @code{setdar} and @code{setsar} filters accept a parameter string
  1848. which represents the wanted aspect ratio. The parameter can
  1849. be a floating point number string, an expression, or a string of the form
  1850. @var{num}:@var{den}, where @var{num} and @var{den} are the numerator
  1851. and denominator of the aspect ratio. If the parameter is not
  1852. specified, it is assumed the value "0:1".
  1853. For example to change the display aspect ratio to 16:9, specify:
  1854. @example
  1855. setdar=16:9
  1856. @end example
  1857. The example above is equivalent to:
  1858. @example
  1859. setdar=1.77777
  1860. @end example
  1861. To change the sample aspect ratio to 10:11, specify:
  1862. @example
  1863. setsar=10:11
  1864. @end example
  1865. @section setfield
  1866. Force field for the output video frame.
  1867. The @code{setfield} filter marks the interlace type field for the
  1868. output frames. It does not change the input frame, but only sets the
  1869. corresponding property, which affects how the frame is treated by
  1870. following filters (e.g. @code{fieldorder} or @code{yadif}).
  1871. It accepts a string parameter, which can assume the following values:
  1872. @table @samp
  1873. @item auto
  1874. Keep the same field property.
  1875. @item bff
  1876. Mark the frame as bottom-field-first.
  1877. @item tff
  1878. Mark the frame as top-field-first.
  1879. @item prog
  1880. Mark the frame as progressive.
  1881. @end table
  1882. @section setpts
  1883. Change the PTS (presentation timestamp) of the input video frames.
  1884. Accept in input an expression evaluated through the eval API, which
  1885. can contain the following constants:
  1886. @table @option
  1887. @item PTS
  1888. the presentation timestamp in input
  1889. @item N
  1890. the count of the input frame, starting from 0.
  1891. @item STARTPTS
  1892. the PTS of the first video frame
  1893. @item INTERLACED
  1894. tell if the current frame is interlaced
  1895. @item POS
  1896. original position in the file of the frame, or undefined if undefined
  1897. for the current frame
  1898. @item PREV_INPTS
  1899. previous input PTS
  1900. @item PREV_OUTPTS
  1901. previous output PTS
  1902. @end table
  1903. Some examples follow:
  1904. @example
  1905. # start counting PTS from zero
  1906. setpts=PTS-STARTPTS
  1907. # fast motion
  1908. setpts=0.5*PTS
  1909. # slow motion
  1910. setpts=2.0*PTS
  1911. # fixed rate 25 fps
  1912. setpts=N/(25*TB)
  1913. # fixed rate 25 fps with some jitter
  1914. setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
  1915. @end example
  1916. @section settb
  1917. Set the timebase to use for the output frames timestamps.
  1918. It is mainly useful for testing timebase configuration.
  1919. It accepts in input an arithmetic expression representing a rational.
  1920. The expression can contain the constants "AVTB" (the
  1921. default timebase), and "intb" (the input timebase).
  1922. The default value for the input is "intb".
  1923. Follow some examples.
  1924. @example
  1925. # set the timebase to 1/25
  1926. settb=1/25
  1927. # set the timebase to 1/10
  1928. settb=0.1
  1929. #set the timebase to 1001/1000
  1930. settb=1+0.001
  1931. #set the timebase to 2*intb
  1932. settb=2*intb
  1933. #set the default timebase value
  1934. settb=AVTB
  1935. @end example
  1936. @section showinfo
  1937. Show a line containing various information for each input video frame.
  1938. The input video is not modified.
  1939. The shown line contains a sequence of key/value pairs of the form
  1940. @var{key}:@var{value}.
  1941. A description of each shown parameter follows:
  1942. @table @option
  1943. @item n
  1944. sequential number of the input frame, starting from 0
  1945. @item pts
  1946. Presentation TimeStamp of the input frame, expressed as a number of
  1947. time base units. The time base unit depends on the filter input pad.
  1948. @item pts_time
  1949. Presentation TimeStamp of the input frame, expressed as a number of
  1950. seconds
  1951. @item pos
  1952. position of the frame in the input stream, -1 if this information in
  1953. unavailable and/or meaningless (for example in case of synthetic video)
  1954. @item fmt
  1955. pixel format name
  1956. @item sar
  1957. sample aspect ratio of the input frame, expressed in the form
  1958. @var{num}/@var{den}
  1959. @item s
  1960. size of the input frame, expressed in the form
  1961. @var{width}x@var{height}
  1962. @item i
  1963. interlaced mode ("P" for "progressive", "T" for top field first, "B"
  1964. for bottom field first)
  1965. @item iskey
  1966. 1 if the frame is a key frame, 0 otherwise
  1967. @item type
  1968. picture type of the input frame ("I" for an I-frame, "P" for a
  1969. P-frame, "B" for a B-frame, "?" for unknown type).
  1970. Check also the documentation of the @code{AVPictureType} enum and of
  1971. the @code{av_get_picture_type_char} function defined in
  1972. @file{libavutil/avutil.h}.
  1973. @item checksum
  1974. Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame
  1975. @item plane_checksum
  1976. Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
  1977. expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]"
  1978. @end table
  1979. @section slicify
  1980. Pass the images of input video on to next video filter as multiple
  1981. slices.
  1982. @example
  1983. ffmpeg -i in.avi -vf "slicify=32" out.avi
  1984. @end example
  1985. The filter accepts the slice height as parameter. If the parameter is
  1986. not specified it will use the default value of 16.
  1987. Adding this in the beginning of filter chains should make filtering
  1988. faster due to better use of the memory cache.
  1989. @section split
  1990. Pass on the input video to two outputs. Both outputs are identical to
  1991. the input video.
  1992. For example:
  1993. @example
  1994. [in] split [splitout1][splitout2];
  1995. [splitout1] crop=100:100:0:0 [cropout];
  1996. [splitout2] pad=200:200:100:100 [padout];
  1997. @end example
  1998. will create two separate outputs from the same input, one cropped and
  1999. one padded.
  2000. @section super2xsai
  2001. Scale the input by 2x and smooth using the Super2xSaI (Scale and
  2002. Interpolate) pixel art scaling algorithm.
  2003. Useful for enlarging pixel art images without reducing sharpness.
  2004. @section swapuv
  2005. Swap U & V plane.
  2006. @section thumbnail
  2007. Select the most representative frame in a given sequence of consecutive frames.
  2008. It accepts as argument the frames batch size to analyze (default @var{N}=100);
  2009. in a set of @var{N} frames, the filter will pick one of them, and then handle
  2010. the next batch of @var{N} frames until the end.
  2011. Since the filter keeps track of the whole frames sequence, a bigger @var{N}
  2012. value will result in a higher memory usage, so a high value is not recommended.
  2013. The following example extract one picture each 50 frames:
  2014. @example
  2015. thumbnail=50
  2016. @end example
  2017. Complete example of a thumbnail creation with @command{ffmpeg}:
  2018. @example
  2019. ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
  2020. @end example
  2021. @section tile
  2022. Tile several successive frames together.
  2023. It accepts as argument the tile size (i.e. the number of lines and columns)
  2024. in the form "@var{w}x@var{h}".
  2025. For example, produce 8×8 PNG tiles of all keyframes (@option{-skip_frame
  2026. nokey}) in a movie:
  2027. @example
  2028. ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
  2029. @end example
  2030. The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
  2031. duplicating each output frame to accomodate the originally detected frame
  2032. rate.
  2033. @section tinterlace
  2034. Perform various types of temporal field interlacing.
  2035. Frames are counted starting from 1, so the first input frame is
  2036. considered odd.
  2037. This filter accepts a single parameter specifying the mode. Available
  2038. modes are:
  2039. @table @samp
  2040. @item 0
  2041. Move odd frames into the upper field, even into the lower field,
  2042. generating a double height frame at half framerate.
  2043. @item 1
  2044. Only output even frames, odd frames are dropped, generating a frame with
  2045. unchanged height at half framerate.
  2046. @item 2
  2047. Only output odd frames, even frames are dropped, generating a frame with
  2048. unchanged height at half framerate.
  2049. @item 3
  2050. Expand each frame to full height, but pad alternate lines with black,
  2051. generating a frame with double height at the same input framerate.
  2052. @item 4
  2053. Interleave the upper field from odd frames with the lower field from
  2054. even frames, generating a frame with unchanged height at half framerate.
  2055. @item 5
  2056. Interleave the lower field from odd frames with the upper field from
  2057. even frames, generating a frame with unchanged height at half framerate.
  2058. @end table
  2059. Default mode is 0.
  2060. @section transpose
  2061. Transpose rows with columns in the input video and optionally flip it.
  2062. It accepts a parameter representing an integer, which can assume the
  2063. values:
  2064. @table @samp
  2065. @item 0
  2066. Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
  2067. @example
  2068. L.R L.l
  2069. . . -> . .
  2070. l.r R.r
  2071. @end example
  2072. @item 1
  2073. Rotate by 90 degrees clockwise, that is:
  2074. @example
  2075. L.R l.L
  2076. . . -> . .
  2077. l.r r.R
  2078. @end example
  2079. @item 2
  2080. Rotate by 90 degrees counterclockwise, that is:
  2081. @example
  2082. L.R R.r
  2083. . . -> . .
  2084. l.r L.l
  2085. @end example
  2086. @item 3
  2087. Rotate by 90 degrees clockwise and vertically flip, that is:
  2088. @example
  2089. L.R r.R
  2090. . . -> . .
  2091. l.r l.L
  2092. @end example
  2093. @end table
  2094. @section unsharp
  2095. Sharpen or blur the input video.
  2096. It accepts the following parameters:
  2097. @var{luma_msize_x}:@var{luma_msize_y}:@var{luma_amount}:@var{chroma_msize_x}:@var{chroma_msize_y}:@var{chroma_amount}
  2098. Negative values for the amount will blur the input video, while positive
  2099. values will sharpen. All parameters are optional and default to the
  2100. equivalent of the string '5:5:1.0:5:5:0.0'.
  2101. @table @option
  2102. @item luma_msize_x
  2103. Set the luma matrix horizontal size. It can be an integer between 3
  2104. and 13, default value is 5.
  2105. @item luma_msize_y
  2106. Set the luma matrix vertical size. It can be an integer between 3
  2107. and 13, default value is 5.
  2108. @item luma_amount
  2109. Set the luma effect strength. It can be a float number between -2.0
  2110. and 5.0, default value is 1.0.
  2111. @item chroma_msize_x
  2112. Set the chroma matrix horizontal size. It can be an integer between 3
  2113. and 13, default value is 5.
  2114. @item chroma_msize_y
  2115. Set the chroma matrix vertical size. It can be an integer between 3
  2116. and 13, default value is 5.
  2117. @item chroma_amount
  2118. Set the chroma effect strength. It can be a float number between -2.0
  2119. and 5.0, default value is 0.0.
  2120. @end table
  2121. @example
  2122. # Strong luma sharpen effect parameters
  2123. unsharp=7:7:2.5
  2124. # Strong blur of both luma and chroma parameters
  2125. unsharp=7:7:-2:7:7:-2
  2126. # Use the default values with @command{ffmpeg}
  2127. ffmpeg -i in.avi -vf "unsharp" out.mp4
  2128. @end example
  2129. @section vflip
  2130. Flip the input video vertically.
  2131. @example
  2132. ffmpeg -i in.avi -vf "vflip" out.avi
  2133. @end example
  2134. @section yadif
  2135. Deinterlace the input video ("yadif" means "yet another deinterlacing
  2136. filter").
  2137. It accepts the optional parameters: @var{mode}:@var{parity}:@var{auto}.
  2138. @var{mode} specifies the interlacing mode to adopt, accepts one of the
  2139. following values:
  2140. @table @option
  2141. @item 0
  2142. output 1 frame for each frame
  2143. @item 1
  2144. output 1 frame for each field
  2145. @item 2
  2146. like 0 but skips spatial interlacing check
  2147. @item 3
  2148. like 1 but skips spatial interlacing check
  2149. @end table
  2150. Default value is 0.
  2151. @var{parity} specifies the picture field parity assumed for the input
  2152. interlaced video, accepts one of the following values:
  2153. @table @option
  2154. @item 0
  2155. assume top field first
  2156. @item 1
  2157. assume bottom field first
  2158. @item -1
  2159. enable automatic detection
  2160. @end table
  2161. Default value is -1.
  2162. If interlacing is unknown or decoder does not export this information,
  2163. top field first will be assumed.
  2164. @var{auto} specifies if deinterlacer should trust the interlaced flag
  2165. and only deinterlace frames marked as interlaced
  2166. @table @option
  2167. @item 0
  2168. deinterlace all frames
  2169. @item 1
  2170. only deinterlace frames marked as interlaced
  2171. @end table
  2172. Default value is 0.
  2173. @c man end VIDEO FILTERS
  2174. @chapter Video Sources
  2175. @c man begin VIDEO SOURCES
  2176. Below is a description of the currently available video sources.
  2177. @section buffer
  2178. Buffer video frames, and make them available to the filter chain.
  2179. This source is mainly intended for a programmatic use, in particular
  2180. through the interface defined in @file{libavfilter/vsrc_buffer.h}.
  2181. It accepts the following parameters:
  2182. @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}
  2183. All the parameters but @var{scale_params} need to be explicitly
  2184. defined.
  2185. Follows the list of the accepted parameters.
  2186. @table @option
  2187. @item width, height
  2188. Specify the width and height of the buffered video frames.
  2189. @item pix_fmt_string
  2190. A string representing the pixel format of the buffered video frames.
  2191. It may be a number corresponding to a pixel format, or a pixel format
  2192. name.
  2193. @item timebase_num, timebase_den
  2194. Specify numerator and denomitor of the timebase assumed by the
  2195. timestamps of the buffered frames.
  2196. @item sample_aspect_ratio.num, sample_aspect_ratio.den
  2197. Specify numerator and denominator of the sample aspect ratio assumed
  2198. by the video frames.
  2199. @item scale_params
  2200. Specify the optional parameters to be used for the scale filter which
  2201. is automatically inserted when an input change is detected in the
  2202. input size or format.
  2203. @end table
  2204. For example:
  2205. @example
  2206. buffer=320:240:yuv410p:1:24:1:1
  2207. @end example
  2208. will instruct the source to accept video frames with size 320x240 and
  2209. with format "yuv410p", assuming 1/24 as the timestamps timebase and
  2210. square pixels (1:1 sample aspect ratio).
  2211. Since the pixel format with name "yuv410p" corresponds to the number 6
  2212. (check the enum PixelFormat definition in @file{libavutil/pixfmt.h}),
  2213. this example corresponds to:
  2214. @example
  2215. buffer=320:240:6:1:24:1:1
  2216. @end example
  2217. @section cellauto
  2218. Create a pattern generated by an elementary cellular automaton.
  2219. The initial state of the cellular automaton can be defined through the
  2220. @option{filename}, and @option{pattern} options. If such options are
  2221. not specified an initial state is created randomly.
  2222. At each new frame a new row in the video is filled with the result of
  2223. the cellular automaton next generation. The behavior when the whole
  2224. frame is filled is defined by the @option{scroll} option.
  2225. This source accepts a list of options in the form of
  2226. @var{key}=@var{value} pairs separated by ":". A description of the
  2227. accepted options follows.
  2228. @table @option
  2229. @item filename, f
  2230. Read the initial cellular automaton state, i.e. the starting row, from
  2231. the specified file.
  2232. In the file, each non-whitespace character is considered an alive
  2233. cell, a newline will terminate the row, and further characters in the
  2234. file will be ignored.
  2235. @item pattern, p
  2236. Read the initial cellular automaton state, i.e. the starting row, from
  2237. the specified string.
  2238. Each non-whitespace character in the string is considered an alive
  2239. cell, a newline will terminate the row, and further characters in the
  2240. string will be ignored.
  2241. @item rate, r
  2242. Set the video rate, that is the number of frames generated per second.
  2243. Default is 25.
  2244. @item random_fill_ratio, ratio
  2245. Set the random fill ratio for the initial cellular automaton row. It
  2246. is a floating point number value ranging from 0 to 1, defaults to
  2247. 1/PHI.
  2248. This option is ignored when a file or a pattern is specified.
  2249. @item random_seed, seed
  2250. Set the seed for filling randomly the initial row, must be an integer
  2251. included between 0 and UINT32_MAX. If not specified, or if explicitly
  2252. set to -1, the filter will try to use a good random seed on a best
  2253. effort basis.
  2254. @item rule
  2255. Set the cellular automaton rule, it is a number ranging from 0 to 255.
  2256. Default value is 110.
  2257. @item size, s
  2258. Set the size of the output video.
  2259. If @option{filename} or @option{pattern} is specified, the size is set
  2260. by default to the width of the specified initial state row, and the
  2261. height is set to @var{width} * PHI.
  2262. If @option{size} is set, it must contain the width of the specified
  2263. pattern string, and the specified pattern will be centered in the
  2264. larger row.
  2265. If a filename or a pattern string is not specified, the size value
  2266. defaults to "320x518" (used for a randomly generated initial state).
  2267. @item scroll
  2268. If set to 1, scroll the output upward when all the rows in the output
  2269. have been already filled. If set to 0, the new generated row will be
  2270. written over the top row just after the bottom row is filled.
  2271. Defaults to 1.
  2272. @item start_full, full
  2273. If set to 1, completely fill the output with generated rows before
  2274. outputting the first frame.
  2275. This is the default behavior, for disabling set the value to 0.
  2276. @item stitch
  2277. If set to 1, stitch the left and right row edges together.
  2278. This is the default behavior, for disabling set the value to 0.
  2279. @end table
  2280. @subsection Examples
  2281. @itemize
  2282. @item
  2283. Read the initial state from @file{pattern}, and specify an output of
  2284. size 200x400.
  2285. @example
  2286. cellauto=f=pattern:s=200x400
  2287. @end example
  2288. @item
  2289. Generate a random initial row with a width of 200 cells, with a fill
  2290. ratio of 2/3:
  2291. @example
  2292. cellauto=ratio=2/3:s=200x200
  2293. @end example
  2294. @item
  2295. Create a pattern generated by rule 18 starting by a single alive cell
  2296. centered on an initial row with width 100:
  2297. @example
  2298. cellauto=p=@@:s=100x400:full=0:rule=18
  2299. @end example
  2300. @item
  2301. Specify a more elaborated initial pattern:
  2302. @example
  2303. cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
  2304. @end example
  2305. @end itemize
  2306. @section color
  2307. Provide an uniformly colored input.
  2308. It accepts the following parameters:
  2309. @var{color}:@var{frame_size}:@var{frame_rate}
  2310. Follows the description of the accepted parameters.
  2311. @table @option
  2312. @item color
  2313. Specify the color of the source. It can be the name of a color (case
  2314. insensitive match) or a 0xRRGGBB[AA] sequence, possibly followed by an
  2315. alpha specifier. The default value is "black".
  2316. @item frame_size
  2317. Specify the size of the sourced video, it may be a string of the form
  2318. @var{width}x@var{height}, or the name of a size abbreviation. The
  2319. default value is "320x240".
  2320. @item frame_rate
  2321. Specify the frame rate of the sourced video, as the number of frames
  2322. generated per second. It has to be a string in the format
  2323. @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a float
  2324. number or a valid video frame rate abbreviation. The default value is
  2325. "25".
  2326. @end table
  2327. For example the following graph description will generate a red source
  2328. with an opacity of 0.2, with size "qcif" and a frame rate of 10
  2329. frames per second, which will be overlayed over the source connected
  2330. to the pad with identifier "in".
  2331. @example
  2332. "color=red@@0.2:qcif:10 [color]; [in][color] overlay [out]"
  2333. @end example
  2334. @section movie
  2335. Read a video stream from a movie container.
  2336. It accepts the syntax: @var{movie_name}[:@var{options}] where
  2337. @var{movie_name} is the name of the resource to read (not necessarily
  2338. a file but also a device or a stream accessed through some protocol),
  2339. and @var{options} is an optional sequence of @var{key}=@var{value}
  2340. pairs, separated by ":".
  2341. The description of the accepted options follows.
  2342. @table @option
  2343. @item format_name, f
  2344. Specifies the format assumed for the movie to read, and can be either
  2345. the name of a container or an input device. If not specified the
  2346. format is guessed from @var{movie_name} or by probing.
  2347. @item seek_point, sp
  2348. Specifies the seek point in seconds, the frames will be output
  2349. starting from this seek point, the parameter is evaluated with
  2350. @code{av_strtod} so the numerical value may be suffixed by an IS
  2351. postfix. Default value is "0".
  2352. @item stream_index, si
  2353. Specifies the index of the video stream to read. If the value is -1,
  2354. the best suited video stream will be automatically selected. Default
  2355. value is "-1".
  2356. @item loop
  2357. Specifies how many times to read the video stream in sequence.
  2358. If the value is less than 1, the stream will be read again and again.
  2359. Default value is "1".
  2360. Note that when the movie is looped the source timestamps are not
  2361. changed, so it will generate non monotonically increasing timestamps.
  2362. @end table
  2363. This filter allows to overlay a second video on top of main input of
  2364. a filtergraph as shown in this graph:
  2365. @example
  2366. input -----------> deltapts0 --> overlay --> output
  2367. ^
  2368. |
  2369. movie --> scale--> deltapts1 -------+
  2370. @end example
  2371. Some examples follow:
  2372. @example
  2373. # skip 3.2 seconds from the start of the avi file in.avi, and overlay it
  2374. # on top of the input labelled as "in".
  2375. movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [movie];
  2376. [in] setpts=PTS-STARTPTS, [movie] overlay=16:16 [out]
  2377. # read from a video4linux2 device, and overlay it on top of the input
  2378. # labelled as "in"
  2379. movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [movie];
  2380. [in] setpts=PTS-STARTPTS, [movie] overlay=16:16 [out]
  2381. @end example
  2382. @section mptestsrc
  2383. Generate various test patterns, as generated by the MPlayer test filter.
  2384. The size of the generated video is fixed, and is 256x256.
  2385. This source is useful in particular for testing encoding features.
  2386. This source accepts an optional sequence of @var{key}=@var{value} pairs,
  2387. separated by ":". The description of the accepted options follows.
  2388. @table @option
  2389. @item rate, r
  2390. Specify the frame rate of the sourced video, as the number of frames
  2391. generated per second. It has to be a string in the format
  2392. @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a float
  2393. number or a valid video frame rate abbreviation. The default value is
  2394. "25".
  2395. @item duration, d
  2396. Set the video duration of the sourced video. The accepted syntax is:
  2397. @example
  2398. [-]HH[:MM[:SS[.m...]]]
  2399. [-]S+[.m...]
  2400. @end example
  2401. See also the function @code{av_parse_time()}.
  2402. If not specified, or the expressed duration is negative, the video is
  2403. supposed to be generated forever.
  2404. @item test, t
  2405. Set the number or the name of the test to perform. Supported tests are:
  2406. @table @option
  2407. @item dc_luma
  2408. @item dc_chroma
  2409. @item freq_luma
  2410. @item freq_chroma
  2411. @item amp_luma
  2412. @item amp_chroma
  2413. @item cbp
  2414. @item mv
  2415. @item ring1
  2416. @item ring2
  2417. @item all
  2418. @end table
  2419. Default value is "all", which will cycle through the list of all tests.
  2420. @end table
  2421. For example the following:
  2422. @example
  2423. testsrc=t=dc_luma
  2424. @end example
  2425. will generate a "dc_luma" test pattern.
  2426. @section frei0r_src
  2427. Provide a frei0r source.
  2428. To enable compilation of this filter you need to install the frei0r
  2429. header and configure FFmpeg with @code{--enable-frei0r}.
  2430. The source supports the syntax:
  2431. @example
  2432. @var{size}:@var{rate}:@var{src_name}[@{=|:@}@var{param1}:@var{param2}:...:@var{paramN}]
  2433. @end example
  2434. @var{size} is the size of the video to generate, may be a string of the
  2435. form @var{width}x@var{height} or a frame size abbreviation.
  2436. @var{rate} is the rate of the video to generate, may be a string of
  2437. the form @var{num}/@var{den} or a frame rate abbreviation.
  2438. @var{src_name} is the name to the frei0r source to load. For more
  2439. information regarding frei0r and how to set the parameters read the
  2440. section @ref{frei0r} in the description of the video filters.
  2441. Some examples follow:
  2442. @example
  2443. # generate a frei0r partik0l source with size 200x200 and frame rate 10
  2444. # which is overlayed on the overlay filter main input
  2445. frei0r_src=200x200:10:partik0l=1234 [overlay]; [in][overlay] overlay
  2446. @end example
  2447. @section life
  2448. Generate a life pattern.
  2449. This source is based on a generalization of John Conway's life game.
  2450. The sourced input represents a life grid, each pixel represents a cell
  2451. which can be in one of two possible states, alive or dead. Every cell
  2452. interacts with its eight neighbours, which are the cells that are
  2453. horizontally, vertically, or diagonally adjacent.
  2454. At each interaction the grid evolves according to the adopted rule,
  2455. which specifies the number of neighbor alive cells which will make a
  2456. cell stay alive or born. The @option{rule} option allows to specify
  2457. the rule to adopt.
  2458. This source accepts a list of options in the form of
  2459. @var{key}=@var{value} pairs separated by ":". A description of the
  2460. accepted options follows.
  2461. @table @option
  2462. @item filename, f
  2463. Set the file from which to read the initial grid state. In the file,
  2464. each non-whitespace character is considered an alive cell, and newline
  2465. is used to delimit the end of each row.
  2466. If this option is not specified, the initial grid is generated
  2467. randomly.
  2468. @item rate, r
  2469. Set the video rate, that is the number of frames generated per second.
  2470. Default is 25.
  2471. @item random_fill_ratio, ratio
  2472. Set the random fill ratio for the initial random grid. It is a
  2473. floating point number value ranging from 0 to 1, defaults to 1/PHI.
  2474. It is ignored when a file is specified.
  2475. @item random_seed, seed
  2476. Set the seed for filling the initial random grid, must be an integer
  2477. included between 0 and UINT32_MAX. If not specified, or if explicitly
  2478. set to -1, the filter will try to use a good random seed on a best
  2479. effort basis.
  2480. @item rule
  2481. Set the life rule.
  2482. A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
  2483. where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
  2484. @var{NS} specifies the number of alive neighbor cells which make a
  2485. live cell stay alive, and @var{NB} the number of alive neighbor cells
  2486. which make a dead cell to become alive (i.e. to "born").
  2487. "s" and "b" can be used in place of "S" and "B", respectively.
  2488. Alternatively a rule can be specified by an 18-bits integer. The 9
  2489. high order bits are used to encode the next cell state if it is alive
  2490. for each number of neighbor alive cells, the low order bits specify
  2491. the rule for "borning" new cells. Higher order bits encode for an
  2492. higher number of neighbor cells.
  2493. For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
  2494. rule of 12 and a born rule of 9, which corresponds to "S23/B03".
  2495. Default value is "S23/B3", which is the original Conway's game of life
  2496. rule, and will keep a cell alive if it has 2 or 3 neighbor alive
  2497. cells, and will born a new cell if there are three alive cells around
  2498. a dead cell.
  2499. @item size, s
  2500. Set the size of the output video.
  2501. If @option{filename} is specified, the size is set by default to the
  2502. same size of the input file. If @option{size} is set, it must contain
  2503. the size specified in the input file, and the initial grid defined in
  2504. that file is centered in the larger resulting area.
  2505. If a filename is not specified, the size value defaults to "320x240"
  2506. (used for a randomly generated initial grid).
  2507. @item stitch
  2508. If set to 1, stitch the left and right grid edges together, and the
  2509. top and bottom edges also. Defaults to 1.
  2510. @item mold
  2511. Set cell mold speed. If set, a dead cell will go from @option{death_color} to
  2512. @option{mold_color} with a step of @option{mold}. @option{mold} can have a
  2513. value from 0 to 255.
  2514. @item life_color
  2515. Set the color of living (or new born) cells.
  2516. @item death_color
  2517. Set the color of dead cells. If @option{mold} is set, this is the first color
  2518. used to represent a dead cell.
  2519. @item mold_color
  2520. Set mold color, for definitely dead and moldy cells.
  2521. @end table
  2522. @subsection Examples
  2523. @itemize
  2524. @item
  2525. Read a grid from @file{pattern}, and center it on a grid of size
  2526. 300x300 pixels:
  2527. @example
  2528. life=f=pattern:s=300x300
  2529. @end example
  2530. @item
  2531. Generate a random grid of size 200x200, with a fill ratio of 2/3:
  2532. @example
  2533. life=ratio=2/3:s=200x200
  2534. @end example
  2535. @item
  2536. Specify a custom rule for evolving a randomly generated grid:
  2537. @example
  2538. life=rule=S14/B34
  2539. @end example
  2540. @item
  2541. Full example with slow death effect (mold) using @command{ffplay}:
  2542. @example
  2543. ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
  2544. @end example
  2545. @end itemize
  2546. @section nullsrc, rgbtestsrc, testsrc
  2547. The @code{nullsrc} source returns unprocessed video frames. It is
  2548. mainly useful to be employed in analysis / debugging tools, or as the
  2549. source for filters which ignore the input data.
  2550. The @code{rgbtestsrc} source generates an RGB test pattern useful for
  2551. detecting RGB vs BGR issues. You should see a red, green and blue
  2552. stripe from top to bottom.
  2553. The @code{testsrc} source generates a test video pattern, showing a
  2554. color pattern, a scrolling gradient and a timestamp. This is mainly
  2555. intended for testing purposes.
  2556. These sources accept an optional sequence of @var{key}=@var{value} pairs,
  2557. separated by ":". The description of the accepted options follows.
  2558. @table @option
  2559. @item size, s
  2560. Specify the size of the sourced video, it may be a string of the form
  2561. @var{width}x@var{height}, or the name of a size abbreviation. The
  2562. default value is "320x240".
  2563. @item rate, r
  2564. Specify the frame rate of the sourced video, as the number of frames
  2565. generated per second. It has to be a string in the format
  2566. @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a float
  2567. number or a valid video frame rate abbreviation. The default value is
  2568. "25".
  2569. @item sar
  2570. Set the sample aspect ratio of the sourced video.
  2571. @item duration, d
  2572. Set the video duration of the sourced video. The accepted syntax is:
  2573. @example
  2574. [-]HH[:MM[:SS[.m...]]]
  2575. [-]S+[.m...]
  2576. @end example
  2577. See also the function @code{av_parse_time()}.
  2578. If not specified, or the expressed duration is negative, the video is
  2579. supposed to be generated forever.
  2580. @item decimals, n
  2581. Set the number of decimals to show in the timestamp, only used in the
  2582. @code{testsrc} source.
  2583. The displayed timestamp value will correspond to the original
  2584. timestamp value multiplied by the power of 10 of the specified
  2585. value. Default value is 0.
  2586. @end table
  2587. For example the following:
  2588. @example
  2589. testsrc=duration=5.3:size=qcif:rate=10
  2590. @end example
  2591. will generate a video with a duration of 5.3 seconds, with size
  2592. 176x144 and a frame rate of 10 frames per second.
  2593. If the input content is to be ignored, @code{nullsrc} can be used. The
  2594. following command generates noise in the luminance plane by employing
  2595. the @code{mp=geq} filter:
  2596. @example
  2597. nullsrc=s=256x256, mp=geq=random(1)*255:128:128
  2598. @end example
  2599. @c man end VIDEO SOURCES
  2600. @chapter Video Sinks
  2601. @c man begin VIDEO SINKS
  2602. Below is a description of the currently available video sinks.
  2603. @section buffersink
  2604. Buffer video frames, and make them available to the end of the filter
  2605. graph.
  2606. This sink is mainly intended for a programmatic use, in particular
  2607. through the interface defined in @file{libavfilter/buffersink.h}.
  2608. It does not require a string parameter in input, but you need to
  2609. specify a pointer to a list of supported pixel formats terminated by
  2610. -1 in the opaque parameter provided to @code{avfilter_init_filter}
  2611. when initializing this sink.
  2612. @section nullsink
  2613. Null video sink, do absolutely nothing with the input video. It is
  2614. mainly useful as a template and to be employed in analysis / debugging
  2615. tools.
  2616. @c man end VIDEO SINKS