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.

5237 lines
148KB

  1. @chapter Filtering Introduction
  2. @c man begin FILTERING INTRODUCTION
  3. Filtering in FFmpeg is enabled through the libavfilter library.
  4. Libavfilter is the filtering API of FFmpeg. It is the substitute of
  5. the now deprecated 'vhooks' and started as a Google Summer of Code
  6. project.
  7. Audio filtering integration into the main FFmpeg repository is a work in
  8. progress, so audio API and ABI should not be considered stable yet.
  9. In libavfilter, it is possible for filters to have multiple inputs and
  10. multiple outputs.
  11. To illustrate the sorts of things that are possible, we can
  12. use a complex filter graph. For example, the following one:
  13. @example
  14. input --> split --> fifo -----------------------> overlay --> output
  15. | ^
  16. | |
  17. +------> fifo --> crop --> vflip --------+
  18. @end example
  19. splits the stream in two streams, sends one stream through the crop filter
  20. and the vflip filter before merging it back with the other stream by
  21. overlaying it on top. You can use the following command to achieve this:
  22. @example
  23. ffmpeg -i input -vf "[in] split [T1], fifo, [T2] overlay=0:H/2 [out]; [T1] fifo, crop=iw:ih/2:0:ih/2, vflip [T2]" output
  24. @end example
  25. The result will be that in output the top half of the video is mirrored
  26. onto the bottom half.
  27. Filters are loaded using the @var{-vf} or @var{-af} option passed to
  28. @command{ffmpeg} or to @command{ffplay}. Filters in the same linear
  29. chain are separated by commas. In our example, @var{split, fifo,
  30. overlay} are in one linear chain, and @var{fifo, crop, vflip} are in
  31. another. The points where the linear chains join are labeled by names
  32. enclosed in square brackets. In our example, that is @var{[T1]} and
  33. @var{[T2]}. The special labels @var{[in]} and @var{[out]} are the points
  34. where video is input and output.
  35. Some filters take in input a list of parameters: they are specified
  36. after the filter name and an equal sign, and are separated from each other
  37. by a colon.
  38. There exist so-called @var{source filters} that do not have an
  39. audio/video input, and @var{sink filters} that will not have audio/video
  40. output.
  41. @c man end FILTERING INTRODUCTION
  42. @chapter graph2dot
  43. @c man begin GRAPH2DOT
  44. The @file{graph2dot} program included in the FFmpeg @file{tools}
  45. directory can be used to parse a filter graph description and issue a
  46. corresponding textual representation in the dot language.
  47. Invoke the command:
  48. @example
  49. graph2dot -h
  50. @end example
  51. to see how to use @file{graph2dot}.
  52. You can then pass the dot description to the @file{dot} program (from
  53. the graphviz suite of programs) and obtain a graphical representation
  54. of the filter graph.
  55. For example the sequence of commands:
  56. @example
  57. echo @var{GRAPH_DESCRIPTION} | \
  58. tools/graph2dot -o graph.tmp && \
  59. dot -Tpng graph.tmp -o graph.png && \
  60. display graph.png
  61. @end example
  62. can be used to create and display an image representing the graph
  63. described by the @var{GRAPH_DESCRIPTION} string. Note that this string must be
  64. a complete self-contained graph, with its inputs and outputs explicitly defined.
  65. For example if your command line is of the form:
  66. @example
  67. ffmpeg -i infile -vf scale=640:360 outfile
  68. @end example
  69. your @var{GRAPH_DESCRIPTION} string will need to be of the form:
  70. @example
  71. nullsrc,scale=640:360,nullsink
  72. @end example
  73. you may also need to set the @var{nullsrc} parameters and add a @var{format}
  74. filter in order to simulate a specific input file.
  75. @c man end GRAPH2DOT
  76. @chapter Filtergraph description
  77. @c man begin FILTERGRAPH DESCRIPTION
  78. A filtergraph is a directed graph of connected filters. It can contain
  79. cycles, and there can be multiple links between a pair of
  80. filters. Each link has one input pad on one side connecting it to one
  81. filter from which it takes its input, and one output pad on the other
  82. side connecting it to the one filter accepting its output.
  83. Each filter in a filtergraph is an instance of a filter class
  84. registered in the application, which defines the features and the
  85. number of input and output pads of the filter.
  86. A filter with no input pads is called a "source", a filter with no
  87. output pads is called a "sink".
  88. @anchor{Filtergraph syntax}
  89. @section Filtergraph syntax
  90. A filtergraph can be represented using a textual representation, which is
  91. recognized by the @option{-filter}/@option{-vf} and @option{-filter_complex}
  92. options in @command{ffmpeg} and @option{-vf} in @command{ffplay}, and by the
  93. @code{avfilter_graph_parse()}/@code{avfilter_graph_parse2()} function defined in
  94. @file{libavfilter/avfiltergraph.h}.
  95. A filterchain consists of a sequence of connected filters, each one
  96. connected to the previous one in the sequence. A filterchain is
  97. represented by a list of ","-separated filter descriptions.
  98. A filtergraph consists of a sequence of filterchains. A sequence of
  99. filterchains is represented by a list of ";"-separated filterchain
  100. descriptions.
  101. A filter is represented by a string of the form:
  102. [@var{in_link_1}]...[@var{in_link_N}]@var{filter_name}=@var{arguments}[@var{out_link_1}]...[@var{out_link_M}]
  103. @var{filter_name} is the name of the filter class of which the
  104. described filter is an instance of, and has to be the name of one of
  105. the filter classes registered in the program.
  106. The name of the filter class is optionally followed by a string
  107. "=@var{arguments}".
  108. @var{arguments} is a string which contains the parameters used to
  109. initialize the filter instance, and are described in the filter
  110. descriptions below.
  111. The list of arguments can be quoted using the character "'" as initial
  112. and ending mark, and the character '\' for escaping the characters
  113. within the quoted text; otherwise the argument string is considered
  114. terminated when the next special character (belonging to the set
  115. "[]=;,") is encountered.
  116. The name and arguments of the filter are optionally preceded and
  117. followed by a list of link labels.
  118. A link label allows to name a link and associate it to a filter output
  119. or input pad. The preceding labels @var{in_link_1}
  120. ... @var{in_link_N}, are associated to the filter input pads,
  121. the following labels @var{out_link_1} ... @var{out_link_M}, are
  122. associated to the output pads.
  123. When two link labels with the same name are found in the
  124. filtergraph, a link between the corresponding input and output pad is
  125. created.
  126. If an output pad is not labelled, it is linked by default to the first
  127. unlabelled input pad of the next filter in the filterchain.
  128. For example in the filterchain:
  129. @example
  130. nullsrc, split[L1], [L2]overlay, nullsink
  131. @end example
  132. the split filter instance has two output pads, and the overlay filter
  133. instance two input pads. The first output pad of split is labelled
  134. "L1", the first input pad of overlay is labelled "L2", and the second
  135. output pad of split is linked to the second input pad of overlay,
  136. which are both unlabelled.
  137. In a complete filterchain all the unlabelled filter input and output
  138. pads must be connected. A filtergraph is considered valid if all the
  139. filter input and output pads of all the filterchains are connected.
  140. Libavfilter will automatically insert scale filters where format
  141. conversion is required. It is possible to specify swscale flags
  142. for those automatically inserted scalers by prepending
  143. @code{sws_flags=@var{flags};}
  144. to the filtergraph description.
  145. Follows a BNF description for the filtergraph syntax:
  146. @example
  147. @var{NAME} ::= sequence of alphanumeric characters and '_'
  148. @var{LINKLABEL} ::= "[" @var{NAME} "]"
  149. @var{LINKLABELS} ::= @var{LINKLABEL} [@var{LINKLABELS}]
  150. @var{FILTER_ARGUMENTS} ::= sequence of chars (eventually quoted)
  151. @var{FILTER} ::= [@var{LINKNAMES}] @var{NAME} ["=" @var{ARGUMENTS}] [@var{LINKNAMES}]
  152. @var{FILTERCHAIN} ::= @var{FILTER} [,@var{FILTERCHAIN}]
  153. @var{FILTERGRAPH} ::= [sws_flags=@var{flags};] @var{FILTERCHAIN} [;@var{FILTERGRAPH}]
  154. @end example
  155. @section Notes on filtergraph escaping
  156. Some filter arguments require the use of special characters, typically
  157. @code{:} to separate key=value pairs in a named options list. In this
  158. case the user should perform a first level escaping when specifying
  159. the filter arguments. For example, consider the following literal
  160. string to be embedded in the @ref{drawtext} filter arguments:
  161. @example
  162. this is a 'string': may contain one, or more, special characters
  163. @end example
  164. Since @code{:} is special for the filter arguments syntax, it needs to
  165. be escaped, so you get:
  166. @example
  167. text=this is a \'string\'\: may contain one, or more, special characters
  168. @end example
  169. A second level of escaping is required when embedding the filter
  170. arguments in a filtergraph description, in order to escape all the
  171. filtergraph special characters. Thus the example above becomes:
  172. @example
  173. drawtext=text=this is a \\\'string\\\'\\: may contain one\, or more\, special characters
  174. @end example
  175. Finally an additional level of escaping may be needed when writing the
  176. filtergraph description in a shell command, which depends on the
  177. escaping rules of the adopted shell. For example, assuming that
  178. @code{\} is special and needs to be escaped with another @code{\}, the
  179. previous string will finally result in:
  180. @example
  181. -vf "drawtext=text=this is a \\\\\\'string\\\\\\'\\\\: may contain one\\, or more\\, special characters"
  182. @end example
  183. Sometimes, it might be more convenient to employ quoting in place of
  184. escaping. For example the string:
  185. @example
  186. Caesar: tu quoque, Brute, fili mi
  187. @end example
  188. Can be quoted in the filter arguments as:
  189. @example
  190. text='Caesar: tu quoque, Brute, fili mi'
  191. @end example
  192. And finally inserted in a filtergraph like:
  193. @example
  194. drawtext=text=\'Caesar: tu quoque\, Brute\, fili mi\'
  195. @end example
  196. See the @ref{quoting_and_escaping, Quoting and escaping} section for
  197. more information about the escaping and quoting rules adopted by
  198. FFmpeg.
  199. @c man end FILTERGRAPH DESCRIPTION
  200. @chapter Audio Filters
  201. @c man begin AUDIO FILTERS
  202. When you configure your FFmpeg build, you can disable any of the
  203. existing filters using @code{--disable-filters}.
  204. The configure output will show the audio filters included in your
  205. build.
  206. Below is a description of the currently available audio filters.
  207. @section aconvert
  208. Convert the input audio format to the specified formats.
  209. The filter accepts a string of the form:
  210. "@var{sample_format}:@var{channel_layout}".
  211. @var{sample_format} specifies the sample format, and can be a string or the
  212. corresponding numeric value defined in @file{libavutil/samplefmt.h}. Use 'p'
  213. suffix for a planar sample format.
  214. @var{channel_layout} specifies the channel layout, and can be a string
  215. or the corresponding number value defined in @file{libavutil/channel_layout.h}.
  216. The special parameter "auto", signifies that the filter will
  217. automatically select the output format depending on the output filter.
  218. Some examples follow.
  219. @itemize
  220. @item
  221. Convert input to float, planar, stereo:
  222. @example
  223. aconvert=fltp:stereo
  224. @end example
  225. @item
  226. Convert input to unsigned 8-bit, automatically select out channel layout:
  227. @example
  228. aconvert=u8:auto
  229. @end example
  230. @end itemize
  231. @section aformat
  232. Convert the input audio to one of the specified formats. The framework will
  233. negotiate the most appropriate format to minimize conversions.
  234. The filter accepts the following named parameters:
  235. @table @option
  236. @item sample_fmts
  237. A comma-separated list of requested sample formats.
  238. @item sample_rates
  239. A comma-separated list of requested sample rates.
  240. @item channel_layouts
  241. A comma-separated list of requested channel layouts.
  242. @end table
  243. If a parameter is omitted, all values are allowed.
  244. For example to force the output to either unsigned 8-bit or signed 16-bit stereo:
  245. @example
  246. aformat=sample_fmts\=u8\,s16:channel_layouts\=stereo
  247. @end example
  248. @section amerge
  249. Merge two or more audio streams into a single multi-channel stream.
  250. The filter accepts the following named options:
  251. @table @option
  252. @item inputs
  253. Set the number of inputs. Default is 2.
  254. @end table
  255. If the channel layouts of the inputs are disjoint, and therefore compatible,
  256. the channel layout of the output will be set accordingly and the channels
  257. will be reordered as necessary. If the channel layouts of the inputs are not
  258. disjoint, the output will have all the channels of the first input then all
  259. the channels of the second input, in that order, and the channel layout of
  260. the output will be the default value corresponding to the total number of
  261. channels.
  262. For example, if the first input is in 2.1 (FL+FR+LF) and the second input
  263. is FC+BL+BR, then the output will be in 5.1, with the channels in the
  264. following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
  265. first input, b1 is the first channel of the second input).
  266. On the other hand, if both input are in stereo, the output channels will be
  267. in the default order: a1, a2, b1, b2, and the channel layout will be
  268. arbitrarily set to 4.0, which may or may not be the expected value.
  269. All inputs must have the same sample rate, and format.
  270. If inputs do not have the same duration, the output will stop with the
  271. shortest.
  272. Example: merge two mono files into a stereo stream:
  273. @example
  274. amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
  275. @end example
  276. Example: multiple merges:
  277. @example
  278. ffmpeg -f lavfi -i "
  279. amovie=input.mkv:si=0 [a0];
  280. amovie=input.mkv:si=1 [a1];
  281. amovie=input.mkv:si=2 [a2];
  282. amovie=input.mkv:si=3 [a3];
  283. amovie=input.mkv:si=4 [a4];
  284. amovie=input.mkv:si=5 [a5];
  285. [a0][a1][a2][a3][a4][a5] amerge=inputs=6" -c:a pcm_s16le output.mkv
  286. @end example
  287. @section amix
  288. Mixes multiple audio inputs into a single output.
  289. For example
  290. @example
  291. ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
  292. @end example
  293. will mix 3 input audio streams to a single output with the same duration as the
  294. first input and a dropout transition time of 3 seconds.
  295. The filter accepts the following named parameters:
  296. @table @option
  297. @item inputs
  298. Number of inputs. If unspecified, it defaults to 2.
  299. @item duration
  300. How to determine the end-of-stream.
  301. @table @option
  302. @item longest
  303. Duration of longest input. (default)
  304. @item shortest
  305. Duration of shortest input.
  306. @item first
  307. Duration of first input.
  308. @end table
  309. @item dropout_transition
  310. Transition time, in seconds, for volume renormalization when an input
  311. stream ends. The default value is 2 seconds.
  312. @end table
  313. @section anull
  314. Pass the audio source unchanged to the output.
  315. @section aresample
  316. Resample the input audio to the specified sample rate.
  317. The filter accepts exactly one parameter, the output sample rate. If not
  318. specified then the filter will automatically convert between its input
  319. and output sample rates.
  320. For example, to resample the input audio to 44100Hz:
  321. @example
  322. aresample=44100
  323. @end example
  324. @section asetnsamples
  325. Set the number of samples per each output audio frame.
  326. The last output packet may contain a different number of samples, as
  327. the filter will flush all the remaining samples when the input audio
  328. signal its end.
  329. The filter accepts parameters as a list of @var{key}=@var{value} pairs,
  330. separated by ":".
  331. @table @option
  332. @item nb_out_samples, n
  333. Set the number of frames per each output audio frame. The number is
  334. intended as the number of samples @emph{per each channel}.
  335. Default value is 1024.
  336. @item pad, p
  337. If set to 1, the filter will pad the last audio frame with zeroes, so
  338. that the last frame will contain the same number of samples as the
  339. previous ones. Default value is 1.
  340. @end table
  341. For example, to set the number of per-frame samples to 1234 and
  342. disable padding for the last frame, use:
  343. @example
  344. asetnsamples=n=1234:p=0
  345. @end example
  346. @section ashowinfo
  347. Show a line containing various information for each input audio frame.
  348. The input audio is not modified.
  349. The shown line contains a sequence of key/value pairs of the form
  350. @var{key}:@var{value}.
  351. A description of each shown parameter follows:
  352. @table @option
  353. @item n
  354. sequential number of the input frame, starting from 0
  355. @item pts
  356. Presentation timestamp of the input frame, in time base units; the time base
  357. depends on the filter input pad, and is usually 1/@var{sample_rate}.
  358. @item pts_time
  359. presentation timestamp of the input frame in seconds
  360. @item pos
  361. position of the frame in the input stream, -1 if this information in
  362. unavailable and/or meaningless (for example in case of synthetic audio)
  363. @item fmt
  364. sample format
  365. @item chlayout
  366. channel layout
  367. @item rate
  368. sample rate for the audio frame
  369. @item nb_samples
  370. number of samples (per channel) in the frame
  371. @item checksum
  372. Adler-32 checksum (printed in hexadecimal) of the audio data. For planar audio
  373. the data is treated as if all the planes were concatenated.
  374. @item plane_checksums
  375. A list of Adler-32 checksums for each data plane.
  376. @end table
  377. @section asplit
  378. Split input audio into several identical outputs.
  379. The filter accepts a single parameter which specifies the number of outputs. If
  380. unspecified, it defaults to 2.
  381. For example:
  382. @example
  383. [in] asplit [out0][out1]
  384. @end example
  385. will create two separate outputs from the same input.
  386. To create 3 or more outputs, you need to specify the number of
  387. outputs, like in:
  388. @example
  389. [in] asplit=3 [out0][out1][out2]
  390. @end example
  391. @example
  392. ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
  393. @end example
  394. will create 5 copies of the input audio.
  395. @section astreamsync
  396. Forward two audio streams and control the order the buffers are forwarded.
  397. The argument to the filter is an expression deciding which stream should be
  398. forwarded next: if the result is negative, the first stream is forwarded; if
  399. the result is positive or zero, the second stream is forwarded. It can use
  400. the following variables:
  401. @table @var
  402. @item b1 b2
  403. number of buffers forwarded so far on each stream
  404. @item s1 s2
  405. number of samples forwarded so far on each stream
  406. @item t1 t2
  407. current timestamp of each stream
  408. @end table
  409. The default value is @code{t1-t2}, which means to always forward the stream
  410. that has a smaller timestamp.
  411. Example: stress-test @code{amerge} by randomly sending buffers on the wrong
  412. input, while avoiding too much of a desynchronization:
  413. @example
  414. amovie=file.ogg [a] ; amovie=file.mp3 [b] ;
  415. [a] [b] astreamsync=(2*random(1))-1+tanh(5*(t1-t2)) [a2] [b2] ;
  416. [a2] [b2] amerge
  417. @end example
  418. @section atempo
  419. Adjust audio tempo.
  420. The filter accepts exactly one parameter, the audio tempo. If not
  421. specified then the filter will assume nominal 1.0 tempo. Tempo must
  422. be in the [0.5, 2.0] range.
  423. For example, to slow down audio to 80% tempo:
  424. @example
  425. atempo=0.8
  426. @end example
  427. For example, to speed up audio to 125% tempo:
  428. @example
  429. atempo=1.25
  430. @end example
  431. @section earwax
  432. Make audio easier to listen to on headphones.
  433. This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
  434. so that when listened to on headphones the stereo image is moved from
  435. inside your head (standard for headphones) to outside and in front of
  436. the listener (standard for speakers).
  437. Ported from SoX.
  438. @section pan
  439. Mix channels with specific gain levels. The filter accepts the output
  440. channel layout followed by a set of channels definitions.
  441. This filter is also designed to remap efficiently the channels of an audio
  442. stream.
  443. The filter accepts parameters of the form:
  444. "@var{l}:@var{outdef}:@var{outdef}:..."
  445. @table @option
  446. @item l
  447. output channel layout or number of channels
  448. @item outdef
  449. output channel specification, of the form:
  450. "@var{out_name}=[@var{gain}*]@var{in_name}[+[@var{gain}*]@var{in_name}...]"
  451. @item out_name
  452. output channel to define, either a channel name (FL, FR, etc.) or a channel
  453. number (c0, c1, etc.)
  454. @item gain
  455. multiplicative coefficient for the channel, 1 leaving the volume unchanged
  456. @item in_name
  457. input channel to use, see out_name for details; it is not possible to mix
  458. named and numbered input channels
  459. @end table
  460. If the `=' in a channel specification is replaced by `<', then the gains for
  461. that specification will be renormalized so that the total is 1, thus
  462. avoiding clipping noise.
  463. @subsection Mixing examples
  464. For example, if you want to down-mix from stereo to mono, but with a bigger
  465. factor for the left channel:
  466. @example
  467. pan=1:c0=0.9*c0+0.1*c1
  468. @end example
  469. A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
  470. 7-channels surround:
  471. @example
  472. pan=stereo: FL < FL + 0.5*FC + 0.6*BL + 0.6*SL : FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
  473. @end example
  474. Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
  475. that should be preferred (see "-ac" option) unless you have very specific
  476. needs.
  477. @subsection Remapping examples
  478. The channel remapping will be effective if, and only if:
  479. @itemize
  480. @item gain coefficients are zeroes or ones,
  481. @item only one input per channel output,
  482. @end itemize
  483. If all these conditions are satisfied, the filter will notify the user ("Pure
  484. channel mapping detected"), and use an optimized and lossless method to do the
  485. remapping.
  486. For example, if you have a 5.1 source and want a stereo audio stream by
  487. dropping the extra channels:
  488. @example
  489. pan="stereo: c0=FL : c1=FR"
  490. @end example
  491. Given the same source, you can also switch front left and front right channels
  492. and keep the input channel layout:
  493. @example
  494. pan="5.1: c0=c1 : c1=c0 : c2=c2 : c3=c3 : c4=c4 : c5=c5"
  495. @end example
  496. If the input is a stereo audio stream, you can mute the front left channel (and
  497. still keep the stereo channel layout) with:
  498. @example
  499. pan="stereo:c1=c1"
  500. @end example
  501. Still with a stereo audio stream input, you can copy the right channel in both
  502. front left and right:
  503. @example
  504. pan="stereo: c0=FR : c1=FR"
  505. @end example
  506. @section silencedetect
  507. Detect silence in an audio stream.
  508. This filter logs a message when it detects that the input audio volume is less
  509. or equal to a noise tolerance value for a duration greater or equal to the
  510. minimum detected noise duration.
  511. The printed times and duration are expressed in seconds.
  512. @table @option
  513. @item duration, d
  514. Set silence duration until notification (default is 2 seconds).
  515. @item noise, n
  516. Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
  517. specified value) or amplitude ratio. Default is -60dB, or 0.001.
  518. @end table
  519. Detect 5 seconds of silence with -50dB noise tolerance:
  520. @example
  521. silencedetect=n=-50dB:d=5
  522. @end example
  523. Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
  524. tolerance in @file{silence.mp3}:
  525. @example
  526. ffmpeg -f lavfi -i amovie=silence.mp3,silencedetect=noise=0.0001 -f null -
  527. @end example
  528. @section asyncts
  529. Synchronize audio data with timestamps by squeezing/stretching it and/or
  530. dropping samples/adding silence when needed.
  531. The filter accepts the following named parameters:
  532. @table @option
  533. @item compensate
  534. Enable stretching/squeezing the data to make it match the timestamps. Disabled
  535. by default. When disabled, time gaps are covered with silence.
  536. @item min_delta
  537. Minimum difference between timestamps and audio data (in seconds) to trigger
  538. adding/dropping samples. Default value is 0.1. If you get non-perfect sync with
  539. this filter, try setting this parameter to 0.
  540. @item max_comp
  541. Maximum compensation in samples per second. Relevant only with compensate=1.
  542. Default value 500.
  543. @item first_pts
  544. Assume the first pts should be this value.
  545. This allows for padding/trimming at the start of stream. By default, no
  546. assumption is made about the first frame's expected pts, so no padding or
  547. trimming is done. For example, this could be set to 0 to pad the beginning with
  548. silence if an audio stream starts after the video stream.
  549. @end table
  550. @section channelsplit
  551. Split each channel in input audio stream into a separate output stream.
  552. This filter accepts the following named parameters:
  553. @table @option
  554. @item channel_layout
  555. Channel layout of the input stream. Default is "stereo".
  556. @end table
  557. For example, assuming a stereo input MP3 file
  558. @example
  559. ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
  560. @end example
  561. will create an output Matroska file with two audio streams, one containing only
  562. the left channel and the other the right channel.
  563. To split a 5.1 WAV file into per-channel files
  564. @example
  565. ffmpeg -i in.wav -filter_complex
  566. 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
  567. -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
  568. front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
  569. side_right.wav
  570. @end example
  571. @section channelmap
  572. Remap input channels to new locations.
  573. This filter accepts the following named parameters:
  574. @table @option
  575. @item channel_layout
  576. Channel layout of the output stream.
  577. @item map
  578. Map channels from input to output. The argument is a comma-separated list of
  579. mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
  580. @var{in_channel} form. @var{in_channel} can be either the name of the input
  581. channel (e.g. FL for front left) or its index in the input channel layout.
  582. @var{out_channel} is the name of the output channel or its index in the output
  583. channel layout. If @var{out_channel} is not given then it is implicitly an
  584. index, starting with zero and increasing by one for each mapping.
  585. @end table
  586. If no mapping is present, the filter will implicitly map input channels to
  587. output channels preserving index.
  588. For example, assuming a 5.1+downmix input MOV file
  589. @example
  590. ffmpeg -i in.mov -filter 'channelmap=map=DL-FL\,DR-FR' out.wav
  591. @end example
  592. will create an output WAV file tagged as stereo from the downmix channels of
  593. the input.
  594. To fix a 5.1 WAV improperly encoded in AAC's native channel order
  595. @example
  596. ffmpeg -i in.wav -filter 'channelmap=1\,2\,0\,5\,3\,4:channel_layout=5.1' out.wav
  597. @end example
  598. @section join
  599. Join multiple input streams into one multi-channel stream.
  600. The filter accepts the following named parameters:
  601. @table @option
  602. @item inputs
  603. Number of input streams. Defaults to 2.
  604. @item channel_layout
  605. Desired output channel layout. Defaults to stereo.
  606. @item map
  607. Map channels from inputs to output. The argument is a comma-separated list of
  608. mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
  609. form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
  610. can be either the name of the input channel (e.g. FL for front left) or its
  611. index in the specified input stream. @var{out_channel} is the name of the output
  612. channel.
  613. @end table
  614. The filter will attempt to guess the mappings when those are not specified
  615. explicitly. It does so by first trying to find an unused matching input channel
  616. and if that fails it picks the first unused input channel.
  617. E.g. to join 3 inputs (with properly set channel layouts)
  618. @example
  619. ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
  620. @end example
  621. To build a 5.1 output from 6 single-channel streams:
  622. @example
  623. ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
  624. 'join=inputs=6:channel_layout=5.1:map=0.0-FL\,1.0-FR\,2.0-FC\,3.0-SL\,4.0-SR\,5.0-LFE'
  625. out
  626. @end example
  627. @section resample
  628. Convert the audio sample format, sample rate and channel layout. This filter is
  629. not meant to be used directly.
  630. @section volume
  631. Adjust the input audio volume.
  632. The filter accepts the following named parameters. If the key of the
  633. first options is omitted, the arguments are interpreted according to
  634. the following syntax:
  635. @example
  636. volume=@var{volume}:@var{precision}
  637. @end example
  638. @table @option
  639. @item volume
  640. Expresses how the audio volume will be increased or decreased.
  641. Output values are clipped to the maximum value.
  642. The output audio volume is given by the relation:
  643. @example
  644. @var{output_volume} = @var{volume} * @var{input_volume}
  645. @end example
  646. Default value for @var{volume} is 1.0.
  647. @item precision
  648. Set the mathematical precision.
  649. This determines which input sample formats will be allowed, which affects the
  650. precision of the volume scaling.
  651. @table @option
  652. @item fixed
  653. 8-bit fixed-point; limits input sample format to U8, S16, and S32.
  654. @item float
  655. 32-bit floating-point; limits input sample format to FLT. (default)
  656. @item double
  657. 64-bit floating-point; limits input sample format to DBL.
  658. @end table
  659. @end table
  660. @subsection Examples
  661. @itemize
  662. @item
  663. Halve the input audio volume:
  664. @example
  665. volume=volume=0.5
  666. volume=volume=1/2
  667. volume=volume=-6.0206dB
  668. @end example
  669. In all the above example the named key for @option{volume} can be
  670. omitted, for example like in:
  671. @example
  672. volume=0.5
  673. @end example
  674. @item
  675. Increase input audio power by 6 decibels using fixed-point precision:
  676. @example
  677. volume=volume=6dB:precision=fixed
  678. @end example
  679. @end itemize
  680. @section volumedetect
  681. Detect the volume of the input video.
  682. The filter has no parameters. The input is not modified. Statistics about
  683. the volume will be printed in the log when the input stream end is reached.
  684. In particular it will show the mean volume (root mean square), maximum
  685. volume (on a per-sample basis), and the beginning of an histogram of the
  686. registered volume values (from the maximum value to a cumulated 1/1000 of
  687. the samples).
  688. All volumes are in decibels relative to the maximum PCM value.
  689. Here is an excerpt of the output:
  690. @example
  691. [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
  692. [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
  693. [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
  694. [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
  695. [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
  696. [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
  697. [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
  698. [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
  699. [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
  700. @end example
  701. It means that:
  702. @itemize
  703. @item
  704. The mean square energy is approximately -27 dB, or 10^-2.7.
  705. @item
  706. The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
  707. @item
  708. There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
  709. @end itemize
  710. In other words, raising the volume by +4 dB does not cause any clipping,
  711. raising it by +5 dB causes clipping for 6 samples, etc.
  712. @c man end AUDIO FILTERS
  713. @chapter Audio Sources
  714. @c man begin AUDIO SOURCES
  715. Below is a description of the currently available audio sources.
  716. @section abuffer
  717. Buffer audio frames, and make them available to the filter chain.
  718. This source is mainly intended for a programmatic use, in particular
  719. through the interface defined in @file{libavfilter/asrc_abuffer.h}.
  720. It accepts the following mandatory parameters:
  721. @var{sample_rate}:@var{sample_fmt}:@var{channel_layout}
  722. @table @option
  723. @item sample_rate
  724. The sample rate of the incoming audio buffers.
  725. @item sample_fmt
  726. The sample format of the incoming audio buffers.
  727. Either a sample format name or its corresponging integer representation from
  728. the enum AVSampleFormat in @file{libavutil/samplefmt.h}
  729. @item channel_layout
  730. The channel layout of the incoming audio buffers.
  731. Either a channel layout name from channel_layout_map in
  732. @file{libavutil/channel_layout.c} or its corresponding integer representation
  733. from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
  734. @end table
  735. For example:
  736. @example
  737. abuffer=44100:s16p:stereo
  738. @end example
  739. will instruct the source to accept planar 16bit signed stereo at 44100Hz.
  740. Since the sample format with name "s16p" corresponds to the number
  741. 6 and the "stereo" channel layout corresponds to the value 0x3, this is
  742. equivalent to:
  743. @example
  744. abuffer=44100:6:0x3
  745. @end example
  746. @section aevalsrc
  747. Generate an audio signal specified by an expression.
  748. This source accepts in input one or more expressions (one for each
  749. channel), which are evaluated and used to generate a corresponding
  750. audio signal.
  751. It accepts the syntax: @var{exprs}[::@var{options}].
  752. @var{exprs} is a list of expressions separated by ":", one for each
  753. separate channel. In case the @var{channel_layout} is not
  754. specified, the selected channel layout depends on the number of
  755. provided expressions.
  756. @var{options} is an optional sequence of @var{key}=@var{value} pairs,
  757. separated by ":".
  758. The description of the accepted options follows.
  759. @table @option
  760. @item channel_layout, c
  761. Set the channel layout. The number of channels in the specified layout
  762. must be equal to the number of specified expressions.
  763. @item duration, d
  764. Set the minimum duration of the sourced audio. See the function
  765. @code{av_parse_time()} for the accepted format.
  766. Note that the resulting duration may be greater than the specified
  767. duration, as the generated audio is always cut at the end of a
  768. complete frame.
  769. If not specified, or the expressed duration is negative, the audio is
  770. supposed to be generated forever.
  771. @item nb_samples, n
  772. Set the number of samples per channel per each output frame,
  773. default to 1024.
  774. @item sample_rate, s
  775. Specify the sample rate, default to 44100.
  776. @end table
  777. Each expression in @var{exprs} can contain the following constants:
  778. @table @option
  779. @item n
  780. number of the evaluated sample, starting from 0
  781. @item t
  782. time of the evaluated sample expressed in seconds, starting from 0
  783. @item s
  784. sample rate
  785. @end table
  786. @subsection Examples
  787. @itemize
  788. @item
  789. Generate silence:
  790. @example
  791. aevalsrc=0
  792. @end example
  793. @item
  794. Generate a sin signal with frequency of 440 Hz, set sample rate to
  795. 8000 Hz:
  796. @example
  797. aevalsrc="sin(440*2*PI*t)::s=8000"
  798. @end example
  799. @item
  800. Generate a two channels signal, specify the channel layout (Front
  801. Center + Back Center) explicitly:
  802. @example
  803. aevalsrc="sin(420*2*PI*t):cos(430*2*PI*t)::c=FC|BC"
  804. @end example
  805. @item
  806. Generate white noise:
  807. @example
  808. aevalsrc="-2+random(0)"
  809. @end example
  810. @item
  811. Generate an amplitude modulated signal:
  812. @example
  813. aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
  814. @end example
  815. @item
  816. Generate 2.5 Hz binaural beats on a 360 Hz carrier:
  817. @example
  818. aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) : 0.1*sin(2*PI*(360+2.5/2)*t)"
  819. @end example
  820. @end itemize
  821. @section anullsrc
  822. Null audio source, return unprocessed audio frames. It is mainly useful
  823. as a template and to be employed in analysis / debugging tools, or as
  824. the source for filters which ignore the input data (for example the sox
  825. synth filter).
  826. It accepts an optional sequence of @var{key}=@var{value} pairs,
  827. separated by ":".
  828. The description of the accepted options follows.
  829. @table @option
  830. @item sample_rate, s
  831. Specify the sample rate, and defaults to 44100.
  832. @item channel_layout, cl
  833. Specify the channel layout, and can be either an integer or a string
  834. representing a channel layout. The default value of @var{channel_layout}
  835. is "stereo".
  836. Check the channel_layout_map definition in
  837. @file{libavutil/channel_layout.c} for the mapping between strings and
  838. channel layout values.
  839. @item nb_samples, n
  840. Set the number of samples per requested frames.
  841. @end table
  842. Follow some examples:
  843. @example
  844. # set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
  845. anullsrc=r=48000:cl=4
  846. # same as
  847. anullsrc=r=48000:cl=mono
  848. @end example
  849. @section abuffer
  850. Buffer audio frames, and make them available to the filter chain.
  851. This source is not intended to be part of user-supplied graph descriptions but
  852. for insertion by calling programs through the interface defined in
  853. @file{libavfilter/buffersrc.h}.
  854. It accepts the following named parameters:
  855. @table @option
  856. @item time_base
  857. Timebase which will be used for timestamps of submitted frames. It must be
  858. either a floating-point number or in @var{numerator}/@var{denominator} form.
  859. @item sample_rate
  860. Audio sample rate.
  861. @item sample_fmt
  862. Name of the sample format, as returned by @code{av_get_sample_fmt_name()}.
  863. @item channel_layout
  864. Channel layout of the audio data, in the form that can be accepted by
  865. @code{av_get_channel_layout()}.
  866. @end table
  867. All the parameters need to be explicitly defined.
  868. @section flite
  869. Synthesize a voice utterance using the libflite library.
  870. To enable compilation of this filter you need to configure FFmpeg with
  871. @code{--enable-libflite}.
  872. Note that the flite library is not thread-safe.
  873. The source accepts parameters as a list of @var{key}=@var{value} pairs,
  874. separated by ":".
  875. The description of the accepted parameters follows.
  876. @table @option
  877. @item list_voices
  878. If set to 1, list the names of the available voices and exit
  879. immediately. Default value is 0.
  880. @item nb_samples, n
  881. Set the maximum number of samples per frame. Default value is 512.
  882. @item textfile
  883. Set the filename containing the text to speak.
  884. @item text
  885. Set the text to speak.
  886. @item voice, v
  887. Set the voice to use for the speech synthesis. Default value is
  888. @code{kal}. See also the @var{list_voices} option.
  889. @end table
  890. @subsection Examples
  891. @itemize
  892. @item
  893. Read from file @file{speech.txt}, and synthetize the text using the
  894. standard flite voice:
  895. @example
  896. flite=textfile=speech.txt
  897. @end example
  898. @item
  899. Read the specified text selecting the @code{slt} voice:
  900. @example
  901. flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
  902. @end example
  903. @item
  904. Input text to ffmpeg:
  905. @example
  906. ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
  907. @end example
  908. @item
  909. Make @file{ffplay} speak the specified text, using @code{flite} and
  910. the @code{lavfi} device:
  911. @example
  912. ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
  913. @end example
  914. @end itemize
  915. For more information about libflite, check:
  916. @url{http://www.speech.cs.cmu.edu/flite/}
  917. @c man end AUDIO SOURCES
  918. @chapter Audio Sinks
  919. @c man begin AUDIO SINKS
  920. Below is a description of the currently available audio sinks.
  921. @section abuffersink
  922. Buffer audio frames, and make them available to the end of filter chain.
  923. This sink is mainly intended for programmatic use, in particular
  924. through the interface defined in @file{libavfilter/buffersink.h}.
  925. It requires a pointer to an AVABufferSinkContext structure, which
  926. defines the incoming buffers' formats, to be passed as the opaque
  927. parameter to @code{avfilter_init_filter} for initialization.
  928. @section anullsink
  929. Null audio sink, do absolutely nothing with the input audio. It is
  930. mainly useful as a template and to be employed in analysis / debugging
  931. tools.
  932. @section abuffersink
  933. This sink is intended for programmatic use. Frames that arrive on this sink can
  934. be retrieved by the calling program using the interface defined in
  935. @file{libavfilter/buffersink.h}.
  936. This filter accepts no parameters.
  937. @c man end AUDIO SINKS
  938. @chapter Video Filters
  939. @c man begin VIDEO FILTERS
  940. When you configure your FFmpeg build, you can disable any of the
  941. existing filters using @code{--disable-filters}.
  942. The configure output will show the video filters included in your
  943. build.
  944. Below is a description of the currently available video filters.
  945. @section alphaextract
  946. Extract the alpha component from the input as a grayscale video. This
  947. is especially useful with the @var{alphamerge} filter.
  948. @section alphamerge
  949. Add or replace the alpha component of the primary input with the
  950. grayscale value of a second input. This is intended for use with
  951. @var{alphaextract} to allow the transmission or storage of frame
  952. sequences that have alpha in a format that doesn't support an alpha
  953. channel.
  954. For example, to reconstruct full frames from a normal YUV-encoded video
  955. and a separate video created with @var{alphaextract}, you might use:
  956. @example
  957. movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
  958. @end example
  959. Since this filter is designed for reconstruction, it operates on frame
  960. sequences without considering timestamps, and terminates when either
  961. input reaches end of stream. This will cause problems if your encoding
  962. pipeline drops frames. If you're trying to apply an image as an
  963. overlay to a video stream, consider the @var{overlay} filter instead.
  964. @section ass
  965. Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
  966. and libavformat to work. On the other hand, it is limited to ASS (Advanced
  967. Substation Alpha) subtitles files.
  968. @section bbox
  969. Compute the bounding box for the non-black pixels in the input frame
  970. luminance plane.
  971. This filter computes the bounding box containing all the pixels with a
  972. luminance value greater than the minimum allowed value.
  973. The parameters describing the bounding box are printed on the filter
  974. log.
  975. @section blackdetect
  976. Detect video intervals that are (almost) completely black. Can be
  977. useful to detect chapter transitions, commercials, or invalid
  978. recordings. Output lines contains the time for the start, end and
  979. duration of the detected black interval expressed in seconds.
  980. In order to display the output lines, you need to set the loglevel at
  981. least to the AV_LOG_INFO value.
  982. This filter accepts a list of options in the form of
  983. @var{key}=@var{value} pairs separated by ":". A description of the
  984. accepted options follows.
  985. @table @option
  986. @item black_min_duration, d
  987. Set the minimum detected black duration expressed in seconds. It must
  988. be a non-negative floating point number.
  989. Default value is 2.0.
  990. @item picture_black_ratio_th, pic_th
  991. Set the threshold for considering a picture "black".
  992. Express the minimum value for the ratio:
  993. @example
  994. @var{nb_black_pixels} / @var{nb_pixels}
  995. @end example
  996. for which a picture is considered black.
  997. Default value is 0.98.
  998. @item pixel_black_th, pix_th
  999. Set the threshold for considering a pixel "black".
  1000. The threshold expresses the maximum pixel luminance value for which a
  1001. pixel is considered "black". The provided value is scaled according to
  1002. the following equation:
  1003. @example
  1004. @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
  1005. @end example
  1006. @var{luminance_range_size} and @var{luminance_minimum_value} depend on
  1007. the input video format, the range is [0-255] for YUV full-range
  1008. formats and [16-235] for YUV non full-range formats.
  1009. Default value is 0.10.
  1010. @end table
  1011. The following example sets the maximum pixel threshold to the minimum
  1012. value, and detects only black intervals of 2 or more seconds:
  1013. @example
  1014. blackdetect=d=2:pix_th=0.00
  1015. @end example
  1016. @section blackframe
  1017. Detect frames that are (almost) completely black. Can be useful to
  1018. detect chapter transitions or commercials. Output lines consist of
  1019. the frame number of the detected frame, the percentage of blackness,
  1020. the position in the file if known or -1 and the timestamp in seconds.
  1021. In order to display the output lines, you need to set the loglevel at
  1022. least to the AV_LOG_INFO value.
  1023. The filter accepts the syntax:
  1024. @example
  1025. blackframe[=@var{amount}:[@var{threshold}]]
  1026. @end example
  1027. @var{amount} is the percentage of the pixels that have to be below the
  1028. threshold, and defaults to 98.
  1029. @var{threshold} is the threshold below which a pixel value is
  1030. considered black, and defaults to 32.
  1031. @section boxblur
  1032. Apply boxblur algorithm to the input video.
  1033. This filter accepts the parameters:
  1034. @var{luma_radius}:@var{luma_power}:@var{chroma_radius}:@var{chroma_power}:@var{alpha_radius}:@var{alpha_power}
  1035. Chroma and alpha parameters are optional, if not specified they default
  1036. to the corresponding values set for @var{luma_radius} and
  1037. @var{luma_power}.
  1038. @var{luma_radius}, @var{chroma_radius}, and @var{alpha_radius} represent
  1039. the radius in pixels of the box used for blurring the corresponding
  1040. input plane. They are expressions, and can contain the following
  1041. constants:
  1042. @table @option
  1043. @item w, h
  1044. the input width and height in pixels
  1045. @item cw, ch
  1046. the input chroma image width and height in pixels
  1047. @item hsub, vsub
  1048. horizontal and vertical chroma subsample values. For example for the
  1049. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  1050. @end table
  1051. The radius must be a non-negative number, and must not be greater than
  1052. the value of the expression @code{min(w,h)/2} for the luma and alpha planes,
  1053. and of @code{min(cw,ch)/2} for the chroma planes.
  1054. @var{luma_power}, @var{chroma_power}, and @var{alpha_power} represent
  1055. how many times the boxblur filter is applied to the corresponding
  1056. plane.
  1057. Some examples follow:
  1058. @itemize
  1059. @item
  1060. Apply a boxblur filter with luma, chroma, and alpha radius
  1061. set to 2:
  1062. @example
  1063. boxblur=2:1
  1064. @end example
  1065. @item
  1066. Set luma radius to 2, alpha and chroma radius to 0
  1067. @example
  1068. boxblur=2:1:0:0:0:0
  1069. @end example
  1070. @item
  1071. Set luma and chroma radius to a fraction of the video dimension
  1072. @example
  1073. boxblur=min(h\,w)/10:1:min(cw\,ch)/10:1
  1074. @end example
  1075. @end itemize
  1076. @section colormatrix
  1077. The colormatrix filter allows conversion between any of the following color
  1078. space: BT.709 (@var{bt709}), BT.601 (@var{bt601}), SMPTE-240M (@var{smpte240m})
  1079. and FCC (@var{fcc}).
  1080. The syntax of the parameters is @var{source}:@var{destination}:
  1081. @example
  1082. colormatrix=bt601:smpte240m
  1083. @end example
  1084. @section copy
  1085. Copy the input source unchanged to the output. Mainly useful for
  1086. testing purposes.
  1087. @section crop
  1088. Crop the input video to @var{out_w}:@var{out_h}:@var{x}:@var{y}:@var{keep_aspect}
  1089. The @var{keep_aspect} parameter is optional, if specified and set to a
  1090. non-zero value will force the output display aspect ratio to be the
  1091. same of the input, by changing the output sample aspect ratio.
  1092. The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
  1093. expressions containing the following constants:
  1094. @table @option
  1095. @item x, y
  1096. the computed values for @var{x} and @var{y}. They are evaluated for
  1097. each new frame.
  1098. @item in_w, in_h
  1099. the input width and height
  1100. @item iw, ih
  1101. same as @var{in_w} and @var{in_h}
  1102. @item out_w, out_h
  1103. the output (cropped) width and height
  1104. @item ow, oh
  1105. same as @var{out_w} and @var{out_h}
  1106. @item a
  1107. same as @var{iw} / @var{ih}
  1108. @item sar
  1109. input sample aspect ratio
  1110. @item dar
  1111. input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
  1112. @item hsub, vsub
  1113. horizontal and vertical chroma subsample values. For example for the
  1114. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  1115. @item n
  1116. the number of input frame, starting from 0
  1117. @item pos
  1118. the position in the file of the input frame, NAN if unknown
  1119. @item t
  1120. timestamp expressed in seconds, NAN if the input timestamp is unknown
  1121. @end table
  1122. The @var{out_w} and @var{out_h} parameters specify the expressions for
  1123. the width and height of the output (cropped) video. They are
  1124. evaluated just at the configuration of the filter.
  1125. The default value of @var{out_w} is "in_w", and the default value of
  1126. @var{out_h} is "in_h".
  1127. The expression for @var{out_w} may depend on the value of @var{out_h},
  1128. and the expression for @var{out_h} may depend on @var{out_w}, but they
  1129. cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
  1130. evaluated after @var{out_w} and @var{out_h}.
  1131. The @var{x} and @var{y} parameters specify the expressions for the
  1132. position of the top-left corner of the output (non-cropped) area. They
  1133. are evaluated for each frame. If the evaluated value is not valid, it
  1134. is approximated to the nearest valid value.
  1135. The default value of @var{x} is "(in_w-out_w)/2", and the default
  1136. value for @var{y} is "(in_h-out_h)/2", which set the cropped area at
  1137. the center of the input image.
  1138. The expression for @var{x} may depend on @var{y}, and the expression
  1139. for @var{y} may depend on @var{x}.
  1140. Follow some examples:
  1141. @example
  1142. # crop the central input area with size 100x100
  1143. crop=100:100
  1144. # crop the central input area with size 2/3 of the input video
  1145. "crop=2/3*in_w:2/3*in_h"
  1146. # crop the input video central square
  1147. crop=in_h
  1148. # delimit the rectangle with the top-left corner placed at position
  1149. # 100:100 and the right-bottom corner corresponding to the right-bottom
  1150. # corner of the input image.
  1151. crop=in_w-100:in_h-100:100:100
  1152. # crop 10 pixels from the left and right borders, and 20 pixels from
  1153. # the top and bottom borders
  1154. "crop=in_w-2*10:in_h-2*20"
  1155. # keep only the bottom right quarter of the input image
  1156. "crop=in_w/2:in_h/2:in_w/2:in_h/2"
  1157. # crop height for getting Greek harmony
  1158. "crop=in_w:1/PHI*in_w"
  1159. # trembling effect
  1160. "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)"
  1161. # erratic camera effect depending on timestamp
  1162. "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)"
  1163. # set x depending on the value of y
  1164. "crop=in_w/2:in_h/2:y:10+10*sin(n/10)"
  1165. @end example
  1166. @section cropdetect
  1167. Auto-detect crop size.
  1168. Calculate necessary cropping parameters and prints the recommended
  1169. parameters through the logging system. The detected dimensions
  1170. correspond to the non-black area of the input video.
  1171. It accepts the syntax:
  1172. @example
  1173. cropdetect[=@var{limit}[:@var{round}[:@var{reset}]]]
  1174. @end example
  1175. @table @option
  1176. @item limit
  1177. Threshold, which can be optionally specified from nothing (0) to
  1178. everything (255), defaults to 24.
  1179. @item round
  1180. Value which the width/height should be divisible by, defaults to
  1181. 16. The offset is automatically adjusted to center the video. Use 2 to
  1182. get only even dimensions (needed for 4:2:2 video). 16 is best when
  1183. encoding to most video codecs.
  1184. @item reset
  1185. Counter that determines after how many frames cropdetect will reset
  1186. the previously detected largest video area and start over to detect
  1187. the current optimal crop area. Defaults to 0.
  1188. This can be useful when channel logos distort the video area. 0
  1189. indicates never reset and return the largest area encountered during
  1190. playback.
  1191. @end table
  1192. @section decimate
  1193. This filter drops frames that do not differ greatly from the previous
  1194. frame in order to reduce framerate. The main use of this filter is
  1195. for very-low-bitrate encoding (e.g. streaming over dialup modem), but
  1196. it could in theory be used for fixing movies that were
  1197. inverse-telecined incorrectly.
  1198. It accepts the following parameters:
  1199. @var{max}:@var{hi}:@var{lo}:@var{frac}.
  1200. @table @option
  1201. @item max
  1202. Set the maximum number of consecutive frames which can be dropped (if
  1203. positive), or the minimum interval between dropped frames (if
  1204. negative). If the value is 0, the frame is dropped unregarding the
  1205. number of previous sequentially dropped frames.
  1206. Default value is 0.
  1207. @item hi, lo, frac
  1208. Set the dropping threshold values.
  1209. Values for @var{hi} and @var{lo} are for 8x8 pixel blocks and
  1210. represent actual pixel value differences, so a threshold of 64
  1211. corresponds to 1 unit of difference for each pixel, or the same spread
  1212. out differently over the block.
  1213. A frame is a candidate for dropping if no 8x8 blocks differ by more
  1214. than a threshold of @var{hi}, and if no more than @var{frac} blocks (1
  1215. meaning the whole image) differ by more than a threshold of @var{lo}.
  1216. Default value for @var{hi} is 64*12, default value for @var{lo} is
  1217. 64*5, and default value for @var{frac} is 0.33.
  1218. @end table
  1219. @section delogo
  1220. Suppress a TV station logo by a simple interpolation of the surrounding
  1221. pixels. Just set a rectangle covering the logo and watch it disappear
  1222. (and sometimes something even uglier appear - your mileage may vary).
  1223. The filter accepts parameters as a string of the form
  1224. "@var{x}:@var{y}:@var{w}:@var{h}:@var{band}", or as a list of
  1225. @var{key}=@var{value} pairs, separated by ":".
  1226. The description of the accepted parameters follows.
  1227. @table @option
  1228. @item x, y
  1229. Specify the top left corner coordinates of the logo. They must be
  1230. specified.
  1231. @item w, h
  1232. Specify the width and height of the logo to clear. They must be
  1233. specified.
  1234. @item band, t
  1235. Specify the thickness of the fuzzy edge of the rectangle (added to
  1236. @var{w} and @var{h}). The default value is 4.
  1237. @item show
  1238. When set to 1, a green rectangle is drawn on the screen to simplify
  1239. finding the right @var{x}, @var{y}, @var{w}, @var{h} parameters, and
  1240. @var{band} is set to 4. The default value is 0.
  1241. @end table
  1242. Some examples follow.
  1243. @itemize
  1244. @item
  1245. Set a rectangle covering the area with top left corner coordinates 0,0
  1246. and size 100x77, setting a band of size 10:
  1247. @example
  1248. delogo=0:0:100:77:10
  1249. @end example
  1250. @item
  1251. As the previous example, but use named options:
  1252. @example
  1253. delogo=x=0:y=0:w=100:h=77:band=10
  1254. @end example
  1255. @end itemize
  1256. @section deshake
  1257. Attempt to fix small changes in horizontal and/or vertical shift. This
  1258. filter helps remove camera shake from hand-holding a camera, bumping a
  1259. tripod, moving on a vehicle, etc.
  1260. The filter accepts parameters as a string of the form
  1261. "@var{x}:@var{y}:@var{w}:@var{h}:@var{rx}:@var{ry}:@var{edge}:@var{blocksize}:@var{contrast}:@var{search}:@var{filename}"
  1262. A description of the accepted parameters follows.
  1263. @table @option
  1264. @item x, y, w, h
  1265. Specify a rectangular area where to limit the search for motion
  1266. vectors.
  1267. If desired the search for motion vectors can be limited to a
  1268. rectangular area of the frame defined by its top left corner, width
  1269. and height. These parameters have the same meaning as the drawbox
  1270. filter which can be used to visualise the position of the bounding
  1271. box.
  1272. This is useful when simultaneous movement of subjects within the frame
  1273. might be confused for camera motion by the motion vector search.
  1274. If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
  1275. then the full frame is used. This allows later options to be set
  1276. without specifying the bounding box for the motion vector search.
  1277. Default - search the whole frame.
  1278. @item rx, ry
  1279. Specify the maximum extent of movement in x and y directions in the
  1280. range 0-64 pixels. Default 16.
  1281. @item edge
  1282. Specify how to generate pixels to fill blanks at the edge of the
  1283. frame. An integer from 0 to 3 as follows:
  1284. @table @option
  1285. @item 0
  1286. Fill zeroes at blank locations
  1287. @item 1
  1288. Original image at blank locations
  1289. @item 2
  1290. Extruded edge value at blank locations
  1291. @item 3
  1292. Mirrored edge at blank locations
  1293. @end table
  1294. The default setting is mirror edge at blank locations.
  1295. @item blocksize
  1296. Specify the blocksize to use for motion search. Range 4-128 pixels,
  1297. default 8.
  1298. @item contrast
  1299. Specify the contrast threshold for blocks. Only blocks with more than
  1300. the specified contrast (difference between darkest and lightest
  1301. pixels) will be considered. Range 1-255, default 125.
  1302. @item search
  1303. Specify the search strategy 0 = exhaustive search, 1 = less exhaustive
  1304. search. Default - exhaustive search.
  1305. @item filename
  1306. If set then a detailed log of the motion search is written to the
  1307. specified file.
  1308. @end table
  1309. @section drawbox
  1310. Draw a colored box on the input image.
  1311. The filter accepts parameters as a list of @var{key}=@var{value} pairs,
  1312. separated by ":".
  1313. The description of the accepted parameters follows.
  1314. @table @option
  1315. @item x, y
  1316. Specify the top left corner coordinates of the box. Default to 0.
  1317. @item width, w
  1318. @item height, h
  1319. Specify the width and height of the box, if 0 they are interpreted as
  1320. the input width and height. Default to 0.
  1321. @item color, c
  1322. Specify the color of the box to write, it can be the name of a color
  1323. (case insensitive match) or a 0xRRGGBB[AA] sequence. If the special
  1324. value @code{invert} is used, the box edge color is the same as the
  1325. video with inverted luma.
  1326. @item thickness, t
  1327. Set the thickness of the box edge. Default value is @code{4}.
  1328. @end table
  1329. If the key of the first options is omitted, the arguments are
  1330. interpreted according to the following syntax:
  1331. @example
  1332. drawbox=@var{x}:@var{y}:@var{width}:@var{height}:@var{color}:@var{thickness}
  1333. @end example
  1334. Some examples follow:
  1335. @itemize
  1336. @item
  1337. Draw a black box around the edge of the input image:
  1338. @example
  1339. drawbox
  1340. @end example
  1341. @item
  1342. Draw a box with color red and an opacity of 50%:
  1343. @example
  1344. drawbox=10:20:200:60:red@@0.5
  1345. @end example
  1346. The previous example can be specified as:
  1347. @example
  1348. drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
  1349. @end example
  1350. @item
  1351. Fill the box with pink color:
  1352. @example
  1353. drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=max
  1354. @end example
  1355. @end itemize
  1356. @anchor{drawtext}
  1357. @section drawtext
  1358. Draw text string or text from specified file on top of video using the
  1359. libfreetype library.
  1360. To enable compilation of this filter you need to configure FFmpeg with
  1361. @code{--enable-libfreetype}.
  1362. @subsection Syntax
  1363. The filter accepts parameters as a list of @var{key}=@var{value} pairs,
  1364. separated by ":".
  1365. The description of the accepted parameters follows.
  1366. @table @option
  1367. @item box
  1368. Used to draw a box around text using background color.
  1369. Value should be either 1 (enable) or 0 (disable).
  1370. The default value of @var{box} is 0.
  1371. @item boxcolor
  1372. The color to be used for drawing box around text.
  1373. Either a string (e.g. "yellow") or in 0xRRGGBB[AA] format
  1374. (e.g. "0xff00ff"), possibly followed by an alpha specifier.
  1375. The default value of @var{boxcolor} is "white".
  1376. @item draw
  1377. Set an expression which specifies if the text should be drawn. If the
  1378. expression evaluates to 0, the text is not drawn. This is useful for
  1379. specifying that the text should be drawn only when specific conditions
  1380. are met.
  1381. Default value is "1".
  1382. See below for the list of accepted constants and functions.
  1383. @item expansion
  1384. Select how the @var{text} is expanded. Can be either @code{none},
  1385. @code{strftime} (default for compatibity reasons but deprecated) or
  1386. @code{normal}. See the @ref{drawtext_expansion, Text expansion} section
  1387. below for details.
  1388. @item fix_bounds
  1389. If true, check and fix text coords to avoid clipping.
  1390. @item fontcolor
  1391. The color to be used for drawing fonts.
  1392. Either a string (e.g. "red") or in 0xRRGGBB[AA] format
  1393. (e.g. "0xff000033"), possibly followed by an alpha specifier.
  1394. The default value of @var{fontcolor} is "black".
  1395. @item fontfile
  1396. The font file to be used for drawing text. Path must be included.
  1397. This parameter is mandatory.
  1398. @item fontsize
  1399. The font size to be used for drawing text.
  1400. The default value of @var{fontsize} is 16.
  1401. @item ft_load_flags
  1402. Flags to be used for loading the fonts.
  1403. The flags map the corresponding flags supported by libfreetype, and are
  1404. a combination of the following values:
  1405. @table @var
  1406. @item default
  1407. @item no_scale
  1408. @item no_hinting
  1409. @item render
  1410. @item no_bitmap
  1411. @item vertical_layout
  1412. @item force_autohint
  1413. @item crop_bitmap
  1414. @item pedantic
  1415. @item ignore_global_advance_width
  1416. @item no_recurse
  1417. @item ignore_transform
  1418. @item monochrome
  1419. @item linear_design
  1420. @item no_autohint
  1421. @item end table
  1422. @end table
  1423. Default value is "render".
  1424. For more information consult the documentation for the FT_LOAD_*
  1425. libfreetype flags.
  1426. @item shadowcolor
  1427. The color to be used for drawing a shadow behind the drawn text. It
  1428. can be a color name (e.g. "yellow") or a string in the 0xRRGGBB[AA]
  1429. form (e.g. "0xff00ff"), possibly followed by an alpha specifier.
  1430. The default value of @var{shadowcolor} is "black".
  1431. @item shadowx, shadowy
  1432. The x and y offsets for the text shadow position with respect to the
  1433. position of the text. They can be either positive or negative
  1434. values. Default value for both is "0".
  1435. @item tabsize
  1436. The size in number of spaces to use for rendering the tab.
  1437. Default value is 4.
  1438. @item timecode
  1439. Set the initial timecode representation in "hh:mm:ss[:;.]ff"
  1440. format. It can be used with or without text parameter. @var{timecode_rate}
  1441. option must be specified.
  1442. @item timecode_rate, rate, r
  1443. Set the timecode frame rate (timecode only).
  1444. @item text
  1445. The text string to be drawn. The text must be a sequence of UTF-8
  1446. encoded characters.
  1447. This parameter is mandatory if no file is specified with the parameter
  1448. @var{textfile}.
  1449. @item textfile
  1450. A text file containing text to be drawn. The text must be a sequence
  1451. of UTF-8 encoded characters.
  1452. This parameter is mandatory if no text string is specified with the
  1453. parameter @var{text}.
  1454. If both @var{text} and @var{textfile} are specified, an error is thrown.
  1455. @item reload
  1456. If set to 1, the @var{textfile} will be reloaded before each frame.
  1457. Be sure to update it atomically, or it may be read partially, or even fail.
  1458. @item x, y
  1459. The expressions which specify the offsets where text will be drawn
  1460. within the video frame. They are relative to the top/left border of the
  1461. output image.
  1462. The default value of @var{x} and @var{y} is "0".
  1463. See below for the list of accepted constants and functions.
  1464. @end table
  1465. The parameters for @var{x} and @var{y} are expressions containing the
  1466. following constants and functions:
  1467. @table @option
  1468. @item dar
  1469. input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
  1470. @item hsub, vsub
  1471. horizontal and vertical chroma subsample values. For example for the
  1472. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  1473. @item line_h, lh
  1474. the height of each text line
  1475. @item main_h, h, H
  1476. the input height
  1477. @item main_w, w, W
  1478. the input width
  1479. @item max_glyph_a, ascent
  1480. the maximum distance from the baseline to the highest/upper grid
  1481. coordinate used to place a glyph outline point, for all the rendered
  1482. glyphs.
  1483. It is a positive value, due to the grid's orientation with the Y axis
  1484. upwards.
  1485. @item max_glyph_d, descent
  1486. the maximum distance from the baseline to the lowest grid coordinate
  1487. used to place a glyph outline point, for all the rendered glyphs.
  1488. This is a negative value, due to the grid's orientation, with the Y axis
  1489. upwards.
  1490. @item max_glyph_h
  1491. maximum glyph height, that is the maximum height for all the glyphs
  1492. contained in the rendered text, it is equivalent to @var{ascent} -
  1493. @var{descent}.
  1494. @item max_glyph_w
  1495. maximum glyph width, that is the maximum width for all the glyphs
  1496. contained in the rendered text
  1497. @item n
  1498. the number of input frame, starting from 0
  1499. @item rand(min, max)
  1500. return a random number included between @var{min} and @var{max}
  1501. @item sar
  1502. input sample aspect ratio
  1503. @item t
  1504. timestamp expressed in seconds, NAN if the input timestamp is unknown
  1505. @item text_h, th
  1506. the height of the rendered text
  1507. @item text_w, tw
  1508. the width of the rendered text
  1509. @item x, y
  1510. the x and y offset coordinates where the text is drawn.
  1511. These parameters allow the @var{x} and @var{y} expressions to refer
  1512. each other, so you can for example specify @code{y=x/dar}.
  1513. @end table
  1514. If libavfilter was built with @code{--enable-fontconfig}, then
  1515. @option{fontfile} can be a fontconfig pattern or omitted.
  1516. @anchor{drawtext_expansion}
  1517. @subsection Text expansion
  1518. If @option{expansion} is set to @code{strftime} (which is the default for
  1519. now), the filter recognizes strftime() sequences in the provided text and
  1520. expands them accordingly. Check the documentation of strftime(). This
  1521. feature is deprecated.
  1522. If @option{expansion} is set to @code{none}, the text is printed verbatim.
  1523. If @option{expansion} is set to @code{normal} (which will be the default),
  1524. the following expansion mechanism is used.
  1525. The backslash character '\', followed by any character, always expands to
  1526. the second character.
  1527. Sequence of the form @code{%@{...@}} are expanded. The text between the
  1528. braces is a function name, possibly followed by arguments separated by ':'.
  1529. If the arguments contain special characters or delimiters (':' or '@}'),
  1530. they should be escaped.
  1531. Note that they probably must also be escaped as the value for the
  1532. @option{text} option in the filter argument string and as the filter
  1533. argument in the filter graph description, and possibly also for the shell,
  1534. that makes up to four levels of escaping; using a text file avoids these
  1535. problems.
  1536. The following functions are available:
  1537. @table @command
  1538. @item expr, e
  1539. The expression evaluation result.
  1540. It must take one argument specifying the expression to be evaluated,
  1541. which accepts the same constants and functions as the @var{x} and
  1542. @var{y} values. Note that not all constants should be used, for
  1543. example the text size is not known when evaluating the expression, so
  1544. the constants @var{text_w} and @var{text_h} will have an undefined
  1545. value.
  1546. @item gmtime
  1547. The time at which the filter is running, expressed in UTC.
  1548. It can accept an argument: a strftime() format string.
  1549. @item localtime
  1550. The time at which the filter is running, expressed in the local time zone.
  1551. It can accept an argument: a strftime() format string.
  1552. @item n, frame_num
  1553. The frame number, starting from 0.
  1554. @item pts
  1555. The timestamp of the current frame, in seconds, with microsecond accuracy.
  1556. @end table
  1557. @subsection Examples
  1558. Some examples follow.
  1559. @itemize
  1560. @item
  1561. Draw "Test Text" with font FreeSerif, using the default values for the
  1562. optional parameters.
  1563. @example
  1564. drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
  1565. @end example
  1566. @item
  1567. Draw 'Test Text' with font FreeSerif of size 24 at position x=100
  1568. and y=50 (counting from the top-left corner of the screen), text is
  1569. yellow with a red box around it. Both the text and the box have an
  1570. opacity of 20%.
  1571. @example
  1572. drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
  1573. x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
  1574. @end example
  1575. Note that the double quotes are not necessary if spaces are not used
  1576. within the parameter list.
  1577. @item
  1578. Show the text at the center of the video frame:
  1579. @example
  1580. drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h-line_h)/2"
  1581. @end example
  1582. @item
  1583. Show a text line sliding from right to left in the last row of the video
  1584. frame. The file @file{LONG_LINE} is assumed to contain a single line
  1585. with no newlines.
  1586. @example
  1587. drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
  1588. @end example
  1589. @item
  1590. Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
  1591. @example
  1592. drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
  1593. @end example
  1594. @item
  1595. Draw a single green letter "g", at the center of the input video.
  1596. The glyph baseline is placed at half screen height.
  1597. @example
  1598. drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
  1599. @end example
  1600. @item
  1601. Show text for 1 second every 3 seconds:
  1602. @example
  1603. drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:draw=lt(mod(t\,3)\,1):text='blink'"
  1604. @end example
  1605. @item
  1606. Use fontconfig to set the font. Note that the colons need to be escaped.
  1607. @example
  1608. drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
  1609. @end example
  1610. @item
  1611. Print the date of a real-time encoding (see strftime(3)):
  1612. @example
  1613. drawtext='fontfile=FreeSans.ttf:expansion=normal:text=%@{localtime:%a %b %d %Y@}'
  1614. @end example
  1615. @end itemize
  1616. For more information about libfreetype, check:
  1617. @url{http://www.freetype.org/}.
  1618. For more information about fontconfig, check:
  1619. @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
  1620. @section edgedetect
  1621. Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
  1622. This filter accepts the following optional named parameters:
  1623. @table @option
  1624. @item low, high
  1625. Set low and high threshold values used by the Canny thresholding
  1626. algorithm.
  1627. The high threshold selects the "strong" edge pixels, which are then
  1628. connected through 8-connectivity with the "weak" edge pixels selected
  1629. by the low threshold.
  1630. @var{low} and @var{high} threshold values must be choosen in the range
  1631. [0,1], and @var{low} should be lesser or equal to @var{high}.
  1632. Default value for @var{low} is @code{20/255}, and default value for @var{high}
  1633. is @code{50/255}.
  1634. @end table
  1635. Example:
  1636. @example
  1637. edgedetect=low=0.1:high=0.4
  1638. @end example
  1639. @section fade
  1640. Apply fade-in/out effect to input video.
  1641. It accepts the parameters:
  1642. @var{type}:@var{start_frame}:@var{nb_frames}[:@var{options}]
  1643. @var{type} specifies if the effect type, can be either "in" for
  1644. fade-in, or "out" for a fade-out effect.
  1645. @var{start_frame} specifies the number of the start frame for starting
  1646. to apply the fade effect.
  1647. @var{nb_frames} specifies the number of frames for which the fade
  1648. effect has to last. At the end of the fade-in effect the output video
  1649. will have the same intensity as the input video, at the end of the
  1650. fade-out transition the output video will be completely black.
  1651. @var{options} is an optional sequence of @var{key}=@var{value} pairs,
  1652. separated by ":". The description of the accepted options follows.
  1653. @table @option
  1654. @item type, t
  1655. See @var{type}.
  1656. @item start_frame, s
  1657. See @var{start_frame}.
  1658. @item nb_frames, n
  1659. See @var{nb_frames}.
  1660. @item alpha
  1661. If set to 1, fade only alpha channel, if one exists on the input.
  1662. Default value is 0.
  1663. @end table
  1664. A few usage examples follow, usable too as test scenarios.
  1665. @example
  1666. # fade in first 30 frames of video
  1667. fade=in:0:30
  1668. # fade out last 45 frames of a 200-frame video
  1669. fade=out:155:45
  1670. # fade in first 25 frames and fade out last 25 frames of a 1000-frame video
  1671. fade=in:0:25, fade=out:975:25
  1672. # make first 5 frames black, then fade in from frame 5-24
  1673. fade=in:5:20
  1674. # fade in alpha over first 25 frames of video
  1675. fade=in:0:25:alpha=1
  1676. @end example
  1677. @section field
  1678. Extract a single field from an interlaced image using stride
  1679. arithmetic to avoid wasting CPU time. The output frames are marked as
  1680. non-interlaced.
  1681. This filter accepts the following named options:
  1682. @table @option
  1683. @item type
  1684. Specify whether to extract the top (if the value is @code{0} or
  1685. @code{top}) or the bottom field (if the value is @code{1} or
  1686. @code{bottom}).
  1687. @end table
  1688. If the option key is not specified, the first value sets the @var{type}
  1689. option. For example:
  1690. @example
  1691. field=bottom
  1692. @end example
  1693. is equivalent to:
  1694. @example
  1695. field=type=bottom
  1696. @end example
  1697. @section fieldorder
  1698. Transform the field order of the input video.
  1699. It accepts one parameter which specifies the required field order that
  1700. the input interlaced video will be transformed to. The parameter can
  1701. assume one of the following values:
  1702. @table @option
  1703. @item 0 or bff
  1704. output bottom field first
  1705. @item 1 or tff
  1706. output top field first
  1707. @end table
  1708. Default value is "tff".
  1709. Transformation is achieved by shifting the picture content up or down
  1710. by one line, and filling the remaining line with appropriate picture content.
  1711. This method is consistent with most broadcast field order converters.
  1712. If the input video is not flagged as being interlaced, or it is already
  1713. flagged as being of the required output field order then this filter does
  1714. not alter the incoming video.
  1715. This filter is very useful when converting to or from PAL DV material,
  1716. which is bottom field first.
  1717. For example:
  1718. @example
  1719. ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
  1720. @end example
  1721. @section fifo
  1722. Buffer input images and send them when they are requested.
  1723. This filter is mainly useful when auto-inserted by the libavfilter
  1724. framework.
  1725. The filter does not take parameters.
  1726. @section format
  1727. Convert the input video to one of the specified pixel formats.
  1728. Libavfilter will try to pick one that is supported for the input to
  1729. the next filter.
  1730. The filter accepts a list of pixel format names, separated by ":",
  1731. for example "yuv420p:monow:rgb24".
  1732. Some examples follow:
  1733. @example
  1734. # convert the input video to the format "yuv420p"
  1735. format=yuv420p
  1736. # convert the input video to any of the formats in the list
  1737. format=yuv420p:yuv444p:yuv410p
  1738. @end example
  1739. @section fps
  1740. Convert the video to specified constant framerate by duplicating or dropping
  1741. frames as necessary.
  1742. This filter accepts the following named parameters:
  1743. @table @option
  1744. @item fps
  1745. Desired output framerate.
  1746. @item round
  1747. Rounding method. The default is @code{near}.
  1748. @end table
  1749. @section framestep
  1750. Select one frame every N.
  1751. This filter accepts in input a string representing a positive
  1752. integer. Default argument is @code{1}.
  1753. @anchor{frei0r}
  1754. @section frei0r
  1755. Apply a frei0r effect to the input video.
  1756. To enable compilation of this filter you need to install the frei0r
  1757. header and configure FFmpeg with @code{--enable-frei0r}.
  1758. The filter supports the syntax:
  1759. @example
  1760. @var{filter_name}[@{:|=@}@var{param1}:@var{param2}:...:@var{paramN}]
  1761. @end example
  1762. @var{filter_name} is the name of the frei0r effect to load. If the
  1763. environment variable @env{FREI0R_PATH} is defined, the frei0r effect
  1764. is searched in each one of the directories specified by the colon (or
  1765. semicolon on Windows platforms) separated list in @env{FREIOR_PATH},
  1766. otherwise in the standard frei0r paths, which are in this order:
  1767. @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
  1768. @file{/usr/lib/frei0r-1/}.
  1769. @var{param1}, @var{param2}, ... , @var{paramN} specify the parameters
  1770. for the frei0r effect.
  1771. A frei0r effect parameter can be a boolean (whose values are specified
  1772. with "y" and "n"), a double, a color (specified by the syntax
  1773. @var{R}/@var{G}/@var{B}, @var{R}, @var{G}, and @var{B} being float
  1774. numbers from 0.0 to 1.0) or by an @code{av_parse_color()} color
  1775. description), a position (specified by the syntax @var{X}/@var{Y},
  1776. @var{X} and @var{Y} being float numbers) and a string.
  1777. The number and kind of parameters depend on the loaded effect. If an
  1778. effect parameter is not specified the default value is set.
  1779. Some examples follow:
  1780. @itemize
  1781. @item
  1782. Apply the distort0r effect, set the first two double parameters:
  1783. @example
  1784. frei0r=distort0r:0.5:0.01
  1785. @end example
  1786. @item
  1787. Apply the colordistance effect, take a color as first parameter:
  1788. @example
  1789. frei0r=colordistance:0.2/0.3/0.4
  1790. frei0r=colordistance:violet
  1791. frei0r=colordistance:0x112233
  1792. @end example
  1793. @item
  1794. Apply the perspective effect, specify the top left and top right image
  1795. positions:
  1796. @example
  1797. frei0r=perspective:0.2/0.2:0.8/0.2
  1798. @end example
  1799. @end itemize
  1800. For more information see:
  1801. @url{http://frei0r.dyne.org}
  1802. @section geq
  1803. The filter takes one, two or three equations as parameter, separated by ':'.
  1804. The first equation is mandatory and applies to the luma plane. The two
  1805. following are respectively for chroma blue and chroma red planes.
  1806. The filter syntax allows named parameters:
  1807. @table @option
  1808. @item lum_expr
  1809. the luminance expression
  1810. @item cb_expr
  1811. the chrominance blue expression
  1812. @item cr_expr
  1813. the chrominance red expression
  1814. @end table
  1815. If one of the chrominance expression is not defined, it falls back on the other
  1816. one. If none of them are specified, they will evaluate the luminance
  1817. expression.
  1818. The expressions can use the following variables and functions:
  1819. @table @option
  1820. @item N
  1821. The sequential number of the filtered frame, starting from @code{0}.
  1822. @item X, Y
  1823. The coordinates of the current sample.
  1824. @item W, H
  1825. The width and height of the image.
  1826. @item SW, SH
  1827. Width and height scale depending on the currently filtered plane. It is the
  1828. ratio between the corresponding luma plane number of pixels and the current
  1829. plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
  1830. @code{0.5,0.5} for chroma planes.
  1831. @item T
  1832. Time of the current frame, expressed in seconds.
  1833. @item p(x, y)
  1834. Return the value of the pixel at location (@var{x},@var{y}) of the current
  1835. plane.
  1836. @item lum(x, y)
  1837. Return the value of the pixel at location (@var{x},@var{y}) of the luminance
  1838. plane.
  1839. @item cb(x, y)
  1840. Return the value of the pixel at location (@var{x},@var{y}) of the
  1841. blue-difference chroma plane.
  1842. @item cr(x, y)
  1843. Return the value of the pixel at location (@var{x},@var{y}) of the
  1844. red-difference chroma plane.
  1845. @end table
  1846. For functions, if @var{x} and @var{y} are outside the area, the value will be
  1847. automatically clipped to the closer edge.
  1848. Some examples follow:
  1849. @itemize
  1850. @item
  1851. Flip the image horizontally:
  1852. @example
  1853. geq=p(W-X\,Y)
  1854. @end example
  1855. @item
  1856. Generate a bidimensional sine wave, with angle @code{PI/3} and a
  1857. wavelength of 100 pixels:
  1858. @example
  1859. geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
  1860. @end example
  1861. @item
  1862. Generate a fancy enigmatic moving light:
  1863. @example
  1864. nullsrc=s=256x256,geq=random(1)/hypot(X-cos(N*0.07)*W/2-W/2\,Y-sin(N*0.09)*H/2-H/2)^2*1000000*sin(N*0.02):128:128
  1865. @end example
  1866. @end itemize
  1867. @section gradfun
  1868. Fix the banding artifacts that are sometimes introduced into nearly flat
  1869. regions by truncation to 8bit color depth.
  1870. Interpolate the gradients that should go where the bands are, and
  1871. dither them.
  1872. This filter is designed for playback only. Do not use it prior to
  1873. lossy compression, because compression tends to lose the dither and
  1874. bring back the bands.
  1875. The filter takes two optional parameters, separated by ':':
  1876. @var{strength}:@var{radius}
  1877. @var{strength} is the maximum amount by which the filter will change
  1878. any one pixel. Also the threshold for detecting nearly flat
  1879. regions. Acceptable values range from .51 to 255, default value is
  1880. 1.2, out-of-range values will be clipped to the valid range.
  1881. @var{radius} is the neighborhood to fit the gradient to. A larger
  1882. radius makes for smoother gradients, but also prevents the filter from
  1883. modifying the pixels near detailed regions. Acceptable values are
  1884. 8-32, default value is 16, out-of-range values will be clipped to the
  1885. valid range.
  1886. @example
  1887. # default parameters
  1888. gradfun=1.2:16
  1889. # omitting radius
  1890. gradfun=1.2
  1891. @end example
  1892. @section hflip
  1893. Flip the input video horizontally.
  1894. For example to horizontally flip the input video with @command{ffmpeg}:
  1895. @example
  1896. ffmpeg -i in.avi -vf "hflip" out.avi
  1897. @end example
  1898. @section hqdn3d
  1899. High precision/quality 3d denoise filter. This filter aims to reduce
  1900. image noise producing smooth images and making still images really
  1901. still. It should enhance compressibility.
  1902. It accepts the following optional parameters:
  1903. @var{luma_spatial}:@var{chroma_spatial}:@var{luma_tmp}:@var{chroma_tmp}
  1904. @table @option
  1905. @item luma_spatial
  1906. a non-negative float number which specifies spatial luma strength,
  1907. defaults to 4.0
  1908. @item chroma_spatial
  1909. a non-negative float number which specifies spatial chroma strength,
  1910. defaults to 3.0*@var{luma_spatial}/4.0
  1911. @item luma_tmp
  1912. a float number which specifies luma temporal strength, defaults to
  1913. 6.0*@var{luma_spatial}/4.0
  1914. @item chroma_tmp
  1915. a float number which specifies chroma temporal strength, defaults to
  1916. @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}
  1917. @end table
  1918. @section hue
  1919. Modify the hue and/or the saturation of the input.
  1920. This filter accepts the following optional named options:
  1921. @table @option
  1922. @item h
  1923. Specify the hue angle as a number of degrees. It accepts a float
  1924. number or an expression, and defaults to 0.0.
  1925. @item H
  1926. Specify the hue angle as a number of degrees. It accepts a float
  1927. number or an expression, and defaults to 0.0.
  1928. @item s
  1929. Specify the saturation in the [-10,10] range. It accepts a float number and
  1930. defaults to 1.0.
  1931. @end table
  1932. The @var{h}, @var{H} and @var{s} parameters are expressions containing the
  1933. following constants:
  1934. @table @option
  1935. @item n
  1936. frame count of the input frame starting from 0
  1937. @item pts
  1938. presentation timestamp of the input frame expressed in time base units
  1939. @item r
  1940. frame rate of the input video, NAN if the input frame rate is unknown
  1941. @item t
  1942. timestamp expressed in seconds, NAN if the input timestamp is unknown
  1943. @item tb
  1944. time base of the input video
  1945. @end table
  1946. The options can also be set using the syntax: @var{hue}:@var{saturation}
  1947. In this case @var{hue} is expressed in degrees.
  1948. Some examples follow:
  1949. @itemize
  1950. @item
  1951. Set the hue to 90 degrees and the saturation to 1.0:
  1952. @example
  1953. hue=h=90:s=1
  1954. @end example
  1955. @item
  1956. Same command but expressing the hue in radians:
  1957. @example
  1958. hue=H=PI/2:s=1
  1959. @end example
  1960. @item
  1961. Same command without named options, hue must be expressed in degrees:
  1962. @example
  1963. hue=90:1
  1964. @end example
  1965. @item
  1966. Note that "h:s" syntax does not support expressions for the values of
  1967. h and s, so the following example will issue an error:
  1968. @example
  1969. hue=PI/2:1
  1970. @end example
  1971. @item
  1972. Rotate hue and make the saturation swing between 0
  1973. and 2 over a period of 1 second:
  1974. @example
  1975. hue="H=2*PI*t: s=sin(2*PI*t)+1"
  1976. @end example
  1977. @item
  1978. Apply a 3 seconds saturation fade-in effect starting at 0:
  1979. @example
  1980. hue="s=min(t/3\,1)"
  1981. @end example
  1982. The general fade-in expression can be written as:
  1983. @example
  1984. hue="s=min(0\, max((t-START)/DURATION\, 1))"
  1985. @end example
  1986. @item
  1987. Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
  1988. @example
  1989. hue="s=max(0\, min(1\, (8-t)/3))"
  1990. @end example
  1991. The general fade-out expression can be written as:
  1992. @example
  1993. hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
  1994. @end example
  1995. @end itemize
  1996. @subsection Commands
  1997. This filter supports the following command:
  1998. @table @option
  1999. @item reinit
  2000. Modify the hue and/or the saturation of the input video.
  2001. The command accepts the same named options and syntax than when calling the
  2002. filter from the command-line.
  2003. If a parameter is omitted, it is kept at its current value.
  2004. @end table
  2005. @section idet
  2006. Interlaceing detect filter. This filter tries to detect if the input is
  2007. interlaced or progressive. Top or bottom field first.
  2008. @section lut, lutrgb, lutyuv
  2009. Compute a look-up table for binding each pixel component input value
  2010. to an output value, and apply it to input video.
  2011. @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
  2012. to an RGB input video.
  2013. These filters accept in input a ":"-separated list of options, which
  2014. specify the expressions used for computing the lookup table for the
  2015. corresponding pixel component values.
  2016. The @var{lut} filter requires either YUV or RGB pixel formats in
  2017. input, and accepts the options:
  2018. @table @option
  2019. @item @var{c0} (first pixel component)
  2020. @item @var{c1} (second pixel component)
  2021. @item @var{c2} (third pixel component)
  2022. @item @var{c3} (fourth pixel component, corresponds to the alpha component)
  2023. @end table
  2024. The exact component associated to each option depends on the format in
  2025. input.
  2026. The @var{lutrgb} filter requires RGB pixel formats in input, and
  2027. accepts the options:
  2028. @table @option
  2029. @item @var{r} (red component)
  2030. @item @var{g} (green component)
  2031. @item @var{b} (blue component)
  2032. @item @var{a} (alpha component)
  2033. @end table
  2034. The @var{lutyuv} filter requires YUV pixel formats in input, and
  2035. accepts the options:
  2036. @table @option
  2037. @item @var{y} (Y/luminance component)
  2038. @item @var{u} (U/Cb component)
  2039. @item @var{v} (V/Cr component)
  2040. @item @var{a} (alpha component)
  2041. @end table
  2042. The expressions can contain the following constants and functions:
  2043. @table @option
  2044. @item w, h
  2045. the input width and height
  2046. @item val
  2047. input value for the pixel component
  2048. @item clipval
  2049. the input value clipped in the @var{minval}-@var{maxval} range
  2050. @item maxval
  2051. maximum value for the pixel component
  2052. @item minval
  2053. minimum value for the pixel component
  2054. @item negval
  2055. the negated value for the pixel component value clipped in the
  2056. @var{minval}-@var{maxval} range , it corresponds to the expression
  2057. "maxval-clipval+minval"
  2058. @item clip(val)
  2059. the computed value in @var{val} clipped in the
  2060. @var{minval}-@var{maxval} range
  2061. @item gammaval(gamma)
  2062. the computed gamma correction value of the pixel component value
  2063. clipped in the @var{minval}-@var{maxval} range, corresponds to the
  2064. expression
  2065. "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
  2066. @end table
  2067. All expressions default to "val".
  2068. Some examples follow:
  2069. @example
  2070. # negate input video
  2071. lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
  2072. lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
  2073. # the above is the same as
  2074. lutrgb="r=negval:g=negval:b=negval"
  2075. lutyuv="y=negval:u=negval:v=negval"
  2076. # negate luminance
  2077. lutyuv=y=negval
  2078. # remove chroma components, turns the video into a graytone image
  2079. lutyuv="u=128:v=128"
  2080. # apply a luma burning effect
  2081. lutyuv="y=2*val"
  2082. # remove green and blue components
  2083. lutrgb="g=0:b=0"
  2084. # set a constant alpha channel value on input
  2085. format=rgba,lutrgb=a="maxval-minval/2"
  2086. # correct luminance gamma by a 0.5 factor
  2087. lutyuv=y=gammaval(0.5)
  2088. @end example
  2089. @section mp
  2090. Apply an MPlayer filter to the input video.
  2091. This filter provides a wrapper around most of the filters of
  2092. MPlayer/MEncoder.
  2093. This wrapper is considered experimental. Some of the wrapped filters
  2094. may not work properly and we may drop support for them, as they will
  2095. be implemented natively into FFmpeg. Thus you should avoid
  2096. depending on them when writing portable scripts.
  2097. The filters accepts the parameters:
  2098. @var{filter_name}[:=]@var{filter_params}
  2099. @var{filter_name} is the name of a supported MPlayer filter,
  2100. @var{filter_params} is a string containing the parameters accepted by
  2101. the named filter.
  2102. The list of the currently supported filters follows:
  2103. @table @var
  2104. @item denoise3d
  2105. @item detc
  2106. @item dint
  2107. @item divtc
  2108. @item down3dright
  2109. @item dsize
  2110. @item eq2
  2111. @item eq
  2112. @item fil
  2113. @item fspp
  2114. @item harddup
  2115. @item il
  2116. @item ilpack
  2117. @item ivtc
  2118. @item kerndeint
  2119. @item mcdeint
  2120. @item noise
  2121. @item ow
  2122. @item perspective
  2123. @item phase
  2124. @item pp7
  2125. @item pullup
  2126. @item qp
  2127. @item sab
  2128. @item softpulldown
  2129. @item softskip
  2130. @item spp
  2131. @item telecine
  2132. @item tinterlace
  2133. @item unsharp
  2134. @item uspp
  2135. @end table
  2136. The parameter syntax and behavior for the listed filters are the same
  2137. of the corresponding MPlayer filters. For detailed instructions check
  2138. the "VIDEO FILTERS" section in the MPlayer manual.
  2139. Some examples follow:
  2140. @itemize
  2141. @item
  2142. Adjust gamma, brightness, contrast:
  2143. @example
  2144. mp=eq2=1.0:2:0.5
  2145. @end example
  2146. @item
  2147. Add temporal noise to input video:
  2148. @example
  2149. mp=noise=20t
  2150. @end example
  2151. @end itemize
  2152. See also mplayer(1), @url{http://www.mplayerhq.hu/}.
  2153. @section negate
  2154. Negate input video.
  2155. This filter accepts an integer in input, if non-zero it negates the
  2156. alpha component (if available). The default value in input is 0.
  2157. @section noformat
  2158. Force libavfilter not to use any of the specified pixel formats for the
  2159. input to the next filter.
  2160. The filter accepts a list of pixel format names, separated by ":",
  2161. for example "yuv420p:monow:rgb24".
  2162. Some examples follow:
  2163. @example
  2164. # force libavfilter to use a format different from "yuv420p" for the
  2165. # input to the vflip filter
  2166. noformat=yuv420p,vflip
  2167. # convert the input video to any of the formats not contained in the list
  2168. noformat=yuv420p:yuv444p:yuv410p
  2169. @end example
  2170. @section null
  2171. Pass the video source unchanged to the output.
  2172. @section ocv
  2173. Apply video transform using libopencv.
  2174. To enable this filter install libopencv library and headers and
  2175. configure FFmpeg with @code{--enable-libopencv}.
  2176. The filter takes the parameters: @var{filter_name}@{:=@}@var{filter_params}.
  2177. @var{filter_name} is the name of the libopencv filter to apply.
  2178. @var{filter_params} specifies the parameters to pass to the libopencv
  2179. filter. If not specified the default values are assumed.
  2180. Refer to the official libopencv documentation for more precise
  2181. information:
  2182. @url{http://opencv.willowgarage.com/documentation/c/image_filtering.html}
  2183. Follows the list of supported libopencv filters.
  2184. @anchor{dilate}
  2185. @subsection dilate
  2186. Dilate an image by using a specific structuring element.
  2187. This filter corresponds to the libopencv function @code{cvDilate}.
  2188. It accepts the parameters: @var{struct_el}:@var{nb_iterations}.
  2189. @var{struct_el} represents a structuring element, and has the syntax:
  2190. @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
  2191. @var{cols} and @var{rows} represent the number of columns and rows of
  2192. the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
  2193. point, and @var{shape} the shape for the structuring element, and
  2194. can be one of the values "rect", "cross", "ellipse", "custom".
  2195. If the value for @var{shape} is "custom", it must be followed by a
  2196. string of the form "=@var{filename}". The file with name
  2197. @var{filename} is assumed to represent a binary image, with each
  2198. printable character corresponding to a bright pixel. When a custom
  2199. @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
  2200. or columns and rows of the read file are assumed instead.
  2201. The default value for @var{struct_el} is "3x3+0x0/rect".
  2202. @var{nb_iterations} specifies the number of times the transform is
  2203. applied to the image, and defaults to 1.
  2204. Follow some example:
  2205. @example
  2206. # use the default values
  2207. ocv=dilate
  2208. # dilate using a structuring element with a 5x5 cross, iterate two times
  2209. ocv=dilate=5x5+2x2/cross:2
  2210. # read the shape from the file diamond.shape, iterate two times
  2211. # the file diamond.shape may contain a pattern of characters like this:
  2212. # *
  2213. # ***
  2214. # *****
  2215. # ***
  2216. # *
  2217. # the specified cols and rows are ignored (but not the anchor point coordinates)
  2218. ocv=0x0+2x2/custom=diamond.shape:2
  2219. @end example
  2220. @subsection erode
  2221. Erode an image by using a specific structuring element.
  2222. This filter corresponds to the libopencv function @code{cvErode}.
  2223. The filter accepts the parameters: @var{struct_el}:@var{nb_iterations},
  2224. with the same syntax and semantics as the @ref{dilate} filter.
  2225. @subsection smooth
  2226. Smooth the input video.
  2227. The filter takes the following parameters:
  2228. @var{type}:@var{param1}:@var{param2}:@var{param3}:@var{param4}.
  2229. @var{type} is the type of smooth filter to apply, and can be one of
  2230. the following values: "blur", "blur_no_scale", "median", "gaussian",
  2231. "bilateral". The default value is "gaussian".
  2232. @var{param1}, @var{param2}, @var{param3}, and @var{param4} are
  2233. parameters whose meanings depend on smooth type. @var{param1} and
  2234. @var{param2} accept integer positive values or 0, @var{param3} and
  2235. @var{param4} accept float values.
  2236. The default value for @var{param1} is 3, the default value for the
  2237. other parameters is 0.
  2238. These parameters correspond to the parameters assigned to the
  2239. libopencv function @code{cvSmooth}.
  2240. @anchor{overlay}
  2241. @section overlay
  2242. Overlay one video on top of another.
  2243. It takes two inputs and one output, the first input is the "main"
  2244. video on which the second input is overlayed.
  2245. It accepts the parameters: @var{x}:@var{y}[:@var{options}].
  2246. @var{x} is the x coordinate of the overlayed video on the main video,
  2247. @var{y} is the y coordinate. @var{x} and @var{y} are expressions containing
  2248. the following parameters:
  2249. @table @option
  2250. @item main_w, main_h
  2251. main input width and height
  2252. @item W, H
  2253. same as @var{main_w} and @var{main_h}
  2254. @item overlay_w, overlay_h
  2255. overlay input width and height
  2256. @item w, h
  2257. same as @var{overlay_w} and @var{overlay_h}
  2258. @end table
  2259. @var{options} is an optional list of @var{key}=@var{value} pairs,
  2260. separated by ":".
  2261. The description of the accepted options follows.
  2262. @table @option
  2263. @item rgb
  2264. If set to 1, force the filter to accept inputs in the RGB
  2265. color space. Default value is 0.
  2266. @end table
  2267. Be aware that frames are taken from each input video in timestamp
  2268. order, hence, if their initial timestamps differ, it is a a good idea
  2269. to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
  2270. have them begin in the same zero timestamp, as it does the example for
  2271. the @var{movie} filter.
  2272. Follow some examples:
  2273. @example
  2274. # draw the overlay at 10 pixels from the bottom right
  2275. # corner of the main video.
  2276. overlay=main_w-overlay_w-10:main_h-overlay_h-10
  2277. # insert a transparent PNG logo in the bottom left corner of the input
  2278. ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
  2279. # insert 2 different transparent PNG logos (second logo on bottom
  2280. # right corner):
  2281. ffmpeg -i input -i logo1 -i logo2 -filter_complex
  2282. 'overlay=10:H-h-10,overlay=W-w-10:H-h-10' output
  2283. # add a transparent color layer on top of the main video,
  2284. # WxH specifies the size of the main input to the overlay filter
  2285. color=red@@.3:WxH [over]; [in][over] overlay [out]
  2286. # play an original video and a filtered version (here with the deshake filter)
  2287. # side by side
  2288. ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
  2289. # the previous example is the same as:
  2290. ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
  2291. @end example
  2292. You can chain together more overlays but the efficiency of such
  2293. approach is yet to be tested.
  2294. @section pad
  2295. Add paddings to the input image, and places the original input at the
  2296. given coordinates @var{x}, @var{y}.
  2297. It accepts the following parameters:
  2298. @var{width}:@var{height}:@var{x}:@var{y}:@var{color}.
  2299. The parameters @var{width}, @var{height}, @var{x}, and @var{y} are
  2300. expressions containing the following constants:
  2301. @table @option
  2302. @item in_w, in_h
  2303. the input video width and height
  2304. @item iw, ih
  2305. same as @var{in_w} and @var{in_h}
  2306. @item out_w, out_h
  2307. the output width and height, that is the size of the padded area as
  2308. specified by the @var{width} and @var{height} expressions
  2309. @item ow, oh
  2310. same as @var{out_w} and @var{out_h}
  2311. @item x, y
  2312. x and y offsets as specified by the @var{x} and @var{y}
  2313. expressions, or NAN if not yet specified
  2314. @item a
  2315. same as @var{iw} / @var{ih}
  2316. @item sar
  2317. input sample aspect ratio
  2318. @item dar
  2319. input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
  2320. @item hsub, vsub
  2321. horizontal and vertical chroma subsample values. For example for the
  2322. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  2323. @end table
  2324. Follows the description of the accepted parameters.
  2325. @table @option
  2326. @item width, height
  2327. Specify the size of the output image with the paddings added. If the
  2328. value for @var{width} or @var{height} is 0, the corresponding input size
  2329. is used for the output.
  2330. The @var{width} expression can reference the value set by the
  2331. @var{height} expression, and vice versa.
  2332. The default value of @var{width} and @var{height} is 0.
  2333. @item x, y
  2334. Specify the offsets where to place the input image in the padded area
  2335. with respect to the top/left border of the output image.
  2336. The @var{x} expression can reference the value set by the @var{y}
  2337. expression, and vice versa.
  2338. The default value of @var{x} and @var{y} is 0.
  2339. @item color
  2340. Specify the color of the padded area, it can be the name of a color
  2341. (case insensitive match) or a 0xRRGGBB[AA] sequence.
  2342. The default value of @var{color} is "black".
  2343. @end table
  2344. @subsection Examples
  2345. @itemize
  2346. @item
  2347. Add paddings with color "violet" to the input video. Output video
  2348. size is 640x480, the top-left corner of the input video is placed at
  2349. column 0, row 40:
  2350. @example
  2351. pad=640:480:0:40:violet
  2352. @end example
  2353. @item
  2354. Pad the input to get an output with dimensions increased by 3/2,
  2355. and put the input video at the center of the padded area:
  2356. @example
  2357. pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
  2358. @end example
  2359. @item
  2360. Pad the input to get a squared output with size equal to the maximum
  2361. value between the input width and height, and put the input video at
  2362. the center of the padded area:
  2363. @example
  2364. pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
  2365. @end example
  2366. @item
  2367. Pad the input to get a final w/h ratio of 16:9:
  2368. @example
  2369. pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
  2370. @end example
  2371. @item
  2372. In case of anamorphic video, in order to set the output display aspect
  2373. correctly, it is necessary to use @var{sar} in the expression,
  2374. according to the relation:
  2375. @example
  2376. (ih * X / ih) * sar = output_dar
  2377. X = output_dar / sar
  2378. @end example
  2379. Thus the previous example needs to be modified to:
  2380. @example
  2381. pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
  2382. @end example
  2383. @item
  2384. Double output size and put the input video in the bottom-right
  2385. corner of the output padded area:
  2386. @example
  2387. pad="2*iw:2*ih:ow-iw:oh-ih"
  2388. @end example
  2389. @end itemize
  2390. @section pixdesctest
  2391. Pixel format descriptor test filter, mainly useful for internal
  2392. testing. The output video should be equal to the input video.
  2393. For example:
  2394. @example
  2395. format=monow, pixdesctest
  2396. @end example
  2397. can be used to test the monowhite pixel format descriptor definition.
  2398. @section removelogo
  2399. Suppress a TV station logo, using an image file to determine which
  2400. pixels comprise the logo. It works by filling in the pixels that
  2401. comprise the logo with neighboring pixels.
  2402. This filter requires one argument which specifies the filter bitmap
  2403. file, which can be any image format supported by libavformat. The
  2404. width and height of the image file must match those of the video
  2405. stream being processed.
  2406. Pixels in the provided bitmap image with a value of zero are not
  2407. considered part of the logo, non-zero pixels are considered part of
  2408. the logo. If you use white (255) for the logo and black (0) for the
  2409. rest, you will be safe. For making the filter bitmap, it is
  2410. recommended to take a screen capture of a black frame with the logo
  2411. visible, and then using a threshold filter followed by the erode
  2412. filter once or twice.
  2413. If needed, little splotches can be fixed manually. Remember that if
  2414. logo pixels are not covered, the filter quality will be much
  2415. reduced. Marking too many pixels as part of the logo does not hurt as
  2416. much, but it will increase the amount of blurring needed to cover over
  2417. the image and will destroy more information than necessary, and extra
  2418. pixels will slow things down on a large logo.
  2419. @section scale
  2420. Scale (resize) the input video, using the libswscale library.
  2421. The scale filter forces the output display aspect ratio to be the same
  2422. of the input, by changing the output sample aspect ratio.
  2423. This filter accepts a list of named options in the form of
  2424. @var{key}=@var{value} pairs separated by ":". If the key for the first
  2425. two options is not specified, the assumed keys for the first two
  2426. values are @code{w} and @code{h}. If the first option has no key and
  2427. can be interpreted like a video size specification, it will be used
  2428. to set the video size.
  2429. A description of the accepted options follows.
  2430. @table @option
  2431. @item width, w
  2432. Set the video width expression, default value is @code{iw}. See below
  2433. for the list of accepted constants.
  2434. @item height, h
  2435. Set the video heiht expression, default value is @code{ih}.
  2436. See below for the list of accepted constants.
  2437. @item interl
  2438. Set the interlacing. It accepts the following values:
  2439. @table @option
  2440. @item 1
  2441. force interlaced aware scaling
  2442. @item 0
  2443. do not apply interlaced scaling
  2444. @item -1
  2445. select interlaced aware scaling depending on whether the source frames
  2446. are flagged as interlaced or not
  2447. @end table
  2448. Default value is @code{0}.
  2449. @item flags
  2450. Set libswscale scaling flags. If not explictly specified the filter
  2451. applies a bilinear scaling algorithm.
  2452. @item size, s
  2453. Set the video size, the value must be a valid abbreviation or in the
  2454. form @var{width}x@var{height}.
  2455. @end table
  2456. The values of the @var{w} and @var{h} options are expressions
  2457. containing the following constants:
  2458. @table @option
  2459. @item in_w, in_h
  2460. the input width and height
  2461. @item iw, ih
  2462. same as @var{in_w} and @var{in_h}
  2463. @item out_w, out_h
  2464. the output (cropped) width and height
  2465. @item ow, oh
  2466. same as @var{out_w} and @var{out_h}
  2467. @item a
  2468. same as @var{iw} / @var{ih}
  2469. @item sar
  2470. input sample aspect ratio
  2471. @item dar
  2472. input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
  2473. @item hsub, vsub
  2474. horizontal and vertical chroma subsample values. For example for the
  2475. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  2476. @end table
  2477. If the input image format is different from the format requested by
  2478. the next filter, the scale filter will convert the input to the
  2479. requested format.
  2480. If the value for @var{width} or @var{height} is 0, the respective input
  2481. size is used for the output.
  2482. If the value for @var{width} or @var{height} is -1, the scale filter will
  2483. use, for the respective output size, a value that maintains the aspect
  2484. ratio of the input image.
  2485. @subsection Examples
  2486. @itemize
  2487. @item
  2488. Scale the input video to a size of 200x100:
  2489. @example
  2490. scale=200:100
  2491. @end example
  2492. This is equivalent to:
  2493. @example
  2494. scale=w=200:h=100
  2495. @end example
  2496. or:
  2497. @example
  2498. scale=200x100
  2499. @end example
  2500. @item
  2501. Specify a size abbreviation for the output size:
  2502. @example
  2503. scale=qcif
  2504. @end example
  2505. which can also be written as:
  2506. @example
  2507. scale=size=qcif
  2508. @end example
  2509. @item
  2510. Scale the input to 2x:
  2511. @example
  2512. scale=2*iw:2*ih
  2513. @end example
  2514. @item
  2515. The above is the same as:
  2516. @example
  2517. scale=2*in_w:2*in_h
  2518. @end example
  2519. @item
  2520. Scale the input to 2x with forced interlaced scaling:
  2521. @example
  2522. scale=2*iw:2*ih:interl=1
  2523. @end example
  2524. @item
  2525. Scale the input to half size:
  2526. @example
  2527. scale=iw/2:ih/2
  2528. @end example
  2529. @item
  2530. Increase the width, and set the height to the same size:
  2531. @example
  2532. scale=3/2*iw:ow
  2533. @end example
  2534. @item
  2535. Seek for Greek harmony:
  2536. @example
  2537. scale=iw:1/PHI*iw
  2538. scale=ih*PHI:ih
  2539. @end example
  2540. @item
  2541. Increase the height, and set the width to 3/2 of the height:
  2542. @example
  2543. scale=3/2*oh:3/5*ih
  2544. @end example
  2545. @item
  2546. Increase the size, but make the size a multiple of the chroma:
  2547. @example
  2548. scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
  2549. @end example
  2550. @item
  2551. Increase the width to a maximum of 500 pixels, keep the same input
  2552. aspect ratio:
  2553. @example
  2554. scale='min(500\, iw*3/2):-1'
  2555. @end example
  2556. @end itemize
  2557. @section select
  2558. Select frames to pass in output.
  2559. It accepts in input an expression, which is evaluated for each input
  2560. frame. If the expression is evaluated to a non-zero value, the frame
  2561. is selected and passed to the output, otherwise it is discarded.
  2562. The expression can contain the following constants:
  2563. @table @option
  2564. @item n
  2565. the sequential number of the filtered frame, starting from 0
  2566. @item selected_n
  2567. the sequential number of the selected frame, starting from 0
  2568. @item prev_selected_n
  2569. the sequential number of the last selected frame, NAN if undefined
  2570. @item TB
  2571. timebase of the input timestamps
  2572. @item pts
  2573. the PTS (Presentation TimeStamp) of the filtered video frame,
  2574. expressed in @var{TB} units, NAN if undefined
  2575. @item t
  2576. the PTS (Presentation TimeStamp) of the filtered video frame,
  2577. expressed in seconds, NAN if undefined
  2578. @item prev_pts
  2579. the PTS of the previously filtered video frame, NAN if undefined
  2580. @item prev_selected_pts
  2581. the PTS of the last previously filtered video frame, NAN if undefined
  2582. @item prev_selected_t
  2583. the PTS of the last previously selected video frame, NAN if undefined
  2584. @item start_pts
  2585. the PTS of the first video frame in the video, NAN if undefined
  2586. @item start_t
  2587. the time of the first video frame in the video, NAN if undefined
  2588. @item pict_type
  2589. the type of the filtered frame, can assume one of the following
  2590. values:
  2591. @table @option
  2592. @item I
  2593. @item P
  2594. @item B
  2595. @item S
  2596. @item SI
  2597. @item SP
  2598. @item BI
  2599. @end table
  2600. @item interlace_type
  2601. the frame interlace type, can assume one of the following values:
  2602. @table @option
  2603. @item PROGRESSIVE
  2604. the frame is progressive (not interlaced)
  2605. @item TOPFIRST
  2606. the frame is top-field-first
  2607. @item BOTTOMFIRST
  2608. the frame is bottom-field-first
  2609. @end table
  2610. @item key
  2611. 1 if the filtered frame is a key-frame, 0 otherwise
  2612. @item pos
  2613. the position in the file of the filtered frame, -1 if the information
  2614. is not available (e.g. for synthetic video)
  2615. @item scene
  2616. value between 0 and 1 to indicate a new scene; a low value reflects a low
  2617. probability for the current frame to introduce a new scene, while a higher
  2618. value means the current frame is more likely to be one (see the example below)
  2619. @end table
  2620. The default value of the select expression is "1".
  2621. Some examples follow:
  2622. @example
  2623. # select all frames in input
  2624. select
  2625. # the above is the same as:
  2626. select=1
  2627. # skip all frames:
  2628. select=0
  2629. # select only I-frames
  2630. select='eq(pict_type\,I)'
  2631. # select one frame every 100
  2632. select='not(mod(n\,100))'
  2633. # select only frames contained in the 10-20 time interval
  2634. select='gte(t\,10)*lte(t\,20)'
  2635. # select only I frames contained in the 10-20 time interval
  2636. select='gte(t\,10)*lte(t\,20)*eq(pict_type\,I)'
  2637. # select frames with a minimum distance of 10 seconds
  2638. select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
  2639. @end example
  2640. Complete example to create a mosaic of the first scenes:
  2641. @example
  2642. ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
  2643. @end example
  2644. Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
  2645. choice.
  2646. @section setdar, setsar
  2647. The @code{setdar} filter sets the Display Aspect Ratio for the filter
  2648. output video.
  2649. This is done by changing the specified Sample (aka Pixel) Aspect
  2650. Ratio, according to the following equation:
  2651. @example
  2652. @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
  2653. @end example
  2654. Keep in mind that the @code{setdar} filter does not modify the pixel
  2655. dimensions of the video frame. Also the display aspect ratio set by
  2656. this filter may be changed by later filters in the filterchain,
  2657. e.g. in case of scaling or if another "setdar" or a "setsar" filter is
  2658. applied.
  2659. The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
  2660. the filter output video.
  2661. Note that as a consequence of the application of this filter, the
  2662. output display aspect ratio will change according to the equation
  2663. above.
  2664. Keep in mind that the sample aspect ratio set by the @code{setsar}
  2665. filter may be changed by later filters in the filterchain, e.g. if
  2666. another "setsar" or a "setdar" filter is applied.
  2667. The @code{setdar} and @code{setsar} filters accept a string in the
  2668. form @var{num}:@var{den} expressing an aspect ratio, or the following
  2669. named options, expressed as a sequence of @var{key}=@var{value} pairs,
  2670. separated by ":".
  2671. @table @option
  2672. @item max
  2673. Set the maximum integer value to use for expressing numerator and
  2674. denominator when reducing the expressed aspect ratio to a rational.
  2675. Default value is @code{100}.
  2676. @item r, ratio:
  2677. Set the aspect ratio used by the filter.
  2678. The parameter can be a floating point number string, an expression, or
  2679. a string of the form @var{num}:@var{den}, where @var{num} and
  2680. @var{den} are the numerator and denominator of the aspect ratio. If
  2681. the parameter is not specified, it is assumed the value "0".
  2682. In case the form "@var{num}:@var{den}" the @code{:} character should
  2683. be escaped.
  2684. @end table
  2685. If the keys are omitted in the named options list, the specifed values
  2686. are assumed to be @var{ratio} and @var{max} in that order.
  2687. For example to change the display aspect ratio to 16:9, specify:
  2688. @example
  2689. setdar='16:9'
  2690. @end example
  2691. The example above is equivalent to:
  2692. @example
  2693. setdar=1.77777
  2694. @end example
  2695. To change the sample aspect ratio to 10:11, specify:
  2696. @example
  2697. setsar='10:11'
  2698. @end example
  2699. To set a display aspect ratio of 16:9, and specify a maximum integer value of
  2700. 1000 in the aspect ratio reduction, use the command:
  2701. @example
  2702. setdar=ratio='16:9':max=1000
  2703. @end example
  2704. @section setfield
  2705. Force field for the output video frame.
  2706. The @code{setfield} filter marks the interlace type field for the
  2707. output frames. It does not change the input frame, but only sets the
  2708. corresponding property, which affects how the frame is treated by
  2709. following filters (e.g. @code{fieldorder} or @code{yadif}).
  2710. This filter accepts a single option @option{mode}, which can be
  2711. specified either by setting @code{mode=VALUE} either setting the
  2712. value alone. Available values are:
  2713. @table @samp
  2714. @item auto
  2715. Keep the same field property.
  2716. @item bff
  2717. Mark the frame as bottom-field-first.
  2718. @item tff
  2719. Mark the frame as top-field-first.
  2720. @item prog
  2721. Mark the frame as progressive.
  2722. @end table
  2723. @section showinfo
  2724. Show a line containing various information for each input video frame.
  2725. The input video is not modified.
  2726. The shown line contains a sequence of key/value pairs of the form
  2727. @var{key}:@var{value}.
  2728. A description of each shown parameter follows:
  2729. @table @option
  2730. @item n
  2731. sequential number of the input frame, starting from 0
  2732. @item pts
  2733. Presentation TimeStamp of the input frame, expressed as a number of
  2734. time base units. The time base unit depends on the filter input pad.
  2735. @item pts_time
  2736. Presentation TimeStamp of the input frame, expressed as a number of
  2737. seconds
  2738. @item pos
  2739. position of the frame in the input stream, -1 if this information in
  2740. unavailable and/or meaningless (for example in case of synthetic video)
  2741. @item fmt
  2742. pixel format name
  2743. @item sar
  2744. sample aspect ratio of the input frame, expressed in the form
  2745. @var{num}/@var{den}
  2746. @item s
  2747. size of the input frame, expressed in the form
  2748. @var{width}x@var{height}
  2749. @item i
  2750. interlaced mode ("P" for "progressive", "T" for top field first, "B"
  2751. for bottom field first)
  2752. @item iskey
  2753. 1 if the frame is a key frame, 0 otherwise
  2754. @item type
  2755. picture type of the input frame ("I" for an I-frame, "P" for a
  2756. P-frame, "B" for a B-frame, "?" for unknown type).
  2757. Check also the documentation of the @code{AVPictureType} enum and of
  2758. the @code{av_get_picture_type_char} function defined in
  2759. @file{libavutil/avutil.h}.
  2760. @item checksum
  2761. Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame
  2762. @item plane_checksum
  2763. Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
  2764. expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]"
  2765. @end table
  2766. @section smartblur
  2767. Blur the input video without impacting the outlines.
  2768. The filter accepts the following parameters:
  2769. @var{luma_radius}:@var{luma_strength}:@var{luma_threshold}[:@var{chroma_radius}:@var{chroma_strength}:@var{chroma_threshold}]
  2770. Parameters prefixed by @var{luma} indicate that they work on the
  2771. luminance of the pixels whereas parameters prefixed by @var{chroma}
  2772. refer to the chrominance of the pixels.
  2773. If the chroma parameters are not set, the luma parameters are used for
  2774. either the luminance and the chrominance of the pixels.
  2775. @var{luma_radius} or @var{chroma_radius} must be a float number in the
  2776. range [0.1,5.0] that specifies the variance of the gaussian filter
  2777. used to blur the image (slower if larger).
  2778. @var{luma_strength} or @var{chroma_strength} must be a float number in
  2779. the range [-1.0,1.0] that configures the blurring. A value included in
  2780. [0.0,1.0] will blur the image whereas a value included in [-1.0,0.0]
  2781. will sharpen the image.
  2782. @var{luma_threshold} or @var{chroma_threshold} must be an integer in
  2783. the range [-30,30] that is used as a coefficient to determine whether
  2784. a pixel should be blurred or not. A value of 0 will filter all the
  2785. image, a value included in [0,30] will filter flat areas and a value
  2786. included in [-30,0] will filter edges.
  2787. @anchor{subtitles}
  2788. @section subtitles
  2789. Draw subtitles on top of input video using the libass library.
  2790. To enable compilation of this filter you need to configure FFmpeg with
  2791. @code{--enable-libass}. This filter also requires a build with libavcodec and
  2792. libavformat to convert the passed subtitles file to ASS (Advanced Substation
  2793. Alpha) subtitles format.
  2794. This filter accepts the following named options, expressed as a
  2795. sequence of @var{key}=@var{value} pairs, separated by ":".
  2796. @table @option
  2797. @item filename, f
  2798. Set the filename of the subtitle file to read. It must be specified.
  2799. @item original_size
  2800. Specify the size of the original video, the video for which the ASS file
  2801. was composed. Due to a misdesign in ASS aspect ratio arithmetic, this is
  2802. necessary to correctly scale the fonts if the aspect ratio has been changed.
  2803. @end table
  2804. If the first key is not specified, it is assumed that the first value
  2805. specifies the @option{filename}.
  2806. For example, to render the file @file{sub.srt} on top of the input
  2807. video, use the command:
  2808. @example
  2809. subtitles=sub.srt
  2810. @end example
  2811. which is equivalent to:
  2812. @example
  2813. subtitles=filename=sub.srt
  2814. @end example
  2815. @section split
  2816. Split input video into several identical outputs.
  2817. The filter accepts a single parameter which specifies the number of outputs. If
  2818. unspecified, it defaults to 2.
  2819. For example
  2820. @example
  2821. ffmpeg -i INPUT -filter_complex split=5 OUTPUT
  2822. @end example
  2823. will create 5 copies of the input video.
  2824. For example:
  2825. @example
  2826. [in] split [splitout1][splitout2];
  2827. [splitout1] crop=100:100:0:0 [cropout];
  2828. [splitout2] pad=200:200:100:100 [padout];
  2829. @end example
  2830. will create two separate outputs from the same input, one cropped and
  2831. one padded.
  2832. @section super2xsai
  2833. Scale the input by 2x and smooth using the Super2xSaI (Scale and
  2834. Interpolate) pixel art scaling algorithm.
  2835. Useful for enlarging pixel art images without reducing sharpness.
  2836. @section swapuv
  2837. Swap U & V plane.
  2838. @section thumbnail
  2839. Select the most representative frame in a given sequence of consecutive frames.
  2840. It accepts as argument the frames batch size to analyze (default @var{N}=100);
  2841. in a set of @var{N} frames, the filter will pick one of them, and then handle
  2842. the next batch of @var{N} frames until the end.
  2843. Since the filter keeps track of the whole frames sequence, a bigger @var{N}
  2844. value will result in a higher memory usage, so a high value is not recommended.
  2845. The following example extract one picture each 50 frames:
  2846. @example
  2847. thumbnail=50
  2848. @end example
  2849. Complete example of a thumbnail creation with @command{ffmpeg}:
  2850. @example
  2851. ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
  2852. @end example
  2853. @section tile
  2854. Tile several successive frames together.
  2855. It accepts a list of options in the form of @var{key}=@var{value} pairs
  2856. separated by ":". A description of the accepted options follows.
  2857. @table @option
  2858. @item layout
  2859. Set the grid size (i.e. the number of lines and columns) in the form
  2860. "@var{w}x@var{h}".
  2861. @item margin
  2862. Set the outer border margin in pixels.
  2863. @item padding
  2864. Set the inner border thickness (i.e. the number of pixels between frames). For
  2865. more advanced padding options (such as having different values for the edges),
  2866. refer to the pad video filter.
  2867. @item nb_frames
  2868. Set the maximum number of frames to render in the given area. It must be less
  2869. than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
  2870. the area will be used.
  2871. @end table
  2872. Alternatively, the options can be specified as a flat string:
  2873. @var{layout}[:@var{nb_frames}[:@var{margin}[:@var{padding}]]]
  2874. For example, produce 8×8 PNG tiles of all keyframes (@option{-skip_frame
  2875. nokey}) in a movie:
  2876. @example
  2877. ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
  2878. @end example
  2879. The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
  2880. duplicating each output frame to accomodate the originally detected frame
  2881. rate.
  2882. Another example to display @code{5} pictures in an area of @code{3x2} frames,
  2883. with @code{7} pixels between them, and @code{2} pixels of initial margin, using
  2884. mixed flat and named options:
  2885. @example
  2886. tile=3x2:nb_frames=5:padding=7:margin=2
  2887. @end example
  2888. @section tinterlace
  2889. Perform various types of temporal field interlacing.
  2890. Frames are counted starting from 1, so the first input frame is
  2891. considered odd.
  2892. This filter accepts a single option @option{mode} specifying the mode,
  2893. which can be specified either by specyfing @code{mode=VALUE} either
  2894. specifying the value alone. Available values are:
  2895. @table @samp
  2896. @item merge, 0
  2897. Move odd frames into the upper field, even into the lower field,
  2898. generating a double height frame at half framerate.
  2899. @item drop_odd, 1
  2900. Only output even frames, odd frames are dropped, generating a frame with
  2901. unchanged height at half framerate.
  2902. @item drop_even, 2
  2903. Only output odd frames, even frames are dropped, generating a frame with
  2904. unchanged height at half framerate.
  2905. @item pad, 3
  2906. Expand each frame to full height, but pad alternate lines with black,
  2907. generating a frame with double height at the same input framerate.
  2908. @item interleave_top, 4
  2909. Interleave the upper field from odd frames with the lower field from
  2910. even frames, generating a frame with unchanged height at half framerate.
  2911. @item interleave_bottom, 5
  2912. Interleave the lower field from odd frames with the upper field from
  2913. even frames, generating a frame with unchanged height at half framerate.
  2914. @item interlacex2, 6
  2915. Double frame rate with unchanged height. Frames are inserted each
  2916. containing the second temporal field from the previous input frame and
  2917. the first temporal field from the next input frame. This mode relies on
  2918. the top_field_first flag. Useful for interlaced video displays with no
  2919. field synchronisation.
  2920. @end table
  2921. Numeric values are deprecated but are accepted for backward
  2922. compatibility reasons.
  2923. Default mode is @code{merge}.
  2924. @section transpose
  2925. Transpose rows with columns in the input video and optionally flip it.
  2926. This filter accepts the following named parameters:
  2927. @table @option
  2928. @item dir
  2929. Specify the transposition direction. Can assume the following values:
  2930. @table @samp
  2931. @item 0, 4
  2932. Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
  2933. @example
  2934. L.R L.l
  2935. . . -> . .
  2936. l.r R.r
  2937. @end example
  2938. @item 1, 5
  2939. Rotate by 90 degrees clockwise, that is:
  2940. @example
  2941. L.R l.L
  2942. . . -> . .
  2943. l.r r.R
  2944. @end example
  2945. @item 2, 6
  2946. Rotate by 90 degrees counterclockwise, that is:
  2947. @example
  2948. L.R R.r
  2949. . . -> . .
  2950. l.r L.l
  2951. @end example
  2952. @item 3, 7
  2953. Rotate by 90 degrees clockwise and vertically flip, that is:
  2954. @example
  2955. L.R r.R
  2956. . . -> . .
  2957. l.r l.L
  2958. @end example
  2959. @end table
  2960. For values between 4-7, the transposition is only done if the input
  2961. video geometry is portrait and not landscape. These values are
  2962. deprecated, the @code{passthrough} option should be used instead.
  2963. @item passthrough
  2964. Do not apply the transposition if the input geometry matches the one
  2965. specified by the specified value. It accepts the following values:
  2966. @table @samp
  2967. @item none
  2968. Always apply transposition.
  2969. @item portrait
  2970. Preserve portrait geometry (when @var{height} >= @var{width}).
  2971. @item landscape
  2972. Preserve landscape geometry (when @var{width} >= @var{height}).
  2973. @end table
  2974. Default value is @code{none}.
  2975. @end table
  2976. @section unsharp
  2977. Sharpen or blur the input video.
  2978. It accepts the following parameters:
  2979. @var{luma_msize_x}:@var{luma_msize_y}:@var{luma_amount}:@var{chroma_msize_x}:@var{chroma_msize_y}:@var{chroma_amount}
  2980. Negative values for the amount will blur the input video, while positive
  2981. values will sharpen. All parameters are optional and default to the
  2982. equivalent of the string '5:5:1.0:5:5:0.0'.
  2983. @table @option
  2984. @item luma_msize_x
  2985. Set the luma matrix horizontal size. It can be an integer between 3
  2986. and 13, default value is 5.
  2987. @item luma_msize_y
  2988. Set the luma matrix vertical size. It can be an integer between 3
  2989. and 13, default value is 5.
  2990. @item luma_amount
  2991. Set the luma effect strength. It can be a float number between -2.0
  2992. and 5.0, default value is 1.0.
  2993. @item chroma_msize_x
  2994. Set the chroma matrix horizontal size. It can be an integer between 3
  2995. and 13, default value is 5.
  2996. @item chroma_msize_y
  2997. Set the chroma matrix vertical size. It can be an integer between 3
  2998. and 13, default value is 5.
  2999. @item chroma_amount
  3000. Set the chroma effect strength. It can be a float number between -2.0
  3001. and 5.0, default value is 0.0.
  3002. @end table
  3003. @example
  3004. # Strong luma sharpen effect parameters
  3005. unsharp=7:7:2.5
  3006. # Strong blur of both luma and chroma parameters
  3007. unsharp=7:7:-2:7:7:-2
  3008. # Use the default values with @command{ffmpeg}
  3009. ffmpeg -i in.avi -vf "unsharp" out.mp4
  3010. @end example
  3011. @section vflip
  3012. Flip the input video vertically.
  3013. @example
  3014. ffmpeg -i in.avi -vf "vflip" out.avi
  3015. @end example
  3016. @section yadif
  3017. Deinterlace the input video ("yadif" means "yet another deinterlacing
  3018. filter").
  3019. It accepts the optional parameters: @var{mode}:@var{parity}:@var{auto}.
  3020. @var{mode} specifies the interlacing mode to adopt, accepts one of the
  3021. following values:
  3022. @table @option
  3023. @item 0
  3024. output 1 frame for each frame
  3025. @item 1
  3026. output 1 frame for each field
  3027. @item 2
  3028. like 0 but skips spatial interlacing check
  3029. @item 3
  3030. like 1 but skips spatial interlacing check
  3031. @end table
  3032. Default value is 0.
  3033. @var{parity} specifies the picture field parity assumed for the input
  3034. interlaced video, accepts one of the following values:
  3035. @table @option
  3036. @item 0
  3037. assume top field first
  3038. @item 1
  3039. assume bottom field first
  3040. @item -1
  3041. enable automatic detection
  3042. @end table
  3043. Default value is -1.
  3044. If interlacing is unknown or decoder does not export this information,
  3045. top field first will be assumed.
  3046. @var{auto} specifies if deinterlacer should trust the interlaced flag
  3047. and only deinterlace frames marked as interlaced
  3048. @table @option
  3049. @item 0
  3050. deinterlace all frames
  3051. @item 1
  3052. only deinterlace frames marked as interlaced
  3053. @end table
  3054. Default value is 0.
  3055. @c man end VIDEO FILTERS
  3056. @chapter Video Sources
  3057. @c man begin VIDEO SOURCES
  3058. Below is a description of the currently available video sources.
  3059. @section buffer
  3060. Buffer video frames, and make them available to the filter chain.
  3061. This source is mainly intended for a programmatic use, in particular
  3062. through the interface defined in @file{libavfilter/vsrc_buffer.h}.
  3063. It accepts a list of options in the form of @var{key}=@var{value} pairs
  3064. separated by ":". A description of the accepted options follows.
  3065. @table @option
  3066. @item video_size
  3067. Specify the size (width and height) of the buffered video frames.
  3068. @item pix_fmt
  3069. A string representing the pixel format of the buffered video frames.
  3070. It may be a number corresponding to a pixel format, or a pixel format
  3071. name.
  3072. @item time_base
  3073. Specify the timebase assumed by the timestamps of the buffered frames.
  3074. @item time_base
  3075. Specify the frame rate expected for the video stream.
  3076. @item pixel_aspect
  3077. Specify the sample aspect ratio assumed by the video frames.
  3078. @item sws_param
  3079. Specify the optional parameters to be used for the scale filter which
  3080. is automatically inserted when an input change is detected in the
  3081. input size or format.
  3082. @end table
  3083. For example:
  3084. @example
  3085. buffer=size=320x240:pix_fmt=yuv410p:time_base=1/24:pixel_aspect=1/1
  3086. @end example
  3087. will instruct the source to accept video frames with size 320x240 and
  3088. with format "yuv410p", assuming 1/24 as the timestamps timebase and
  3089. square pixels (1:1 sample aspect ratio).
  3090. Since the pixel format with name "yuv410p" corresponds to the number 6
  3091. (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
  3092. this example corresponds to:
  3093. @example
  3094. buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
  3095. @end example
  3096. Alternatively, the options can be specified as a flat string, but this
  3097. syntax is deprecated:
  3098. @var{width}:@var{height}:@var{pix_fmt}:@var{time_base.num}:@var{time_base.den}:@var{pixel_aspect.num}:@var{pixel_aspect.den}[:@var{sws_param}]
  3099. @section cellauto
  3100. Create a pattern generated by an elementary cellular automaton.
  3101. The initial state of the cellular automaton can be defined through the
  3102. @option{filename}, and @option{pattern} options. If such options are
  3103. not specified an initial state is created randomly.
  3104. At each new frame a new row in the video is filled with the result of
  3105. the cellular automaton next generation. The behavior when the whole
  3106. frame is filled is defined by the @option{scroll} option.
  3107. This source accepts a list of options in the form of
  3108. @var{key}=@var{value} pairs separated by ":". A description of the
  3109. accepted options follows.
  3110. @table @option
  3111. @item filename, f
  3112. Read the initial cellular automaton state, i.e. the starting row, from
  3113. the specified file.
  3114. In the file, each non-whitespace character is considered an alive
  3115. cell, a newline will terminate the row, and further characters in the
  3116. file will be ignored.
  3117. @item pattern, p
  3118. Read the initial cellular automaton state, i.e. the starting row, from
  3119. the specified string.
  3120. Each non-whitespace character in the string is considered an alive
  3121. cell, a newline will terminate the row, and further characters in the
  3122. string will be ignored.
  3123. @item rate, r
  3124. Set the video rate, that is the number of frames generated per second.
  3125. Default is 25.
  3126. @item random_fill_ratio, ratio
  3127. Set the random fill ratio for the initial cellular automaton row. It
  3128. is a floating point number value ranging from 0 to 1, defaults to
  3129. 1/PHI.
  3130. This option is ignored when a file or a pattern is specified.
  3131. @item random_seed, seed
  3132. Set the seed for filling randomly the initial row, must be an integer
  3133. included between 0 and UINT32_MAX. If not specified, or if explicitly
  3134. set to -1, the filter will try to use a good random seed on a best
  3135. effort basis.
  3136. @item rule
  3137. Set the cellular automaton rule, it is a number ranging from 0 to 255.
  3138. Default value is 110.
  3139. @item size, s
  3140. Set the size of the output video.
  3141. If @option{filename} or @option{pattern} is specified, the size is set
  3142. by default to the width of the specified initial state row, and the
  3143. height is set to @var{width} * PHI.
  3144. If @option{size} is set, it must contain the width of the specified
  3145. pattern string, and the specified pattern will be centered in the
  3146. larger row.
  3147. If a filename or a pattern string is not specified, the size value
  3148. defaults to "320x518" (used for a randomly generated initial state).
  3149. @item scroll
  3150. If set to 1, scroll the output upward when all the rows in the output
  3151. have been already filled. If set to 0, the new generated row will be
  3152. written over the top row just after the bottom row is filled.
  3153. Defaults to 1.
  3154. @item start_full, full
  3155. If set to 1, completely fill the output with generated rows before
  3156. outputting the first frame.
  3157. This is the default behavior, for disabling set the value to 0.
  3158. @item stitch
  3159. If set to 1, stitch the left and right row edges together.
  3160. This is the default behavior, for disabling set the value to 0.
  3161. @end table
  3162. @subsection Examples
  3163. @itemize
  3164. @item
  3165. Read the initial state from @file{pattern}, and specify an output of
  3166. size 200x400.
  3167. @example
  3168. cellauto=f=pattern:s=200x400
  3169. @end example
  3170. @item
  3171. Generate a random initial row with a width of 200 cells, with a fill
  3172. ratio of 2/3:
  3173. @example
  3174. cellauto=ratio=2/3:s=200x200
  3175. @end example
  3176. @item
  3177. Create a pattern generated by rule 18 starting by a single alive cell
  3178. centered on an initial row with width 100:
  3179. @example
  3180. cellauto=p=@@:s=100x400:full=0:rule=18
  3181. @end example
  3182. @item
  3183. Specify a more elaborated initial pattern:
  3184. @example
  3185. cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
  3186. @end example
  3187. @end itemize
  3188. @section mandelbrot
  3189. Generate a Mandelbrot set fractal, and progressively zoom towards the
  3190. point specified with @var{start_x} and @var{start_y}.
  3191. This source accepts a list of options in the form of
  3192. @var{key}=@var{value} pairs separated by ":". A description of the
  3193. accepted options follows.
  3194. @table @option
  3195. @item end_pts
  3196. Set the terminal pts value. Default value is 400.
  3197. @item end_scale
  3198. Set the terminal scale value.
  3199. Must be a floating point value. Default value is 0.3.
  3200. @item inner
  3201. Set the inner coloring mode, that is the algorithm used to draw the
  3202. Mandelbrot fractal internal region.
  3203. It shall assume one of the following values:
  3204. @table @option
  3205. @item black
  3206. Set black mode.
  3207. @item convergence
  3208. Show time until convergence.
  3209. @item mincol
  3210. Set color based on point closest to the origin of the iterations.
  3211. @item period
  3212. Set period mode.
  3213. @end table
  3214. Default value is @var{mincol}.
  3215. @item bailout
  3216. Set the bailout value. Default value is 10.0.
  3217. @item maxiter
  3218. Set the maximum of iterations performed by the rendering
  3219. algorithm. Default value is 7189.
  3220. @item outer
  3221. Set outer coloring mode.
  3222. It shall assume one of following values:
  3223. @table @option
  3224. @item iteration_count
  3225. Set iteration cound mode.
  3226. @item normalized_iteration_count
  3227. set normalized iteration count mode.
  3228. @end table
  3229. Default value is @var{normalized_iteration_count}.
  3230. @item rate, r
  3231. Set frame rate, expressed as number of frames per second. Default
  3232. value is "25".
  3233. @item size, s
  3234. Set frame size. Default value is "640x480".
  3235. @item start_scale
  3236. Set the initial scale value. Default value is 3.0.
  3237. @item start_x
  3238. Set the initial x position. Must be a floating point value between
  3239. -100 and 100. Default value is -0.743643887037158704752191506114774.
  3240. @item start_y
  3241. Set the initial y position. Must be a floating point value between
  3242. -100 and 100. Default value is -0.131825904205311970493132056385139.
  3243. @end table
  3244. @section mptestsrc
  3245. Generate various test patterns, as generated by the MPlayer test filter.
  3246. The size of the generated video is fixed, and is 256x256.
  3247. This source is useful in particular for testing encoding features.
  3248. This source accepts an optional sequence of @var{key}=@var{value} pairs,
  3249. separated by ":". The description of the accepted options follows.
  3250. @table @option
  3251. @item rate, r
  3252. Specify the frame rate of the sourced video, as the number of frames
  3253. generated per second. It has to be a string in the format
  3254. @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a float
  3255. number or a valid video frame rate abbreviation. The default value is
  3256. "25".
  3257. @item duration, d
  3258. Set the video duration of the sourced video. The accepted syntax is:
  3259. @example
  3260. [-]HH:MM:SS[.m...]
  3261. [-]S+[.m...]
  3262. @end example
  3263. See also the function @code{av_parse_time()}.
  3264. If not specified, or the expressed duration is negative, the video is
  3265. supposed to be generated forever.
  3266. @item test, t
  3267. Set the number or the name of the test to perform. Supported tests are:
  3268. @table @option
  3269. @item dc_luma
  3270. @item dc_chroma
  3271. @item freq_luma
  3272. @item freq_chroma
  3273. @item amp_luma
  3274. @item amp_chroma
  3275. @item cbp
  3276. @item mv
  3277. @item ring1
  3278. @item ring2
  3279. @item all
  3280. @end table
  3281. Default value is "all", which will cycle through the list of all tests.
  3282. @end table
  3283. For example the following:
  3284. @example
  3285. testsrc=t=dc_luma
  3286. @end example
  3287. will generate a "dc_luma" test pattern.
  3288. @section frei0r_src
  3289. Provide a frei0r source.
  3290. To enable compilation of this filter you need to install the frei0r
  3291. header and configure FFmpeg with @code{--enable-frei0r}.
  3292. The source supports the syntax:
  3293. @example
  3294. @var{size}:@var{rate}:@var{src_name}[@{=|:@}@var{param1}:@var{param2}:...:@var{paramN}]
  3295. @end example
  3296. @var{size} is the size of the video to generate, may be a string of the
  3297. form @var{width}x@var{height} or a frame size abbreviation.
  3298. @var{rate} is the rate of the video to generate, may be a string of
  3299. the form @var{num}/@var{den} or a frame rate abbreviation.
  3300. @var{src_name} is the name to the frei0r source to load. For more
  3301. information regarding frei0r and how to set the parameters read the
  3302. section @ref{frei0r} in the description of the video filters.
  3303. For example, to generate a frei0r partik0l source with size 200x200
  3304. and frame rate 10 which is overlayed on the overlay filter main input:
  3305. @example
  3306. frei0r_src=200x200:10:partik0l=1234 [overlay]; [in][overlay] overlay
  3307. @end example
  3308. @section life
  3309. Generate a life pattern.
  3310. This source is based on a generalization of John Conway's life game.
  3311. The sourced input represents a life grid, each pixel represents a cell
  3312. which can be in one of two possible states, alive or dead. Every cell
  3313. interacts with its eight neighbours, which are the cells that are
  3314. horizontally, vertically, or diagonally adjacent.
  3315. At each interaction the grid evolves according to the adopted rule,
  3316. which specifies the number of neighbor alive cells which will make a
  3317. cell stay alive or born. The @option{rule} option allows to specify
  3318. the rule to adopt.
  3319. This source accepts a list of options in the form of
  3320. @var{key}=@var{value} pairs separated by ":". A description of the
  3321. accepted options follows.
  3322. @table @option
  3323. @item filename, f
  3324. Set the file from which to read the initial grid state. In the file,
  3325. each non-whitespace character is considered an alive cell, and newline
  3326. is used to delimit the end of each row.
  3327. If this option is not specified, the initial grid is generated
  3328. randomly.
  3329. @item rate, r
  3330. Set the video rate, that is the number of frames generated per second.
  3331. Default is 25.
  3332. @item random_fill_ratio, ratio
  3333. Set the random fill ratio for the initial random grid. It is a
  3334. floating point number value ranging from 0 to 1, defaults to 1/PHI.
  3335. It is ignored when a file is specified.
  3336. @item random_seed, seed
  3337. Set the seed for filling the initial random grid, must be an integer
  3338. included between 0 and UINT32_MAX. If not specified, or if explicitly
  3339. set to -1, the filter will try to use a good random seed on a best
  3340. effort basis.
  3341. @item rule
  3342. Set the life rule.
  3343. A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
  3344. where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
  3345. @var{NS} specifies the number of alive neighbor cells which make a
  3346. live cell stay alive, and @var{NB} the number of alive neighbor cells
  3347. which make a dead cell to become alive (i.e. to "born").
  3348. "s" and "b" can be used in place of "S" and "B", respectively.
  3349. Alternatively a rule can be specified by an 18-bits integer. The 9
  3350. high order bits are used to encode the next cell state if it is alive
  3351. for each number of neighbor alive cells, the low order bits specify
  3352. the rule for "borning" new cells. Higher order bits encode for an
  3353. higher number of neighbor cells.
  3354. For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
  3355. rule of 12 and a born rule of 9, which corresponds to "S23/B03".
  3356. Default value is "S23/B3", which is the original Conway's game of life
  3357. rule, and will keep a cell alive if it has 2 or 3 neighbor alive
  3358. cells, and will born a new cell if there are three alive cells around
  3359. a dead cell.
  3360. @item size, s
  3361. Set the size of the output video.
  3362. If @option{filename} is specified, the size is set by default to the
  3363. same size of the input file. If @option{size} is set, it must contain
  3364. the size specified in the input file, and the initial grid defined in
  3365. that file is centered in the larger resulting area.
  3366. If a filename is not specified, the size value defaults to "320x240"
  3367. (used for a randomly generated initial grid).
  3368. @item stitch
  3369. If set to 1, stitch the left and right grid edges together, and the
  3370. top and bottom edges also. Defaults to 1.
  3371. @item mold
  3372. Set cell mold speed. If set, a dead cell will go from @option{death_color} to
  3373. @option{mold_color} with a step of @option{mold}. @option{mold} can have a
  3374. value from 0 to 255.
  3375. @item life_color
  3376. Set the color of living (or new born) cells.
  3377. @item death_color
  3378. Set the color of dead cells. If @option{mold} is set, this is the first color
  3379. used to represent a dead cell.
  3380. @item mold_color
  3381. Set mold color, for definitely dead and moldy cells.
  3382. @end table
  3383. @subsection Examples
  3384. @itemize
  3385. @item
  3386. Read a grid from @file{pattern}, and center it on a grid of size
  3387. 300x300 pixels:
  3388. @example
  3389. life=f=pattern:s=300x300
  3390. @end example
  3391. @item
  3392. Generate a random grid of size 200x200, with a fill ratio of 2/3:
  3393. @example
  3394. life=ratio=2/3:s=200x200
  3395. @end example
  3396. @item
  3397. Specify a custom rule for evolving a randomly generated grid:
  3398. @example
  3399. life=rule=S14/B34
  3400. @end example
  3401. @item
  3402. Full example with slow death effect (mold) using @command{ffplay}:
  3403. @example
  3404. ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
  3405. @end example
  3406. @end itemize
  3407. @section color, nullsrc, rgbtestsrc, smptebars, testsrc
  3408. The @code{color} source provides an uniformly colored input.
  3409. The @code{nullsrc} source returns unprocessed video frames. It is
  3410. mainly useful to be employed in analysis / debugging tools, or as the
  3411. source for filters which ignore the input data.
  3412. The @code{rgbtestsrc} source generates an RGB test pattern useful for
  3413. detecting RGB vs BGR issues. You should see a red, green and blue
  3414. stripe from top to bottom.
  3415. The @code{smptebars} source generates a color bars pattern, based on
  3416. the SMPTE Engineering Guideline EG 1-1990.
  3417. The @code{testsrc} source generates a test video pattern, showing a
  3418. color pattern, a scrolling gradient and a timestamp. This is mainly
  3419. intended for testing purposes.
  3420. These sources accept an optional sequence of @var{key}=@var{value} pairs,
  3421. separated by ":". The description of the accepted options follows.
  3422. @table @option
  3423. @item color, c
  3424. Specify the color of the source, only used in the @code{color}
  3425. source. It can be the name of a color (case insensitive match) or a
  3426. 0xRRGGBB[AA] sequence, possibly followed by an alpha specifier. The
  3427. default value is "black".
  3428. @item size, s
  3429. Specify the size of the sourced video, it may be a string of the form
  3430. @var{width}x@var{height}, or the name of a size abbreviation. The
  3431. default value is "320x240".
  3432. @item rate, r
  3433. Specify the frame rate of the sourced video, as the number of frames
  3434. generated per second. It has to be a string in the format
  3435. @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a float
  3436. number or a valid video frame rate abbreviation. The default value is
  3437. "25".
  3438. @item sar
  3439. Set the sample aspect ratio of the sourced video.
  3440. @item duration, d
  3441. Set the video duration of the sourced video. The accepted syntax is:
  3442. @example
  3443. [-]HH[:MM[:SS[.m...]]]
  3444. [-]S+[.m...]
  3445. @end example
  3446. See also the function @code{av_parse_time()}.
  3447. If not specified, or the expressed duration is negative, the video is
  3448. supposed to be generated forever.
  3449. @item decimals, n
  3450. Set the number of decimals to show in the timestamp, only used in the
  3451. @code{testsrc} source.
  3452. The displayed timestamp value will correspond to the original
  3453. timestamp value multiplied by the power of 10 of the specified
  3454. value. Default value is 0.
  3455. @end table
  3456. For example the following:
  3457. @example
  3458. testsrc=duration=5.3:size=qcif:rate=10
  3459. @end example
  3460. will generate a video with a duration of 5.3 seconds, with size
  3461. 176x144 and a frame rate of 10 frames per second.
  3462. The following graph description will generate a red source
  3463. with an opacity of 0.2, with size "qcif" and a frame rate of 10
  3464. frames per second.
  3465. @example
  3466. color=c=red@@0.2:s=qcif:r=10
  3467. @end example
  3468. If the input content is to be ignored, @code{nullsrc} can be used. The
  3469. following command generates noise in the luminance plane by employing
  3470. the @code{geq} filter:
  3471. @example
  3472. nullsrc=s=256x256, geq=random(1)*255:128:128
  3473. @end example
  3474. @c man end VIDEO SOURCES
  3475. @chapter Video Sinks
  3476. @c man begin VIDEO SINKS
  3477. Below is a description of the currently available video sinks.
  3478. @section buffersink
  3479. Buffer video frames, and make them available to the end of the filter
  3480. graph.
  3481. This sink is mainly intended for a programmatic use, in particular
  3482. through the interface defined in @file{libavfilter/buffersink.h}.
  3483. It does not require a string parameter in input, but you need to
  3484. specify a pointer to a list of supported pixel formats terminated by
  3485. -1 in the opaque parameter provided to @code{avfilter_init_filter}
  3486. when initializing this sink.
  3487. @section nullsink
  3488. Null video sink, do absolutely nothing with the input video. It is
  3489. mainly useful as a template and to be employed in analysis / debugging
  3490. tools.
  3491. @c man end VIDEO SINKS
  3492. @chapter Multimedia Filters
  3493. @c man begin MULTIMEDIA FILTERS
  3494. Below is a description of the currently available multimedia filters.
  3495. @section asendcmd, sendcmd
  3496. Send commands to filters in the filtergraph.
  3497. These filters read commands to be sent to other filters in the
  3498. filtergraph.
  3499. @code{asendcmd} must be inserted between two audio filters,
  3500. @code{sendcmd} must be inserted between two video filters, but apart
  3501. from that they act the same way.
  3502. The specification of commands can be provided in the filter arguments
  3503. with the @var{commands} option, or in a file specified by the
  3504. @var{filename} option.
  3505. These filters accept the following options:
  3506. @table @option
  3507. @item commands, c
  3508. Set the commands to be read and sent to the other filters.
  3509. @item filename, f
  3510. Set the filename of the commands to be read and sent to the other
  3511. filters.
  3512. @end table
  3513. @subsection Commands syntax
  3514. A commands description consists of a sequence of interval
  3515. specifications, comprising a list of commands to be executed when a
  3516. particular event related to that interval occurs. The occurring event
  3517. is typically the current frame time entering or leaving a given time
  3518. interval.
  3519. An interval is specified by the following syntax:
  3520. @example
  3521. @var{START}[-@var{END}] @var{COMMANDS};
  3522. @end example
  3523. The time interval is specified by the @var{START} and @var{END} times.
  3524. @var{END} is optional and defaults to the maximum time.
  3525. The current frame time is considered within the specified interval if
  3526. it is included in the interval [@var{START}, @var{END}), that is when
  3527. the time is greater or equal to @var{START} and is lesser than
  3528. @var{END}.
  3529. @var{COMMANDS} consists of a sequence of one or more command
  3530. specifications, separated by ",", relating to that interval. The
  3531. syntax of a command specification is given by:
  3532. @example
  3533. [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
  3534. @end example
  3535. @var{FLAGS} is optional and specifies the type of events relating to
  3536. the time interval which enable sending the specified command, and must
  3537. be a non-null sequence of identifier flags separated by "+" or "|" and
  3538. enclosed between "[" and "]".
  3539. The following flags are recognized:
  3540. @table @option
  3541. @item enter
  3542. The command is sent when the current frame timestamp enters the
  3543. specified interval. In other words, the command is sent when the
  3544. previous frame timestamp was not in the given interval, and the
  3545. current is.
  3546. @item leave
  3547. The command is sent when the current frame timestamp leaves the
  3548. specified interval. In other words, the command is sent when the
  3549. previous frame timestamp was in the given interval, and the
  3550. current is not.
  3551. @end table
  3552. If @var{FLAGS} is not specified, a default value of @code{[enter]} is
  3553. assumed.
  3554. @var{TARGET} specifies the target of the command, usually the name of
  3555. the filter class or a specific filter instance name.
  3556. @var{COMMAND} specifies the name of the command for the target filter.
  3557. @var{ARG} is optional and specifies the optional list of argument for
  3558. the given @var{COMMAND}.
  3559. Between one interval specification and another, whitespaces, or
  3560. sequences of characters starting with @code{#} until the end of line,
  3561. are ignored and can be used to annotate comments.
  3562. A simplified BNF description of the commands specification syntax
  3563. follows:
  3564. @example
  3565. @var{COMMAND_FLAG} ::= "enter" | "leave"
  3566. @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
  3567. @var{COMMAND} ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
  3568. @var{COMMANDS} ::= @var{COMMAND} [,@var{COMMANDS}]
  3569. @var{INTERVAL} ::= @var{START}[-@var{END}] @var{COMMANDS}
  3570. @var{INTERVALS} ::= @var{INTERVAL}[;@var{INTERVALS}]
  3571. @end example
  3572. @subsection Examples
  3573. @itemize
  3574. @item
  3575. Specify audio tempo change at second 4:
  3576. @example
  3577. asendcmd=c='4.0 atempo tempo 1.5',atempo
  3578. @end example
  3579. @item
  3580. Specify a list of drawtext and hue commands in a file.
  3581. @example
  3582. # show text in the interval 5-10
  3583. 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
  3584. [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
  3585. # desaturate the image in the interval 15-20
  3586. 15.0-20.0 [enter] hue reinit s=0,
  3587. [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
  3588. [leave] hue reinit s=1,
  3589. [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
  3590. # apply an exponential saturation fade-out effect, starting from time 25
  3591. 25 [enter] hue s=exp(t-25)
  3592. @end example
  3593. A filtergraph allowing to read and process the above command list
  3594. stored in a file @file{test.cmd}, can be specified with:
  3595. @example
  3596. sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
  3597. @end example
  3598. @end itemize
  3599. @section asetpts, setpts
  3600. Change the PTS (presentation timestamp) of the input frames.
  3601. @code{asetpts} works on audio frames, @code{setpts} on video frames.
  3602. Accept in input an expression evaluated through the eval API, which
  3603. can contain the following constants:
  3604. @table @option
  3605. @item FRAME_RATE
  3606. frame rate, only defined for constant frame-rate video
  3607. @item PTS
  3608. the presentation timestamp in input
  3609. @item N
  3610. the count of the input frame, starting from 0.
  3611. @item NB_CONSUMED_SAMPLES
  3612. the number of consumed samples, not including the current frame (only
  3613. audio)
  3614. @item NB_SAMPLES
  3615. the number of samples in the current frame (only audio)
  3616. @item SAMPLE_RATE
  3617. audio sample rate
  3618. @item STARTPTS
  3619. the PTS of the first frame
  3620. @item STARTT
  3621. the time in seconds of the first frame
  3622. @item INTERLACED
  3623. tell if the current frame is interlaced
  3624. @item T
  3625. the time in seconds of the current frame
  3626. @item TB
  3627. the time base
  3628. @item POS
  3629. original position in the file of the frame, or undefined if undefined
  3630. for the current frame
  3631. @item PREV_INPTS
  3632. previous input PTS
  3633. @item PREV_INT
  3634. previous input time in seconds
  3635. @item PREV_OUTPTS
  3636. previous output PTS
  3637. @item PREV_OUTT
  3638. previous output time in seconds
  3639. @end table
  3640. @subsection Examples
  3641. @itemize
  3642. @item
  3643. Start counting PTS from zero
  3644. @example
  3645. setpts=PTS-STARTPTS
  3646. @end example
  3647. @item
  3648. Apply fast motion effect:
  3649. @example
  3650. setpts=0.5*PTS
  3651. @end example
  3652. @item
  3653. Apply slow motion effect:
  3654. @example
  3655. setpts=2.0*PTS
  3656. @end example
  3657. @item
  3658. Set fixed rate of 25 frames per second:
  3659. @example
  3660. setpts=N/(25*TB)
  3661. @end example
  3662. @item
  3663. Set fixed rate 25 fps with some jitter:
  3664. @example
  3665. setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
  3666. @end example
  3667. @item
  3668. Apply an offset of 10 seconds to the input PTS:
  3669. @example
  3670. setpts=PTS+10/TB
  3671. @end example
  3672. @end itemize
  3673. @section ebur128
  3674. EBU R128 scanner filter. This filter takes an audio stream as input and outputs
  3675. it unchanged. By default, it logs a message at a frequency of 10Hz with the
  3676. Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
  3677. Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
  3678. The filter also has a video output (see the @var{video} option) with a real
  3679. time graph to observe the loudness evolution. The graphic contains the logged
  3680. message mentioned above, so it is not printed anymore when this option is set,
  3681. unless the verbose logging is set. The main graphing area contains the
  3682. short-term loudness (3 seconds of analysis), and the gauge on the right is for
  3683. the momentary loudness (400 milliseconds).
  3684. More information about the Loudness Recommendation EBU R128 on
  3685. @url{http://tech.ebu.ch/loudness}.
  3686. The filter accepts the following named parameters:
  3687. @table @option
  3688. @item video
  3689. Activate the video output. The audio stream is passed unchanged whether this
  3690. option is set or no. The video stream will be the first output stream if
  3691. activated. Default is @code{0}.
  3692. @item size
  3693. Set the video size. This option is for video only. Default and minimum
  3694. resolution is @code{640x480}.
  3695. @item meter
  3696. Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
  3697. @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
  3698. other integer value between this range is allowed.
  3699. @end table
  3700. Example of real-time graph using @command{ffplay}, with a EBU scale meter +18:
  3701. @example
  3702. ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
  3703. @end example
  3704. Run an analysis with @command{ffmpeg}:
  3705. @example
  3706. ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
  3707. @end example
  3708. @section settb, asettb
  3709. Set the timebase to use for the output frames timestamps.
  3710. It is mainly useful for testing timebase configuration.
  3711. It accepts in input an arithmetic expression representing a rational.
  3712. The expression can contain the constants "AVTB" (the
  3713. default timebase), "intb" (the input timebase) and "sr" (the sample rate,
  3714. audio only).
  3715. The default value for the input is "intb".
  3716. @subsection Examples
  3717. @itemize
  3718. @item
  3719. Set the timebase to 1/25:
  3720. @example
  3721. settb=1/25
  3722. @end example
  3723. @item
  3724. Set the timebase to 1/10:
  3725. @example
  3726. settb=0.1
  3727. @end example
  3728. @item
  3729. Set the timebase to 1001/1000:
  3730. @example
  3731. settb=1+0.001
  3732. @end example
  3733. @item
  3734. Set the timebase to 2*intb:
  3735. @example
  3736. settb=2*intb
  3737. @end example
  3738. @item
  3739. Set the default timebase value:
  3740. @example
  3741. settb=AVTB
  3742. @end example
  3743. @end itemize
  3744. @section concat
  3745. Concatenate audio and video streams, joining them together one after the
  3746. other.
  3747. The filter works on segments of synchronized video and audio streams. All
  3748. segments must have the same number of streams of each type, and that will
  3749. also be the number of streams at output.
  3750. The filter accepts the following named parameters:
  3751. @table @option
  3752. @item n
  3753. Set the number of segments. Default is 2.
  3754. @item v
  3755. Set the number of output video streams, that is also the number of video
  3756. streams in each segment. Default is 1.
  3757. @item a
  3758. Set the number of output audio streams, that is also the number of video
  3759. streams in each segment. Default is 0.
  3760. @item unsafe
  3761. Activate unsafe mode: do not fail if segments have a different format.
  3762. @end table
  3763. The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
  3764. @var{a} audio outputs.
  3765. There are @var{n}×(@var{v}+@var{a}) inputs: first the inputs for the first
  3766. segment, in the same order as the outputs, then the inputs for the second
  3767. segment, etc.
  3768. Related streams do not always have exactly the same duration, for various
  3769. reasons including codec frame size or sloppy authoring. For that reason,
  3770. related synchronized streams (e.g. a video and its audio track) should be
  3771. concatenated at once. The concat filter will use the duration of the longest
  3772. stream in each segment (except the last one), and if necessary pad shorter
  3773. audio streams with silence.
  3774. For this filter to work correctly, all segments must start at timestamp 0.
  3775. All corresponding streams must have the same parameters in all segments; the
  3776. filtering system will automatically select a common pixel format for video
  3777. streams, and a common sample format, sample rate and channel layout for
  3778. audio streams, but other settings, such as resolution, must be converted
  3779. explicitly by the user.
  3780. Different frame rates are acceptable but will result in variable frame rate
  3781. at output; be sure to configure the output file to handle it.
  3782. Examples:
  3783. @itemize
  3784. @item
  3785. Concatenate an opening, an episode and an ending, all in bilingual version
  3786. (video in stream 0, audio in streams 1 and 2):
  3787. @example
  3788. ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
  3789. '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
  3790. concat=n=3:v=1:a=2 [v] [a1] [a2]' \
  3791. -map '[v]' -map '[a1]' -map '[a2]' output.mkv
  3792. @end example
  3793. @item
  3794. Concatenate two parts, handling audio and video separately, using the
  3795. (a)movie sources, and adjusting the resolution:
  3796. @example
  3797. movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
  3798. movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
  3799. [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
  3800. @end example
  3801. Note that a desync will happen at the stitch if the audio and video streams
  3802. do not have exactly the same duration in the first file.
  3803. @end itemize
  3804. @section showspectrum
  3805. Convert input audio to a video output, representing the audio frequency
  3806. spectrum.
  3807. The filter accepts the following named parameters:
  3808. @table @option
  3809. @item size, s
  3810. Specify the video size for the output. Default value is @code{640x480}.
  3811. @item slide
  3812. Specify if the spectrum should slide along the window. Default value is
  3813. @code{0}.
  3814. @end table
  3815. The usage is very similar to the showwaves filter; see the examples in that
  3816. section.
  3817. @section showwaves
  3818. Convert input audio to a video output, representing the samples waves.
  3819. The filter accepts the following named parameters:
  3820. @table @option
  3821. @item n
  3822. Set the number of samples which are printed on the same column. A
  3823. larger value will decrease the frame rate. Must be a positive
  3824. integer. This option can be set only if the value for @var{rate}
  3825. is not explicitly specified.
  3826. @item rate, r
  3827. Set the (approximate) output frame rate. This is done by setting the
  3828. option @var{n}. Default value is "25".
  3829. @item size, s
  3830. Specify the video size for the output. Default value is "600x240".
  3831. @end table
  3832. Some examples follow.
  3833. @itemize
  3834. @item
  3835. Output the input file audio and the corresponding video representation
  3836. at the same time:
  3837. @example
  3838. amovie=a.mp3,asplit[out0],showwaves[out1]
  3839. @end example
  3840. @item
  3841. Create a synthetic signal and show it with showwaves, forcing a
  3842. framerate of 30 frames per second:
  3843. @example
  3844. aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
  3845. @end example
  3846. @end itemize
  3847. @c man end MULTIMEDIA FILTERS
  3848. @chapter Multimedia Sources
  3849. @c man begin MULTIMEDIA SOURCES
  3850. Below is a description of the currently available multimedia sources.
  3851. @section amovie
  3852. This is the same as @ref{src_movie} source, except it selects an audio
  3853. stream by default.
  3854. @anchor{src_movie}
  3855. @section movie
  3856. Read audio and/or video stream(s) from a movie container.
  3857. It accepts the syntax: @var{movie_name}[:@var{options}] where
  3858. @var{movie_name} is the name of the resource to read (not necessarily
  3859. a file but also a device or a stream accessed through some protocol),
  3860. and @var{options} is an optional sequence of @var{key}=@var{value}
  3861. pairs, separated by ":".
  3862. The description of the accepted options follows.
  3863. @table @option
  3864. @item format_name, f
  3865. Specifies the format assumed for the movie to read, and can be either
  3866. the name of a container or an input device. If not specified the
  3867. format is guessed from @var{movie_name} or by probing.
  3868. @item seek_point, sp
  3869. Specifies the seek point in seconds, the frames will be output
  3870. starting from this seek point, the parameter is evaluated with
  3871. @code{av_strtod} so the numerical value may be suffixed by an IS
  3872. postfix. Default value is "0".
  3873. @item streams, s
  3874. Specifies the streams to read. Several streams can be specified, separated
  3875. by "+". The source will then have as many outputs, in the same order. The
  3876. syntax is explained in the @ref{Stream specifiers} chapter. Two special
  3877. names, "dv" and "da" specify respectively the default (best suited) video
  3878. and audio stream. Default is "dv", or "da" if the filter is called as
  3879. "amovie".
  3880. @item stream_index, si
  3881. Specifies the index of the video stream to read. If the value is -1,
  3882. the best suited video stream will be automatically selected. Default
  3883. value is "-1". Deprecated. If the filter is called "amovie", it will select
  3884. audio instead of video.
  3885. @item loop
  3886. Specifies how many times to read the stream in sequence.
  3887. If the value is less than 1, the stream will be read again and again.
  3888. Default value is "1".
  3889. Note that when the movie is looped the source timestamps are not
  3890. changed, so it will generate non monotonically increasing timestamps.
  3891. @end table
  3892. This filter allows to overlay a second video on top of main input of
  3893. a filtergraph as shown in this graph:
  3894. @example
  3895. input -----------> deltapts0 --> overlay --> output
  3896. ^
  3897. |
  3898. movie --> scale--> deltapts1 -------+
  3899. @end example
  3900. Some examples follow.
  3901. @itemize
  3902. @item
  3903. Skip 3.2 seconds from the start of the avi file in.avi, and overlay it
  3904. on top of the input labelled as "in":
  3905. @example
  3906. movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [movie];
  3907. [in] setpts=PTS-STARTPTS, [movie] overlay=16:16 [out]
  3908. @end example
  3909. @item
  3910. Read from a video4linux2 device, and overlay it on top of the input
  3911. labelled as "in":
  3912. @example
  3913. movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [movie];
  3914. [in] setpts=PTS-STARTPTS, [movie] overlay=16:16 [out]
  3915. @end example
  3916. @item
  3917. Read the first video stream and the audio stream with id 0x81 from
  3918. dvd.vob; the video is connected to the pad named "video" and the audio is
  3919. connected to the pad named "audio":
  3920. @example
  3921. movie=dvd.vob:s=v:0+#0x81 [video] [audio]
  3922. @end example
  3923. @end itemize
  3924. @c man end MULTIMEDIA SOURCES