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.

4984 lines
140KB

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