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.

4429 lines
124KB

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