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.

3579 lines
101KB

  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 box
  926. Used to draw a box around text using background color.
  927. Value should be either 1 (enable) or 0 (disable).
  928. The default value of @var{box} is 0.
  929. @item boxcolor
  930. The color to be used for drawing box around text.
  931. Either a string (e.g. "yellow") or in 0xRRGGBB[AA] format
  932. (e.g. "0xff00ff"), possibly followed by an alpha specifier.
  933. The default value of @var{boxcolor} is "white".
  934. @item draw
  935. Set an expression which specifies if the text should be drawn. If the
  936. expression evaluates to 0, the text is not drawn. This is useful for
  937. specifying that the text should be drawn only when specific conditions
  938. are met.
  939. Default value is "1".
  940. See below for the list of accepted constants and functions.
  941. @item fix_bounds
  942. If true, check and fix text coords to avoid clipping.
  943. @item fontcolor
  944. The color to be used for drawing fonts.
  945. Either a string (e.g. "red") or in 0xRRGGBB[AA] format
  946. (e.g. "0xff000033"), possibly followed by an alpha specifier.
  947. The default value of @var{fontcolor} is "black".
  948. @item fontfile
  949. The font file to be used for drawing text. Path must be included.
  950. This parameter is mandatory.
  951. @item fontsize
  952. The font size to be used for drawing text.
  953. The default value of @var{fontsize} is 16.
  954. @item ft_load_flags
  955. Flags to be used for loading the fonts.
  956. The flags map the corresponding flags supported by libfreetype, and are
  957. a combination of the following values:
  958. @table @var
  959. @item default
  960. @item no_scale
  961. @item no_hinting
  962. @item render
  963. @item no_bitmap
  964. @item vertical_layout
  965. @item force_autohint
  966. @item crop_bitmap
  967. @item pedantic
  968. @item ignore_global_advance_width
  969. @item no_recurse
  970. @item ignore_transform
  971. @item monochrome
  972. @item linear_design
  973. @item no_autohint
  974. @item end table
  975. @end table
  976. Default value is "render".
  977. For more information consult the documentation for the FT_LOAD_*
  978. libfreetype flags.
  979. @item shadowcolor
  980. The color to be used for drawing a shadow behind the drawn text. It
  981. can be a color name (e.g. "yellow") or a string in the 0xRRGGBB[AA]
  982. form (e.g. "0xff00ff"), possibly followed by an alpha specifier.
  983. The default value of @var{shadowcolor} is "black".
  984. @item shadowx, shadowy
  985. The x and y offsets for the text shadow position with respect to the
  986. position of the text. They can be either positive or negative
  987. values. Default value for both is "0".
  988. @item tabsize
  989. The size in number of spaces to use for rendering the tab.
  990. Default value is 4.
  991. @item timecode
  992. Set the initial timecode representation in "hh:mm:ss[:;.]ff"
  993. format. It can be used with or without text parameter. @var{timecode_rate}
  994. option must be specified.
  995. @item timecode_rate, rate, r
  996. Set the timecode frame rate (timecode only).
  997. @item text
  998. The text string to be drawn. The text must be a sequence of UTF-8
  999. encoded characters.
  1000. This parameter is mandatory if no file is specified with the parameter
  1001. @var{textfile}.
  1002. @item textfile
  1003. A text file containing text to be drawn. The text must be a sequence
  1004. of UTF-8 encoded characters.
  1005. This parameter is mandatory if no text string is specified with the
  1006. parameter @var{text}.
  1007. If both @var{text} and @var{textfile} are specified, an error is thrown.
  1008. @item x, y
  1009. The expressions which specify the offsets where text will be drawn
  1010. within the video frame. They are relative to the top/left border of the
  1011. output image.
  1012. The default value of @var{x} and @var{y} is "0".
  1013. See below for the list of accepted constants and functions.
  1014. @end table
  1015. The parameters for @var{x} and @var{y} are expressions containing the
  1016. following constants and functions:
  1017. @table @option
  1018. @item dar
  1019. input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
  1020. @item hsub, vsub
  1021. horizontal and vertical chroma subsample values. For example for the
  1022. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  1023. @item line_h, lh
  1024. the height of each text line
  1025. @item main_h, h, H
  1026. the input height
  1027. @item main_w, w, W
  1028. the input width
  1029. @item max_glyph_a, ascent
  1030. the maximum distance from the baseline to the highest/upper grid
  1031. coordinate used to place a glyph outline point, for all the rendered
  1032. glyphs.
  1033. It is a positive value, due to the grid's orientation with the Y axis
  1034. upwards.
  1035. @item max_glyph_d, descent
  1036. the maximum distance from the baseline to the lowest grid coordinate
  1037. used to place a glyph outline point, for all the rendered glyphs.
  1038. This is a negative value, due to the grid's orientation, with the Y axis
  1039. upwards.
  1040. @item max_glyph_h
  1041. maximum glyph height, that is the maximum height for all the glyphs
  1042. contained in the rendered text, it is equivalent to @var{ascent} -
  1043. @var{descent}.
  1044. @item max_glyph_w
  1045. maximum glyph width, that is the maximum width for all the glyphs
  1046. contained in the rendered text
  1047. @item n
  1048. the number of input frame, starting from 0
  1049. @item rand(min, max)
  1050. return a random number included between @var{min} and @var{max}
  1051. @item sar
  1052. input sample aspect ratio
  1053. @item t
  1054. timestamp expressed in seconds, NAN if the input timestamp is unknown
  1055. @item text_h, th
  1056. the height of the rendered text
  1057. @item text_w, tw
  1058. the width of the rendered text
  1059. @item x, y
  1060. the x and y offset coordinates where the text is drawn.
  1061. These parameters allow the @var{x} and @var{y} expressions to refer
  1062. each other, so you can for example specify @code{y=x/dar}.
  1063. @end table
  1064. If libavfilter was built with @code{--enable-fontconfig}, then
  1065. @option{fontfile} can be a fontconfig pattern or omitted.
  1066. Some examples follow.
  1067. @itemize
  1068. @item
  1069. Draw "Test Text" with font FreeSerif, using the default values for the
  1070. optional parameters.
  1071. @example
  1072. drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
  1073. @end example
  1074. @item
  1075. Draw 'Test Text' with font FreeSerif of size 24 at position x=100
  1076. and y=50 (counting from the top-left corner of the screen), text is
  1077. yellow with a red box around it. Both the text and the box have an
  1078. opacity of 20%.
  1079. @example
  1080. drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
  1081. x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
  1082. @end example
  1083. Note that the double quotes are not necessary if spaces are not used
  1084. within the parameter list.
  1085. @item
  1086. Show the text at the center of the video frame:
  1087. @example
  1088. drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h-line_h)/2"
  1089. @end example
  1090. @item
  1091. Show a text line sliding from right to left in the last row of the video
  1092. frame. The file @file{LONG_LINE} is assumed to contain a single line
  1093. with no newlines.
  1094. @example
  1095. drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
  1096. @end example
  1097. @item
  1098. Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
  1099. @example
  1100. drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
  1101. @end example
  1102. @item
  1103. Draw a single green letter "g", at the center of the input video.
  1104. The glyph baseline is placed at half screen height.
  1105. @example
  1106. drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
  1107. @end example
  1108. @item
  1109. Show text for 1 second every 3 seconds:
  1110. @example
  1111. drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:draw=lt(mod(t\\,3)\\,1):text='blink'"
  1112. @end example
  1113. @item
  1114. Use fontconfig to set the font. Note that the colons need to be escaped.
  1115. @example
  1116. drawtext='fontfile=Linux Libertine O-40\\:style=Semibold:text=FFmpeg'
  1117. @end example
  1118. @end itemize
  1119. For more information about libfreetype, check:
  1120. @url{http://www.freetype.org/}.
  1121. For more information about fontconfig, check:
  1122. @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
  1123. @section fade
  1124. Apply fade-in/out effect to input video.
  1125. It accepts the parameters:
  1126. @var{type}:@var{start_frame}:@var{nb_frames}[:@var{options}]
  1127. @var{type} specifies if the effect type, can be either "in" for
  1128. fade-in, or "out" for a fade-out effect.
  1129. @var{start_frame} specifies the number of the start frame for starting
  1130. to apply the fade effect.
  1131. @var{nb_frames} specifies the number of frames for which the fade
  1132. effect has to last. At the end of the fade-in effect the output video
  1133. will have the same intensity as the input video, at the end of the
  1134. fade-out transition the output video will be completely black.
  1135. @var{options} is an optional sequence of @var{key}=@var{value} pairs,
  1136. separated by ":". The description of the accepted options follows.
  1137. @table @option
  1138. @item type, t
  1139. See @var{type}.
  1140. @item start_frame, s
  1141. See @var{start_frame}.
  1142. @item nb_frames, n
  1143. See @var{nb_frames}.
  1144. @item alpha
  1145. If set to 1, fade only alpha channel, if one exists on the input.
  1146. Default value is 0.
  1147. @end table
  1148. A few usage examples follow, usable too as test scenarios.
  1149. @example
  1150. # fade in first 30 frames of video
  1151. fade=in:0:30
  1152. # fade out last 45 frames of a 200-frame video
  1153. fade=out:155:45
  1154. # fade in first 25 frames and fade out last 25 frames of a 1000-frame video
  1155. fade=in:0:25, fade=out:975:25
  1156. # make first 5 frames black, then fade in from frame 5-24
  1157. fade=in:5:20
  1158. # fade in alpha over first 25 frames of video
  1159. fade=in:0:25:alpha=1
  1160. @end example
  1161. @section fieldorder
  1162. Transform the field order of the input video.
  1163. It accepts one parameter which specifies the required field order that
  1164. the input interlaced video will be transformed to. The parameter can
  1165. assume one of the following values:
  1166. @table @option
  1167. @item 0 or bff
  1168. output bottom field first
  1169. @item 1 or tff
  1170. output top field first
  1171. @end table
  1172. Default value is "tff".
  1173. Transformation is achieved by shifting the picture content up or down
  1174. by one line, and filling the remaining line with appropriate picture content.
  1175. This method is consistent with most broadcast field order converters.
  1176. If the input video is not flagged as being interlaced, or it is already
  1177. flagged as being of the required output field order then this filter does
  1178. not alter the incoming video.
  1179. This filter is very useful when converting to or from PAL DV material,
  1180. which is bottom field first.
  1181. For example:
  1182. @example
  1183. ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
  1184. @end example
  1185. @section fifo
  1186. Buffer input images and send them when they are requested.
  1187. This filter is mainly useful when auto-inserted by the libavfilter
  1188. framework.
  1189. The filter does not take parameters.
  1190. @section format
  1191. Convert the input video to one of the specified pixel formats.
  1192. Libavfilter will try to pick one that is supported for the input to
  1193. the next filter.
  1194. The filter accepts a list of pixel format names, separated by ":",
  1195. for example "yuv420p:monow:rgb24".
  1196. Some examples follow:
  1197. @example
  1198. # convert the input video to the format "yuv420p"
  1199. format=yuv420p
  1200. # convert the input video to any of the formats in the list
  1201. format=yuv420p:yuv444p:yuv410p
  1202. @end example
  1203. @anchor{frei0r}
  1204. @section frei0r
  1205. Apply a frei0r effect to the input video.
  1206. To enable compilation of this filter you need to install the frei0r
  1207. header and configure FFmpeg with @code{--enable-frei0r}.
  1208. The filter supports the syntax:
  1209. @example
  1210. @var{filter_name}[@{:|=@}@var{param1}:@var{param2}:...:@var{paramN}]
  1211. @end example
  1212. @var{filter_name} is the name to the frei0r effect to load. If the
  1213. environment variable @env{FREI0R_PATH} is defined, the frei0r effect
  1214. is searched in each one of the directories specified by the colon
  1215. separated list in @env{FREIOR_PATH}, otherwise in the standard frei0r
  1216. paths, which are in this order: @file{HOME/.frei0r-1/lib/},
  1217. @file{/usr/local/lib/frei0r-1/}, @file{/usr/lib/frei0r-1/}.
  1218. @var{param1}, @var{param2}, ... , @var{paramN} specify the parameters
  1219. for the frei0r effect.
  1220. A frei0r effect parameter can be a boolean (whose values are specified
  1221. with "y" and "n"), a double, a color (specified by the syntax
  1222. @var{R}/@var{G}/@var{B}, @var{R}, @var{G}, and @var{B} being float
  1223. numbers from 0.0 to 1.0) or by an @code{av_parse_color()} color
  1224. description), a position (specified by the syntax @var{X}/@var{Y},
  1225. @var{X} and @var{Y} being float numbers) and a string.
  1226. The number and kind of parameters depend on the loaded effect. If an
  1227. effect parameter is not specified the default value is set.
  1228. Some examples follow:
  1229. @example
  1230. # apply the distort0r effect, set the first two double parameters
  1231. frei0r=distort0r:0.5:0.01
  1232. # apply the colordistance effect, takes a color as first parameter
  1233. frei0r=colordistance:0.2/0.3/0.4
  1234. frei0r=colordistance:violet
  1235. frei0r=colordistance:0x112233
  1236. # apply the perspective effect, specify the top left and top right
  1237. # image positions
  1238. frei0r=perspective:0.2/0.2:0.8/0.2
  1239. @end example
  1240. For more information see:
  1241. @url{http://piksel.org/frei0r}
  1242. @section gradfun
  1243. Fix the banding artifacts that are sometimes introduced into nearly flat
  1244. regions by truncation to 8bit color depth.
  1245. Interpolate the gradients that should go where the bands are, and
  1246. dither them.
  1247. This filter is designed for playback only. Do not use it prior to
  1248. lossy compression, because compression tends to lose the dither and
  1249. bring back the bands.
  1250. The filter takes two optional parameters, separated by ':':
  1251. @var{strength}:@var{radius}
  1252. @var{strength} is the maximum amount by which the filter will change
  1253. any one pixel. Also the threshold for detecting nearly flat
  1254. regions. Acceptable values range from .51 to 255, default value is
  1255. 1.2, out-of-range values will be clipped to the valid range.
  1256. @var{radius} is the neighborhood to fit the gradient to. A larger
  1257. radius makes for smoother gradients, but also prevents the filter from
  1258. modifying the pixels near detailed regions. Acceptable values are
  1259. 8-32, default value is 16, out-of-range values will be clipped to the
  1260. valid range.
  1261. @example
  1262. # default parameters
  1263. gradfun=1.2:16
  1264. # omitting radius
  1265. gradfun=1.2
  1266. @end example
  1267. @section hflip
  1268. Flip the input video horizontally.
  1269. For example to horizontally flip the input video with @command{ffmpeg}:
  1270. @example
  1271. ffmpeg -i in.avi -vf "hflip" out.avi
  1272. @end example
  1273. @section hqdn3d
  1274. High precision/quality 3d denoise filter. This filter aims to reduce
  1275. image noise producing smooth images and making still images really
  1276. still. It should enhance compressibility.
  1277. It accepts the following optional parameters:
  1278. @var{luma_spatial}:@var{chroma_spatial}:@var{luma_tmp}:@var{chroma_tmp}
  1279. @table @option
  1280. @item luma_spatial
  1281. a non-negative float number which specifies spatial luma strength,
  1282. defaults to 4.0
  1283. @item chroma_spatial
  1284. a non-negative float number which specifies spatial chroma strength,
  1285. defaults to 3.0*@var{luma_spatial}/4.0
  1286. @item luma_tmp
  1287. a float number which specifies luma temporal strength, defaults to
  1288. 6.0*@var{luma_spatial}/4.0
  1289. @item chroma_tmp
  1290. a float number which specifies chroma temporal strength, defaults to
  1291. @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}
  1292. @end table
  1293. @section idet
  1294. Interlaceing detect filter. This filter tries to detect if the input is
  1295. interlaced or progressive. Top or bottom field first.
  1296. @section lut, lutrgb, lutyuv
  1297. Compute a look-up table for binding each pixel component input value
  1298. to an output value, and apply it to input video.
  1299. @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
  1300. to an RGB input video.
  1301. These filters accept in input a ":"-separated list of options, which
  1302. specify the expressions used for computing the lookup table for the
  1303. corresponding pixel component values.
  1304. The @var{lut} filter requires either YUV or RGB pixel formats in
  1305. input, and accepts the options:
  1306. @table @option
  1307. @item c0
  1308. first pixel component
  1309. @item c1
  1310. second pixel component
  1311. @item c2
  1312. third pixel component
  1313. @item c3
  1314. fourth pixel component, corresponds to the alpha component
  1315. @end table
  1316. The exact component associated to each option depends on the format in
  1317. input.
  1318. The @var{lutrgb} filter requires RGB pixel formats in input, and
  1319. accepts the options:
  1320. @table @option
  1321. @item r
  1322. red component
  1323. @item g
  1324. green component
  1325. @item b
  1326. blue component
  1327. @item a
  1328. alpha component
  1329. @end table
  1330. The @var{lutyuv} filter requires YUV pixel formats in input, and
  1331. accepts the options:
  1332. @table @option
  1333. @item y
  1334. Y/luminance component
  1335. @item u
  1336. U/Cb component
  1337. @item v
  1338. V/Cr component
  1339. @item a
  1340. alpha component
  1341. @end table
  1342. The expressions can contain the following constants and functions:
  1343. @table @option
  1344. @item w, h
  1345. the input width and height
  1346. @item val
  1347. input value for the pixel component
  1348. @item clipval
  1349. the input value clipped in the @var{minval}-@var{maxval} range
  1350. @item maxval
  1351. maximum value for the pixel component
  1352. @item minval
  1353. minimum value for the pixel component
  1354. @item negval
  1355. the negated value for the pixel component value clipped in the
  1356. @var{minval}-@var{maxval} range , it corresponds to the expression
  1357. "maxval-clipval+minval"
  1358. @item clip(val)
  1359. the computed value in @var{val} clipped in the
  1360. @var{minval}-@var{maxval} range
  1361. @item gammaval(gamma)
  1362. the computed gamma correction value of the pixel component value
  1363. clipped in the @var{minval}-@var{maxval} range, corresponds to the
  1364. expression
  1365. "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
  1366. @end table
  1367. All expressions default to "val".
  1368. Some examples follow:
  1369. @example
  1370. # negate input video
  1371. lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
  1372. lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
  1373. # the above is the same as
  1374. lutrgb="r=negval:g=negval:b=negval"
  1375. lutyuv="y=negval:u=negval:v=negval"
  1376. # negate luminance
  1377. lutyuv=y=negval
  1378. # remove chroma components, turns the video into a graytone image
  1379. lutyuv="u=128:v=128"
  1380. # apply a luma burning effect
  1381. lutyuv="y=2*val"
  1382. # remove green and blue components
  1383. lutrgb="g=0:b=0"
  1384. # set a constant alpha channel value on input
  1385. format=rgba,lutrgb=a="maxval-minval/2"
  1386. # correct luminance gamma by a 0.5 factor
  1387. lutyuv=y=gammaval(0.5)
  1388. @end example
  1389. @section mp
  1390. Apply an MPlayer filter to the input video.
  1391. This filter provides a wrapper around most of the filters of
  1392. MPlayer/MEncoder.
  1393. This wrapper is considered experimental. Some of the wrapped filters
  1394. may not work properly and we may drop support for them, as they will
  1395. be implemented natively into FFmpeg. Thus you should avoid
  1396. depending on them when writing portable scripts.
  1397. The filters accepts the parameters:
  1398. @var{filter_name}[:=]@var{filter_params}
  1399. @var{filter_name} is the name of a supported MPlayer filter,
  1400. @var{filter_params} is a string containing the parameters accepted by
  1401. the named filter.
  1402. The list of the currently supported filters follows:
  1403. @table @var
  1404. @item decimate
  1405. @item denoise3d
  1406. @item detc
  1407. @item dint
  1408. @item divtc
  1409. @item down3dright
  1410. @item dsize
  1411. @item eq2
  1412. @item eq
  1413. @item field
  1414. @item fil
  1415. @item fixpts
  1416. @item framestep
  1417. @item fspp
  1418. @item geq
  1419. @item harddup
  1420. @item hqdn3d
  1421. @item hue
  1422. @item il
  1423. @item ilpack
  1424. @item ivtc
  1425. @item kerndeint
  1426. @item mcdeint
  1427. @item noise
  1428. @item ow
  1429. @item palette
  1430. @item perspective
  1431. @item phase
  1432. @item pp7
  1433. @item pullup
  1434. @item qp
  1435. @item rectangle
  1436. @item rotate
  1437. @item sab
  1438. @item smartblur
  1439. @item softpulldown
  1440. @item softskip
  1441. @item spp
  1442. @item telecine
  1443. @item tile
  1444. @item tinterlace
  1445. @item unsharp
  1446. @item uspp
  1447. @item yuvcsp
  1448. @item yvu9
  1449. @end table
  1450. The parameter syntax and behavior for the listed filters are the same
  1451. of the corresponding MPlayer filters. For detailed instructions check
  1452. the "VIDEO FILTERS" section in the MPlayer manual.
  1453. Some examples follow:
  1454. @example
  1455. # adjust gamma, brightness, contrast
  1456. mp=eq2=1.0:2:0.5
  1457. # tweak hue and saturation
  1458. mp=hue=100:-10
  1459. @end example
  1460. See also mplayer(1), @url{http://www.mplayerhq.hu/}.
  1461. @section negate
  1462. Negate input video.
  1463. This filter accepts an integer in input, if non-zero it negates the
  1464. alpha component (if available). The default value in input is 0.
  1465. @section noformat
  1466. Force libavfilter not to use any of the specified pixel formats for the
  1467. input to the next filter.
  1468. The filter accepts a list of pixel format names, separated by ":",
  1469. for example "yuv420p:monow:rgb24".
  1470. Some examples follow:
  1471. @example
  1472. # force libavfilter to use a format different from "yuv420p" for the
  1473. # input to the vflip filter
  1474. noformat=yuv420p,vflip
  1475. # convert the input video to any of the formats not contained in the list
  1476. noformat=yuv420p:yuv444p:yuv410p
  1477. @end example
  1478. @section null
  1479. Pass the video source unchanged to the output.
  1480. @section ocv
  1481. Apply video transform using libopencv.
  1482. To enable this filter install libopencv library and headers and
  1483. configure FFmpeg with @code{--enable-libopencv}.
  1484. The filter takes the parameters: @var{filter_name}@{:=@}@var{filter_params}.
  1485. @var{filter_name} is the name of the libopencv filter to apply.
  1486. @var{filter_params} specifies the parameters to pass to the libopencv
  1487. filter. If not specified the default values are assumed.
  1488. Refer to the official libopencv documentation for more precise
  1489. information:
  1490. @url{http://opencv.willowgarage.com/documentation/c/image_filtering.html}
  1491. Follows the list of supported libopencv filters.
  1492. @anchor{dilate}
  1493. @subsection dilate
  1494. Dilate an image by using a specific structuring element.
  1495. This filter corresponds to the libopencv function @code{cvDilate}.
  1496. It accepts the parameters: @var{struct_el}:@var{nb_iterations}.
  1497. @var{struct_el} represents a structuring element, and has the syntax:
  1498. @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
  1499. @var{cols} and @var{rows} represent the number of columns and rows of
  1500. the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
  1501. point, and @var{shape} the shape for the structuring element, and
  1502. can be one of the values "rect", "cross", "ellipse", "custom".
  1503. If the value for @var{shape} is "custom", it must be followed by a
  1504. string of the form "=@var{filename}". The file with name
  1505. @var{filename} is assumed to represent a binary image, with each
  1506. printable character corresponding to a bright pixel. When a custom
  1507. @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
  1508. or columns and rows of the read file are assumed instead.
  1509. The default value for @var{struct_el} is "3x3+0x0/rect".
  1510. @var{nb_iterations} specifies the number of times the transform is
  1511. applied to the image, and defaults to 1.
  1512. Follow some example:
  1513. @example
  1514. # use the default values
  1515. ocv=dilate
  1516. # dilate using a structuring element with a 5x5 cross, iterate two times
  1517. ocv=dilate=5x5+2x2/cross:2
  1518. # read the shape from the file diamond.shape, iterate two times
  1519. # the file diamond.shape may contain a pattern of characters like this:
  1520. # *
  1521. # ***
  1522. # *****
  1523. # ***
  1524. # *
  1525. # the specified cols and rows are ignored (but not the anchor point coordinates)
  1526. ocv=0x0+2x2/custom=diamond.shape:2
  1527. @end example
  1528. @subsection erode
  1529. Erode an image by using a specific structuring element.
  1530. This filter corresponds to the libopencv function @code{cvErode}.
  1531. The filter accepts the parameters: @var{struct_el}:@var{nb_iterations},
  1532. with the same syntax and semantics as the @ref{dilate} filter.
  1533. @subsection smooth
  1534. Smooth the input video.
  1535. The filter takes the following parameters:
  1536. @var{type}:@var{param1}:@var{param2}:@var{param3}:@var{param4}.
  1537. @var{type} is the type of smooth filter to apply, and can be one of
  1538. the following values: "blur", "blur_no_scale", "median", "gaussian",
  1539. "bilateral". The default value is "gaussian".
  1540. @var{param1}, @var{param2}, @var{param3}, and @var{param4} are
  1541. parameters whose meanings depend on smooth type. @var{param1} and
  1542. @var{param2} accept integer positive values or 0, @var{param3} and
  1543. @var{param4} accept float values.
  1544. The default value for @var{param1} is 3, the default value for the
  1545. other parameters is 0.
  1546. These parameters correspond to the parameters assigned to the
  1547. libopencv function @code{cvSmooth}.
  1548. @anchor{overlay}
  1549. @section overlay
  1550. Overlay one video on top of another.
  1551. It takes two inputs and one output, the first input is the "main"
  1552. video on which the second input is overlayed.
  1553. It accepts the parameters: @var{x}:@var{y}[:@var{options}].
  1554. @var{x} is the x coordinate of the overlayed video on the main video,
  1555. @var{y} is the y coordinate. @var{x} and @var{y} are expressions containing
  1556. the following parameters:
  1557. @table @option
  1558. @item main_w, main_h
  1559. main input width and height
  1560. @item W, H
  1561. same as @var{main_w} and @var{main_h}
  1562. @item overlay_w, overlay_h
  1563. overlay input width and height
  1564. @item w, h
  1565. same as @var{overlay_w} and @var{overlay_h}
  1566. @end table
  1567. @var{options} is an optional list of @var{key}=@var{value} pairs,
  1568. separated by ":".
  1569. The description of the accepted options follows.
  1570. @table @option
  1571. @item rgb
  1572. If set to 1, force the filter to accept inputs in the RGB
  1573. color space. Default value is 0.
  1574. @end table
  1575. Be aware that frames are taken from each input video in timestamp
  1576. order, hence, if their initial timestamps differ, it is a a good idea
  1577. to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
  1578. have them begin in the same zero timestamp, as it does the example for
  1579. the @var{movie} filter.
  1580. Follow some examples:
  1581. @example
  1582. # draw the overlay at 10 pixels from the bottom right
  1583. # corner of the main video.
  1584. overlay=main_w-overlay_w-10:main_h-overlay_h-10
  1585. # insert a transparent PNG logo in the bottom left corner of the input
  1586. ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
  1587. # insert 2 different transparent PNG logos (second logo on bottom
  1588. # right corner):
  1589. ffmpeg -i input -i logo1 -i logo2 -filter_complex
  1590. 'overlay=10:H-h-10,overlay=W-w-10:H-h-10' output
  1591. # add a transparent color layer on top of the main video,
  1592. # WxH specifies the size of the main input to the overlay filter
  1593. color=red@.3:WxH [over]; [in][over] overlay [out]
  1594. @end example
  1595. You can chain together more overlays but the efficiency of such
  1596. approach is yet to be tested.
  1597. @section pad
  1598. Add paddings to the input image, and places the original input at the
  1599. given coordinates @var{x}, @var{y}.
  1600. It accepts the following parameters:
  1601. @var{width}:@var{height}:@var{x}:@var{y}:@var{color}.
  1602. The parameters @var{width}, @var{height}, @var{x}, and @var{y} are
  1603. expressions containing the following constants:
  1604. @table @option
  1605. @item in_w, in_h
  1606. the input video width and height
  1607. @item iw, ih
  1608. same as @var{in_w} and @var{in_h}
  1609. @item out_w, out_h
  1610. the output width and height, that is the size of the padded area as
  1611. specified by the @var{width} and @var{height} expressions
  1612. @item ow, oh
  1613. same as @var{out_w} and @var{out_h}
  1614. @item x, y
  1615. x and y offsets as specified by the @var{x} and @var{y}
  1616. expressions, or NAN if not yet specified
  1617. @item a
  1618. same as @var{iw} / @var{ih}
  1619. @item sar
  1620. input sample aspect ratio
  1621. @item dar
  1622. input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
  1623. @item hsub, vsub
  1624. horizontal and vertical chroma subsample values. For example for the
  1625. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  1626. @end table
  1627. Follows the description of the accepted parameters.
  1628. @table @option
  1629. @item width, height
  1630. Specify the size of the output image with the paddings added. If the
  1631. value for @var{width} or @var{height} is 0, the corresponding input size
  1632. is used for the output.
  1633. The @var{width} expression can reference the value set by the
  1634. @var{height} expression, and vice versa.
  1635. The default value of @var{width} and @var{height} is 0.
  1636. @item x, y
  1637. Specify the offsets where to place the input image in the padded area
  1638. with respect to the top/left border of the output image.
  1639. The @var{x} expression can reference the value set by the @var{y}
  1640. expression, and vice versa.
  1641. The default value of @var{x} and @var{y} is 0.
  1642. @item color
  1643. Specify the color of the padded area, it can be the name of a color
  1644. (case insensitive match) or a 0xRRGGBB[AA] sequence.
  1645. The default value of @var{color} is "black".
  1646. @end table
  1647. Some examples follow:
  1648. @example
  1649. # Add paddings with color "violet" to the input video. Output video
  1650. # size is 640x480, the top-left corner of the input video is placed at
  1651. # column 0, row 40.
  1652. pad=640:480:0:40:violet
  1653. # pad the input to get an output with dimensions increased bt 3/2,
  1654. # and put the input video at the center of the padded area
  1655. pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
  1656. # pad the input to get a squared output with size equal to the maximum
  1657. # value between the input width and height, and put the input video at
  1658. # the center of the padded area
  1659. pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
  1660. # pad the input to get a final w/h ratio of 16:9
  1661. pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
  1662. # for anamorphic video, in order to set the output display aspect ratio,
  1663. # it is necessary to use sar in the expression, according to the relation:
  1664. # (ih * X / ih) * sar = output_dar
  1665. # X = output_dar / sar
  1666. pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
  1667. # double output size and put the input video in the bottom-right
  1668. # corner of the output padded area
  1669. pad="2*iw:2*ih:ow-iw:oh-ih"
  1670. @end example
  1671. @section pixdesctest
  1672. Pixel format descriptor test filter, mainly useful for internal
  1673. testing. The output video should be equal to the input video.
  1674. For example:
  1675. @example
  1676. format=monow, pixdesctest
  1677. @end example
  1678. can be used to test the monowhite pixel format descriptor definition.
  1679. @section removelogo
  1680. Suppress a TV station logo, using an image file to determine which
  1681. pixels comprise the logo. It works by filling in the pixels that
  1682. comprise the logo with neighboring pixels.
  1683. This filter requires one argument which specifies the filter bitmap
  1684. file, which can be any image format supported by libavformat. The
  1685. width and height of the image file must match those of the video
  1686. stream being processed.
  1687. Pixels in the provided bitmap image with a value of zero are not
  1688. considered part of the logo, non-zero pixels are considered part of
  1689. the logo. If you use white (255) for the logo and black (0) for the
  1690. rest, you will be safe. For making the filter bitmap, it is
  1691. recommended to take a screen capture of a black frame with the logo
  1692. visible, and then using a threshold filter followed by the erode
  1693. filter once or twice.
  1694. If needed, little splotches can be fixed manually. Remember that if
  1695. logo pixels are not covered, the filter quality will be much
  1696. reduced. Marking too many pixels as part of the logo does not hurt as
  1697. much, but it will increase the amount of blurring needed to cover over
  1698. the image and will destroy more information than necessary, and extra
  1699. pixels will slow things down on a large logo.
  1700. @section scale
  1701. Scale the input video to @var{width}:@var{height}[:@var{interl}=@{1|-1@}] and/or convert the image format.
  1702. The scale filter forces the output display aspect ratio to be the same
  1703. of the input, by changing the output sample aspect ratio.
  1704. The parameters @var{width} and @var{height} are expressions containing
  1705. the following constants:
  1706. @table @option
  1707. @item in_w, in_h
  1708. the input width and height
  1709. @item iw, ih
  1710. same as @var{in_w} and @var{in_h}
  1711. @item out_w, out_h
  1712. the output (cropped) width and height
  1713. @item ow, oh
  1714. same as @var{out_w} and @var{out_h}
  1715. @item a
  1716. same as @var{iw} / @var{ih}
  1717. @item sar
  1718. input sample aspect ratio
  1719. @item dar
  1720. input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
  1721. @item hsub, vsub
  1722. horizontal and vertical chroma subsample values. For example for the
  1723. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  1724. @end table
  1725. If the input image format is different from the format requested by
  1726. the next filter, the scale filter will convert the input to the
  1727. requested format.
  1728. If the value for @var{width} or @var{height} is 0, the respective input
  1729. size is used for the output.
  1730. If the value for @var{width} or @var{height} is -1, the scale filter will
  1731. use, for the respective output size, a value that maintains the aspect
  1732. ratio of the input image.
  1733. The default value of @var{width} and @var{height} is 0.
  1734. Valid values for the optional parameter @var{interl} are:
  1735. @table @option
  1736. @item 1
  1737. force interlaced aware scaling
  1738. @item -1
  1739. select interlaced aware scaling depending on whether the source frames
  1740. are flagged as interlaced or not
  1741. @end table
  1742. Unless @var{interl} is set to one of the above options, interlaced scaling will not be used.
  1743. Some examples follow:
  1744. @example
  1745. # scale the input video to a size of 200x100.
  1746. scale=200:100
  1747. # scale the input to 2x
  1748. scale=2*iw:2*ih
  1749. # the above is the same as
  1750. scale=2*in_w:2*in_h
  1751. # scale the input to 2x with forced interlaced scaling
  1752. scale=2*iw:2*ih:interl=1
  1753. # scale the input to half size
  1754. scale=iw/2:ih/2
  1755. # increase the width, and set the height to the same size
  1756. scale=3/2*iw:ow
  1757. # seek for Greek harmony
  1758. scale=iw:1/PHI*iw
  1759. scale=ih*PHI:ih
  1760. # increase the height, and set the width to 3/2 of the height
  1761. scale=3/2*oh:3/5*ih
  1762. # increase the size, but make the size a multiple of the chroma
  1763. scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
  1764. # increase the width to a maximum of 500 pixels, keep the same input aspect ratio
  1765. scale='min(500\, iw*3/2):-1'
  1766. @end example
  1767. @section select
  1768. Select frames to pass in output.
  1769. It accepts in input an expression, which is evaluated for each input
  1770. frame. If the expression is evaluated to a non-zero value, the frame
  1771. is selected and passed to the output, otherwise it is discarded.
  1772. The expression can contain the following constants:
  1773. @table @option
  1774. @item n
  1775. the sequential number of the filtered frame, starting from 0
  1776. @item selected_n
  1777. the sequential number of the selected frame, starting from 0
  1778. @item prev_selected_n
  1779. the sequential number of the last selected frame, NAN if undefined
  1780. @item TB
  1781. timebase of the input timestamps
  1782. @item pts
  1783. the PTS (Presentation TimeStamp) of the filtered video frame,
  1784. expressed in @var{TB} units, NAN if undefined
  1785. @item t
  1786. the PTS (Presentation TimeStamp) of the filtered video frame,
  1787. expressed in seconds, NAN if undefined
  1788. @item prev_pts
  1789. the PTS of the previously filtered video frame, NAN if undefined
  1790. @item prev_selected_pts
  1791. the PTS of the last previously filtered video frame, NAN if undefined
  1792. @item prev_selected_t
  1793. the PTS of the last previously selected video frame, NAN if undefined
  1794. @item start_pts
  1795. the PTS of the first video frame in the video, NAN if undefined
  1796. @item start_t
  1797. the time of the first video frame in the video, NAN if undefined
  1798. @item pict_type
  1799. the type of the filtered frame, can assume one of the following
  1800. values:
  1801. @table @option
  1802. @item I
  1803. @item P
  1804. @item B
  1805. @item S
  1806. @item SI
  1807. @item SP
  1808. @item BI
  1809. @end table
  1810. @item interlace_type
  1811. the frame interlace type, can assume one of the following values:
  1812. @table @option
  1813. @item PROGRESSIVE
  1814. the frame is progressive (not interlaced)
  1815. @item TOPFIRST
  1816. the frame is top-field-first
  1817. @item BOTTOMFIRST
  1818. the frame is bottom-field-first
  1819. @end table
  1820. @item key
  1821. 1 if the filtered frame is a key-frame, 0 otherwise
  1822. @item pos
  1823. the position in the file of the filtered frame, -1 if the information
  1824. is not available (e.g. for synthetic video)
  1825. @end table
  1826. The default value of the select expression is "1".
  1827. Some examples follow:
  1828. @example
  1829. # select all frames in input
  1830. select
  1831. # the above is the same as:
  1832. select=1
  1833. # skip all frames:
  1834. select=0
  1835. # select only I-frames
  1836. select='eq(pict_type\,I)'
  1837. # select one frame every 100
  1838. select='not(mod(n\,100))'
  1839. # select only frames contained in the 10-20 time interval
  1840. select='gte(t\,10)*lte(t\,20)'
  1841. # select only I frames contained in the 10-20 time interval
  1842. select='gte(t\,10)*lte(t\,20)*eq(pict_type\,I)'
  1843. # select frames with a minimum distance of 10 seconds
  1844. select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
  1845. @end example
  1846. @section setdar, setsar
  1847. The @code{setdar} filter sets the Display Aspect Ratio for the filter
  1848. output video.
  1849. This is done by changing the specified Sample (aka Pixel) Aspect
  1850. Ratio, according to the following equation:
  1851. @example
  1852. @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
  1853. @end example
  1854. Keep in mind that the @code{setdar} filter does not modify the pixel
  1855. dimensions of the video frame. Also the display aspect ratio set by
  1856. this filter may be changed by later filters in the filterchain,
  1857. e.g. in case of scaling or if another "setdar" or a "setsar" filter is
  1858. applied.
  1859. The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
  1860. the filter output video.
  1861. Note that as a consequence of the application of this filter, the
  1862. output display aspect ratio will change according to the equation
  1863. above.
  1864. Keep in mind that the sample aspect ratio set by the @code{setsar}
  1865. filter may be changed by later filters in the filterchain, e.g. if
  1866. another "setsar" or a "setdar" filter is applied.
  1867. The @code{setdar} and @code{setsar} filters accept a parameter string
  1868. which represents the wanted aspect ratio. The parameter can
  1869. be a floating point number string, an expression, or a string of the form
  1870. @var{num}:@var{den}, where @var{num} and @var{den} are the numerator
  1871. and denominator of the aspect ratio. If the parameter is not
  1872. specified, it is assumed the value "0:1".
  1873. For example to change the display aspect ratio to 16:9, specify:
  1874. @example
  1875. setdar=16:9
  1876. @end example
  1877. The example above is equivalent to:
  1878. @example
  1879. setdar=1.77777
  1880. @end example
  1881. To change the sample aspect ratio to 10:11, specify:
  1882. @example
  1883. setsar=10:11
  1884. @end example
  1885. @section setfield
  1886. Force field for the output video frame.
  1887. The @code{setfield} filter marks the interlace type field for the
  1888. output frames. It does not change the input frame, but only sets the
  1889. corresponding property, which affects how the frame is treated by
  1890. following filters (e.g. @code{fieldorder} or @code{yadif}).
  1891. It accepts a string parameter, which can assume the following values:
  1892. @table @samp
  1893. @item auto
  1894. Keep the same field property.
  1895. @item bff
  1896. Mark the frame as bottom-field-first.
  1897. @item tff
  1898. Mark the frame as top-field-first.
  1899. @item prog
  1900. Mark the frame as progressive.
  1901. @end table
  1902. @section setpts
  1903. Change the PTS (presentation timestamp) of the input video frames.
  1904. Accept in input an expression evaluated through the eval API, which
  1905. can contain the following constants:
  1906. @table @option
  1907. @item PTS
  1908. the presentation timestamp in input
  1909. @item N
  1910. the count of the input frame, starting from 0.
  1911. @item STARTPTS
  1912. the PTS of the first video frame
  1913. @item INTERLACED
  1914. tell if the current frame is interlaced
  1915. @item POS
  1916. original position in the file of the frame, or undefined if undefined
  1917. for the current frame
  1918. @item PREV_INPTS
  1919. previous input PTS
  1920. @item PREV_OUTPTS
  1921. previous output PTS
  1922. @end table
  1923. Some examples follow:
  1924. @example
  1925. # start counting PTS from zero
  1926. setpts=PTS-STARTPTS
  1927. # fast motion
  1928. setpts=0.5*PTS
  1929. # slow motion
  1930. setpts=2.0*PTS
  1931. # fixed rate 25 fps
  1932. setpts=N/(25*TB)
  1933. # fixed rate 25 fps with some jitter
  1934. setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
  1935. @end example
  1936. @section settb
  1937. Set the timebase to use for the output frames timestamps.
  1938. It is mainly useful for testing timebase configuration.
  1939. It accepts in input an arithmetic expression representing a rational.
  1940. The expression can contain the constants "AVTB" (the
  1941. default timebase), and "intb" (the input timebase).
  1942. The default value for the input is "intb".
  1943. Follow some examples.
  1944. @example
  1945. # set the timebase to 1/25
  1946. settb=1/25
  1947. # set the timebase to 1/10
  1948. settb=0.1
  1949. #set the timebase to 1001/1000
  1950. settb=1+0.001
  1951. #set the timebase to 2*intb
  1952. settb=2*intb
  1953. #set the default timebase value
  1954. settb=AVTB
  1955. @end example
  1956. @section showinfo
  1957. Show a line containing various information for each input video frame.
  1958. The input video is not modified.
  1959. The shown line contains a sequence of key/value pairs of the form
  1960. @var{key}:@var{value}.
  1961. A description of each shown parameter follows:
  1962. @table @option
  1963. @item n
  1964. sequential number of the input frame, starting from 0
  1965. @item pts
  1966. Presentation TimeStamp of the input frame, expressed as a number of
  1967. time base units. The time base unit depends on the filter input pad.
  1968. @item pts_time
  1969. Presentation TimeStamp of the input frame, expressed as a number of
  1970. seconds
  1971. @item pos
  1972. position of the frame in the input stream, -1 if this information in
  1973. unavailable and/or meaningless (for example in case of synthetic video)
  1974. @item fmt
  1975. pixel format name
  1976. @item sar
  1977. sample aspect ratio of the input frame, expressed in the form
  1978. @var{num}/@var{den}
  1979. @item s
  1980. size of the input frame, expressed in the form
  1981. @var{width}x@var{height}
  1982. @item i
  1983. interlaced mode ("P" for "progressive", "T" for top field first, "B"
  1984. for bottom field first)
  1985. @item iskey
  1986. 1 if the frame is a key frame, 0 otherwise
  1987. @item type
  1988. picture type of the input frame ("I" for an I-frame, "P" for a
  1989. P-frame, "B" for a B-frame, "?" for unknown type).
  1990. Check also the documentation of the @code{AVPictureType} enum and of
  1991. the @code{av_get_picture_type_char} function defined in
  1992. @file{libavutil/avutil.h}.
  1993. @item checksum
  1994. Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame
  1995. @item plane_checksum
  1996. Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
  1997. expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]"
  1998. @end table
  1999. @section slicify
  2000. Pass the images of input video on to next video filter as multiple
  2001. slices.
  2002. @example
  2003. ffmpeg -i in.avi -vf "slicify=32" out.avi
  2004. @end example
  2005. The filter accepts the slice height as parameter. If the parameter is
  2006. not specified it will use the default value of 16.
  2007. Adding this in the beginning of filter chains should make filtering
  2008. faster due to better use of the memory cache.
  2009. @section split
  2010. Pass on the input video to two outputs. Both outputs are identical to
  2011. the input video.
  2012. For example:
  2013. @example
  2014. [in] split [splitout1][splitout2];
  2015. [splitout1] crop=100:100:0:0 [cropout];
  2016. [splitout2] pad=200:200:100:100 [padout];
  2017. @end example
  2018. will create two separate outputs from the same input, one cropped and
  2019. one padded.
  2020. @section super2xsai
  2021. Scale the input by 2x and smooth using the Super2xSaI (Scale and
  2022. Interpolate) pixel art scaling algorithm.
  2023. Useful for enlarging pixel art images without reducing sharpness.
  2024. @section swapuv
  2025. Swap U & V plane.
  2026. @section thumbnail
  2027. Select the most representative frame in a given sequence of consecutive frames.
  2028. It accepts as argument the frames batch size to analyze (default @var{N}=100);
  2029. in a set of @var{N} frames, the filter will pick one of them, and then handle
  2030. the next batch of @var{N} frames until the end.
  2031. Since the filter keeps track of the whole frames sequence, a bigger @var{N}
  2032. value will result in a higher memory usage, so a high value is not recommended.
  2033. The following example extract one picture each 50 frames:
  2034. @example
  2035. thumbnail=50
  2036. @end example
  2037. Complete example of a thumbnail creation with @command{ffmpeg}:
  2038. @example
  2039. ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
  2040. @end example
  2041. @section tile
  2042. Tile several successive frames together.
  2043. It accepts as argument the tile size (i.e. the number of lines and columns)
  2044. in the form "@var{w}x@var{h}".
  2045. For example, produce 8×8 PNG tiles of all keyframes (@option{-skip_frame
  2046. nokey}) in a movie:
  2047. @example
  2048. ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
  2049. @end example
  2050. The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
  2051. duplicating each output frame to accomodate the originally detected frame
  2052. rate.
  2053. @section tinterlace
  2054. Perform various types of temporal field interlacing.
  2055. Frames are counted starting from 1, so the first input frame is
  2056. considered odd.
  2057. This filter accepts a single parameter specifying the mode. Available
  2058. modes are:
  2059. @table @samp
  2060. @item merge, 0
  2061. Move odd frames into the upper field, even into the lower field,
  2062. generating a double height frame at half framerate.
  2063. @item drop_odd, 1
  2064. Only output even frames, odd frames are dropped, generating a frame with
  2065. unchanged height at half framerate.
  2066. @item drop_even, 2
  2067. Only output odd frames, even frames are dropped, generating a frame with
  2068. unchanged height at half framerate.
  2069. @item pad, 3
  2070. Expand each frame to full height, but pad alternate lines with black,
  2071. generating a frame with double height at the same input framerate.
  2072. @item interleave_top, 4
  2073. Interleave the upper field from odd frames with the lower field from
  2074. even frames, generating a frame with unchanged height at half framerate.
  2075. @item interleave_bottom, 5
  2076. Interleave the lower field from odd frames with the upper field from
  2077. even frames, generating a frame with unchanged height at half framerate.
  2078. @item interlacex2, 6
  2079. Double frame rate with unchanged height. Frames are inserted each
  2080. containing the second temporal field from the previous input frame and
  2081. the first temporal field from the next input frame. This mode relies on
  2082. the top_field_first flag. Useful for interlaced video displays with no
  2083. field synchronisation.
  2084. @end table
  2085. Numeric values are deprecated but are accepted for backward
  2086. compatibility reasons.
  2087. Default mode is @code{merge}.
  2088. @section transpose
  2089. Transpose rows with columns in the input video and optionally flip it.
  2090. It accepts a parameter representing an integer, which can assume the
  2091. values:
  2092. @table @samp
  2093. @item 0
  2094. Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
  2095. @example
  2096. L.R L.l
  2097. . . -> . .
  2098. l.r R.r
  2099. @end example
  2100. @item 1
  2101. Rotate by 90 degrees clockwise, that is:
  2102. @example
  2103. L.R l.L
  2104. . . -> . .
  2105. l.r r.R
  2106. @end example
  2107. @item 2
  2108. Rotate by 90 degrees counterclockwise, that is:
  2109. @example
  2110. L.R R.r
  2111. . . -> . .
  2112. l.r L.l
  2113. @end example
  2114. @item 3
  2115. Rotate by 90 degrees clockwise and vertically flip, that is:
  2116. @example
  2117. L.R r.R
  2118. . . -> . .
  2119. l.r l.L
  2120. @end example
  2121. @end table
  2122. @section unsharp
  2123. Sharpen or blur the input video.
  2124. It accepts the following parameters:
  2125. @var{luma_msize_x}:@var{luma_msize_y}:@var{luma_amount}:@var{chroma_msize_x}:@var{chroma_msize_y}:@var{chroma_amount}
  2126. Negative values for the amount will blur the input video, while positive
  2127. values will sharpen. All parameters are optional and default to the
  2128. equivalent of the string '5:5:1.0:5:5:0.0'.
  2129. @table @option
  2130. @item luma_msize_x
  2131. Set the luma matrix horizontal size. It can be an integer between 3
  2132. and 13, default value is 5.
  2133. @item luma_msize_y
  2134. Set the luma matrix vertical size. It can be an integer between 3
  2135. and 13, default value is 5.
  2136. @item luma_amount
  2137. Set the luma effect strength. It can be a float number between -2.0
  2138. and 5.0, default value is 1.0.
  2139. @item chroma_msize_x
  2140. Set the chroma matrix horizontal size. It can be an integer between 3
  2141. and 13, default value is 5.
  2142. @item chroma_msize_y
  2143. Set the chroma matrix vertical size. It can be an integer between 3
  2144. and 13, default value is 5.
  2145. @item chroma_amount
  2146. Set the chroma effect strength. It can be a float number between -2.0
  2147. and 5.0, default value is 0.0.
  2148. @end table
  2149. @example
  2150. # Strong luma sharpen effect parameters
  2151. unsharp=7:7:2.5
  2152. # Strong blur of both luma and chroma parameters
  2153. unsharp=7:7:-2:7:7:-2
  2154. # Use the default values with @command{ffmpeg}
  2155. ffmpeg -i in.avi -vf "unsharp" out.mp4
  2156. @end example
  2157. @section vflip
  2158. Flip the input video vertically.
  2159. @example
  2160. ffmpeg -i in.avi -vf "vflip" out.avi
  2161. @end example
  2162. @section yadif
  2163. Deinterlace the input video ("yadif" means "yet another deinterlacing
  2164. filter").
  2165. It accepts the optional parameters: @var{mode}:@var{parity}:@var{auto}.
  2166. @var{mode} specifies the interlacing mode to adopt, accepts one of the
  2167. following values:
  2168. @table @option
  2169. @item 0
  2170. output 1 frame for each frame
  2171. @item 1
  2172. output 1 frame for each field
  2173. @item 2
  2174. like 0 but skips spatial interlacing check
  2175. @item 3
  2176. like 1 but skips spatial interlacing check
  2177. @end table
  2178. Default value is 0.
  2179. @var{parity} specifies the picture field parity assumed for the input
  2180. interlaced video, accepts one of the following values:
  2181. @table @option
  2182. @item 0
  2183. assume top field first
  2184. @item 1
  2185. assume bottom field first
  2186. @item -1
  2187. enable automatic detection
  2188. @end table
  2189. Default value is -1.
  2190. If interlacing is unknown or decoder does not export this information,
  2191. top field first will be assumed.
  2192. @var{auto} specifies if deinterlacer should trust the interlaced flag
  2193. and only deinterlace frames marked as interlaced
  2194. @table @option
  2195. @item 0
  2196. deinterlace all frames
  2197. @item 1
  2198. only deinterlace frames marked as interlaced
  2199. @end table
  2200. Default value is 0.
  2201. @c man end VIDEO FILTERS
  2202. @chapter Video Sources
  2203. @c man begin VIDEO SOURCES
  2204. Below is a description of the currently available video sources.
  2205. @section buffer
  2206. Buffer video frames, and make them available to the filter chain.
  2207. This source is mainly intended for a programmatic use, in particular
  2208. through the interface defined in @file{libavfilter/vsrc_buffer.h}.
  2209. It accepts the following parameters:
  2210. @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}
  2211. All the parameters but @var{scale_params} need to be explicitly
  2212. defined.
  2213. Follows the list of the accepted parameters.
  2214. @table @option
  2215. @item width, height
  2216. Specify the width and height of the buffered video frames.
  2217. @item pix_fmt_string
  2218. A string representing the pixel format of the buffered video frames.
  2219. It may be a number corresponding to a pixel format, or a pixel format
  2220. name.
  2221. @item timebase_num, timebase_den
  2222. Specify numerator and denomitor of the timebase assumed by the
  2223. timestamps of the buffered frames.
  2224. @item sample_aspect_ratio.num, sample_aspect_ratio.den
  2225. Specify numerator and denominator of the sample aspect ratio assumed
  2226. by the video frames.
  2227. @item scale_params
  2228. Specify the optional parameters to be used for the scale filter which
  2229. is automatically inserted when an input change is detected in the
  2230. input size or format.
  2231. @end table
  2232. For example:
  2233. @example
  2234. buffer=320:240:yuv410p:1:24:1:1
  2235. @end example
  2236. will instruct the source to accept video frames with size 320x240 and
  2237. with format "yuv410p", assuming 1/24 as the timestamps timebase and
  2238. square pixels (1:1 sample aspect ratio).
  2239. Since the pixel format with name "yuv410p" corresponds to the number 6
  2240. (check the enum PixelFormat definition in @file{libavutil/pixfmt.h}),
  2241. this example corresponds to:
  2242. @example
  2243. buffer=320:240:6:1:24:1:1
  2244. @end example
  2245. @section cellauto
  2246. Create a pattern generated by an elementary cellular automaton.
  2247. The initial state of the cellular automaton can be defined through the
  2248. @option{filename}, and @option{pattern} options. If such options are
  2249. not specified an initial state is created randomly.
  2250. At each new frame a new row in the video is filled with the result of
  2251. the cellular automaton next generation. The behavior when the whole
  2252. frame is filled is defined by the @option{scroll} option.
  2253. This source accepts a list of options in the form of
  2254. @var{key}=@var{value} pairs separated by ":". A description of the
  2255. accepted options follows.
  2256. @table @option
  2257. @item filename, f
  2258. Read the initial cellular automaton state, i.e. the starting row, from
  2259. the specified file.
  2260. In the file, each non-whitespace character is considered an alive
  2261. cell, a newline will terminate the row, and further characters in the
  2262. file will be ignored.
  2263. @item pattern, p
  2264. Read the initial cellular automaton state, i.e. the starting row, from
  2265. the specified string.
  2266. Each non-whitespace character in the string is considered an alive
  2267. cell, a newline will terminate the row, and further characters in the
  2268. string will be ignored.
  2269. @item rate, r
  2270. Set the video rate, that is the number of frames generated per second.
  2271. Default is 25.
  2272. @item random_fill_ratio, ratio
  2273. Set the random fill ratio for the initial cellular automaton row. It
  2274. is a floating point number value ranging from 0 to 1, defaults to
  2275. 1/PHI.
  2276. This option is ignored when a file or a pattern is specified.
  2277. @item random_seed, seed
  2278. Set the seed for filling randomly the initial row, must be an integer
  2279. included between 0 and UINT32_MAX. If not specified, or if explicitly
  2280. set to -1, the filter will try to use a good random seed on a best
  2281. effort basis.
  2282. @item rule
  2283. Set the cellular automaton rule, it is a number ranging from 0 to 255.
  2284. Default value is 110.
  2285. @item size, s
  2286. Set the size of the output video.
  2287. If @option{filename} or @option{pattern} is specified, the size is set
  2288. by default to the width of the specified initial state row, and the
  2289. height is set to @var{width} * PHI.
  2290. If @option{size} is set, it must contain the width of the specified
  2291. pattern string, and the specified pattern will be centered in the
  2292. larger row.
  2293. If a filename or a pattern string is not specified, the size value
  2294. defaults to "320x518" (used for a randomly generated initial state).
  2295. @item scroll
  2296. If set to 1, scroll the output upward when all the rows in the output
  2297. have been already filled. If set to 0, the new generated row will be
  2298. written over the top row just after the bottom row is filled.
  2299. Defaults to 1.
  2300. @item start_full, full
  2301. If set to 1, completely fill the output with generated rows before
  2302. outputting the first frame.
  2303. This is the default behavior, for disabling set the value to 0.
  2304. @item stitch
  2305. If set to 1, stitch the left and right row edges together.
  2306. This is the default behavior, for disabling set the value to 0.
  2307. @end table
  2308. @subsection Examples
  2309. @itemize
  2310. @item
  2311. Read the initial state from @file{pattern}, and specify an output of
  2312. size 200x400.
  2313. @example
  2314. cellauto=f=pattern:s=200x400
  2315. @end example
  2316. @item
  2317. Generate a random initial row with a width of 200 cells, with a fill
  2318. ratio of 2/3:
  2319. @example
  2320. cellauto=ratio=2/3:s=200x200
  2321. @end example
  2322. @item
  2323. Create a pattern generated by rule 18 starting by a single alive cell
  2324. centered on an initial row with width 100:
  2325. @example
  2326. cellauto=p=@@:s=100x400:full=0:rule=18
  2327. @end example
  2328. @item
  2329. Specify a more elaborated initial pattern:
  2330. @example
  2331. cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
  2332. @end example
  2333. @end itemize
  2334. @section color
  2335. Provide an uniformly colored input.
  2336. It accepts the following parameters:
  2337. @var{color}:@var{frame_size}:@var{frame_rate}
  2338. Follows the description of the accepted parameters.
  2339. @table @option
  2340. @item color
  2341. Specify the color of the source. It can be the name of a color (case
  2342. insensitive match) or a 0xRRGGBB[AA] sequence, possibly followed by an
  2343. alpha specifier. The default value is "black".
  2344. @item frame_size
  2345. Specify the size of the sourced video, it may be a string of the form
  2346. @var{width}x@var{height}, or the name of a size abbreviation. The
  2347. default value is "320x240".
  2348. @item frame_rate
  2349. Specify the frame rate of the sourced video, as the number of frames
  2350. generated per second. It has to be a string in the format
  2351. @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a float
  2352. number or a valid video frame rate abbreviation. The default value is
  2353. "25".
  2354. @end table
  2355. For example the following graph description will generate a red source
  2356. with an opacity of 0.2, with size "qcif" and a frame rate of 10
  2357. frames per second, which will be overlayed over the source connected
  2358. to the pad with identifier "in".
  2359. @example
  2360. "color=red@@0.2:qcif:10 [color]; [in][color] overlay [out]"
  2361. @end example
  2362. @section movie
  2363. Read a video stream from a movie container.
  2364. It accepts the syntax: @var{movie_name}[:@var{options}] where
  2365. @var{movie_name} is the name of the resource to read (not necessarily
  2366. a file but also a device or a stream accessed through some protocol),
  2367. and @var{options} is an optional sequence of @var{key}=@var{value}
  2368. pairs, separated by ":".
  2369. The description of the accepted options follows.
  2370. @table @option
  2371. @item format_name, f
  2372. Specifies the format assumed for the movie to read, and can be either
  2373. the name of a container or an input device. If not specified the
  2374. format is guessed from @var{movie_name} or by probing.
  2375. @item seek_point, sp
  2376. Specifies the seek point in seconds, the frames will be output
  2377. starting from this seek point, the parameter is evaluated with
  2378. @code{av_strtod} so the numerical value may be suffixed by an IS
  2379. postfix. Default value is "0".
  2380. @item stream_index, si
  2381. Specifies the index of the video stream to read. If the value is -1,
  2382. the best suited video stream will be automatically selected. Default
  2383. value is "-1".
  2384. @item loop
  2385. Specifies how many times to read the video stream in sequence.
  2386. If the value is less than 1, the stream will be read again and again.
  2387. Default value is "1".
  2388. Note that when the movie is looped the source timestamps are not
  2389. changed, so it will generate non monotonically increasing timestamps.
  2390. @end table
  2391. This filter allows to overlay a second video on top of main input of
  2392. a filtergraph as shown in this graph:
  2393. @example
  2394. input -----------> deltapts0 --> overlay --> output
  2395. ^
  2396. |
  2397. movie --> scale--> deltapts1 -------+
  2398. @end example
  2399. Some examples follow:
  2400. @example
  2401. # skip 3.2 seconds from the start of the avi file in.avi, and overlay it
  2402. # on top of the input labelled as "in".
  2403. movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [movie];
  2404. [in] setpts=PTS-STARTPTS, [movie] overlay=16:16 [out]
  2405. # read from a video4linux2 device, and overlay it on top of the input
  2406. # labelled as "in"
  2407. movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [movie];
  2408. [in] setpts=PTS-STARTPTS, [movie] overlay=16:16 [out]
  2409. @end example
  2410. @section mptestsrc
  2411. Generate various test patterns, as generated by the MPlayer test filter.
  2412. The size of the generated video is fixed, and is 256x256.
  2413. This source is useful in particular for testing encoding features.
  2414. This source accepts an optional sequence of @var{key}=@var{value} pairs,
  2415. separated by ":". The description of the accepted options follows.
  2416. @table @option
  2417. @item rate, r
  2418. Specify the frame rate of the sourced video, as the number of frames
  2419. generated per second. It has to be a string in the format
  2420. @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a float
  2421. number or a valid video frame rate abbreviation. The default value is
  2422. "25".
  2423. @item duration, d
  2424. Set the video duration of the sourced video. The accepted syntax is:
  2425. @example
  2426. [-]HH:MM:SS[.m...]
  2427. [-]S+[.m...]
  2428. @end example
  2429. See also the function @code{av_parse_time()}.
  2430. If not specified, or the expressed duration is negative, the video is
  2431. supposed to be generated forever.
  2432. @item test, t
  2433. Set the number or the name of the test to perform. Supported tests are:
  2434. @table @option
  2435. @item dc_luma
  2436. @item dc_chroma
  2437. @item freq_luma
  2438. @item freq_chroma
  2439. @item amp_luma
  2440. @item amp_chroma
  2441. @item cbp
  2442. @item mv
  2443. @item ring1
  2444. @item ring2
  2445. @item all
  2446. @end table
  2447. Default value is "all", which will cycle through the list of all tests.
  2448. @end table
  2449. For example the following:
  2450. @example
  2451. testsrc=t=dc_luma
  2452. @end example
  2453. will generate a "dc_luma" test pattern.
  2454. @section frei0r_src
  2455. Provide a frei0r source.
  2456. To enable compilation of this filter you need to install the frei0r
  2457. header and configure FFmpeg with @code{--enable-frei0r}.
  2458. The source supports the syntax:
  2459. @example
  2460. @var{size}:@var{rate}:@var{src_name}[@{=|:@}@var{param1}:@var{param2}:...:@var{paramN}]
  2461. @end example
  2462. @var{size} is the size of the video to generate, may be a string of the
  2463. form @var{width}x@var{height} or a frame size abbreviation.
  2464. @var{rate} is the rate of the video to generate, may be a string of
  2465. the form @var{num}/@var{den} or a frame rate abbreviation.
  2466. @var{src_name} is the name to the frei0r source to load. For more
  2467. information regarding frei0r and how to set the parameters read the
  2468. section @ref{frei0r} in the description of the video filters.
  2469. Some examples follow:
  2470. @example
  2471. # generate a frei0r partik0l source with size 200x200 and frame rate 10
  2472. # which is overlayed on the overlay filter main input
  2473. frei0r_src=200x200:10:partik0l=1234 [overlay]; [in][overlay] overlay
  2474. @end example
  2475. @section life
  2476. Generate a life pattern.
  2477. This source is based on a generalization of John Conway's life game.
  2478. The sourced input represents a life grid, each pixel represents a cell
  2479. which can be in one of two possible states, alive or dead. Every cell
  2480. interacts with its eight neighbours, which are the cells that are
  2481. horizontally, vertically, or diagonally adjacent.
  2482. At each interaction the grid evolves according to the adopted rule,
  2483. which specifies the number of neighbor alive cells which will make a
  2484. cell stay alive or born. The @option{rule} option allows to specify
  2485. the rule to adopt.
  2486. This source accepts a list of options in the form of
  2487. @var{key}=@var{value} pairs separated by ":". A description of the
  2488. accepted options follows.
  2489. @table @option
  2490. @item filename, f
  2491. Set the file from which to read the initial grid state. In the file,
  2492. each non-whitespace character is considered an alive cell, and newline
  2493. is used to delimit the end of each row.
  2494. If this option is not specified, the initial grid is generated
  2495. randomly.
  2496. @item rate, r
  2497. Set the video rate, that is the number of frames generated per second.
  2498. Default is 25.
  2499. @item random_fill_ratio, ratio
  2500. Set the random fill ratio for the initial random grid. It is a
  2501. floating point number value ranging from 0 to 1, defaults to 1/PHI.
  2502. It is ignored when a file is specified.
  2503. @item random_seed, seed
  2504. Set the seed for filling the initial random grid, must be an integer
  2505. included between 0 and UINT32_MAX. If not specified, or if explicitly
  2506. set to -1, the filter will try to use a good random seed on a best
  2507. effort basis.
  2508. @item rule
  2509. Set the life rule.
  2510. A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
  2511. where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
  2512. @var{NS} specifies the number of alive neighbor cells which make a
  2513. live cell stay alive, and @var{NB} the number of alive neighbor cells
  2514. which make a dead cell to become alive (i.e. to "born").
  2515. "s" and "b" can be used in place of "S" and "B", respectively.
  2516. Alternatively a rule can be specified by an 18-bits integer. The 9
  2517. high order bits are used to encode the next cell state if it is alive
  2518. for each number of neighbor alive cells, the low order bits specify
  2519. the rule for "borning" new cells. Higher order bits encode for an
  2520. higher number of neighbor cells.
  2521. For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
  2522. rule of 12 and a born rule of 9, which corresponds to "S23/B03".
  2523. Default value is "S23/B3", which is the original Conway's game of life
  2524. rule, and will keep a cell alive if it has 2 or 3 neighbor alive
  2525. cells, and will born a new cell if there are three alive cells around
  2526. a dead cell.
  2527. @item size, s
  2528. Set the size of the output video.
  2529. If @option{filename} is specified, the size is set by default to the
  2530. same size of the input file. If @option{size} is set, it must contain
  2531. the size specified in the input file, and the initial grid defined in
  2532. that file is centered in the larger resulting area.
  2533. If a filename is not specified, the size value defaults to "320x240"
  2534. (used for a randomly generated initial grid).
  2535. @item stitch
  2536. If set to 1, stitch the left and right grid edges together, and the
  2537. top and bottom edges also. Defaults to 1.
  2538. @item mold
  2539. Set cell mold speed. If set, a dead cell will go from @option{death_color} to
  2540. @option{mold_color} with a step of @option{mold}. @option{mold} can have a
  2541. value from 0 to 255.
  2542. @item life_color
  2543. Set the color of living (or new born) cells.
  2544. @item death_color
  2545. Set the color of dead cells. If @option{mold} is set, this is the first color
  2546. used to represent a dead cell.
  2547. @item mold_color
  2548. Set mold color, for definitely dead and moldy cells.
  2549. @end table
  2550. @subsection Examples
  2551. @itemize
  2552. @item
  2553. Read a grid from @file{pattern}, and center it on a grid of size
  2554. 300x300 pixels:
  2555. @example
  2556. life=f=pattern:s=300x300
  2557. @end example
  2558. @item
  2559. Generate a random grid of size 200x200, with a fill ratio of 2/3:
  2560. @example
  2561. life=ratio=2/3:s=200x200
  2562. @end example
  2563. @item
  2564. Specify a custom rule for evolving a randomly generated grid:
  2565. @example
  2566. life=rule=S14/B34
  2567. @end example
  2568. @item
  2569. Full example with slow death effect (mold) using @command{ffplay}:
  2570. @example
  2571. ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
  2572. @end example
  2573. @end itemize
  2574. @section nullsrc, rgbtestsrc, testsrc
  2575. The @code{nullsrc} source returns unprocessed video frames. It is
  2576. mainly useful to be employed in analysis / debugging tools, or as the
  2577. source for filters which ignore the input data.
  2578. The @code{rgbtestsrc} source generates an RGB test pattern useful for
  2579. detecting RGB vs BGR issues. You should see a red, green and blue
  2580. stripe from top to bottom.
  2581. The @code{testsrc} source generates a test video pattern, showing a
  2582. color pattern, a scrolling gradient and a timestamp. This is mainly
  2583. intended for testing purposes.
  2584. These sources accept an optional sequence of @var{key}=@var{value} pairs,
  2585. separated by ":". The description of the accepted options follows.
  2586. @table @option
  2587. @item size, s
  2588. Specify the size of the sourced video, it may be a string of the form
  2589. @var{width}x@var{height}, or the name of a size abbreviation. The
  2590. default value is "320x240".
  2591. @item rate, r
  2592. Specify the frame rate of the sourced video, as the number of frames
  2593. generated per second. It has to be a string in the format
  2594. @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a float
  2595. number or a valid video frame rate abbreviation. The default value is
  2596. "25".
  2597. @item sar
  2598. Set the sample aspect ratio of the sourced video.
  2599. @item duration, d
  2600. Set the video duration of the sourced video. The accepted syntax is:
  2601. @example
  2602. [-]HH[:MM[:SS[.m...]]]
  2603. [-]S+[.m...]
  2604. @end example
  2605. See also the function @code{av_parse_time()}.
  2606. If not specified, or the expressed duration is negative, the video is
  2607. supposed to be generated forever.
  2608. @item decimals, n
  2609. Set the number of decimals to show in the timestamp, only used in the
  2610. @code{testsrc} source.
  2611. The displayed timestamp value will correspond to the original
  2612. timestamp value multiplied by the power of 10 of the specified
  2613. value. Default value is 0.
  2614. @end table
  2615. For example the following:
  2616. @example
  2617. testsrc=duration=5.3:size=qcif:rate=10
  2618. @end example
  2619. will generate a video with a duration of 5.3 seconds, with size
  2620. 176x144 and a frame rate of 10 frames per second.
  2621. If the input content is to be ignored, @code{nullsrc} can be used. The
  2622. following command generates noise in the luminance plane by employing
  2623. the @code{mp=geq} filter:
  2624. @example
  2625. nullsrc=s=256x256, mp=geq=random(1)*255:128:128
  2626. @end example
  2627. @c man end VIDEO SOURCES
  2628. @chapter Video Sinks
  2629. @c man begin VIDEO SINKS
  2630. Below is a description of the currently available video sinks.
  2631. @section buffersink
  2632. Buffer video frames, and make them available to the end of the filter
  2633. graph.
  2634. This sink is mainly intended for a programmatic use, in particular
  2635. through the interface defined in @file{libavfilter/buffersink.h}.
  2636. It does not require a string parameter in input, but you need to
  2637. specify a pointer to a list of supported pixel formats terminated by
  2638. -1 in the opaque parameter provided to @code{avfilter_init_filter}
  2639. when initializing this sink.
  2640. @section nullsink
  2641. Null video sink, do absolutely nothing with the input video. It is
  2642. mainly useful as a template and to be employed in analysis / debugging
  2643. tools.
  2644. @c man end VIDEO SINKS