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.

11045 lines
299KB

  1. @chapter Filtering Introduction
  2. @c man begin FILTERING INTRODUCTION
  3. Filtering in FFmpeg is enabled through the libavfilter library.
  4. In libavfilter, a filter can have multiple inputs and multiple
  5. outputs.
  6. To illustrate the sorts of things that are possible, we consider the
  7. following filtergraph.
  8. @example
  9. [main]
  10. input --> split ---------------------> overlay --> output
  11. | ^
  12. |[tmp] [flip]|
  13. +-----> crop --> vflip -------+
  14. @end example
  15. This filtergraph splits the input stream in two streams, then sends one
  16. stream through the crop filter and the vflip filter, before merging it
  17. back with the other stream by overlaying it on top. You can use the
  18. following command to achieve this:
  19. @example
  20. ffmpeg -i INPUT -vf "split [main][tmp]; [tmp] crop=iw:ih/2:0:0, vflip [flip]; [main][flip] overlay=0:H/2" OUTPUT
  21. @end example
  22. The result will be that the top half of the video is mirrored
  23. onto the bottom half of the output video.
  24. Filters in the same linear chain are separated by commas, and distinct
  25. linear chains of filters are separated by semicolons. In our example,
  26. @var{crop,vflip} are in one linear chain, @var{split} and
  27. @var{overlay} are separately in another. The points where the linear
  28. chains join are labelled by names enclosed in square brackets. In the
  29. example, the split filter generates two outputs that are associated to
  30. the labels @var{[main]} and @var{[tmp]}.
  31. The stream sent to the second output of @var{split}, labelled as
  32. @var{[tmp]}, is processed through the @var{crop} filter, which crops
  33. away the lower half part of the video, and then vertically flipped. The
  34. @var{overlay} filter takes in input the first unchanged output of the
  35. split filter (which was labelled as @var{[main]}), and overlay on its
  36. lower half the output generated by the @var{crop,vflip} filterchain.
  37. Some filters take in input a list of parameters: they are specified
  38. after the filter name and an equal sign, and are separated from each other
  39. by a colon.
  40. There exist so-called @var{source filters} that do not have an
  41. audio/video input, and @var{sink filters} that will not have audio/video
  42. output.
  43. @c man end FILTERING INTRODUCTION
  44. @chapter graph2dot
  45. @c man begin GRAPH2DOT
  46. The @file{graph2dot} program included in the FFmpeg @file{tools}
  47. directory can be used to parse a filtergraph description and issue a
  48. corresponding textual representation in the dot language.
  49. Invoke the command:
  50. @example
  51. graph2dot -h
  52. @end example
  53. to see how to use @file{graph2dot}.
  54. You can then pass the dot description to the @file{dot} program (from
  55. the graphviz suite of programs) and obtain a graphical representation
  56. of the filtergraph.
  57. For example the sequence of commands:
  58. @example
  59. echo @var{GRAPH_DESCRIPTION} | \
  60. tools/graph2dot -o graph.tmp && \
  61. dot -Tpng graph.tmp -o graph.png && \
  62. display graph.png
  63. @end example
  64. can be used to create and display an image representing the graph
  65. described by the @var{GRAPH_DESCRIPTION} string. Note that this string must be
  66. a complete self-contained graph, with its inputs and outputs explicitly defined.
  67. For example if your command line is of the form:
  68. @example
  69. ffmpeg -i infile -vf scale=640:360 outfile
  70. @end example
  71. your @var{GRAPH_DESCRIPTION} string will need to be of the form:
  72. @example
  73. nullsrc,scale=640:360,nullsink
  74. @end example
  75. you may also need to set the @var{nullsrc} parameters and add a @var{format}
  76. filter in order to simulate a specific input file.
  77. @c man end GRAPH2DOT
  78. @chapter Filtergraph description
  79. @c man begin FILTERGRAPH DESCRIPTION
  80. A filtergraph is a directed graph of connected filters. It can contain
  81. cycles, and there can be multiple links between a pair of
  82. filters. Each link has one input pad on one side connecting it to one
  83. filter from which it takes its input, and one output pad on the other
  84. side connecting it to one filter accepting its output.
  85. Each filter in a filtergraph is an instance of a filter class
  86. registered in the application, which defines the features and the
  87. number of input and output pads of the filter.
  88. A filter with no input pads is called a "source", and a filter with no
  89. output pads is called a "sink".
  90. @anchor{Filtergraph syntax}
  91. @section Filtergraph syntax
  92. A filtergraph has a textual representation, which is
  93. recognized by the @option{-filter}/@option{-vf} and @option{-filter_complex}
  94. options in @command{ffmpeg} and @option{-vf} in @command{ffplay}, and by the
  95. @code{avfilter_graph_parse()}/@code{avfilter_graph_parse2()} functions defined in
  96. @file{libavfilter/avfilter.h}.
  97. A filterchain consists of a sequence of connected filters, each one
  98. connected to the previous one in the sequence. A filterchain is
  99. represented by a list of ","-separated filter descriptions.
  100. A filtergraph consists of a sequence of filterchains. A sequence of
  101. filterchains is represented by a list of ";"-separated filterchain
  102. descriptions.
  103. A filter is represented by a string of the form:
  104. [@var{in_link_1}]...[@var{in_link_N}]@var{filter_name}=@var{arguments}[@var{out_link_1}]...[@var{out_link_M}]
  105. @var{filter_name} is the name of the filter class of which the
  106. described filter is an instance of, and has to be the name of one of
  107. the filter classes registered in the program.
  108. The name of the filter class is optionally followed by a string
  109. "=@var{arguments}".
  110. @var{arguments} is a string which contains the parameters used to
  111. initialize the filter instance. It may have one of two forms:
  112. @itemize
  113. @item
  114. A ':'-separated list of @var{key=value} pairs.
  115. @item
  116. A ':'-separated list of @var{value}. In this case, the keys are assumed to be
  117. the option names in the order they are declared. E.g. the @code{fade} filter
  118. declares three options in this order -- @option{type}, @option{start_frame} and
  119. @option{nb_frames}. Then the parameter list @var{in:0:30} means that the value
  120. @var{in} is assigned to the option @option{type}, @var{0} to
  121. @option{start_frame} and @var{30} to @option{nb_frames}.
  122. @item
  123. A ':'-separated list of mixed direct @var{value} and long @var{key=value}
  124. pairs. The direct @var{value} must precede the @var{key=value} pairs, and
  125. follow the same constraints order of the previous point. The following
  126. @var{key=value} pairs can be set in any preferred order.
  127. @end itemize
  128. If the option value itself is a list of items (e.g. the @code{format} filter
  129. takes a list of pixel formats), the items in the list are usually separated by
  130. '|'.
  131. The list of arguments can be quoted using the character "'" as initial
  132. and ending mark, and the character '\' for escaping the characters
  133. within the quoted text; otherwise the argument string is considered
  134. terminated when the next special character (belonging to the set
  135. "[]=;,") is encountered.
  136. The name and arguments of the filter are optionally preceded and
  137. followed by a list of link labels.
  138. A link label allows one to name a link and associate it to a filter output
  139. or input pad. The preceding labels @var{in_link_1}
  140. ... @var{in_link_N}, are associated to the filter input pads,
  141. the following labels @var{out_link_1} ... @var{out_link_M}, are
  142. associated to the output pads.
  143. When two link labels with the same name are found in the
  144. filtergraph, a link between the corresponding input and output pad is
  145. created.
  146. If an output pad is not labelled, it is linked by default to the first
  147. unlabelled input pad of the next filter in the filterchain.
  148. For example in the filterchain
  149. @example
  150. nullsrc, split[L1], [L2]overlay, nullsink
  151. @end example
  152. the split filter instance has two output pads, and the overlay filter
  153. instance two input pads. The first output pad of split is labelled
  154. "L1", the first input pad of overlay is labelled "L2", and the second
  155. output pad of split is linked to the second input pad of overlay,
  156. which are both unlabelled.
  157. In a complete filterchain all the unlabelled filter input and output
  158. pads must be connected. A filtergraph is considered valid if all the
  159. filter input and output pads of all the filterchains are connected.
  160. Libavfilter will automatically insert @ref{scale} filters where format
  161. conversion is required. It is possible to specify swscale flags
  162. for those automatically inserted scalers by prepending
  163. @code{sws_flags=@var{flags};}
  164. to the filtergraph description.
  165. Here is a BNF description of the filtergraph syntax:
  166. @example
  167. @var{NAME} ::= sequence of alphanumeric characters and '_'
  168. @var{LINKLABEL} ::= "[" @var{NAME} "]"
  169. @var{LINKLABELS} ::= @var{LINKLABEL} [@var{LINKLABELS}]
  170. @var{FILTER_ARGUMENTS} ::= sequence of chars (possibly quoted)
  171. @var{FILTER} ::= [@var{LINKLABELS}] @var{NAME} ["=" @var{FILTER_ARGUMENTS}] [@var{LINKLABELS}]
  172. @var{FILTERCHAIN} ::= @var{FILTER} [,@var{FILTERCHAIN}]
  173. @var{FILTERGRAPH} ::= [sws_flags=@var{flags};] @var{FILTERCHAIN} [;@var{FILTERGRAPH}]
  174. @end example
  175. @section Notes on filtergraph escaping
  176. Filtergraph description composition entails several levels of
  177. escaping. See @ref{quoting_and_escaping,,the "Quoting and escaping"
  178. section in the ffmpeg-utils(1) manual,ffmpeg-utils} for more
  179. information about the employed escaping procedure.
  180. A first level escaping affects the content of each filter option
  181. value, which may contain the special character @code{:} used to
  182. separate values, or one of the escaping characters @code{\'}.
  183. A second level escaping affects the whole filter description, which
  184. may contain the escaping characters @code{\'} or the special
  185. characters @code{[],;} used by the filtergraph description.
  186. Finally, when you specify a filtergraph on a shell commandline, you
  187. need to perform a third level escaping for the shell special
  188. characters contained within it.
  189. For example, consider the following string to be embedded in
  190. the @ref{drawtext} filter description @option{text} value:
  191. @example
  192. this is a 'string': may contain one, or more, special characters
  193. @end example
  194. This string contains the @code{'} special escaping character, and the
  195. @code{:} special character, so it needs to be escaped in this way:
  196. @example
  197. text=this is a \'string\'\: may contain one, or more, special characters
  198. @end example
  199. A second level of escaping is required when embedding the filter
  200. description in a filtergraph description, in order to escape all the
  201. filtergraph special characters. Thus the example above becomes:
  202. @example
  203. drawtext=text=this is a \\\'string\\\'\\: may contain one\, or more\, special characters
  204. @end example
  205. (note that in addition to the @code{\'} escaping special characters,
  206. also @code{,} needs to be escaped).
  207. Finally an additional level of escaping is needed when writing the
  208. filtergraph description in a shell command, which depends on the
  209. escaping rules of the adopted shell. For example, assuming that
  210. @code{\} is special and needs to be escaped with another @code{\}, the
  211. previous string will finally result in:
  212. @example
  213. -vf "drawtext=text=this is a \\\\\\'string\\\\\\'\\\\: may contain one\\, or more\\, special characters"
  214. @end example
  215. @chapter Timeline editing
  216. Some filters support a generic @option{enable} option. For the filters
  217. supporting timeline editing, this option can be set to an expression which is
  218. evaluated before sending a frame to the filter. If the evaluation is non-zero,
  219. the filter will be enabled, otherwise the frame will be sent unchanged to the
  220. next filter in the filtergraph.
  221. The expression accepts the following values:
  222. @table @samp
  223. @item t
  224. timestamp expressed in seconds, NAN if the input timestamp is unknown
  225. @item n
  226. sequential number of the input frame, starting from 0
  227. @item pos
  228. the position in the file of the input frame, NAN if unknown
  229. @end table
  230. Additionally, these filters support an @option{enable} command that can be used
  231. to re-define the expression.
  232. Like any other filtering option, the @option{enable} option follows the same
  233. rules.
  234. For example, to enable a blur filter (@ref{smartblur}) from 10 seconds to 3
  235. minutes, and a @ref{curves} filter starting at 3 seconds:
  236. @example
  237. smartblur = enable='between(t,10,3*60)',
  238. curves = enable='gte(t,3)' : preset=cross_process
  239. @end example
  240. @c man end FILTERGRAPH DESCRIPTION
  241. @chapter Audio Filters
  242. @c man begin AUDIO FILTERS
  243. When you configure your FFmpeg build, you can disable any of the
  244. existing filters using @code{--disable-filters}.
  245. The configure output will show the audio filters included in your
  246. build.
  247. Below is a description of the currently available audio filters.
  248. @section aconvert
  249. Convert the input audio format to the specified formats.
  250. @emph{This filter is deprecated. Use @ref{aformat} instead.}
  251. The filter accepts a string of the form:
  252. "@var{sample_format}:@var{channel_layout}".
  253. @var{sample_format} specifies the sample format, and can be a string or the
  254. corresponding numeric value defined in @file{libavutil/samplefmt.h}. Use 'p'
  255. suffix for a planar sample format.
  256. @var{channel_layout} specifies the channel layout, and can be a string
  257. or the corresponding number value defined in @file{libavutil/channel_layout.h}.
  258. The special parameter "auto", signifies that the filter will
  259. automatically select the output format depending on the output filter.
  260. @subsection Examples
  261. @itemize
  262. @item
  263. Convert input to float, planar, stereo:
  264. @example
  265. aconvert=fltp:stereo
  266. @end example
  267. @item
  268. Convert input to unsigned 8-bit, automatically select out channel layout:
  269. @example
  270. aconvert=u8:auto
  271. @end example
  272. @end itemize
  273. @section adelay
  274. Delay one or more audio channels.
  275. Samples in delayed channel are filled with silence.
  276. The filter accepts the following option:
  277. @table @option
  278. @item delays
  279. Set list of delays in milliseconds for each channel separated by '|'.
  280. At least one delay greater than 0 should be provided.
  281. Unused delays will be silently ignored. If number of given delays is
  282. smaller than number of channels all remaining channels will not be delayed.
  283. @end table
  284. @subsection Examples
  285. @itemize
  286. @item
  287. Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
  288. the second channel (and any other channels that may be present) unchanged.
  289. @example
  290. adelay=1500|0|500
  291. @end example
  292. @end itemize
  293. @section aecho
  294. Apply echoing to the input audio.
  295. Echoes are reflected sound and can occur naturally amongst mountains
  296. (and sometimes large buildings) when talking or shouting; digital echo
  297. effects emulate this behaviour and are often used to help fill out the
  298. sound of a single instrument or vocal. The time difference between the
  299. original signal and the reflection is the @code{delay}, and the
  300. loudness of the reflected signal is the @code{decay}.
  301. Multiple echoes can have different delays and decays.
  302. A description of the accepted parameters follows.
  303. @table @option
  304. @item in_gain
  305. Set input gain of reflected signal. Default is @code{0.6}.
  306. @item out_gain
  307. Set output gain of reflected signal. Default is @code{0.3}.
  308. @item delays
  309. Set list of time intervals in milliseconds between original signal and reflections
  310. separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
  311. Default is @code{1000}.
  312. @item decays
  313. Set list of loudnesses of reflected signals separated by '|'.
  314. Allowed range for each @code{decay} is @code{(0 - 1.0]}.
  315. Default is @code{0.5}.
  316. @end table
  317. @subsection Examples
  318. @itemize
  319. @item
  320. Make it sound as if there are twice as many instruments as are actually playing:
  321. @example
  322. aecho=0.8:0.88:60:0.4
  323. @end example
  324. @item
  325. If delay is very short, then it sound like a (metallic) robot playing music:
  326. @example
  327. aecho=0.8:0.88:6:0.4
  328. @end example
  329. @item
  330. A longer delay will sound like an open air concert in the mountains:
  331. @example
  332. aecho=0.8:0.9:1000:0.3
  333. @end example
  334. @item
  335. Same as above but with one more mountain:
  336. @example
  337. aecho=0.8:0.9:1000|1800:0.3|0.25
  338. @end example
  339. @end itemize
  340. @section aeval
  341. Modify an audio signal according to the specified expressions.
  342. This filter accepts one or more expressions (one for each channel),
  343. which are evaluated and used to modify a corresponding audio signal.
  344. It accepts the following parameters:
  345. @table @option
  346. @item exprs
  347. Set the '|'-separated expressions list for each separate channel. If
  348. the number of input channels is greater than the number of
  349. expressions, the last specified expression is used for the remaining
  350. output channels.
  351. @item channel_layout, c
  352. Set output channel layout. If not specified, the channel layout is
  353. specified by the number of expressions. If set to @samp{same}, it will
  354. use by default the same input channel layout.
  355. @end table
  356. Each expression in @var{exprs} can contain the following constants and functions:
  357. @table @option
  358. @item ch
  359. channel number of the current expression
  360. @item n
  361. number of the evaluated sample, starting from 0
  362. @item s
  363. sample rate
  364. @item t
  365. time of the evaluated sample expressed in seconds
  366. @item nb_in_channels
  367. @item nb_out_channels
  368. input and output number of channels
  369. @item val(CH)
  370. the value of input channel with number @var{CH}
  371. @end table
  372. Note: this filter is slow. For faster processing you should use a
  373. dedicated filter.
  374. @subsection Examples
  375. @itemize
  376. @item
  377. Half volume:
  378. @example
  379. aeval=val(ch)/2:c=same
  380. @end example
  381. @item
  382. Invert phase of the second channel:
  383. @example
  384. eval=val(0)|-val(1)
  385. @end example
  386. @end itemize
  387. @section afade
  388. Apply fade-in/out effect to input audio.
  389. A description of the accepted parameters follows.
  390. @table @option
  391. @item type, t
  392. Specify the effect type, can be either @code{in} for fade-in, or
  393. @code{out} for a fade-out effect. Default is @code{in}.
  394. @item start_sample, ss
  395. Specify the number of the start sample for starting to apply the fade
  396. effect. Default is 0.
  397. @item nb_samples, ns
  398. Specify the number of samples for which the fade effect has to last. At
  399. the end of the fade-in effect the output audio will have the same
  400. volume as the input audio, at the end of the fade-out transition
  401. the output audio will be silence. Default is 44100.
  402. @item start_time, st
  403. Specify time for starting to apply the fade effect. Default is 0.
  404. The accepted syntax is:
  405. @example
  406. [-]HH[:MM[:SS[.m...]]]
  407. [-]S+[.m...]
  408. @end example
  409. See also the function @code{av_parse_time()}.
  410. If set this option is used instead of @var{start_sample} one.
  411. @item duration, d
  412. Specify the duration for which the fade effect has to last. Default is 0.
  413. The accepted syntax is:
  414. @example
  415. [-]HH[:MM[:SS[.m...]]]
  416. [-]S+[.m...]
  417. @end example
  418. See also the function @code{av_parse_time()}.
  419. At the end of the fade-in effect the output audio will have the same
  420. volume as the input audio, at the end of the fade-out transition
  421. the output audio will be silence.
  422. If set this option is used instead of @var{nb_samples} one.
  423. @item curve
  424. Set curve for fade transition.
  425. It accepts the following values:
  426. @table @option
  427. @item tri
  428. select triangular, linear slope (default)
  429. @item qsin
  430. select quarter of sine wave
  431. @item hsin
  432. select half of sine wave
  433. @item esin
  434. select exponential sine wave
  435. @item log
  436. select logarithmic
  437. @item par
  438. select inverted parabola
  439. @item qua
  440. select quadratic
  441. @item cub
  442. select cubic
  443. @item squ
  444. select square root
  445. @item cbr
  446. select cubic root
  447. @end table
  448. @end table
  449. @subsection Examples
  450. @itemize
  451. @item
  452. Fade in first 15 seconds of audio:
  453. @example
  454. afade=t=in:ss=0:d=15
  455. @end example
  456. @item
  457. Fade out last 25 seconds of a 900 seconds audio:
  458. @example
  459. afade=t=out:st=875:d=25
  460. @end example
  461. @end itemize
  462. @anchor{aformat}
  463. @section aformat
  464. Set output format constraints for the input audio. The framework will
  465. negotiate the most appropriate format to minimize conversions.
  466. It accepts the following parameters:
  467. @table @option
  468. @item sample_fmts
  469. A '|'-separated list of requested sample formats.
  470. @item sample_rates
  471. A '|'-separated list of requested sample rates.
  472. @item channel_layouts
  473. A '|'-separated list of requested channel layouts.
  474. See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
  475. for the required syntax.
  476. @end table
  477. If a parameter is omitted, all values are allowed.
  478. Force the output to either unsigned 8-bit or signed 16-bit stereo
  479. @example
  480. aformat=sample_fmts=u8|s16:channel_layouts=stereo
  481. @end example
  482. @section allpass
  483. Apply a two-pole all-pass filter with central frequency (in Hz)
  484. @var{frequency}, and filter-width @var{width}.
  485. An all-pass filter changes the audio's frequency to phase relationship
  486. without changing its frequency to amplitude relationship.
  487. The filter accepts the following options:
  488. @table @option
  489. @item frequency, f
  490. Set frequency in Hz.
  491. @item width_type
  492. Set method to specify band-width of filter.
  493. @table @option
  494. @item h
  495. Hz
  496. @item q
  497. Q-Factor
  498. @item o
  499. octave
  500. @item s
  501. slope
  502. @end table
  503. @item width, w
  504. Specify the band-width of a filter in width_type units.
  505. @end table
  506. @section amerge
  507. Merge two or more audio streams into a single multi-channel stream.
  508. The filter accepts the following options:
  509. @table @option
  510. @item inputs
  511. Set the number of inputs. Default is 2.
  512. @end table
  513. If the channel layouts of the inputs are disjoint, and therefore compatible,
  514. the channel layout of the output will be set accordingly and the channels
  515. will be reordered as necessary. If the channel layouts of the inputs are not
  516. disjoint, the output will have all the channels of the first input then all
  517. the channels of the second input, in that order, and the channel layout of
  518. the output will be the default value corresponding to the total number of
  519. channels.
  520. For example, if the first input is in 2.1 (FL+FR+LF) and the second input
  521. is FC+BL+BR, then the output will be in 5.1, with the channels in the
  522. following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
  523. first input, b1 is the first channel of the second input).
  524. On the other hand, if both input are in stereo, the output channels will be
  525. in the default order: a1, a2, b1, b2, and the channel layout will be
  526. arbitrarily set to 4.0, which may or may not be the expected value.
  527. All inputs must have the same sample rate, and format.
  528. If inputs do not have the same duration, the output will stop with the
  529. shortest.
  530. @subsection Examples
  531. @itemize
  532. @item
  533. Merge two mono files into a stereo stream:
  534. @example
  535. amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
  536. @end example
  537. @item
  538. Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
  539. @example
  540. ffmpeg -i input.mkv -filter_complex "[0:1][0:2][0:3][0:4][0:5][0:6] amerge=inputs=6" -c:a pcm_s16le output.mkv
  541. @end example
  542. @end itemize
  543. @section amix
  544. Mixes multiple audio inputs into a single output.
  545. Note that this filter only supports float samples (the @var{amerge}
  546. and @var{pan} audio filters support many formats). If the @var{amix}
  547. input has integer samples then @ref{aresample} will be automatically
  548. inserted to perform the conversion to float samples.
  549. For example
  550. @example
  551. ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
  552. @end example
  553. will mix 3 input audio streams to a single output with the same duration as the
  554. first input and a dropout transition time of 3 seconds.
  555. It accepts the following parameters:
  556. @table @option
  557. @item inputs
  558. The number of inputs. If unspecified, it defaults to 2.
  559. @item duration
  560. How to determine the end-of-stream.
  561. @table @option
  562. @item longest
  563. The duration of the longest input. (default)
  564. @item shortest
  565. The duration of the shortest input.
  566. @item first
  567. The duration of the first input.
  568. @end table
  569. @item dropout_transition
  570. The transition time, in seconds, for volume renormalization when an input
  571. stream ends. The default value is 2 seconds.
  572. @end table
  573. @section anull
  574. Pass the audio source unchanged to the output.
  575. @section apad
  576. Pad the end of a audio stream with silence, this can be used together with
  577. -shortest to extend audio streams to the same length as the video stream.
  578. @section aphaser
  579. Add a phasing effect to the input audio.
  580. A phaser filter creates series of peaks and troughs in the frequency spectrum.
  581. The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
  582. A description of the accepted parameters follows.
  583. @table @option
  584. @item in_gain
  585. Set input gain. Default is 0.4.
  586. @item out_gain
  587. Set output gain. Default is 0.74
  588. @item delay
  589. Set delay in milliseconds. Default is 3.0.
  590. @item decay
  591. Set decay. Default is 0.4.
  592. @item speed
  593. Set modulation speed in Hz. Default is 0.5.
  594. @item type
  595. Set modulation type. Default is triangular.
  596. It accepts the following values:
  597. @table @samp
  598. @item triangular, t
  599. @item sinusoidal, s
  600. @end table
  601. @end table
  602. @anchor{aresample}
  603. @section aresample
  604. Resample the input audio to the specified parameters, using the
  605. libswresample library. If none are specified then the filter will
  606. automatically convert between its input and output.
  607. This filter is also able to stretch/squeeze the audio data to make it match
  608. the timestamps or to inject silence / cut out audio to make it match the
  609. timestamps, do a combination of both or do neither.
  610. The filter accepts the syntax
  611. [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
  612. expresses a sample rate and @var{resampler_options} is a list of
  613. @var{key}=@var{value} pairs, separated by ":". See the
  614. ffmpeg-resampler manual for the complete list of supported options.
  615. @subsection Examples
  616. @itemize
  617. @item
  618. Resample the input audio to 44100Hz:
  619. @example
  620. aresample=44100
  621. @end example
  622. @item
  623. Stretch/squeeze samples to the given timestamps, with a maximum of 1000
  624. samples per second compensation:
  625. @example
  626. aresample=async=1000
  627. @end example
  628. @end itemize
  629. @section asetnsamples
  630. Set the number of samples per each output audio frame.
  631. The last output packet may contain a different number of samples, as
  632. the filter will flush all the remaining samples when the input audio
  633. signal its end.
  634. The filter accepts the following options:
  635. @table @option
  636. @item nb_out_samples, n
  637. Set the number of frames per each output audio frame. The number is
  638. intended as the number of samples @emph{per each channel}.
  639. Default value is 1024.
  640. @item pad, p
  641. If set to 1, the filter will pad the last audio frame with zeroes, so
  642. that the last frame will contain the same number of samples as the
  643. previous ones. Default value is 1.
  644. @end table
  645. For example, to set the number of per-frame samples to 1234 and
  646. disable padding for the last frame, use:
  647. @example
  648. asetnsamples=n=1234:p=0
  649. @end example
  650. @section asetrate
  651. Set the sample rate without altering the PCM data.
  652. This will result in a change of speed and pitch.
  653. The filter accepts the following options:
  654. @table @option
  655. @item sample_rate, r
  656. Set the output sample rate. Default is 44100 Hz.
  657. @end table
  658. @section ashowinfo
  659. Show a line containing various information for each input audio frame.
  660. The input audio is not modified.
  661. The shown line contains a sequence of key/value pairs of the form
  662. @var{key}:@var{value}.
  663. It accepts the following parameters:
  664. @table @option
  665. @item n
  666. The (sequential) number of the input frame, starting from 0.
  667. @item pts
  668. The presentation timestamp of the input frame, in time base units; the time base
  669. depends on the filter input pad, and is usually 1/@var{sample_rate}.
  670. @item pts_time
  671. The presentation timestamp of the input frame in seconds.
  672. @item pos
  673. position of the frame in the input stream, -1 if this information in
  674. unavailable and/or meaningless (for example in case of synthetic audio)
  675. @item fmt
  676. The sample format.
  677. @item chlayout
  678. The channel layout.
  679. @item rate
  680. The sample rate for the audio frame.
  681. @item nb_samples
  682. The number of samples (per channel) in the frame.
  683. @item checksum
  684. The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
  685. audio, the data is treated as if all the planes were concatenated.
  686. @item plane_checksums
  687. A list of Adler-32 checksums for each data plane.
  688. @end table
  689. @section astats
  690. Display time domain statistical information about the audio channels.
  691. Statistics are calculated and displayed for each audio channel and,
  692. where applicable, an overall figure is also given.
  693. It accepts the following option:
  694. @table @option
  695. @item length
  696. Short window length in seconds, used for peak and trough RMS measurement.
  697. Default is @code{0.05} (50 miliseconds). Allowed range is @code{[0.1 - 10]}.
  698. @end table
  699. A description of each shown parameter follows:
  700. @table @option
  701. @item DC offset
  702. Mean amplitude displacement from zero.
  703. @item Min level
  704. Minimal sample level.
  705. @item Max level
  706. Maximal sample level.
  707. @item Peak level dB
  708. @item RMS level dB
  709. Standard peak and RMS level measured in dBFS.
  710. @item RMS peak dB
  711. @item RMS trough dB
  712. Peak and trough values for RMS level measured over a short window.
  713. @item Crest factor
  714. Standard ratio of peak to RMS level (note: not in dB).
  715. @item Flat factor
  716. Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
  717. (i.e. either @var{Min level} or @var{Max level}).
  718. @item Peak count
  719. Number of occasions (not the number of samples) that the signal attained either
  720. @var{Min level} or @var{Max level}.
  721. @end table
  722. @section astreamsync
  723. Forward two audio streams and control the order the buffers are forwarded.
  724. The filter accepts the following options:
  725. @table @option
  726. @item expr, e
  727. Set the expression deciding which stream should be
  728. forwarded next: if the result is negative, the first stream is forwarded; if
  729. the result is positive or zero, the second stream is forwarded. It can use
  730. the following variables:
  731. @table @var
  732. @item b1 b2
  733. number of buffers forwarded so far on each stream
  734. @item s1 s2
  735. number of samples forwarded so far on each stream
  736. @item t1 t2
  737. current timestamp of each stream
  738. @end table
  739. The default value is @code{t1-t2}, which means to always forward the stream
  740. that has a smaller timestamp.
  741. @end table
  742. @subsection Examples
  743. Stress-test @code{amerge} by randomly sending buffers on the wrong
  744. input, while avoiding too much of a desynchronization:
  745. @example
  746. amovie=file.ogg [a] ; amovie=file.mp3 [b] ;
  747. [a] [b] astreamsync=(2*random(1))-1+tanh(5*(t1-t2)) [a2] [b2] ;
  748. [a2] [b2] amerge
  749. @end example
  750. @section asyncts
  751. Synchronize audio data with timestamps by squeezing/stretching it and/or
  752. dropping samples/adding silence when needed.
  753. This filter is not built by default, please use @ref{aresample} to do squeezing/stretching.
  754. It accepts the following parameters:
  755. @table @option
  756. @item compensate
  757. Enable stretching/squeezing the data to make it match the timestamps. Disabled
  758. by default. When disabled, time gaps are covered with silence.
  759. @item min_delta
  760. The minimum difference between timestamps and audio data (in seconds) to trigger
  761. adding/dropping samples. The default value is 0.1. If you get an imperfect
  762. sync with this filter, try setting this parameter to 0.
  763. @item max_comp
  764. The maximum compensation in samples per second. Only relevant with compensate=1.
  765. The default value is 500.
  766. @item first_pts
  767. Assume that the first PTS should be this value. The time base is 1 / sample
  768. rate. This allows for padding/trimming at the start of the stream. By default,
  769. no assumption is made about the first frame's expected PTS, so no padding or
  770. trimming is done. For example, this could be set to 0 to pad the beginning with
  771. silence if an audio stream starts after the video stream or to trim any samples
  772. with a negative PTS due to encoder delay.
  773. @end table
  774. @section atempo
  775. Adjust audio tempo.
  776. The filter accepts exactly one parameter, the audio tempo. If not
  777. specified then the filter will assume nominal 1.0 tempo. Tempo must
  778. be in the [0.5, 2.0] range.
  779. @subsection Examples
  780. @itemize
  781. @item
  782. Slow down audio to 80% tempo:
  783. @example
  784. atempo=0.8
  785. @end example
  786. @item
  787. To speed up audio to 125% tempo:
  788. @example
  789. atempo=1.25
  790. @end example
  791. @end itemize
  792. @section atrim
  793. Trim the input so that the output contains one continuous subpart of the input.
  794. It accepts the following parameters:
  795. @table @option
  796. @item start
  797. Timestamp (in seconds) of the start of the section to keep. I.e. the audio
  798. sample with the timestamp @var{start} will be the first sample in the output.
  799. @item end
  800. Specify time of the first audio sample that will be dropped, i.e. the
  801. audio sample immediately preceding the one with the timestamp @var{end} will be
  802. the last sample in the output.
  803. @item start_pts
  804. Same as @var{start}, except this option sets the start timestamp in samples
  805. instead of seconds.
  806. @item end_pts
  807. Same as @var{end}, except this option sets the end timestamp in samples instead
  808. of seconds.
  809. @item duration
  810. The maximum duration of the output in seconds.
  811. @item start_sample
  812. The number of the first sample that should be output.
  813. @item end_sample
  814. The number of the first sample that should be dropped.
  815. @end table
  816. @option{start}, @option{end}, @option{duration} are expressed as time
  817. duration specifications, check the "Time duration" section in the
  818. ffmpeg-utils manual.
  819. Note that the first two sets of the start/end options and the @option{duration}
  820. option look at the frame timestamp, while the _sample options simply count the
  821. samples that pass through the filter. So start/end_pts and start/end_sample will
  822. give different results when the timestamps are wrong, inexact or do not start at
  823. zero. Also note that this filter does not modify the timestamps. If you wish
  824. to have the output timestamps start at zero, insert the asetpts filter after the
  825. atrim filter.
  826. If multiple start or end options are set, this filter tries to be greedy and
  827. keep all samples that match at least one of the specified constraints. To keep
  828. only the part that matches all the constraints at once, chain multiple atrim
  829. filters.
  830. The defaults are such that all the input is kept. So it is possible to set e.g.
  831. just the end values to keep everything before the specified time.
  832. Examples:
  833. @itemize
  834. @item
  835. Drop everything except the second minute of input:
  836. @example
  837. ffmpeg -i INPUT -af atrim=60:120
  838. @end example
  839. @item
  840. Keep only the first 1000 samples:
  841. @example
  842. ffmpeg -i INPUT -af atrim=end_sample=1000
  843. @end example
  844. @end itemize
  845. @section bandpass
  846. Apply a two-pole Butterworth band-pass filter with central
  847. frequency @var{frequency}, and (3dB-point) band-width width.
  848. The @var{csg} option selects a constant skirt gain (peak gain = Q)
  849. instead of the default: constant 0dB peak gain.
  850. The filter roll off at 6dB per octave (20dB per decade).
  851. The filter accepts the following options:
  852. @table @option
  853. @item frequency, f
  854. Set the filter's central frequency. Default is @code{3000}.
  855. @item csg
  856. Constant skirt gain if set to 1. Defaults to 0.
  857. @item width_type
  858. Set method to specify band-width of filter.
  859. @table @option
  860. @item h
  861. Hz
  862. @item q
  863. Q-Factor
  864. @item o
  865. octave
  866. @item s
  867. slope
  868. @end table
  869. @item width, w
  870. Specify the band-width of a filter in width_type units.
  871. @end table
  872. @section bandreject
  873. Apply a two-pole Butterworth band-reject filter with central
  874. frequency @var{frequency}, and (3dB-point) band-width @var{width}.
  875. The filter roll off at 6dB per octave (20dB per decade).
  876. The filter accepts the following options:
  877. @table @option
  878. @item frequency, f
  879. Set the filter's central frequency. Default is @code{3000}.
  880. @item width_type
  881. Set method to specify band-width of filter.
  882. @table @option
  883. @item h
  884. Hz
  885. @item q
  886. Q-Factor
  887. @item o
  888. octave
  889. @item s
  890. slope
  891. @end table
  892. @item width, w
  893. Specify the band-width of a filter in width_type units.
  894. @end table
  895. @section bass
  896. Boost or cut the bass (lower) frequencies of the audio using a two-pole
  897. shelving filter with a response similar to that of a standard
  898. hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
  899. The filter accepts the following options:
  900. @table @option
  901. @item gain, g
  902. Give the gain at 0 Hz. Its useful range is about -20
  903. (for a large cut) to +20 (for a large boost).
  904. Beware of clipping when using a positive gain.
  905. @item frequency, f
  906. Set the filter's central frequency and so can be used
  907. to extend or reduce the frequency range to be boosted or cut.
  908. The default value is @code{100} Hz.
  909. @item width_type
  910. Set method to specify band-width of filter.
  911. @table @option
  912. @item h
  913. Hz
  914. @item q
  915. Q-Factor
  916. @item o
  917. octave
  918. @item s
  919. slope
  920. @end table
  921. @item width, w
  922. Determine how steep is the filter's shelf transition.
  923. @end table
  924. @section biquad
  925. Apply a biquad IIR filter with the given coefficients.
  926. Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
  927. are the numerator and denominator coefficients respectively.
  928. @section bs2b
  929. Bauer stereo to binaural transformation, which improves headphone listening of
  930. stereo audio records.
  931. It accepts the following parameters:
  932. @table @option
  933. @item profile
  934. Pre-defined crossfeed level.
  935. @table @option
  936. @item default
  937. Default level (fcut=700, feed=50).
  938. @item cmoy
  939. Chu Moy circuit (fcut=700, feed=60).
  940. @item jmeier
  941. Jan Meier circuit (fcut=650, feed=95).
  942. @end table
  943. @item fcut
  944. Cut frequency (in Hz).
  945. @item feed
  946. Feed level (in Hz).
  947. @end table
  948. @section channelmap
  949. Remap input channels to new locations.
  950. It accepts the following parameters:
  951. @table @option
  952. @item channel_layout
  953. The channel layout of the output stream.
  954. @item map
  955. Map channels from input to output. The argument is a '|'-separated list of
  956. mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
  957. @var{in_channel} form. @var{in_channel} can be either the name of the input
  958. channel (e.g. FL for front left) or its index in the input channel layout.
  959. @var{out_channel} is the name of the output channel or its index in the output
  960. channel layout. If @var{out_channel} is not given then it is implicitly an
  961. index, starting with zero and increasing by one for each mapping.
  962. @end table
  963. If no mapping is present, the filter will implicitly map input channels to
  964. output channels, preserving indices.
  965. For example, assuming a 5.1+downmix input MOV file,
  966. @example
  967. ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
  968. @end example
  969. will create an output WAV file tagged as stereo from the downmix channels of
  970. the input.
  971. To fix a 5.1 WAV improperly encoded in AAC's native channel order
  972. @example
  973. ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:channel_layout=5.1' out.wav
  974. @end example
  975. @section channelsplit
  976. Split each channel from an input audio stream into a separate output stream.
  977. It accepts the following parameters:
  978. @table @option
  979. @item channel_layout
  980. The channel layout of the input stream. The default is "stereo".
  981. @end table
  982. For example, assuming a stereo input MP3 file,
  983. @example
  984. ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
  985. @end example
  986. will create an output Matroska file with two audio streams, one containing only
  987. the left channel and the other the right channel.
  988. Split a 5.1 WAV file into per-channel files:
  989. @example
  990. ffmpeg -i in.wav -filter_complex
  991. 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
  992. -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
  993. front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
  994. side_right.wav
  995. @end example
  996. @section compand
  997. Compress or expand the audio's dynamic range.
  998. It accepts the following parameters:
  999. @table @option
  1000. @item attacks
  1001. @item decays
  1002. A list of times in seconds for each channel over which the instantaneous level
  1003. of the input signal is averaged to determine its volume. @var{attacks} refers to
  1004. increase of volume and @var{decays} refers to decrease of volume. For most
  1005. situations, the attack time (response to the audio getting louder) should be
  1006. shorter than the decay time, because the human ear is more sensitive to sudden
  1007. loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
  1008. a typical value for decay is 0.8 seconds.
  1009. @item points
  1010. A list of points for the transfer function, specified in dB relative to the
  1011. maximum possible signal amplitude. Each key points list must be defined using
  1012. the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
  1013. @code{x0/y0 x1/y1 x2/y2 ....}
  1014. The input values must be in strictly increasing order but the transfer function
  1015. does not have to be monotonically rising. The point @code{0/0} is assumed but
  1016. may be overridden (by @code{0/out-dBn}). Typical values for the transfer
  1017. function are @code{-70/-70|-60/-20}.
  1018. @item soft-knee
  1019. Set the curve radius in dB for all joints. It defaults to 0.01.
  1020. @item gain
  1021. Set the additional gain in dB to be applied at all points on the transfer
  1022. function. This allows for easy adjustment of the overall gain.
  1023. It defaults to 0.
  1024. @item volume
  1025. Set an initial volume, in dB, to be assumed for each channel when filtering
  1026. starts. This permits the user to supply a nominal level initially, so that, for
  1027. example, a very large gain is not applied to initial signal levels before the
  1028. companding has begun to operate. A typical value for audio which is initially
  1029. quiet is -90 dB. It defaults to 0.
  1030. @item delay
  1031. Set a delay, in seconds. The input audio is analyzed immediately, but audio is
  1032. delayed before being fed to the volume adjuster. Specifying a delay
  1033. approximately equal to the attack/decay times allows the filter to effectively
  1034. operate in predictive rather than reactive mode. It defaults to 0.
  1035. @end table
  1036. @subsection Examples
  1037. @itemize
  1038. @item
  1039. Make music with both quiet and loud passages suitable for listening to in a
  1040. noisy environment:
  1041. @example
  1042. compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
  1043. @end example
  1044. @item
  1045. A noise gate for when the noise is at a lower level than the signal:
  1046. @example
  1047. compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
  1048. @end example
  1049. @item
  1050. Here is another noise gate, this time for when the noise is at a higher level
  1051. than the signal (making it, in some ways, similar to squelch):
  1052. @example
  1053. compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
  1054. @end example
  1055. @end itemize
  1056. @section earwax
  1057. Make audio easier to listen to on headphones.
  1058. This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
  1059. so that when listened to on headphones the stereo image is moved from
  1060. inside your head (standard for headphones) to outside and in front of
  1061. the listener (standard for speakers).
  1062. Ported from SoX.
  1063. @section equalizer
  1064. Apply a two-pole peaking equalisation (EQ) filter. With this
  1065. filter, the signal-level at and around a selected frequency can
  1066. be increased or decreased, whilst (unlike bandpass and bandreject
  1067. filters) that at all other frequencies is unchanged.
  1068. In order to produce complex equalisation curves, this filter can
  1069. be given several times, each with a different central frequency.
  1070. The filter accepts the following options:
  1071. @table @option
  1072. @item frequency, f
  1073. Set the filter's central frequency in Hz.
  1074. @item width_type
  1075. Set method to specify band-width of filter.
  1076. @table @option
  1077. @item h
  1078. Hz
  1079. @item q
  1080. Q-Factor
  1081. @item o
  1082. octave
  1083. @item s
  1084. slope
  1085. @end table
  1086. @item width, w
  1087. Specify the band-width of a filter in width_type units.
  1088. @item gain, g
  1089. Set the required gain or attenuation in dB.
  1090. Beware of clipping when using a positive gain.
  1091. @end table
  1092. @subsection Examples
  1093. @itemize
  1094. @item
  1095. Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
  1096. @example
  1097. equalizer=f=1000:width_type=h:width=200:g=-10
  1098. @end example
  1099. @item
  1100. Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
  1101. @example
  1102. equalizer=f=1000:width_type=q:width=1:g=2,equalizer=f=100:width_type=q:width=2:g=-5
  1103. @end example
  1104. @end itemize
  1105. @section flanger
  1106. Apply a flanging effect to the audio.
  1107. The filter accepts the following options:
  1108. @table @option
  1109. @item delay
  1110. Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
  1111. @item depth
  1112. Set added swep delay in milliseconds. Range from 0 to 10. Default value is 2.
  1113. @item regen
  1114. Set percentage regeneneration (delayed signal feedback). Range from -95 to 95.
  1115. Default value is 0.
  1116. @item width
  1117. Set percentage of delayed signal mixed with original. Range from 0 to 100.
  1118. Default valu is 71.
  1119. @item speed
  1120. Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
  1121. @item shape
  1122. Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
  1123. Default value is @var{sinusoidal}.
  1124. @item phase
  1125. Set swept wave percentage-shift for multi channel. Range from 0 to 100.
  1126. Default value is 25.
  1127. @item interp
  1128. Set delay-line interpolation, @var{linear} or @var{quadratic}.
  1129. Default is @var{linear}.
  1130. @end table
  1131. @section highpass
  1132. Apply a high-pass filter with 3dB point frequency.
  1133. The filter can be either single-pole, or double-pole (the default).
  1134. The filter roll off at 6dB per pole per octave (20dB per pole per decade).
  1135. The filter accepts the following options:
  1136. @table @option
  1137. @item frequency, f
  1138. Set frequency in Hz. Default is 3000.
  1139. @item poles, p
  1140. Set number of poles. Default is 2.
  1141. @item width_type
  1142. Set method to specify band-width of filter.
  1143. @table @option
  1144. @item h
  1145. Hz
  1146. @item q
  1147. Q-Factor
  1148. @item o
  1149. octave
  1150. @item s
  1151. slope
  1152. @end table
  1153. @item width, w
  1154. Specify the band-width of a filter in width_type units.
  1155. Applies only to double-pole filter.
  1156. The default is 0.707q and gives a Butterworth response.
  1157. @end table
  1158. @section join
  1159. Join multiple input streams into one multi-channel stream.
  1160. It accepts the following parameters:
  1161. @table @option
  1162. @item inputs
  1163. The number of input streams. It defaults to 2.
  1164. @item channel_layout
  1165. The desired output channel layout. It defaults to stereo.
  1166. @item map
  1167. Map channels from inputs to output. The argument is a '|'-separated list of
  1168. mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
  1169. form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
  1170. can be either the name of the input channel (e.g. FL for front left) or its
  1171. index in the specified input stream. @var{out_channel} is the name of the output
  1172. channel.
  1173. @end table
  1174. The filter will attempt to guess the mappings when they are not specified
  1175. explicitly. It does so by first trying to find an unused matching input channel
  1176. and if that fails it picks the first unused input channel.
  1177. Join 3 inputs (with properly set channel layouts):
  1178. @example
  1179. ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
  1180. @end example
  1181. Build a 5.1 output from 6 single-channel streams:
  1182. @example
  1183. ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
  1184. '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'
  1185. out
  1186. @end example
  1187. @section ladspa
  1188. Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
  1189. To enable compilation of this filter you need to configure FFmpeg with
  1190. @code{--enable-ladspa}.
  1191. @table @option
  1192. @item file, f
  1193. Specifies the name of LADSPA plugin library to load. If the environment
  1194. variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
  1195. each one of the directories specified by the colon separated list in
  1196. @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
  1197. this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
  1198. @file{/usr/lib/ladspa/}.
  1199. @item plugin, p
  1200. Specifies the plugin within the library. Some libraries contain only
  1201. one plugin, but others contain many of them. If this is not set filter
  1202. will list all available plugins within the specified library.
  1203. @item controls, c
  1204. Set the '|' separated list of controls which are zero or more floating point
  1205. values that determine the behavior of the loaded plugin (for example delay,
  1206. threshold or gain).
  1207. Controls need to be defined using the following syntax:
  1208. c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
  1209. @var{valuei} is the value set on the @var{i}-th control.
  1210. If @option{controls} is set to @code{help}, all available controls and
  1211. their valid ranges are printed.
  1212. @item sample_rate, s
  1213. Specify the sample rate, default to 44100. Only used if plugin have
  1214. zero inputs.
  1215. @item nb_samples, n
  1216. Set the number of samples per channel per each output frame, default
  1217. is 1024. Only used if plugin have zero inputs.
  1218. @item duration, d
  1219. Set the minimum duration of the sourced audio. See the function
  1220. @code{av_parse_time()} for the accepted format, also check the "Time duration"
  1221. section in the ffmpeg-utils manual.
  1222. Note that the resulting duration may be greater than the specified duration,
  1223. as the generated audio is always cut at the end of a complete frame.
  1224. If not specified, or the expressed duration is negative, the audio is
  1225. supposed to be generated forever.
  1226. Only used if plugin have zero inputs.
  1227. @end table
  1228. @subsection Examples
  1229. @itemize
  1230. @item
  1231. List all available plugins within amp (LADSPA example plugin) library:
  1232. @example
  1233. ladspa=file=amp
  1234. @end example
  1235. @item
  1236. List all available controls and their valid ranges for @code{vcf_notch}
  1237. plugin from @code{VCF} library:
  1238. @example
  1239. ladspa=f=vcf:p=vcf_notch:c=help
  1240. @end example
  1241. @item
  1242. Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
  1243. plugin library:
  1244. @example
  1245. ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
  1246. @end example
  1247. @item
  1248. Add reverberation to the audio using TAP-plugins
  1249. (Tom's Audio Processing plugins):
  1250. @example
  1251. ladspa=file=tap_reverb:tap_reverb
  1252. @end example
  1253. @item
  1254. Generate white noise, with 0.2 amplitude:
  1255. @example
  1256. ladspa=file=cmt:noise_source_white:c=c0=.2
  1257. @end example
  1258. @item
  1259. Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
  1260. @code{C* Audio Plugin Suite} (CAPS) library:
  1261. @example
  1262. ladspa=file=caps:Click:c=c1=20'
  1263. @end example
  1264. @item
  1265. Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
  1266. @example
  1267. ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
  1268. @end example
  1269. @end itemize
  1270. @subsection Commands
  1271. This filter supports the following commands:
  1272. @table @option
  1273. @item cN
  1274. Modify the @var{N}-th control value.
  1275. If the specified value is not valid, it is ignored and prior one is kept.
  1276. @end table
  1277. @section lowpass
  1278. Apply a low-pass filter with 3dB point frequency.
  1279. The filter can be either single-pole or double-pole (the default).
  1280. The filter roll off at 6dB per pole per octave (20dB per pole per decade).
  1281. The filter accepts the following options:
  1282. @table @option
  1283. @item frequency, f
  1284. Set frequency in Hz. Default is 500.
  1285. @item poles, p
  1286. Set number of poles. Default is 2.
  1287. @item width_type
  1288. Set method to specify band-width of filter.
  1289. @table @option
  1290. @item h
  1291. Hz
  1292. @item q
  1293. Q-Factor
  1294. @item o
  1295. octave
  1296. @item s
  1297. slope
  1298. @end table
  1299. @item width, w
  1300. Specify the band-width of a filter in width_type units.
  1301. Applies only to double-pole filter.
  1302. The default is 0.707q and gives a Butterworth response.
  1303. @end table
  1304. @section pan
  1305. Mix channels with specific gain levels. The filter accepts the output
  1306. channel layout followed by a set of channels definitions.
  1307. This filter is also designed to remap efficiently the channels of an audio
  1308. stream.
  1309. The filter accepts parameters of the form:
  1310. "@var{l}:@var{outdef}:@var{outdef}:..."
  1311. @table @option
  1312. @item l
  1313. output channel layout or number of channels
  1314. @item outdef
  1315. output channel specification, of the form:
  1316. "@var{out_name}=[@var{gain}*]@var{in_name}[+[@var{gain}*]@var{in_name}...]"
  1317. @item out_name
  1318. output channel to define, either a channel name (FL, FR, etc.) or a channel
  1319. number (c0, c1, etc.)
  1320. @item gain
  1321. multiplicative coefficient for the channel, 1 leaving the volume unchanged
  1322. @item in_name
  1323. input channel to use, see out_name for details; it is not possible to mix
  1324. named and numbered input channels
  1325. @end table
  1326. If the `=' in a channel specification is replaced by `<', then the gains for
  1327. that specification will be renormalized so that the total is 1, thus
  1328. avoiding clipping noise.
  1329. @subsection Mixing examples
  1330. For example, if you want to down-mix from stereo to mono, but with a bigger
  1331. factor for the left channel:
  1332. @example
  1333. pan=1:c0=0.9*c0+0.1*c1
  1334. @end example
  1335. A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
  1336. 7-channels surround:
  1337. @example
  1338. pan=stereo: FL < FL + 0.5*FC + 0.6*BL + 0.6*SL : FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
  1339. @end example
  1340. Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
  1341. that should be preferred (see "-ac" option) unless you have very specific
  1342. needs.
  1343. @subsection Remapping examples
  1344. The channel remapping will be effective if, and only if:
  1345. @itemize
  1346. @item gain coefficients are zeroes or ones,
  1347. @item only one input per channel output,
  1348. @end itemize
  1349. If all these conditions are satisfied, the filter will notify the user ("Pure
  1350. channel mapping detected"), and use an optimized and lossless method to do the
  1351. remapping.
  1352. For example, if you have a 5.1 source and want a stereo audio stream by
  1353. dropping the extra channels:
  1354. @example
  1355. pan="stereo: c0=FL : c1=FR"
  1356. @end example
  1357. Given the same source, you can also switch front left and front right channels
  1358. and keep the input channel layout:
  1359. @example
  1360. pan="5.1: c0=c1 : c1=c0 : c2=c2 : c3=c3 : c4=c4 : c5=c5"
  1361. @end example
  1362. If the input is a stereo audio stream, you can mute the front left channel (and
  1363. still keep the stereo channel layout) with:
  1364. @example
  1365. pan="stereo:c1=c1"
  1366. @end example
  1367. Still with a stereo audio stream input, you can copy the right channel in both
  1368. front left and right:
  1369. @example
  1370. pan="stereo: c0=FR : c1=FR"
  1371. @end example
  1372. @section replaygain
  1373. ReplayGain scanner filter. This filter takes an audio stream as an input and
  1374. outputs it unchanged.
  1375. At end of filtering it displays @code{track_gain} and @code{track_peak}.
  1376. @section resample
  1377. Convert the audio sample format, sample rate and channel layout. It is
  1378. not meant to be used directly.
  1379. @section silencedetect
  1380. Detect silence in an audio stream.
  1381. This filter logs a message when it detects that the input audio volume is less
  1382. or equal to a noise tolerance value for a duration greater or equal to the
  1383. minimum detected noise duration.
  1384. The printed times and duration are expressed in seconds.
  1385. The filter accepts the following options:
  1386. @table @option
  1387. @item duration, d
  1388. Set silence duration until notification (default is 2 seconds).
  1389. @item noise, n
  1390. Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
  1391. specified value) or amplitude ratio. Default is -60dB, or 0.001.
  1392. @end table
  1393. @subsection Examples
  1394. @itemize
  1395. @item
  1396. Detect 5 seconds of silence with -50dB noise tolerance:
  1397. @example
  1398. silencedetect=n=-50dB:d=5
  1399. @end example
  1400. @item
  1401. Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
  1402. tolerance in @file{silence.mp3}:
  1403. @example
  1404. ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
  1405. @end example
  1406. @end itemize
  1407. @section treble
  1408. Boost or cut treble (upper) frequencies of the audio using a two-pole
  1409. shelving filter with a response similar to that of a standard
  1410. hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
  1411. The filter accepts the following options:
  1412. @table @option
  1413. @item gain, g
  1414. Give the gain at whichever is the lower of ~22 kHz and the
  1415. Nyquist frequency. Its useful range is about -20 (for a large cut)
  1416. to +20 (for a large boost). Beware of clipping when using a positive gain.
  1417. @item frequency, f
  1418. Set the filter's central frequency and so can be used
  1419. to extend or reduce the frequency range to be boosted or cut.
  1420. The default value is @code{3000} Hz.
  1421. @item width_type
  1422. Set method to specify band-width of filter.
  1423. @table @option
  1424. @item h
  1425. Hz
  1426. @item q
  1427. Q-Factor
  1428. @item o
  1429. octave
  1430. @item s
  1431. slope
  1432. @end table
  1433. @item width, w
  1434. Determine how steep is the filter's shelf transition.
  1435. @end table
  1436. @section volume
  1437. Adjust the input audio volume.
  1438. It accepts the following parameters:
  1439. @table @option
  1440. @item volume
  1441. Set audio volume expression.
  1442. Output values are clipped to the maximum value.
  1443. The output audio volume is given by the relation:
  1444. @example
  1445. @var{output_volume} = @var{volume} * @var{input_volume}
  1446. @end example
  1447. The default value for @var{volume} is "1.0".
  1448. @item precision
  1449. This parameter represents the mathematical precision.
  1450. It determines which input sample formats will be allowed, which affects the
  1451. precision of the volume scaling.
  1452. @table @option
  1453. @item fixed
  1454. 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
  1455. @item float
  1456. 32-bit floating-point; this limits input sample format to FLT. (default)
  1457. @item double
  1458. 64-bit floating-point; this limits input sample format to DBL.
  1459. @end table
  1460. @item replaygain
  1461. Choose the behaviour on encountering ReplayGain side data in input frames.
  1462. @table @option
  1463. @item drop
  1464. Remove ReplayGain side data, ignoring its contents (the default).
  1465. @item ignore
  1466. Ignore ReplayGain side data, but leave it in the frame.
  1467. @item track
  1468. Prefer the track gain, if present.
  1469. @item album
  1470. Prefer the album gain, if present.
  1471. @end table
  1472. @item replaygain_preamp
  1473. Pre-amplification gain in dB to apply to the selected replaygain gain.
  1474. Default value for @var{replaygain_preamp} is 0.0.
  1475. @item eval
  1476. Set when the volume expression is evaluated.
  1477. It accepts the following values:
  1478. @table @samp
  1479. @item once
  1480. only evaluate expression once during the filter initialization, or
  1481. when the @samp{volume} command is sent
  1482. @item frame
  1483. evaluate expression for each incoming frame
  1484. @end table
  1485. Default value is @samp{once}.
  1486. @end table
  1487. The volume expression can contain the following parameters.
  1488. @table @option
  1489. @item n
  1490. frame number (starting at zero)
  1491. @item nb_channels
  1492. number of channels
  1493. @item nb_consumed_samples
  1494. number of samples consumed by the filter
  1495. @item nb_samples
  1496. number of samples in the current frame
  1497. @item pos
  1498. original frame position in the file
  1499. @item pts
  1500. frame PTS
  1501. @item sample_rate
  1502. sample rate
  1503. @item startpts
  1504. PTS at start of stream
  1505. @item startt
  1506. time at start of stream
  1507. @item t
  1508. frame time
  1509. @item tb
  1510. timestamp timebase
  1511. @item volume
  1512. last set volume value
  1513. @end table
  1514. Note that when @option{eval} is set to @samp{once} only the
  1515. @var{sample_rate} and @var{tb} variables are available, all other
  1516. variables will evaluate to NAN.
  1517. @subsection Commands
  1518. This filter supports the following commands:
  1519. @table @option
  1520. @item volume
  1521. Modify the volume expression.
  1522. The command accepts the same syntax of the corresponding option.
  1523. If the specified expression is not valid, it is kept at its current
  1524. value.
  1525. @item replaygain_noclip
  1526. Prevent clipping by limiting the gain applied.
  1527. Default value for @var{replaygain_noclip} is 1.
  1528. @end table
  1529. @subsection Examples
  1530. @itemize
  1531. @item
  1532. Halve the input audio volume:
  1533. @example
  1534. volume=volume=0.5
  1535. volume=volume=1/2
  1536. volume=volume=-6.0206dB
  1537. @end example
  1538. In all the above example the named key for @option{volume} can be
  1539. omitted, for example like in:
  1540. @example
  1541. volume=0.5
  1542. @end example
  1543. @item
  1544. Increase input audio power by 6 decibels using fixed-point precision:
  1545. @example
  1546. volume=volume=6dB:precision=fixed
  1547. @end example
  1548. @item
  1549. Fade volume after time 10 with an annihilation period of 5 seconds:
  1550. @example
  1551. volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
  1552. @end example
  1553. @end itemize
  1554. @section volumedetect
  1555. Detect the volume of the input video.
  1556. The filter has no parameters. The input is not modified. Statistics about
  1557. the volume will be printed in the log when the input stream end is reached.
  1558. In particular it will show the mean volume (root mean square), maximum
  1559. volume (on a per-sample basis), and the beginning of a histogram of the
  1560. registered volume values (from the maximum value to a cumulated 1/1000 of
  1561. the samples).
  1562. All volumes are in decibels relative to the maximum PCM value.
  1563. @subsection Examples
  1564. Here is an excerpt of the output:
  1565. @example
  1566. [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
  1567. [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
  1568. [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
  1569. [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
  1570. [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
  1571. [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
  1572. [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
  1573. [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
  1574. [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
  1575. @end example
  1576. It means that:
  1577. @itemize
  1578. @item
  1579. The mean square energy is approximately -27 dB, or 10^-2.7.
  1580. @item
  1581. The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
  1582. @item
  1583. There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
  1584. @end itemize
  1585. In other words, raising the volume by +4 dB does not cause any clipping,
  1586. raising it by +5 dB causes clipping for 6 samples, etc.
  1587. @c man end AUDIO FILTERS
  1588. @chapter Audio Sources
  1589. @c man begin AUDIO SOURCES
  1590. Below is a description of the currently available audio sources.
  1591. @section abuffer
  1592. Buffer audio frames, and make them available to the filter chain.
  1593. This source is mainly intended for a programmatic use, in particular
  1594. through the interface defined in @file{libavfilter/asrc_abuffer.h}.
  1595. It accepts the following parameters:
  1596. @table @option
  1597. @item time_base
  1598. The timebase which will be used for timestamps of submitted frames. It must be
  1599. either a floating-point number or in @var{numerator}/@var{denominator} form.
  1600. @item sample_rate
  1601. The sample rate of the incoming audio buffers.
  1602. @item sample_fmt
  1603. The sample format of the incoming audio buffers.
  1604. Either a sample format name or its corresponging integer representation from
  1605. the enum AVSampleFormat in @file{libavutil/samplefmt.h}
  1606. @item channel_layout
  1607. The channel layout of the incoming audio buffers.
  1608. Either a channel layout name from channel_layout_map in
  1609. @file{libavutil/channel_layout.c} or its corresponding integer representation
  1610. from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
  1611. @item channels
  1612. The number of channels of the incoming audio buffers.
  1613. If both @var{channels} and @var{channel_layout} are specified, then they
  1614. must be consistent.
  1615. @end table
  1616. @subsection Examples
  1617. @example
  1618. abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
  1619. @end example
  1620. will instruct the source to accept planar 16bit signed stereo at 44100Hz.
  1621. Since the sample format with name "s16p" corresponds to the number
  1622. 6 and the "stereo" channel layout corresponds to the value 0x3, this is
  1623. equivalent to:
  1624. @example
  1625. abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
  1626. @end example
  1627. @section aevalsrc
  1628. Generate an audio signal specified by an expression.
  1629. This source accepts in input one or more expressions (one for each
  1630. channel), which are evaluated and used to generate a corresponding
  1631. audio signal.
  1632. This source accepts the following options:
  1633. @table @option
  1634. @item exprs
  1635. Set the '|'-separated expressions list for each separate channel. In case the
  1636. @option{channel_layout} option is not specified, the selected channel layout
  1637. depends on the number of provided expressions. Otherwise the last
  1638. specified expression is applied to the remaining output channels.
  1639. @item channel_layout, c
  1640. Set the channel layout. The number of channels in the specified layout
  1641. must be equal to the number of specified expressions.
  1642. @item duration, d
  1643. Set the minimum duration of the sourced audio. See the function
  1644. @code{av_parse_time()} for the accepted format.
  1645. Note that the resulting duration may be greater than the specified
  1646. duration, as the generated audio is always cut at the end of a
  1647. complete frame.
  1648. If not specified, or the expressed duration is negative, the audio is
  1649. supposed to be generated forever.
  1650. @item nb_samples, n
  1651. Set the number of samples per channel per each output frame,
  1652. default to 1024.
  1653. @item sample_rate, s
  1654. Specify the sample rate, default to 44100.
  1655. @end table
  1656. Each expression in @var{exprs} can contain the following constants:
  1657. @table @option
  1658. @item n
  1659. number of the evaluated sample, starting from 0
  1660. @item t
  1661. time of the evaluated sample expressed in seconds, starting from 0
  1662. @item s
  1663. sample rate
  1664. @end table
  1665. @subsection Examples
  1666. @itemize
  1667. @item
  1668. Generate silence:
  1669. @example
  1670. aevalsrc=0
  1671. @end example
  1672. @item
  1673. Generate a sin signal with frequency of 440 Hz, set sample rate to
  1674. 8000 Hz:
  1675. @example
  1676. aevalsrc="sin(440*2*PI*t):s=8000"
  1677. @end example
  1678. @item
  1679. Generate a two channels signal, specify the channel layout (Front
  1680. Center + Back Center) explicitly:
  1681. @example
  1682. aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
  1683. @end example
  1684. @item
  1685. Generate white noise:
  1686. @example
  1687. aevalsrc="-2+random(0)"
  1688. @end example
  1689. @item
  1690. Generate an amplitude modulated signal:
  1691. @example
  1692. aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
  1693. @end example
  1694. @item
  1695. Generate 2.5 Hz binaural beats on a 360 Hz carrier:
  1696. @example
  1697. aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
  1698. @end example
  1699. @end itemize
  1700. @section anullsrc
  1701. The null audio source, return unprocessed audio frames. It is mainly useful
  1702. as a template and to be employed in analysis / debugging tools, or as
  1703. the source for filters which ignore the input data (for example the sox
  1704. synth filter).
  1705. This source accepts the following options:
  1706. @table @option
  1707. @item channel_layout, cl
  1708. Specifies the channel layout, and can be either an integer or a string
  1709. representing a channel layout. The default value of @var{channel_layout}
  1710. is "stereo".
  1711. Check the channel_layout_map definition in
  1712. @file{libavutil/channel_layout.c} for the mapping between strings and
  1713. channel layout values.
  1714. @item sample_rate, r
  1715. Specifies the sample rate, and defaults to 44100.
  1716. @item nb_samples, n
  1717. Set the number of samples per requested frames.
  1718. @end table
  1719. @subsection Examples
  1720. @itemize
  1721. @item
  1722. Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
  1723. @example
  1724. anullsrc=r=48000:cl=4
  1725. @end example
  1726. @item
  1727. Do the same operation with a more obvious syntax:
  1728. @example
  1729. anullsrc=r=48000:cl=mono
  1730. @end example
  1731. @end itemize
  1732. All the parameters need to be explicitly defined.
  1733. @section flite
  1734. Synthesize a voice utterance using the libflite library.
  1735. To enable compilation of this filter you need to configure FFmpeg with
  1736. @code{--enable-libflite}.
  1737. Note that the flite library is not thread-safe.
  1738. The filter accepts the following options:
  1739. @table @option
  1740. @item list_voices
  1741. If set to 1, list the names of the available voices and exit
  1742. immediately. Default value is 0.
  1743. @item nb_samples, n
  1744. Set the maximum number of samples per frame. Default value is 512.
  1745. @item textfile
  1746. Set the filename containing the text to speak.
  1747. @item text
  1748. Set the text to speak.
  1749. @item voice, v
  1750. Set the voice to use for the speech synthesis. Default value is
  1751. @code{kal}. See also the @var{list_voices} option.
  1752. @end table
  1753. @subsection Examples
  1754. @itemize
  1755. @item
  1756. Read from file @file{speech.txt}, and synthetize the text using the
  1757. standard flite voice:
  1758. @example
  1759. flite=textfile=speech.txt
  1760. @end example
  1761. @item
  1762. Read the specified text selecting the @code{slt} voice:
  1763. @example
  1764. flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
  1765. @end example
  1766. @item
  1767. Input text to ffmpeg:
  1768. @example
  1769. ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
  1770. @end example
  1771. @item
  1772. Make @file{ffplay} speak the specified text, using @code{flite} and
  1773. the @code{lavfi} device:
  1774. @example
  1775. ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
  1776. @end example
  1777. @end itemize
  1778. For more information about libflite, check:
  1779. @url{http://www.speech.cs.cmu.edu/flite/}
  1780. @section sine
  1781. Generate an audio signal made of a sine wave with amplitude 1/8.
  1782. The audio signal is bit-exact.
  1783. The filter accepts the following options:
  1784. @table @option
  1785. @item frequency, f
  1786. Set the carrier frequency. Default is 440 Hz.
  1787. @item beep_factor, b
  1788. Enable a periodic beep every second with frequency @var{beep_factor} times
  1789. the carrier frequency. Default is 0, meaning the beep is disabled.
  1790. @item sample_rate, r
  1791. Specify the sample rate, default is 44100.
  1792. @item duration, d
  1793. Specify the duration of the generated audio stream.
  1794. @item samples_per_frame
  1795. Set the number of samples per output frame, default is 1024.
  1796. @end table
  1797. @subsection Examples
  1798. @itemize
  1799. @item
  1800. Generate a simple 440 Hz sine wave:
  1801. @example
  1802. sine
  1803. @end example
  1804. @item
  1805. Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
  1806. @example
  1807. sine=220:4:d=5
  1808. sine=f=220:b=4:d=5
  1809. sine=frequency=220:beep_factor=4:duration=5
  1810. @end example
  1811. @end itemize
  1812. @c man end AUDIO SOURCES
  1813. @chapter Audio Sinks
  1814. @c man begin AUDIO SINKS
  1815. Below is a description of the currently available audio sinks.
  1816. @section abuffersink
  1817. Buffer audio frames, and make them available to the end of filter chain.
  1818. This sink is mainly intended for programmatic use, in particular
  1819. through the interface defined in @file{libavfilter/buffersink.h}
  1820. or the options system.
  1821. It accepts a pointer to an AVABufferSinkContext structure, which
  1822. defines the incoming buffers' formats, to be passed as the opaque
  1823. parameter to @code{avfilter_init_filter} for initialization.
  1824. @section anullsink
  1825. Null audio sink; do absolutely nothing with the input audio. It is
  1826. mainly useful as a template and for use in analysis / debugging
  1827. tools.
  1828. @c man end AUDIO SINKS
  1829. @chapter Video Filters
  1830. @c man begin VIDEO FILTERS
  1831. When you configure your FFmpeg build, you can disable any of the
  1832. existing filters using @code{--disable-filters}.
  1833. The configure output will show the video filters included in your
  1834. build.
  1835. Below is a description of the currently available video filters.
  1836. @section alphaextract
  1837. Extract the alpha component from the input as a grayscale video. This
  1838. is especially useful with the @var{alphamerge} filter.
  1839. @section alphamerge
  1840. Add or replace the alpha component of the primary input with the
  1841. grayscale value of a second input. This is intended for use with
  1842. @var{alphaextract} to allow the transmission or storage of frame
  1843. sequences that have alpha in a format that doesn't support an alpha
  1844. channel.
  1845. For example, to reconstruct full frames from a normal YUV-encoded video
  1846. and a separate video created with @var{alphaextract}, you might use:
  1847. @example
  1848. movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
  1849. @end example
  1850. Since this filter is designed for reconstruction, it operates on frame
  1851. sequences without considering timestamps, and terminates when either
  1852. input reaches end of stream. This will cause problems if your encoding
  1853. pipeline drops frames. If you're trying to apply an image as an
  1854. overlay to a video stream, consider the @var{overlay} filter instead.
  1855. @section ass
  1856. Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
  1857. and libavformat to work. On the other hand, it is limited to ASS (Advanced
  1858. Substation Alpha) subtitles files.
  1859. @section bbox
  1860. Compute the bounding box for the non-black pixels in the input frame
  1861. luminance plane.
  1862. This filter computes the bounding box containing all the pixels with a
  1863. luminance value greater than the minimum allowed value.
  1864. The parameters describing the bounding box are printed on the filter
  1865. log.
  1866. The filter accepts the following option:
  1867. @table @option
  1868. @item min_val
  1869. Set the minimal luminance value. Default is @code{16}.
  1870. @end table
  1871. @section blackdetect
  1872. Detect video intervals that are (almost) completely black. Can be
  1873. useful to detect chapter transitions, commercials, or invalid
  1874. recordings. Output lines contains the time for the start, end and
  1875. duration of the detected black interval expressed in seconds.
  1876. In order to display the output lines, you need to set the loglevel at
  1877. least to the AV_LOG_INFO value.
  1878. The filter accepts the following options:
  1879. @table @option
  1880. @item black_min_duration, d
  1881. Set the minimum detected black duration expressed in seconds. It must
  1882. be a non-negative floating point number.
  1883. Default value is 2.0.
  1884. @item picture_black_ratio_th, pic_th
  1885. Set the threshold for considering a picture "black".
  1886. Express the minimum value for the ratio:
  1887. @example
  1888. @var{nb_black_pixels} / @var{nb_pixels}
  1889. @end example
  1890. for which a picture is considered black.
  1891. Default value is 0.98.
  1892. @item pixel_black_th, pix_th
  1893. Set the threshold for considering a pixel "black".
  1894. The threshold expresses the maximum pixel luminance value for which a
  1895. pixel is considered "black". The provided value is scaled according to
  1896. the following equation:
  1897. @example
  1898. @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
  1899. @end example
  1900. @var{luminance_range_size} and @var{luminance_minimum_value} depend on
  1901. the input video format, the range is [0-255] for YUV full-range
  1902. formats and [16-235] for YUV non full-range formats.
  1903. Default value is 0.10.
  1904. @end table
  1905. The following example sets the maximum pixel threshold to the minimum
  1906. value, and detects only black intervals of 2 or more seconds:
  1907. @example
  1908. blackdetect=d=2:pix_th=0.00
  1909. @end example
  1910. @section blackframe
  1911. Detect frames that are (almost) completely black. Can be useful to
  1912. detect chapter transitions or commercials. Output lines consist of
  1913. the frame number of the detected frame, the percentage of blackness,
  1914. the position in the file if known or -1 and the timestamp in seconds.
  1915. In order to display the output lines, you need to set the loglevel at
  1916. least to the AV_LOG_INFO value.
  1917. It accepts the following parameters:
  1918. @table @option
  1919. @item amount
  1920. The percentage of the pixels that have to be below the threshold; it defaults to
  1921. @code{98}.
  1922. @item threshold, thresh
  1923. The threshold below which a pixel value is considered black; it defaults to
  1924. @code{32}.
  1925. @end table
  1926. @section blend
  1927. Blend two video frames into each other.
  1928. It takes two input streams and outputs one stream, the first input is the
  1929. "top" layer and second input is "bottom" layer.
  1930. Output terminates when shortest input terminates.
  1931. A description of the accepted options follows.
  1932. @table @option
  1933. @item c0_mode
  1934. @item c1_mode
  1935. @item c2_mode
  1936. @item c3_mode
  1937. @item all_mode
  1938. Set blend mode for specific pixel component or all pixel components in case
  1939. of @var{all_mode}. Default value is @code{normal}.
  1940. Available values for component modes are:
  1941. @table @samp
  1942. @item addition
  1943. @item and
  1944. @item average
  1945. @item burn
  1946. @item darken
  1947. @item difference
  1948. @item divide
  1949. @item dodge
  1950. @item exclusion
  1951. @item hardlight
  1952. @item lighten
  1953. @item multiply
  1954. @item negation
  1955. @item normal
  1956. @item or
  1957. @item overlay
  1958. @item phoenix
  1959. @item pinlight
  1960. @item reflect
  1961. @item screen
  1962. @item softlight
  1963. @item subtract
  1964. @item vividlight
  1965. @item xor
  1966. @end table
  1967. @item c0_opacity
  1968. @item c1_opacity
  1969. @item c2_opacity
  1970. @item c3_opacity
  1971. @item all_opacity
  1972. Set blend opacity for specific pixel component or all pixel components in case
  1973. of @var{all_opacity}. Only used in combination with pixel component blend modes.
  1974. @item c0_expr
  1975. @item c1_expr
  1976. @item c2_expr
  1977. @item c3_expr
  1978. @item all_expr
  1979. Set blend expression for specific pixel component or all pixel components in case
  1980. of @var{all_expr}. Note that related mode options will be ignored if those are set.
  1981. The expressions can use the following variables:
  1982. @table @option
  1983. @item N
  1984. The sequential number of the filtered frame, starting from @code{0}.
  1985. @item X
  1986. @item Y
  1987. the coordinates of the current sample
  1988. @item W
  1989. @item H
  1990. the width and height of currently filtered plane
  1991. @item SW
  1992. @item SH
  1993. Width and height scale depending on the currently filtered plane. It is the
  1994. ratio between the corresponding luma plane number of pixels and the current
  1995. plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
  1996. @code{0.5,0.5} for chroma planes.
  1997. @item T
  1998. Time of the current frame, expressed in seconds.
  1999. @item TOP, A
  2000. Value of pixel component at current location for first video frame (top layer).
  2001. @item BOTTOM, B
  2002. Value of pixel component at current location for second video frame (bottom layer).
  2003. @end table
  2004. @item shortest
  2005. Force termination when the shortest input terminates. Default is @code{0}.
  2006. @item repeatlast
  2007. Continue applying the last bottom frame after the end of the stream. A value of
  2008. @code{0} disable the filter after the last frame of the bottom layer is reached.
  2009. Default is @code{1}.
  2010. @end table
  2011. @subsection Examples
  2012. @itemize
  2013. @item
  2014. Apply transition from bottom layer to top layer in first 10 seconds:
  2015. @example
  2016. blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
  2017. @end example
  2018. @item
  2019. Apply 1x1 checkerboard effect:
  2020. @example
  2021. blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
  2022. @end example
  2023. @item
  2024. Apply uncover left effect:
  2025. @example
  2026. blend=all_expr='if(gte(N*SW+X,W),A,B)'
  2027. @end example
  2028. @item
  2029. Apply uncover down effect:
  2030. @example
  2031. blend=all_expr='if(gte(Y-N*SH,0),A,B)'
  2032. @end example
  2033. @item
  2034. Apply uncover up-left effect:
  2035. @example
  2036. blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
  2037. @end example
  2038. @end itemize
  2039. @section boxblur
  2040. Apply a boxblur algorithm to the input video.
  2041. It accepts the following parameters:
  2042. @table @option
  2043. @item luma_radius, lr
  2044. @item luma_power, lp
  2045. @item chroma_radius, cr
  2046. @item chroma_power, cp
  2047. @item alpha_radius, ar
  2048. @item alpha_power, ap
  2049. @end table
  2050. A description of the accepted options follows.
  2051. @table @option
  2052. @item luma_radius, lr
  2053. @item chroma_radius, cr
  2054. @item alpha_radius, ar
  2055. Set an expression for the box radius in pixels used for blurring the
  2056. corresponding input plane.
  2057. The radius value must be a non-negative number, and must not be
  2058. greater than the value of the expression @code{min(w,h)/2} for the
  2059. luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
  2060. planes.
  2061. Default value for @option{luma_radius} is "2". If not specified,
  2062. @option{chroma_radius} and @option{alpha_radius} default to the
  2063. corresponding value set for @option{luma_radius}.
  2064. The expressions can contain the following constants:
  2065. @table @option
  2066. @item w
  2067. @item h
  2068. The input width and height in pixels.
  2069. @item cw
  2070. @item ch
  2071. The input chroma image width and height in pixels.
  2072. @item hsub
  2073. @item vsub
  2074. The horizontal and vertical chroma subsample values. For example, for the
  2075. pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
  2076. @end table
  2077. @item luma_power, lp
  2078. @item chroma_power, cp
  2079. @item alpha_power, ap
  2080. Specify how many times the boxblur filter is applied to the
  2081. corresponding plane.
  2082. Default value for @option{luma_power} is 2. If not specified,
  2083. @option{chroma_power} and @option{alpha_power} default to the
  2084. corresponding value set for @option{luma_power}.
  2085. A value of 0 will disable the effect.
  2086. @end table
  2087. @subsection Examples
  2088. @itemize
  2089. @item
  2090. Apply a boxblur filter with the luma, chroma, and alpha radii
  2091. set to 2:
  2092. @example
  2093. boxblur=luma_radius=2:luma_power=1
  2094. boxblur=2:1
  2095. @end example
  2096. @item
  2097. Set the luma radius to 2, and alpha and chroma radius to 0:
  2098. @example
  2099. boxblur=2:1:cr=0:ar=0
  2100. @end example
  2101. @item
  2102. Set the luma and chroma radii to a fraction of the video dimension:
  2103. @example
  2104. boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
  2105. @end example
  2106. @end itemize
  2107. @section colorbalance
  2108. Modify intensity of primary colors (red, green and blue) of input frames.
  2109. The filter allows an input frame to be adjusted in the shadows, midtones or highlights
  2110. regions for the red-cyan, green-magenta or blue-yellow balance.
  2111. A positive adjustment value shifts the balance towards the primary color, a negative
  2112. value towards the complementary color.
  2113. The filter accepts the following options:
  2114. @table @option
  2115. @item rs
  2116. @item gs
  2117. @item bs
  2118. Adjust red, green and blue shadows (darkest pixels).
  2119. @item rm
  2120. @item gm
  2121. @item bm
  2122. Adjust red, green and blue midtones (medium pixels).
  2123. @item rh
  2124. @item gh
  2125. @item bh
  2126. Adjust red, green and blue highlights (brightest pixels).
  2127. Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
  2128. @end table
  2129. @subsection Examples
  2130. @itemize
  2131. @item
  2132. Add red color cast to shadows:
  2133. @example
  2134. colorbalance=rs=.3
  2135. @end example
  2136. @end itemize
  2137. @section colorchannelmixer
  2138. Adjust video input frames by re-mixing color channels.
  2139. This filter modifies a color channel by adding the values associated to
  2140. the other channels of the same pixels. For example if the value to
  2141. modify is red, the output value will be:
  2142. @example
  2143. @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
  2144. @end example
  2145. The filter accepts the following options:
  2146. @table @option
  2147. @item rr
  2148. @item rg
  2149. @item rb
  2150. @item ra
  2151. Adjust contribution of input red, green, blue and alpha channels for output red channel.
  2152. Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
  2153. @item gr
  2154. @item gg
  2155. @item gb
  2156. @item ga
  2157. Adjust contribution of input red, green, blue and alpha channels for output green channel.
  2158. Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
  2159. @item br
  2160. @item bg
  2161. @item bb
  2162. @item ba
  2163. Adjust contribution of input red, green, blue and alpha channels for output blue channel.
  2164. Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
  2165. @item ar
  2166. @item ag
  2167. @item ab
  2168. @item aa
  2169. Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
  2170. Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
  2171. Allowed ranges for options are @code{[-2.0, 2.0]}.
  2172. @end table
  2173. @subsection Examples
  2174. @itemize
  2175. @item
  2176. Convert source to grayscale:
  2177. @example
  2178. colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
  2179. @end example
  2180. @item
  2181. Simulate sepia tones:
  2182. @example
  2183. colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
  2184. @end example
  2185. @end itemize
  2186. @section colormatrix
  2187. Convert color matrix.
  2188. The filter accepts the following options:
  2189. @table @option
  2190. @item src
  2191. @item dst
  2192. Specify the source and destination color matrix. Both values must be
  2193. specified.
  2194. The accepted values are:
  2195. @table @samp
  2196. @item bt709
  2197. BT.709
  2198. @item bt601
  2199. BT.601
  2200. @item smpte240m
  2201. SMPTE-240M
  2202. @item fcc
  2203. FCC
  2204. @end table
  2205. @end table
  2206. For example to convert from BT.601 to SMPTE-240M, use the command:
  2207. @example
  2208. colormatrix=bt601:smpte240m
  2209. @end example
  2210. @section copy
  2211. Copy the input source unchanged to the output. This is mainly useful for
  2212. testing purposes.
  2213. @section crop
  2214. Crop the input video to given dimensions.
  2215. It accepts the following parameters:
  2216. @table @option
  2217. @item w, out_w
  2218. The width of the output video. It defaults to @code{iw}.
  2219. This expression is evaluated only once during the filter
  2220. configuration.
  2221. @item h, out_h
  2222. The height of the output video. It defaults to @code{ih}.
  2223. This expression is evaluated only once during the filter
  2224. configuration.
  2225. @item x
  2226. The horizontal position, in the input video, of the left edge of the output
  2227. video. It defaults to @code{(in_w-out_w)/2}.
  2228. This expression is evaluated per-frame.
  2229. @item y
  2230. The vertical position, in the input video, of the top edge of the output video.
  2231. It defaults to @code{(in_h-out_h)/2}.
  2232. This expression is evaluated per-frame.
  2233. @item keep_aspect
  2234. If set to 1 will force the output display aspect ratio
  2235. to be the same of the input, by changing the output sample aspect
  2236. ratio. It defaults to 0.
  2237. @end table
  2238. The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
  2239. expressions containing the following constants:
  2240. @table @option
  2241. @item x
  2242. @item y
  2243. The computed values for @var{x} and @var{y}. They are evaluated for
  2244. each new frame.
  2245. @item in_w
  2246. @item in_h
  2247. The input width and height.
  2248. @item iw
  2249. @item ih
  2250. These are the same as @var{in_w} and @var{in_h}.
  2251. @item out_w
  2252. @item out_h
  2253. The output (cropped) width and height.
  2254. @item ow
  2255. @item oh
  2256. These are the same as @var{out_w} and @var{out_h}.
  2257. @item a
  2258. same as @var{iw} / @var{ih}
  2259. @item sar
  2260. input sample aspect ratio
  2261. @item dar
  2262. input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
  2263. @item hsub
  2264. @item vsub
  2265. horizontal and vertical chroma subsample values. For example for the
  2266. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  2267. @item n
  2268. The number of the input frame, starting from 0.
  2269. @item pos
  2270. the position in the file of the input frame, NAN if unknown
  2271. @item t
  2272. The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
  2273. @end table
  2274. The expression for @var{out_w} may depend on the value of @var{out_h},
  2275. and the expression for @var{out_h} may depend on @var{out_w}, but they
  2276. cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
  2277. evaluated after @var{out_w} and @var{out_h}.
  2278. The @var{x} and @var{y} parameters specify the expressions for the
  2279. position of the top-left corner of the output (non-cropped) area. They
  2280. are evaluated for each frame. If the evaluated value is not valid, it
  2281. is approximated to the nearest valid value.
  2282. The expression for @var{x} may depend on @var{y}, and the expression
  2283. for @var{y} may depend on @var{x}.
  2284. @subsection Examples
  2285. @itemize
  2286. @item
  2287. Crop area with size 100x100 at position (12,34).
  2288. @example
  2289. crop=100:100:12:34
  2290. @end example
  2291. Using named options, the example above becomes:
  2292. @example
  2293. crop=w=100:h=100:x=12:y=34
  2294. @end example
  2295. @item
  2296. Crop the central input area with size 100x100:
  2297. @example
  2298. crop=100:100
  2299. @end example
  2300. @item
  2301. Crop the central input area with size 2/3 of the input video:
  2302. @example
  2303. crop=2/3*in_w:2/3*in_h
  2304. @end example
  2305. @item
  2306. Crop the input video central square:
  2307. @example
  2308. crop=out_w=in_h
  2309. crop=in_h
  2310. @end example
  2311. @item
  2312. Delimit the rectangle with the top-left corner placed at position
  2313. 100:100 and the right-bottom corner corresponding to the right-bottom
  2314. corner of the input image.
  2315. @example
  2316. crop=in_w-100:in_h-100:100:100
  2317. @end example
  2318. @item
  2319. Crop 10 pixels from the left and right borders, and 20 pixels from
  2320. the top and bottom borders
  2321. @example
  2322. crop=in_w-2*10:in_h-2*20
  2323. @end example
  2324. @item
  2325. Keep only the bottom right quarter of the input image:
  2326. @example
  2327. crop=in_w/2:in_h/2:in_w/2:in_h/2
  2328. @end example
  2329. @item
  2330. Crop height for getting Greek harmony:
  2331. @example
  2332. crop=in_w:1/PHI*in_w
  2333. @end example
  2334. @item
  2335. Appply trembling effect:
  2336. @example
  2337. 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)
  2338. @end example
  2339. @item
  2340. Apply erratic camera effect depending on timestamp:
  2341. @example
  2342. 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)"
  2343. @end example
  2344. @item
  2345. Set x depending on the value of y:
  2346. @example
  2347. crop=in_w/2:in_h/2:y:10+10*sin(n/10)
  2348. @end example
  2349. @end itemize
  2350. @section cropdetect
  2351. Auto-detect the crop size.
  2352. It calculates the necessary cropping parameters and prints the
  2353. recommended parameters via the logging system. The detected dimensions
  2354. correspond to the non-black area of the input video.
  2355. It accepts the following parameters:
  2356. @table @option
  2357. @item limit
  2358. Set higher black value threshold, which can be optionally specified
  2359. from nothing (0) to everything (255). An intensity value greater
  2360. to the set value is considered non-black. It defaults to 24.
  2361. @item round
  2362. The value which the width/height should be divisible by. It defaults to
  2363. 16. The offset is automatically adjusted to center the video. Use 2 to
  2364. get only even dimensions (needed for 4:2:2 video). 16 is best when
  2365. encoding to most video codecs.
  2366. @item reset_count, reset
  2367. Set the counter that determines after how many frames cropdetect will
  2368. reset the previously detected largest video area and start over to
  2369. detect the current optimal crop area. Default value is 0.
  2370. This can be useful when channel logos distort the video area. 0
  2371. indicates 'never reset', and returns the largest area encountered during
  2372. playback.
  2373. @end table
  2374. @anchor{curves}
  2375. @section curves
  2376. Apply color adjustments using curves.
  2377. This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
  2378. component (red, green and blue) has its values defined by @var{N} key points
  2379. tied from each other using a smooth curve. The x-axis represents the pixel
  2380. values from the input frame, and the y-axis the new pixel values to be set for
  2381. the output frame.
  2382. By default, a component curve is defined by the two points @var{(0;0)} and
  2383. @var{(1;1)}. This creates a straight line where each original pixel value is
  2384. "adjusted" to its own value, which means no change to the image.
  2385. The filter allows you to redefine these two points and add some more. A new
  2386. curve (using a natural cubic spline interpolation) will be define to pass
  2387. smoothly through all these new coordinates. The new defined points needs to be
  2388. strictly increasing over the x-axis, and their @var{x} and @var{y} values must
  2389. be in the @var{[0;1]} interval. If the computed curves happened to go outside
  2390. the vector spaces, the values will be clipped accordingly.
  2391. If there is no key point defined in @code{x=0}, the filter will automatically
  2392. insert a @var{(0;0)} point. In the same way, if there is no key point defined
  2393. in @code{x=1}, the filter will automatically insert a @var{(1;1)} point.
  2394. The filter accepts the following options:
  2395. @table @option
  2396. @item preset
  2397. Select one of the available color presets. This option can be used in addition
  2398. to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
  2399. options takes priority on the preset values.
  2400. Available presets are:
  2401. @table @samp
  2402. @item none
  2403. @item color_negative
  2404. @item cross_process
  2405. @item darker
  2406. @item increase_contrast
  2407. @item lighter
  2408. @item linear_contrast
  2409. @item medium_contrast
  2410. @item negative
  2411. @item strong_contrast
  2412. @item vintage
  2413. @end table
  2414. Default is @code{none}.
  2415. @item master, m
  2416. Set the master key points. These points will define a second pass mapping. It
  2417. is sometimes called a "luminance" or "value" mapping. It can be used with
  2418. @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
  2419. post-processing LUT.
  2420. @item red, r
  2421. Set the key points for the red component.
  2422. @item green, g
  2423. Set the key points for the green component.
  2424. @item blue, b
  2425. Set the key points for the blue component.
  2426. @item all
  2427. Set the key points for all components (not including master).
  2428. Can be used in addition to the other key points component
  2429. options. In this case, the unset component(s) will fallback on this
  2430. @option{all} setting.
  2431. @item psfile
  2432. Specify a Photoshop curves file (@code{.asv}) to import the settings from.
  2433. @end table
  2434. To avoid some filtergraph syntax conflicts, each key points list need to be
  2435. defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
  2436. @subsection Examples
  2437. @itemize
  2438. @item
  2439. Increase slightly the middle level of blue:
  2440. @example
  2441. curves=blue='0.5/0.58'
  2442. @end example
  2443. @item
  2444. Vintage effect:
  2445. @example
  2446. curves=r='0/0.11 .42/.51 1/0.95':g='0.50/0.48':b='0/0.22 .49/.44 1/0.8'
  2447. @end example
  2448. Here we obtain the following coordinates for each components:
  2449. @table @var
  2450. @item red
  2451. @code{(0;0.11) (0.42;0.51) (1;0.95)}
  2452. @item green
  2453. @code{(0;0) (0.50;0.48) (1;1)}
  2454. @item blue
  2455. @code{(0;0.22) (0.49;0.44) (1;0.80)}
  2456. @end table
  2457. @item
  2458. The previous example can also be achieved with the associated built-in preset:
  2459. @example
  2460. curves=preset=vintage
  2461. @end example
  2462. @item
  2463. Or simply:
  2464. @example
  2465. curves=vintage
  2466. @end example
  2467. @item
  2468. Use a Photoshop preset and redefine the points of the green component:
  2469. @example
  2470. curves=psfile='MyCurvesPresets/purple.asv':green='0.45/0.53'
  2471. @end example
  2472. @end itemize
  2473. @section dctdnoiz
  2474. Denoise frames using 2D DCT (frequency domain filtering).
  2475. This filter is not designed for real time.
  2476. The filter accepts the following options:
  2477. @table @option
  2478. @item sigma, s
  2479. Set the noise sigma constant.
  2480. This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
  2481. coefficient (absolute value) below this threshold with be dropped.
  2482. If you need a more advanced filtering, see @option{expr}.
  2483. Default is @code{0}.
  2484. @item overlap
  2485. Set number overlapping pixels for each block. Since the filter can be slow, you
  2486. may want to reduce this value, at the cost of a less effective filter and the
  2487. risk of various artefacts.
  2488. If the overlapping value doesn't allow to process the whole input width or
  2489. height, a warning will be displayed and according borders won't be denoised.
  2490. Default value is @var{blocksize}-1, which is the best possible setting.
  2491. @item expr, e
  2492. Set the coefficient factor expression.
  2493. For each coefficient of a DCT block, this expression will be evaluated as a
  2494. multiplier value for the coefficient.
  2495. If this is option is set, the @option{sigma} option will be ignored.
  2496. The absolute value of the coefficient can be accessed through the @var{c}
  2497. variable.
  2498. @item n
  2499. Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
  2500. @var{blocksize}, which is the width and height of the processed blocks.
  2501. The default value is @var{3} (8x8) and can be raised to @var{4} for a
  2502. @var{blocksize} of 16x16. Note that changing this setting has huge consequences
  2503. on the speed processing. Also, a larger block size does not necessarily means a
  2504. better de-noising.
  2505. @end table
  2506. @subsection Examples
  2507. Apply a denoise with a @option{sigma} of @code{4.5}:
  2508. @example
  2509. dctdnoiz=4.5
  2510. @end example
  2511. The same operation can be achieved using the expression system:
  2512. @example
  2513. dctdnoiz=e='gte(c, 4.5*3)'
  2514. @end example
  2515. Violent denoise using a block size of @code{16x16}:
  2516. @example
  2517. dctdnoiz=15:n=4
  2518. @end example
  2519. @anchor{decimate}
  2520. @section decimate
  2521. Drop duplicated frames at regular intervals.
  2522. The filter accepts the following options:
  2523. @table @option
  2524. @item cycle
  2525. Set the number of frames from which one will be dropped. Setting this to
  2526. @var{N} means one frame in every batch of @var{N} frames will be dropped.
  2527. Default is @code{5}.
  2528. @item dupthresh
  2529. Set the threshold for duplicate detection. If the difference metric for a frame
  2530. is less than or equal to this value, then it is declared as duplicate. Default
  2531. is @code{1.1}
  2532. @item scthresh
  2533. Set scene change threshold. Default is @code{15}.
  2534. @item blockx
  2535. @item blocky
  2536. Set the size of the x and y-axis blocks used during metric calculations.
  2537. Larger blocks give better noise suppression, but also give worse detection of
  2538. small movements. Must be a power of two. Default is @code{32}.
  2539. @item ppsrc
  2540. Mark main input as a pre-processed input and activate clean source input
  2541. stream. This allows the input to be pre-processed with various filters to help
  2542. the metrics calculation while keeping the frame selection lossless. When set to
  2543. @code{1}, the first stream is for the pre-processed input, and the second
  2544. stream is the clean source from where the kept frames are chosen. Default is
  2545. @code{0}.
  2546. @item chroma
  2547. Set whether or not chroma is considered in the metric calculations. Default is
  2548. @code{1}.
  2549. @end table
  2550. @section dejudder
  2551. Remove judder produced by partially interlaced telecined content.
  2552. Judder can be introduced, for instance, by @ref{pullup} filter. If the original
  2553. source was partially telecined content then the output of @code{pullup,dejudder}
  2554. will have a variable frame rate. May change the recorded frame rate of the
  2555. container. Aside from that change, this filter will not affect constant frame
  2556. rate video.
  2557. The option available in this filter is:
  2558. @table @option
  2559. @item cycle
  2560. Specify the length of the window over which the judder repeats.
  2561. Accepts any integer greater than 1. Useful values are:
  2562. @table @samp
  2563. @item 4
  2564. If the original was telecined from 24 to 30 fps (Film to NTSC).
  2565. @item 5
  2566. If the original was telecined from 25 to 30 fps (PAL to NTSC).
  2567. @item 20
  2568. If a mixture of the two.
  2569. @end table
  2570. The default is @samp{4}.
  2571. @end table
  2572. @section delogo
  2573. Suppress a TV station logo by a simple interpolation of the surrounding
  2574. pixels. Just set a rectangle covering the logo and watch it disappear
  2575. (and sometimes something even uglier appear - your mileage may vary).
  2576. It accepts the following parameters:
  2577. @table @option
  2578. @item x
  2579. @item y
  2580. Specify the top left corner coordinates of the logo. They must be
  2581. specified.
  2582. @item w
  2583. @item h
  2584. Specify the width and height of the logo to clear. They must be
  2585. specified.
  2586. @item band, t
  2587. Specify the thickness of the fuzzy edge of the rectangle (added to
  2588. @var{w} and @var{h}). The default value is 4.
  2589. @item show
  2590. When set to 1, a green rectangle is drawn on the screen to simplify
  2591. finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
  2592. The default value is 0.
  2593. The rectangle is drawn on the outermost pixels which will be (partly)
  2594. replaced with interpolated values. The values of the next pixels
  2595. immediately outside this rectangle in each direction will be used to
  2596. compute the interpolated pixel values inside the rectangle.
  2597. @end table
  2598. @subsection Examples
  2599. @itemize
  2600. @item
  2601. Set a rectangle covering the area with top left corner coordinates 0,0
  2602. and size 100x77, and a band of size 10:
  2603. @example
  2604. delogo=x=0:y=0:w=100:h=77:band=10
  2605. @end example
  2606. @end itemize
  2607. @section deshake
  2608. Attempt to fix small changes in horizontal and/or vertical shift. This
  2609. filter helps remove camera shake from hand-holding a camera, bumping a
  2610. tripod, moving on a vehicle, etc.
  2611. The filter accepts the following options:
  2612. @table @option
  2613. @item x
  2614. @item y
  2615. @item w
  2616. @item h
  2617. Specify a rectangular area where to limit the search for motion
  2618. vectors.
  2619. If desired the search for motion vectors can be limited to a
  2620. rectangular area of the frame defined by its top left corner, width
  2621. and height. These parameters have the same meaning as the drawbox
  2622. filter which can be used to visualise the position of the bounding
  2623. box.
  2624. This is useful when simultaneous movement of subjects within the frame
  2625. might be confused for camera motion by the motion vector search.
  2626. If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
  2627. then the full frame is used. This allows later options to be set
  2628. without specifying the bounding box for the motion vector search.
  2629. Default - search the whole frame.
  2630. @item rx
  2631. @item ry
  2632. Specify the maximum extent of movement in x and y directions in the
  2633. range 0-64 pixels. Default 16.
  2634. @item edge
  2635. Specify how to generate pixels to fill blanks at the edge of the
  2636. frame. Available values are:
  2637. @table @samp
  2638. @item blank, 0
  2639. Fill zeroes at blank locations
  2640. @item original, 1
  2641. Original image at blank locations
  2642. @item clamp, 2
  2643. Extruded edge value at blank locations
  2644. @item mirror, 3
  2645. Mirrored edge at blank locations
  2646. @end table
  2647. Default value is @samp{mirror}.
  2648. @item blocksize
  2649. Specify the blocksize to use for motion search. Range 4-128 pixels,
  2650. default 8.
  2651. @item contrast
  2652. Specify the contrast threshold for blocks. Only blocks with more than
  2653. the specified contrast (difference between darkest and lightest
  2654. pixels) will be considered. Range 1-255, default 125.
  2655. @item search
  2656. Specify the search strategy. Available values are:
  2657. @table @samp
  2658. @item exhaustive, 0
  2659. Set exhaustive search
  2660. @item less, 1
  2661. Set less exhaustive search.
  2662. @end table
  2663. Default value is @samp{exhaustive}.
  2664. @item filename
  2665. If set then a detailed log of the motion search is written to the
  2666. specified file.
  2667. @item opencl
  2668. If set to 1, specify using OpenCL capabilities, only available if
  2669. FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
  2670. @end table
  2671. @section drawbox
  2672. Draw a colored box on the input image.
  2673. It accepts the following parameters:
  2674. @table @option
  2675. @item x
  2676. @item y
  2677. The expressions which specify the top left corner coordinates of the box. It defaults to 0.
  2678. @item width, w
  2679. @item height, h
  2680. The expressions which specify the width and height of the box; if 0 they are interpreted as
  2681. the input width and height. It defaults to 0.
  2682. @item color, c
  2683. Specify the color of the box to write. For the general syntax of this option,
  2684. check the "Color" section in the ffmpeg-utils manual. If the special
  2685. value @code{invert} is used, the box edge color is the same as the
  2686. video with inverted luma.
  2687. @item thickness, t
  2688. The expression which sets the thickness of the box edge. Default value is @code{3}.
  2689. See below for the list of accepted constants.
  2690. @end table
  2691. The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
  2692. following constants:
  2693. @table @option
  2694. @item dar
  2695. The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
  2696. @item hsub
  2697. @item vsub
  2698. horizontal and vertical chroma subsample values. For example for the
  2699. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  2700. @item in_h, ih
  2701. @item in_w, iw
  2702. The input width and height.
  2703. @item sar
  2704. The input sample aspect ratio.
  2705. @item x
  2706. @item y
  2707. The x and y offset coordinates where the box is drawn.
  2708. @item w
  2709. @item h
  2710. The width and height of the drawn box.
  2711. @item t
  2712. The thickness of the drawn box.
  2713. These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
  2714. each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
  2715. @end table
  2716. @subsection Examples
  2717. @itemize
  2718. @item
  2719. Draw a black box around the edge of the input image:
  2720. @example
  2721. drawbox
  2722. @end example
  2723. @item
  2724. Draw a box with color red and an opacity of 50%:
  2725. @example
  2726. drawbox=10:20:200:60:red@@0.5
  2727. @end example
  2728. The previous example can be specified as:
  2729. @example
  2730. drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
  2731. @end example
  2732. @item
  2733. Fill the box with pink color:
  2734. @example
  2735. drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=max
  2736. @end example
  2737. @item
  2738. Draw a 2-pixel red 2.40:1 mask:
  2739. @example
  2740. drawbox=x=-t:y=0.5*(ih-iw/2.4)-t:w=iw+t*2:h=iw/2.4+t*2:t=2:c=red
  2741. @end example
  2742. @end itemize
  2743. @section drawgrid
  2744. Draw a grid on the input image.
  2745. It accepts the following parameters:
  2746. @table @option
  2747. @item x
  2748. @item y
  2749. The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
  2750. @item width, w
  2751. @item height, h
  2752. The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
  2753. input width and height, respectively, minus @code{thickness}, so image gets
  2754. framed. Default to 0.
  2755. @item color, c
  2756. Specify the color of the grid. For the general syntax of this option,
  2757. check the "Color" section in the ffmpeg-utils manual. If the special
  2758. value @code{invert} is used, the grid color is the same as the
  2759. video with inverted luma.
  2760. @item thickness, t
  2761. The expression which sets the thickness of the grid line. Default value is @code{1}.
  2762. See below for the list of accepted constants.
  2763. @end table
  2764. The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
  2765. following constants:
  2766. @table @option
  2767. @item dar
  2768. The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
  2769. @item hsub
  2770. @item vsub
  2771. horizontal and vertical chroma subsample values. For example for the
  2772. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  2773. @item in_h, ih
  2774. @item in_w, iw
  2775. The input grid cell width and height.
  2776. @item sar
  2777. The input sample aspect ratio.
  2778. @item x
  2779. @item y
  2780. The x and y coordinates of some point of grid intersection (meant to configure offset).
  2781. @item w
  2782. @item h
  2783. The width and height of the drawn cell.
  2784. @item t
  2785. The thickness of the drawn cell.
  2786. These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
  2787. each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
  2788. @end table
  2789. @subsection Examples
  2790. @itemize
  2791. @item
  2792. Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
  2793. @example
  2794. drawgrid=width=100:height=100:thickness=2:color=red@@0.5
  2795. @end example
  2796. @item
  2797. Draw a white 3x3 grid with an opacity of 50%:
  2798. @example
  2799. drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
  2800. @end example
  2801. @end itemize
  2802. @anchor{drawtext}
  2803. @section drawtext
  2804. Draw a text string or text from a specified file on top of a video, using the
  2805. libfreetype library.
  2806. To enable compilation of this filter, you need to configure FFmpeg with
  2807. @code{--enable-libfreetype}.
  2808. To enable default font fallback and the @var{font} option you need to
  2809. configure FFmpeg with @code{--enable-libfontconfig}.
  2810. To enable the @var{text_shaping} option, you need to configure FFmpeg with
  2811. @code{--enable-libfribidi}.
  2812. @subsection Syntax
  2813. It accepts the following parameters:
  2814. @table @option
  2815. @item box
  2816. Used to draw a box around text using the background color.
  2817. The value must be either 1 (enable) or 0 (disable).
  2818. The default value of @var{box} is 0.
  2819. @item boxcolor
  2820. The color to be used for drawing box around text. For the syntax of this
  2821. option, check the "Color" section in the ffmpeg-utils manual.
  2822. The default value of @var{boxcolor} is "white".
  2823. @item borderw
  2824. Set the width of the border to be drawn around the text using @var{bordercolor}.
  2825. The default value of @var{borderw} is 0.
  2826. @item bordercolor
  2827. Set the color to be used for drawing border around text. For the syntax of this
  2828. option, check the "Color" section in the ffmpeg-utils manual.
  2829. The default value of @var{bordercolor} is "black".
  2830. @item expansion
  2831. Select how the @var{text} is expanded. Can be either @code{none},
  2832. @code{strftime} (deprecated) or
  2833. @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
  2834. below for details.
  2835. @item fix_bounds
  2836. If true, check and fix text coords to avoid clipping.
  2837. @item fontcolor
  2838. The color to be used for drawing fonts. For the syntax of this option, check
  2839. the "Color" section in the ffmpeg-utils manual.
  2840. The default value of @var{fontcolor} is "black".
  2841. @item fontcolor_expr
  2842. String which is expanded the same way as @var{text} to obtain dynamic
  2843. @var{fontcolor} value. By default this option has empty value and is not
  2844. processed. When this option is set, it overrides @var{fontcolor} option.
  2845. @item font
  2846. The font family to be used for drawing text. By default Sans.
  2847. @item fontfile
  2848. The font file to be used for drawing text. The path must be included.
  2849. This parameter is mandatory if the fontconfig support is disabled.
  2850. @item fontsize
  2851. The font size to be used for drawing text.
  2852. The default value of @var{fontsize} is 16.
  2853. @item text_shaping
  2854. If set to 1, attempt to shape the text (for example, reverse the order of
  2855. right-to-left text and join Arabic characters) before drawing it.
  2856. Otherwise, just draw the text exactly as given.
  2857. By default 1 (if supported).
  2858. @item ft_load_flags
  2859. The flags to be used for loading the fonts.
  2860. The flags map the corresponding flags supported by libfreetype, and are
  2861. a combination of the following values:
  2862. @table @var
  2863. @item default
  2864. @item no_scale
  2865. @item no_hinting
  2866. @item render
  2867. @item no_bitmap
  2868. @item vertical_layout
  2869. @item force_autohint
  2870. @item crop_bitmap
  2871. @item pedantic
  2872. @item ignore_global_advance_width
  2873. @item no_recurse
  2874. @item ignore_transform
  2875. @item monochrome
  2876. @item linear_design
  2877. @item no_autohint
  2878. @end table
  2879. Default value is "default".
  2880. For more information consult the documentation for the FT_LOAD_*
  2881. libfreetype flags.
  2882. @item shadowcolor
  2883. The color to be used for drawing a shadow behind the drawn text. For the
  2884. syntax of this option, check the "Color" section in the ffmpeg-utils manual.
  2885. The default value of @var{shadowcolor} is "black".
  2886. @item shadowx
  2887. @item shadowy
  2888. The x and y offsets for the text shadow position with respect to the
  2889. position of the text. They can be either positive or negative
  2890. values. The default value for both is "0".
  2891. @item start_number
  2892. The starting frame number for the n/frame_num variable. The default value
  2893. is "0".
  2894. @item tabsize
  2895. The size in number of spaces to use for rendering the tab.
  2896. Default value is 4.
  2897. @item timecode
  2898. Set the initial timecode representation in "hh:mm:ss[:;.]ff"
  2899. format. It can be used with or without text parameter. @var{timecode_rate}
  2900. option must be specified.
  2901. @item timecode_rate, rate, r
  2902. Set the timecode frame rate (timecode only).
  2903. @item text
  2904. The text string to be drawn. The text must be a sequence of UTF-8
  2905. encoded characters.
  2906. This parameter is mandatory if no file is specified with the parameter
  2907. @var{textfile}.
  2908. @item textfile
  2909. A text file containing text to be drawn. The text must be a sequence
  2910. of UTF-8 encoded characters.
  2911. This parameter is mandatory if no text string is specified with the
  2912. parameter @var{text}.
  2913. If both @var{text} and @var{textfile} are specified, an error is thrown.
  2914. @item reload
  2915. If set to 1, the @var{textfile} will be reloaded before each frame.
  2916. Be sure to update it atomically, or it may be read partially, or even fail.
  2917. @item x
  2918. @item y
  2919. The expressions which specify the offsets where text will be drawn
  2920. within the video frame. They are relative to the top/left border of the
  2921. output image.
  2922. The default value of @var{x} and @var{y} is "0".
  2923. See below for the list of accepted constants and functions.
  2924. @end table
  2925. The parameters for @var{x} and @var{y} are expressions containing the
  2926. following constants and functions:
  2927. @table @option
  2928. @item dar
  2929. input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
  2930. @item hsub
  2931. @item vsub
  2932. horizontal and vertical chroma subsample values. For example for the
  2933. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  2934. @item line_h, lh
  2935. the height of each text line
  2936. @item main_h, h, H
  2937. the input height
  2938. @item main_w, w, W
  2939. the input width
  2940. @item max_glyph_a, ascent
  2941. the maximum distance from the baseline to the highest/upper grid
  2942. coordinate used to place a glyph outline point, for all the rendered
  2943. glyphs.
  2944. It is a positive value, due to the grid's orientation with the Y axis
  2945. upwards.
  2946. @item max_glyph_d, descent
  2947. the maximum distance from the baseline to the lowest grid coordinate
  2948. used to place a glyph outline point, for all the rendered glyphs.
  2949. This is a negative value, due to the grid's orientation, with the Y axis
  2950. upwards.
  2951. @item max_glyph_h
  2952. maximum glyph height, that is the maximum height for all the glyphs
  2953. contained in the rendered text, it is equivalent to @var{ascent} -
  2954. @var{descent}.
  2955. @item max_glyph_w
  2956. maximum glyph width, that is the maximum width for all the glyphs
  2957. contained in the rendered text
  2958. @item n
  2959. the number of input frame, starting from 0
  2960. @item rand(min, max)
  2961. return a random number included between @var{min} and @var{max}
  2962. @item sar
  2963. The input sample aspect ratio.
  2964. @item t
  2965. timestamp expressed in seconds, NAN if the input timestamp is unknown
  2966. @item text_h, th
  2967. the height of the rendered text
  2968. @item text_w, tw
  2969. the width of the rendered text
  2970. @item x
  2971. @item y
  2972. the x and y offset coordinates where the text is drawn.
  2973. These parameters allow the @var{x} and @var{y} expressions to refer
  2974. each other, so you can for example specify @code{y=x/dar}.
  2975. @end table
  2976. @anchor{drawtext_expansion}
  2977. @subsection Text expansion
  2978. If @option{expansion} is set to @code{strftime},
  2979. the filter recognizes strftime() sequences in the provided text and
  2980. expands them accordingly. Check the documentation of strftime(). This
  2981. feature is deprecated.
  2982. If @option{expansion} is set to @code{none}, the text is printed verbatim.
  2983. If @option{expansion} is set to @code{normal} (which is the default),
  2984. the following expansion mechanism is used.
  2985. The backslash character '\', followed by any character, always expands to
  2986. the second character.
  2987. Sequence of the form @code{%@{...@}} are expanded. The text between the
  2988. braces is a function name, possibly followed by arguments separated by ':'.
  2989. If the arguments contain special characters or delimiters (':' or '@}'),
  2990. they should be escaped.
  2991. Note that they probably must also be escaped as the value for the
  2992. @option{text} option in the filter argument string and as the filter
  2993. argument in the filtergraph description, and possibly also for the shell,
  2994. that makes up to four levels of escaping; using a text file avoids these
  2995. problems.
  2996. The following functions are available:
  2997. @table @command
  2998. @item expr, e
  2999. The expression evaluation result.
  3000. It must take one argument specifying the expression to be evaluated,
  3001. which accepts the same constants and functions as the @var{x} and
  3002. @var{y} values. Note that not all constants should be used, for
  3003. example the text size is not known when evaluating the expression, so
  3004. the constants @var{text_w} and @var{text_h} will have an undefined
  3005. value.
  3006. @item expr_int_format, eif
  3007. Evaluate the expression's value and output as formatted integer.
  3008. First argument is expression to be evaluated, same as for @var{expr} function.
  3009. Second argument specifies output format. Allowed values are 'x', 'X', 'd' and
  3010. 'u', they are treated exactly as in printf function.
  3011. Third parameter is optional and sets the number of positions taken by output.
  3012. Effectively this allows to add padding with zeros from the left.
  3013. @item gmtime
  3014. The time at which the filter is running, expressed in UTC.
  3015. It can accept an argument: a strftime() format string.
  3016. @item localtime
  3017. The time at which the filter is running, expressed in the local time zone.
  3018. It can accept an argument: a strftime() format string.
  3019. @item metadata
  3020. Frame metadata. It must take one argument specifying metadata key.
  3021. @item n, frame_num
  3022. The frame number, starting from 0.
  3023. @item pict_type
  3024. A 1 character description of the current picture type.
  3025. @item pts
  3026. The timestamp of the current frame.
  3027. It can take up to two arguments.
  3028. The first argument is the format of the timestamp; it defaults to @code{flt}
  3029. for seconds as a decimal number with microsecond accuracy; @code{hms} stands
  3030. for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
  3031. The second argument is an offset added to the timestamp.
  3032. @end table
  3033. @subsection Examples
  3034. @itemize
  3035. @item
  3036. Draw "Test Text" with font FreeSerif, using the default values for the
  3037. optional parameters.
  3038. @example
  3039. drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
  3040. @end example
  3041. @item
  3042. Draw 'Test Text' with font FreeSerif of size 24 at position x=100
  3043. and y=50 (counting from the top-left corner of the screen), text is
  3044. yellow with a red box around it. Both the text and the box have an
  3045. opacity of 20%.
  3046. @example
  3047. drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
  3048. x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
  3049. @end example
  3050. Note that the double quotes are not necessary if spaces are not used
  3051. within the parameter list.
  3052. @item
  3053. Show the text at the center of the video frame:
  3054. @example
  3055. drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h-line_h)/2"
  3056. @end example
  3057. @item
  3058. Show a text line sliding from right to left in the last row of the video
  3059. frame. The file @file{LONG_LINE} is assumed to contain a single line
  3060. with no newlines.
  3061. @example
  3062. drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
  3063. @end example
  3064. @item
  3065. Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
  3066. @example
  3067. drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
  3068. @end example
  3069. @item
  3070. Draw a single green letter "g", at the center of the input video.
  3071. The glyph baseline is placed at half screen height.
  3072. @example
  3073. drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
  3074. @end example
  3075. @item
  3076. Show text for 1 second every 3 seconds:
  3077. @example
  3078. drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
  3079. @end example
  3080. @item
  3081. Use fontconfig to set the font. Note that the colons need to be escaped.
  3082. @example
  3083. drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
  3084. @end example
  3085. @item
  3086. Print the date of a real-time encoding (see strftime(3)):
  3087. @example
  3088. drawtext='fontfile=FreeSans.ttf:text=%@{localtime:%a %b %d %Y@}'
  3089. @end example
  3090. @item
  3091. Shwo text fading in and out (appearing/disappearing):
  3092. @example
  3093. #!/bin/sh
  3094. DS=1.0 # display start
  3095. DE=10.0 # display end
  3096. FID=1.5 # fade in duration
  3097. FOD=5 # fade out duration
  3098. ffplay -f lavfi "color,drawtext=text=TEST:fontsize=50:fontfile=FreeSerif.ttf:fontcolor_expr=ff0000%@{eif\\\\: clip(255*(1*between(t\\, $DS + $FID\\, $DE - $FOD) + ((t - $DS)/$FID)*between(t\\, $DS\\, $DS + $FID) + (-(t - $DE)/$FOD)*between(t\\, $DE - $FOD\\, $DE) )\\, 0\\, 255) \\\\: x\\\\: 2 @}"
  3099. @end example
  3100. @end itemize
  3101. For more information about libfreetype, check:
  3102. @url{http://www.freetype.org/}.
  3103. For more information about fontconfig, check:
  3104. @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
  3105. For more information about libfribidi, check:
  3106. @url{http://fribidi.org/}.
  3107. @section edgedetect
  3108. Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
  3109. The filter accepts the following options:
  3110. @table @option
  3111. @item low
  3112. @item high
  3113. Set low and high threshold values used by the Canny thresholding
  3114. algorithm.
  3115. The high threshold selects the "strong" edge pixels, which are then
  3116. connected through 8-connectivity with the "weak" edge pixels selected
  3117. by the low threshold.
  3118. @var{low} and @var{high} threshold values must be chosen in the range
  3119. [0,1], and @var{low} should be lesser or equal to @var{high}.
  3120. Default value for @var{low} is @code{20/255}, and default value for @var{high}
  3121. is @code{50/255}.
  3122. @item mode
  3123. Define the drawing mode.
  3124. @table @samp
  3125. @item wires
  3126. Draw white/gray wires on black background.
  3127. @item colormix
  3128. Mix the colors to create a paint/cartoon effect.
  3129. @end table
  3130. Default value is @var{wires}.
  3131. @end table
  3132. @subsection Examples
  3133. @itemize
  3134. @item
  3135. Standard edge detection with custom values for the hysteresis thresholding:
  3136. @example
  3137. edgedetect=low=0.1:high=0.4
  3138. @end example
  3139. @item
  3140. Painting effect without thresholding:
  3141. @example
  3142. edgedetect=mode=colormix:high=0
  3143. @end example
  3144. @end itemize
  3145. @section extractplanes
  3146. Extract color channel components from input video stream into
  3147. separate grayscale video streams.
  3148. The filter accepts the following option:
  3149. @table @option
  3150. @item planes
  3151. Set plane(s) to extract.
  3152. Available values for planes are:
  3153. @table @samp
  3154. @item y
  3155. @item u
  3156. @item v
  3157. @item a
  3158. @item r
  3159. @item g
  3160. @item b
  3161. @end table
  3162. Choosing planes not available in the input will result in an error.
  3163. That means you cannot select @code{r}, @code{g}, @code{b} planes
  3164. with @code{y}, @code{u}, @code{v} planes at same time.
  3165. @end table
  3166. @subsection Examples
  3167. @itemize
  3168. @item
  3169. Extract luma, u and v color channel component from input video frame
  3170. into 3 grayscale outputs:
  3171. @example
  3172. ffmpeg -i video.avi -filter_complex 'extractplanes=y+u+v[y][u][v]' -map '[y]' y.avi -map '[u]' u.avi -map '[v]' v.avi
  3173. @end example
  3174. @end itemize
  3175. @section elbg
  3176. Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
  3177. For each input image, the filter will compute the optimal mapping from
  3178. the input to the output given the codebook length, that is the number
  3179. of distinct output colors.
  3180. This filter accepts the following options.
  3181. @table @option
  3182. @item codebook_length, l
  3183. Set codebook length. The value must be a positive integer, and
  3184. represents the number of distinct output colors. Default value is 256.
  3185. @item nb_steps, n
  3186. Set the maximum number of iterations to apply for computing the optimal
  3187. mapping. The higher the value the better the result and the higher the
  3188. computation time. Default value is 1.
  3189. @item seed, s
  3190. Set a random seed, must be an integer included between 0 and
  3191. UINT32_MAX. If not specified, or if explicitly set to -1, the filter
  3192. will try to use a good random seed on a best effort basis.
  3193. @end table
  3194. @section fade
  3195. Apply a fade-in/out effect to the input video.
  3196. It accepts the following parameters:
  3197. @table @option
  3198. @item type, t
  3199. The effect type can be either "in" for a fade-in, or "out" for a fade-out
  3200. effect.
  3201. Default is @code{in}.
  3202. @item start_frame, s
  3203. Specify the number of the frame to start applying the fade
  3204. effect at. Default is 0.
  3205. @item nb_frames, n
  3206. The number of frames that the fade effect lasts. At the end of the
  3207. fade-in effect, the output video will have the same intensity as the input video.
  3208. At the end of the fade-out transition, the output video will be filled with the
  3209. selected @option{color}.
  3210. Default is 25.
  3211. @item alpha
  3212. If set to 1, fade only alpha channel, if one exists on the input.
  3213. Default value is 0.
  3214. @item start_time, st
  3215. Specify the timestamp (in seconds) of the frame to start to apply the fade
  3216. effect. If both start_frame and start_time are specified, the fade will start at
  3217. whichever comes last. Default is 0.
  3218. @item duration, d
  3219. The number of seconds for which the fade effect has to last. At the end of the
  3220. fade-in effect the output video will have the same intensity as the input video,
  3221. at the end of the fade-out transition the output video will be filled with the
  3222. selected @option{color}.
  3223. If both duration and nb_frames are specified, duration is used. Default is 0.
  3224. @item color, c
  3225. Specify the color of the fade. Default is "black".
  3226. @end table
  3227. @subsection Examples
  3228. @itemize
  3229. @item
  3230. Fade in the first 30 frames of video:
  3231. @example
  3232. fade=in:0:30
  3233. @end example
  3234. The command above is equivalent to:
  3235. @example
  3236. fade=t=in:s=0:n=30
  3237. @end example
  3238. @item
  3239. Fade out the last 45 frames of a 200-frame video:
  3240. @example
  3241. fade=out:155:45
  3242. fade=type=out:start_frame=155:nb_frames=45
  3243. @end example
  3244. @item
  3245. Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
  3246. @example
  3247. fade=in:0:25, fade=out:975:25
  3248. @end example
  3249. @item
  3250. Make the first 5 frames yellow, then fade in from frame 5-24:
  3251. @example
  3252. fade=in:5:20:color=yellow
  3253. @end example
  3254. @item
  3255. Fade in alpha over first 25 frames of video:
  3256. @example
  3257. fade=in:0:25:alpha=1
  3258. @end example
  3259. @item
  3260. Make the first 5.5 seconds black, then fade in for 0.5 seconds:
  3261. @example
  3262. fade=t=in:st=5.5:d=0.5
  3263. @end example
  3264. @end itemize
  3265. @section field
  3266. Extract a single field from an interlaced image using stride
  3267. arithmetic to avoid wasting CPU time. The output frames are marked as
  3268. non-interlaced.
  3269. The filter accepts the following options:
  3270. @table @option
  3271. @item type
  3272. Specify whether to extract the top (if the value is @code{0} or
  3273. @code{top}) or the bottom field (if the value is @code{1} or
  3274. @code{bottom}).
  3275. @end table
  3276. @section fieldmatch
  3277. Field matching filter for inverse telecine. It is meant to reconstruct the
  3278. progressive frames from a telecined stream. The filter does not drop duplicated
  3279. frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
  3280. followed by a decimation filter such as @ref{decimate} in the filtergraph.
  3281. The separation of the field matching and the decimation is notably motivated by
  3282. the possibility of inserting a de-interlacing filter fallback between the two.
  3283. If the source has mixed telecined and real interlaced content,
  3284. @code{fieldmatch} will not be able to match fields for the interlaced parts.
  3285. But these remaining combed frames will be marked as interlaced, and thus can be
  3286. de-interlaced by a later filter such as @ref{yadif} before decimation.
  3287. In addition to the various configuration options, @code{fieldmatch} can take an
  3288. optional second stream, activated through the @option{ppsrc} option. If
  3289. enabled, the frames reconstruction will be based on the fields and frames from
  3290. this second stream. This allows the first input to be pre-processed in order to
  3291. help the various algorithms of the filter, while keeping the output lossless
  3292. (assuming the fields are matched properly). Typically, a field-aware denoiser,
  3293. or brightness/contrast adjustments can help.
  3294. Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
  3295. and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
  3296. which @code{fieldmatch} is based on. While the semantic and usage are very
  3297. close, some behaviour and options names can differ.
  3298. The filter accepts the following options:
  3299. @table @option
  3300. @item order
  3301. Specify the assumed field order of the input stream. Available values are:
  3302. @table @samp
  3303. @item auto
  3304. Auto detect parity (use FFmpeg's internal parity value).
  3305. @item bff
  3306. Assume bottom field first.
  3307. @item tff
  3308. Assume top field first.
  3309. @end table
  3310. Note that it is sometimes recommended not to trust the parity announced by the
  3311. stream.
  3312. Default value is @var{auto}.
  3313. @item mode
  3314. Set the matching mode or strategy to use. @option{pc} mode is the safest in the
  3315. sense that it won't risk creating jerkiness due to duplicate frames when
  3316. possible, but if there are bad edits or blended fields it will end up
  3317. outputting combed frames when a good match might actually exist. On the other
  3318. hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
  3319. but will almost always find a good frame if there is one. The other values are
  3320. all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
  3321. jerkiness and creating duplicate frames versus finding good matches in sections
  3322. with bad edits, orphaned fields, blended fields, etc.
  3323. More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
  3324. Available values are:
  3325. @table @samp
  3326. @item pc
  3327. 2-way matching (p/c)
  3328. @item pc_n
  3329. 2-way matching, and trying 3rd match if still combed (p/c + n)
  3330. @item pc_u
  3331. 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
  3332. @item pc_n_ub
  3333. 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
  3334. still combed (p/c + n + u/b)
  3335. @item pcn
  3336. 3-way matching (p/c/n)
  3337. @item pcn_ub
  3338. 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
  3339. detected as combed (p/c/n + u/b)
  3340. @end table
  3341. The parenthesis at the end indicate the matches that would be used for that
  3342. mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
  3343. @var{top}).
  3344. In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
  3345. the slowest.
  3346. Default value is @var{pc_n}.
  3347. @item ppsrc
  3348. Mark the main input stream as a pre-processed input, and enable the secondary
  3349. input stream as the clean source to pick the fields from. See the filter
  3350. introduction for more details. It is similar to the @option{clip2} feature from
  3351. VFM/TFM.
  3352. Default value is @code{0} (disabled).
  3353. @item field
  3354. Set the field to match from. It is recommended to set this to the same value as
  3355. @option{order} unless you experience matching failures with that setting. In
  3356. certain circumstances changing the field that is used to match from can have a
  3357. large impact on matching performance. Available values are:
  3358. @table @samp
  3359. @item auto
  3360. Automatic (same value as @option{order}).
  3361. @item bottom
  3362. Match from the bottom field.
  3363. @item top
  3364. Match from the top field.
  3365. @end table
  3366. Default value is @var{auto}.
  3367. @item mchroma
  3368. Set whether or not chroma is included during the match comparisons. In most
  3369. cases it is recommended to leave this enabled. You should set this to @code{0}
  3370. only if your clip has bad chroma problems such as heavy rainbowing or other
  3371. artifacts. Setting this to @code{0} could also be used to speed things up at
  3372. the cost of some accuracy.
  3373. Default value is @code{1}.
  3374. @item y0
  3375. @item y1
  3376. These define an exclusion band which excludes the lines between @option{y0} and
  3377. @option{y1} from being included in the field matching decision. An exclusion
  3378. band can be used to ignore subtitles, a logo, or other things that may
  3379. interfere with the matching. @option{y0} sets the starting scan line and
  3380. @option{y1} sets the ending line; all lines in between @option{y0} and
  3381. @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
  3382. @option{y0} and @option{y1} to the same value will disable the feature.
  3383. @option{y0} and @option{y1} defaults to @code{0}.
  3384. @item scthresh
  3385. Set the scene change detection threshold as a percentage of maximum change on
  3386. the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
  3387. detection is only relevant in case @option{combmatch}=@var{sc}. The range for
  3388. @option{scthresh} is @code{[0.0, 100.0]}.
  3389. Default value is @code{12.0}.
  3390. @item combmatch
  3391. When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
  3392. account the combed scores of matches when deciding what match to use as the
  3393. final match. Available values are:
  3394. @table @samp
  3395. @item none
  3396. No final matching based on combed scores.
  3397. @item sc
  3398. Combed scores are only used when a scene change is detected.
  3399. @item full
  3400. Use combed scores all the time.
  3401. @end table
  3402. Default is @var{sc}.
  3403. @item combdbg
  3404. Force @code{fieldmatch} to calculate the combed metrics for certain matches and
  3405. print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
  3406. Available values are:
  3407. @table @samp
  3408. @item none
  3409. No forced calculation.
  3410. @item pcn
  3411. Force p/c/n calculations.
  3412. @item pcnub
  3413. Force p/c/n/u/b calculations.
  3414. @end table
  3415. Default value is @var{none}.
  3416. @item cthresh
  3417. This is the area combing threshold used for combed frame detection. This
  3418. essentially controls how "strong" or "visible" combing must be to be detected.
  3419. Larger values mean combing must be more visible and smaller values mean combing
  3420. can be less visible or strong and still be detected. Valid settings are from
  3421. @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
  3422. be detected as combed). This is basically a pixel difference value. A good
  3423. range is @code{[8, 12]}.
  3424. Default value is @code{9}.
  3425. @item chroma
  3426. Sets whether or not chroma is considered in the combed frame decision. Only
  3427. disable this if your source has chroma problems (rainbowing, etc.) that are
  3428. causing problems for the combed frame detection with chroma enabled. Actually,
  3429. using @option{chroma}=@var{0} is usually more reliable, except for the case
  3430. where there is chroma only combing in the source.
  3431. Default value is @code{0}.
  3432. @item blockx
  3433. @item blocky
  3434. Respectively set the x-axis and y-axis size of the window used during combed
  3435. frame detection. This has to do with the size of the area in which
  3436. @option{combpel} pixels are required to be detected as combed for a frame to be
  3437. declared combed. See the @option{combpel} parameter description for more info.
  3438. Possible values are any number that is a power of 2 starting at 4 and going up
  3439. to 512.
  3440. Default value is @code{16}.
  3441. @item combpel
  3442. The number of combed pixels inside any of the @option{blocky} by
  3443. @option{blockx} size blocks on the frame for the frame to be detected as
  3444. combed. While @option{cthresh} controls how "visible" the combing must be, this
  3445. setting controls "how much" combing there must be in any localized area (a
  3446. window defined by the @option{blockx} and @option{blocky} settings) on the
  3447. frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
  3448. which point no frames will ever be detected as combed). This setting is known
  3449. as @option{MI} in TFM/VFM vocabulary.
  3450. Default value is @code{80}.
  3451. @end table
  3452. @anchor{p/c/n/u/b meaning}
  3453. @subsection p/c/n/u/b meaning
  3454. @subsubsection p/c/n
  3455. We assume the following telecined stream:
  3456. @example
  3457. Top fields: 1 2 2 3 4
  3458. Bottom fields: 1 2 3 4 4
  3459. @end example
  3460. The numbers correspond to the progressive frame the fields relate to. Here, the
  3461. first two frames are progressive, the 3rd and 4th are combed, and so on.
  3462. When @code{fieldmatch} is configured to run a matching from bottom
  3463. (@option{field}=@var{bottom}) this is how this input stream get transformed:
  3464. @example
  3465. Input stream:
  3466. T 1 2 2 3 4
  3467. B 1 2 3 4 4 <-- matching reference
  3468. Matches: c c n n c
  3469. Output stream:
  3470. T 1 2 3 4 4
  3471. B 1 2 3 4 4
  3472. @end example
  3473. As a result of the field matching, we can see that some frames get duplicated.
  3474. To perform a complete inverse telecine, you need to rely on a decimation filter
  3475. after this operation. See for instance the @ref{decimate} filter.
  3476. The same operation now matching from top fields (@option{field}=@var{top})
  3477. looks like this:
  3478. @example
  3479. Input stream:
  3480. T 1 2 2 3 4 <-- matching reference
  3481. B 1 2 3 4 4
  3482. Matches: c c p p c
  3483. Output stream:
  3484. T 1 2 2 3 4
  3485. B 1 2 2 3 4
  3486. @end example
  3487. In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
  3488. basically, they refer to the frame and field of the opposite parity:
  3489. @itemize
  3490. @item @var{p} matches the field of the opposite parity in the previous frame
  3491. @item @var{c} matches the field of the opposite parity in the current frame
  3492. @item @var{n} matches the field of the opposite parity in the next frame
  3493. @end itemize
  3494. @subsubsection u/b
  3495. The @var{u} and @var{b} matching are a bit special in the sense that they match
  3496. from the opposite parity flag. In the following examples, we assume that we are
  3497. currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
  3498. 'x' is placed above and below each matched fields.
  3499. With bottom matching (@option{field}=@var{bottom}):
  3500. @example
  3501. Match: c p n b u
  3502. x x x x x
  3503. Top 1 2 2 1 2 2 1 2 2 1 2 2 1 2 2
  3504. Bottom 1 2 3 1 2 3 1 2 3 1 2 3 1 2 3
  3505. x x x x x
  3506. Output frames:
  3507. 2 1 2 2 2
  3508. 2 2 2 1 3
  3509. @end example
  3510. With top matching (@option{field}=@var{top}):
  3511. @example
  3512. Match: c p n b u
  3513. x x x x x
  3514. Top 1 2 2 1 2 2 1 2 2 1 2 2 1 2 2
  3515. Bottom 1 2 3 1 2 3 1 2 3 1 2 3 1 2 3
  3516. x x x x x
  3517. Output frames:
  3518. 2 2 2 1 2
  3519. 2 1 3 2 2
  3520. @end example
  3521. @subsection Examples
  3522. Simple IVTC of a top field first telecined stream:
  3523. @example
  3524. fieldmatch=order=tff:combmatch=none, decimate
  3525. @end example
  3526. Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
  3527. @example
  3528. fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
  3529. @end example
  3530. @section fieldorder
  3531. Transform the field order of the input video.
  3532. It accepts the following parameters:
  3533. @table @option
  3534. @item order
  3535. The output field order. Valid values are @var{tff} for top field first or @var{bff}
  3536. for bottom field first.
  3537. @end table
  3538. The default value is @samp{tff}.
  3539. The transformation is done by shifting the picture content up or down
  3540. by one line, and filling the remaining line with appropriate picture content.
  3541. This method is consistent with most broadcast field order converters.
  3542. If the input video is not flagged as being interlaced, or it is already
  3543. flagged as being of the required output field order, then this filter does
  3544. not alter the incoming video.
  3545. It is very useful when converting to or from PAL DV material,
  3546. which is bottom field first.
  3547. For example:
  3548. @example
  3549. ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
  3550. @end example
  3551. @section fifo
  3552. Buffer input images and send them when they are requested.
  3553. It is mainly useful when auto-inserted by the libavfilter
  3554. framework.
  3555. It does not take parameters.
  3556. @anchor{format}
  3557. @section format
  3558. Convert the input video to one of the specified pixel formats.
  3559. Libavfilter will try to pick one that is suitable as input to
  3560. the next filter.
  3561. It accepts the following parameters:
  3562. @table @option
  3563. @item pix_fmts
  3564. A '|'-separated list of pixel format names, such as
  3565. "pix_fmts=yuv420p|monow|rgb24".
  3566. @end table
  3567. @subsection Examples
  3568. @itemize
  3569. @item
  3570. Convert the input video to the @var{yuv420p} format
  3571. @example
  3572. format=pix_fmts=yuv420p
  3573. @end example
  3574. Convert the input video to any of the formats in the list
  3575. @example
  3576. format=pix_fmts=yuv420p|yuv444p|yuv410p
  3577. @end example
  3578. @end itemize
  3579. @anchor{fps}
  3580. @section fps
  3581. Convert the video to specified constant frame rate by duplicating or dropping
  3582. frames as necessary.
  3583. It accepts the following parameters:
  3584. @table @option
  3585. @item fps
  3586. The desired output frame rate. The default is @code{25}.
  3587. @item round
  3588. Rounding method.
  3589. Possible values are:
  3590. @table @option
  3591. @item zero
  3592. zero round towards 0
  3593. @item inf
  3594. round away from 0
  3595. @item down
  3596. round towards -infinity
  3597. @item up
  3598. round towards +infinity
  3599. @item near
  3600. round to nearest
  3601. @end table
  3602. The default is @code{near}.
  3603. @item start_time
  3604. Assume the first PTS should be the given value, in seconds. This allows for
  3605. padding/trimming at the start of stream. By default, no assumption is made
  3606. about the first frame's expected PTS, so no padding or trimming is done.
  3607. For example, this could be set to 0 to pad the beginning with duplicates of
  3608. the first frame if a video stream starts after the audio stream or to trim any
  3609. frames with a negative PTS.
  3610. @end table
  3611. Alternatively, the options can be specified as a flat string:
  3612. @var{fps}[:@var{round}].
  3613. See also the @ref{setpts} filter.
  3614. @subsection Examples
  3615. @itemize
  3616. @item
  3617. A typical usage in order to set the fps to 25:
  3618. @example
  3619. fps=fps=25
  3620. @end example
  3621. @item
  3622. Sets the fps to 24, using abbreviation and rounding method to round to nearest:
  3623. @example
  3624. fps=fps=film:round=near
  3625. @end example
  3626. @end itemize
  3627. @section framepack
  3628. Pack two different video streams into a stereoscopic video, setting proper
  3629. metadata on supported codecs. The two views should have the same size and
  3630. framerate and processing will stop when the shorter video ends. Please note
  3631. that you may conveniently adjust view properties with the @ref{scale} and
  3632. @ref{fps} filters.
  3633. It accepts the following parameters:
  3634. @table @option
  3635. @item format
  3636. The desired packing format. Supported values are:
  3637. @table @option
  3638. @item sbs
  3639. The views are next to each other (default).
  3640. @item tab
  3641. The views are on top of each other.
  3642. @item lines
  3643. The views are packed by line.
  3644. @item columns
  3645. The views are packed by column.
  3646. @item frameseq
  3647. The views are temporally interleaved.
  3648. @end table
  3649. @end table
  3650. Some examples:
  3651. @example
  3652. # Convert left and right views into a frame-sequential video
  3653. ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
  3654. # Convert views into a side-by-side video with the same output resolution as the input
  3655. ffmpeg -i LEFT -i RIGHT -filter_complex [0:v]scale=w=iw/2[left],[1:v]scale=w=iw/2[right],[left][right]framepack=sbs OUTPUT
  3656. @end example
  3657. @section framestep
  3658. Select one frame every N-th frame.
  3659. This filter accepts the following option:
  3660. @table @option
  3661. @item step
  3662. Select frame after every @code{step} frames.
  3663. Allowed values are positive integers higher than 0. Default value is @code{1}.
  3664. @end table
  3665. @anchor{frei0r}
  3666. @section frei0r
  3667. Apply a frei0r effect to the input video.
  3668. To enable the compilation of this filter, you need to install the frei0r
  3669. header and configure FFmpeg with @code{--enable-frei0r}.
  3670. It accepts the following parameters:
  3671. @table @option
  3672. @item filter_name
  3673. The name of the frei0r effect to load. If the environment variable
  3674. @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
  3675. directories specified by the colon-separated list in @env{FREIOR_PATH}.
  3676. Otherwise, the standard frei0r paths are searched, in this order:
  3677. @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
  3678. @file{/usr/lib/frei0r-1/}.
  3679. @item filter_params
  3680. A '|'-separated list of parameters to pass to the frei0r effect.
  3681. @end table
  3682. A frei0r effect parameter can be a boolean (its value is either
  3683. "y" or "n"), a double, a color (specified as
  3684. @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
  3685. numbers between 0.0 and 1.0, inclusive) or by a color description specified in the "Color"
  3686. section in the ffmpeg-utils manual), a position (specified as @var{X}/@var{Y}, where
  3687. @var{X} and @var{Y} are floating point numbers) and/or a string.
  3688. The number and types of parameters depend on the loaded effect. If an
  3689. effect parameter is not specified, the default value is set.
  3690. @subsection Examples
  3691. @itemize
  3692. @item
  3693. Apply the distort0r effect, setting the first two double parameters:
  3694. @example
  3695. frei0r=filter_name=distort0r:filter_params=0.5|0.01
  3696. @end example
  3697. @item
  3698. Apply the colordistance effect, taking a color as the first parameter:
  3699. @example
  3700. frei0r=colordistance:0.2/0.3/0.4
  3701. frei0r=colordistance:violet
  3702. frei0r=colordistance:0x112233
  3703. @end example
  3704. @item
  3705. Apply the perspective effect, specifying the top left and top right image
  3706. positions:
  3707. @example
  3708. frei0r=perspective:0.2/0.2|0.8/0.2
  3709. @end example
  3710. @end itemize
  3711. For more information, see
  3712. @url{http://frei0r.dyne.org}
  3713. @section geq
  3714. The filter accepts the following options:
  3715. @table @option
  3716. @item lum_expr, lum
  3717. Set the luminance expression.
  3718. @item cb_expr, cb
  3719. Set the chrominance blue expression.
  3720. @item cr_expr, cr
  3721. Set the chrominance red expression.
  3722. @item alpha_expr, a
  3723. Set the alpha expression.
  3724. @item red_expr, r
  3725. Set the red expression.
  3726. @item green_expr, g
  3727. Set the green expression.
  3728. @item blue_expr, b
  3729. Set the blue expression.
  3730. @end table
  3731. The colorspace is selected according to the specified options. If one
  3732. of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
  3733. options is specified, the filter will automatically select a YCbCr
  3734. colorspace. If one of the @option{red_expr}, @option{green_expr}, or
  3735. @option{blue_expr} options is specified, it will select an RGB
  3736. colorspace.
  3737. If one of the chrominance expression is not defined, it falls back on the other
  3738. one. If no alpha expression is specified it will evaluate to opaque value.
  3739. If none of chrominance expressions are specified, they will evaluate
  3740. to the luminance expression.
  3741. The expressions can use the following variables and functions:
  3742. @table @option
  3743. @item N
  3744. The sequential number of the filtered frame, starting from @code{0}.
  3745. @item X
  3746. @item Y
  3747. The coordinates of the current sample.
  3748. @item W
  3749. @item H
  3750. The width and height of the image.
  3751. @item SW
  3752. @item SH
  3753. Width and height scale depending on the currently filtered plane. It is the
  3754. ratio between the corresponding luma plane number of pixels and the current
  3755. plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
  3756. @code{0.5,0.5} for chroma planes.
  3757. @item T
  3758. Time of the current frame, expressed in seconds.
  3759. @item p(x, y)
  3760. Return the value of the pixel at location (@var{x},@var{y}) of the current
  3761. plane.
  3762. @item lum(x, y)
  3763. Return the value of the pixel at location (@var{x},@var{y}) of the luminance
  3764. plane.
  3765. @item cb(x, y)
  3766. Return the value of the pixel at location (@var{x},@var{y}) of the
  3767. blue-difference chroma plane. Return 0 if there is no such plane.
  3768. @item cr(x, y)
  3769. Return the value of the pixel at location (@var{x},@var{y}) of the
  3770. red-difference chroma plane. Return 0 if there is no such plane.
  3771. @item r(x, y)
  3772. @item g(x, y)
  3773. @item b(x, y)
  3774. Return the value of the pixel at location (@var{x},@var{y}) of the
  3775. red/green/blue component. Return 0 if there is no such component.
  3776. @item alpha(x, y)
  3777. Return the value of the pixel at location (@var{x},@var{y}) of the alpha
  3778. plane. Return 0 if there is no such plane.
  3779. @end table
  3780. For functions, if @var{x} and @var{y} are outside the area, the value will be
  3781. automatically clipped to the closer edge.
  3782. @subsection Examples
  3783. @itemize
  3784. @item
  3785. Flip the image horizontally:
  3786. @example
  3787. geq=p(W-X\,Y)
  3788. @end example
  3789. @item
  3790. Generate a bidimensional sine wave, with angle @code{PI/3} and a
  3791. wavelength of 100 pixels:
  3792. @example
  3793. geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
  3794. @end example
  3795. @item
  3796. Generate a fancy enigmatic moving light:
  3797. @example
  3798. nullsrc=s=256x256,geq=random(1)/hypot(X-cos(N*0.07)*W/2-W/2\,Y-sin(N*0.09)*H/2-H/2)^2*1000000*sin(N*0.02):128:128
  3799. @end example
  3800. @item
  3801. Generate a quick emboss effect:
  3802. @example
  3803. format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
  3804. @end example
  3805. @item
  3806. Modify RGB components depending on pixel position:
  3807. @example
  3808. geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
  3809. @end example
  3810. @end itemize
  3811. @section gradfun
  3812. Fix the banding artifacts that are sometimes introduced into nearly flat
  3813. regions by truncation to 8bit color depth.
  3814. Interpolate the gradients that should go where the bands are, and
  3815. dither them.
  3816. It is designed for playback only. Do not use it prior to
  3817. lossy compression, because compression tends to lose the dither and
  3818. bring back the bands.
  3819. It accepts the following parameters:
  3820. @table @option
  3821. @item strength
  3822. The maximum amount by which the filter will change any one pixel. This is also
  3823. the threshold for detecting nearly flat regions. Acceptable values range from
  3824. .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
  3825. valid range.
  3826. @item radius
  3827. The neighborhood to fit the gradient to. A larger radius makes for smoother
  3828. gradients, but also prevents the filter from modifying the pixels near detailed
  3829. regions. Acceptable values are 8-32; the default value is 16. Out-of-range
  3830. values will be clipped to the valid range.
  3831. @end table
  3832. Alternatively, the options can be specified as a flat string:
  3833. @var{strength}[:@var{radius}]
  3834. @subsection Examples
  3835. @itemize
  3836. @item
  3837. Apply the filter with a @code{3.5} strength and radius of @code{8}:
  3838. @example
  3839. gradfun=3.5:8
  3840. @end example
  3841. @item
  3842. Specify radius, omitting the strength (which will fall-back to the default
  3843. value):
  3844. @example
  3845. gradfun=radius=8
  3846. @end example
  3847. @end itemize
  3848. @anchor{haldclut}
  3849. @section haldclut
  3850. Apply a Hald CLUT to a video stream.
  3851. First input is the video stream to process, and second one is the Hald CLUT.
  3852. The Hald CLUT input can be a simple picture or a complete video stream.
  3853. The filter accepts the following options:
  3854. @table @option
  3855. @item shortest
  3856. Force termination when the shortest input terminates. Default is @code{0}.
  3857. @item repeatlast
  3858. Continue applying the last CLUT after the end of the stream. A value of
  3859. @code{0} disable the filter after the last frame of the CLUT is reached.
  3860. Default is @code{1}.
  3861. @end table
  3862. @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
  3863. filters share the same internals).
  3864. More information about the Hald CLUT can be found on Eskil Steenberg's website
  3865. (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
  3866. @subsection Workflow examples
  3867. @subsubsection Hald CLUT video stream
  3868. Generate an identity Hald CLUT stream altered with various effects:
  3869. @example
  3870. ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "hue=H=2*PI*t:s=sin(2*PI*t)+1, curves=cross_process" -t 10 -c:v ffv1 clut.nut
  3871. @end example
  3872. Note: make sure you use a lossless codec.
  3873. Then use it with @code{haldclut} to apply it on some random stream:
  3874. @example
  3875. ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
  3876. @end example
  3877. The Hald CLUT will be applied to the 10 first seconds (duration of
  3878. @file{clut.nut}), then the latest picture of that CLUT stream will be applied
  3879. to the remaining frames of the @code{mandelbrot} stream.
  3880. @subsubsection Hald CLUT with preview
  3881. A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
  3882. @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
  3883. biggest possible square starting at the top left of the picture. The remaining
  3884. padding pixels (bottom or right) will be ignored. This area can be used to add
  3885. a preview of the Hald CLUT.
  3886. Typically, the following generated Hald CLUT will be supported by the
  3887. @code{haldclut} filter:
  3888. @example
  3889. ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
  3890. pad=iw+320 [padded_clut];
  3891. smptebars=s=320x256, split [a][b];
  3892. [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
  3893. [main][b] overlay=W-320" -frames:v 1 clut.png
  3894. @end example
  3895. It contains the original and a preview of the effect of the CLUT: SMPTE color
  3896. bars are displayed on the right-top, and below the same color bars processed by
  3897. the color changes.
  3898. Then, the effect of this Hald CLUT can be visualized with:
  3899. @example
  3900. ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
  3901. @end example
  3902. @section hflip
  3903. Flip the input video horizontally.
  3904. For example, to horizontally flip the input video with @command{ffmpeg}:
  3905. @example
  3906. ffmpeg -i in.avi -vf "hflip" out.avi
  3907. @end example
  3908. @section histeq
  3909. This filter applies a global color histogram equalization on a
  3910. per-frame basis.
  3911. It can be used to correct video that has a compressed range of pixel
  3912. intensities. The filter redistributes the pixel intensities to
  3913. equalize their distribution across the intensity range. It may be
  3914. viewed as an "automatically adjusting contrast filter". This filter is
  3915. useful only for correcting degraded or poorly captured source
  3916. video.
  3917. The filter accepts the following options:
  3918. @table @option
  3919. @item strength
  3920. Determine the amount of equalization to be applied. As the strength
  3921. is reduced, the distribution of pixel intensities more-and-more
  3922. approaches that of the input frame. The value must be a float number
  3923. in the range [0,1] and defaults to 0.200.
  3924. @item intensity
  3925. Set the maximum intensity that can generated and scale the output
  3926. values appropriately. The strength should be set as desired and then
  3927. the intensity can be limited if needed to avoid washing-out. The value
  3928. must be a float number in the range [0,1] and defaults to 0.210.
  3929. @item antibanding
  3930. Set the antibanding level. If enabled the filter will randomly vary
  3931. the luminance of output pixels by a small amount to avoid banding of
  3932. the histogram. Possible values are @code{none}, @code{weak} or
  3933. @code{strong}. It defaults to @code{none}.
  3934. @end table
  3935. @section histogram
  3936. Compute and draw a color distribution histogram for the input video.
  3937. The computed histogram is a representation of the color component
  3938. distribution in an image.
  3939. The filter accepts the following options:
  3940. @table @option
  3941. @item mode
  3942. Set histogram mode.
  3943. It accepts the following values:
  3944. @table @samp
  3945. @item levels
  3946. Standard histogram that displays the color components distribution in an
  3947. image. Displays color graph for each color component. Shows distribution of
  3948. the Y, U, V, A or R, G, B components, depending on input format, in the
  3949. current frame. Below each graph a color component scale meter is shown.
  3950. @item color
  3951. Displays chroma values (U/V color placement) in a two dimensional
  3952. graph (which is called a vectorscope). The brighter a pixel in the
  3953. vectorscope, the more pixels of the input frame correspond to that pixel
  3954. (i.e., more pixels have this chroma value). The V component is displayed on
  3955. the horizontal (X) axis, with the leftmost side being V = 0 and the rightmost
  3956. side being V = 255. The U component is displayed on the vertical (Y) axis,
  3957. with the top representing U = 0 and the bottom representing U = 255.
  3958. The position of a white pixel in the graph corresponds to the chroma value of
  3959. a pixel of the input clip. The graph can therefore be used to read the hue
  3960. (color flavor) and the saturation (the dominance of the hue in the color). As
  3961. the hue of a color changes, it moves around the square. At the center of the
  3962. square the saturation is zero, which means that the corresponding pixel has no
  3963. color. If the amount of a specific color is increased (while leaving the other
  3964. colors unchanged) the saturation increases, and the indicator moves towards
  3965. the edge of the square.
  3966. @item color2
  3967. Chroma values in vectorscope, similar as @code{color} but actual chroma values
  3968. are displayed.
  3969. @item waveform
  3970. Per row/column color component graph. In row mode, the graph on the left side
  3971. represents color component value 0 and the right side represents value = 255.
  3972. In column mode, the top side represents color component value = 0 and bottom
  3973. side represents value = 255.
  3974. @end table
  3975. Default value is @code{levels}.
  3976. @item level_height
  3977. Set height of level in @code{levels}. Default value is @code{200}.
  3978. Allowed range is [50, 2048].
  3979. @item scale_height
  3980. Set height of color scale in @code{levels}. Default value is @code{12}.
  3981. Allowed range is [0, 40].
  3982. @item step
  3983. Set step for @code{waveform} mode. Smaller values are useful to find out how
  3984. many values of the same luminance are distributed across input rows/columns.
  3985. Default value is @code{10}. Allowed range is [1, 255].
  3986. @item waveform_mode
  3987. Set mode for @code{waveform}. Can be either @code{row}, or @code{column}.
  3988. Default is @code{row}.
  3989. @item waveform_mirror
  3990. Set mirroring mode for @code{waveform}. @code{0} means unmirrored, @code{1}
  3991. means mirrored. In mirrored mode, higher values will be represented on the left
  3992. side for @code{row} mode and at the top for @code{column} mode. Default is
  3993. @code{0} (unmirrored).
  3994. @item display_mode
  3995. Set display mode for @code{waveform} and @code{levels}.
  3996. It accepts the following values:
  3997. @table @samp
  3998. @item parade
  3999. Display separate graph for the color components side by side in
  4000. @code{row} waveform mode or one below the other in @code{column} waveform mode
  4001. for @code{waveform} histogram mode. For @code{levels} histogram mode,
  4002. per color component graphs are placed below each other.
  4003. Using this display mode in @code{waveform} histogram mode makes it easy to
  4004. spot color casts in the highlights and shadows of an image, by comparing the
  4005. contours of the top and the bottom graphs of each waveform. Since whites,
  4006. grays, and blacks are characterized by exactly equal amounts of red, green,
  4007. and blue, neutral areas of the picture should display three waveforms of
  4008. roughly equal width/height. If not, the correction is easy to perform by
  4009. making level adjustments the three waveforms.
  4010. @item overlay
  4011. Presents information identical to that in the @code{parade}, except
  4012. that the graphs representing color components are superimposed directly
  4013. over one another.
  4014. This display mode in @code{waveform} histogram mode makes it easier to spot
  4015. relative differences or similarities in overlapping areas of the color
  4016. components that are supposed to be identical, such as neutral whites, grays,
  4017. or blacks.
  4018. @end table
  4019. Default is @code{parade}.
  4020. @item levels_mode
  4021. Set mode for @code{levels}. Can be either @code{linear}, or @code{logarithmic}.
  4022. Default is @code{linear}.
  4023. @end table
  4024. @subsection Examples
  4025. @itemize
  4026. @item
  4027. Calculate and draw histogram:
  4028. @example
  4029. ffplay -i input -vf histogram
  4030. @end example
  4031. @end itemize
  4032. @anchor{hqdn3d}
  4033. @section hqdn3d
  4034. This is a high precision/quality 3d denoise filter. It aims to reduce
  4035. image noise, producing smooth images and making still images really
  4036. still. It should enhance compressibility.
  4037. It accepts the following optional parameters:
  4038. @table @option
  4039. @item luma_spatial
  4040. A non-negative floating point number which specifies spatial luma strength.
  4041. It defaults to 4.0.
  4042. @item chroma_spatial
  4043. A non-negative floating point number which specifies spatial chroma strength.
  4044. It defaults to 3.0*@var{luma_spatial}/4.0.
  4045. @item luma_tmp
  4046. A floating point number which specifies luma temporal strength. It defaults to
  4047. 6.0*@var{luma_spatial}/4.0.
  4048. @item chroma_tmp
  4049. A floating point number which specifies chroma temporal strength. It defaults to
  4050. @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
  4051. @end table
  4052. @section hqx
  4053. Apply a high-quality magnification filter designed for pixel art. This filter
  4054. was originally created by Maxim Stepin.
  4055. It accepts the following option:
  4056. @table @option
  4057. @item n
  4058. Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
  4059. @code{hq3x} and @code{4} for @code{hq4x}.
  4060. Default is @code{3}.
  4061. @end table
  4062. @section hue
  4063. Modify the hue and/or the saturation of the input.
  4064. It accepts the following parameters:
  4065. @table @option
  4066. @item h
  4067. Specify the hue angle as a number of degrees. It accepts an expression,
  4068. and defaults to "0".
  4069. @item s
  4070. Specify the saturation in the [-10,10] range. It accepts an expression and
  4071. defaults to "1".
  4072. @item H
  4073. Specify the hue angle as a number of radians. It accepts an
  4074. expression, and defaults to "0".
  4075. @item b
  4076. Specify the brightness in the [-10,10] range. It accepts an expression and
  4077. defaults to "0".
  4078. @end table
  4079. @option{h} and @option{H} are mutually exclusive, and can't be
  4080. specified at the same time.
  4081. The @option{b}, @option{h}, @option{H} and @option{s} option values are
  4082. expressions containing the following constants:
  4083. @table @option
  4084. @item n
  4085. frame count of the input frame starting from 0
  4086. @item pts
  4087. presentation timestamp of the input frame expressed in time base units
  4088. @item r
  4089. frame rate of the input video, NAN if the input frame rate is unknown
  4090. @item t
  4091. timestamp expressed in seconds, NAN if the input timestamp is unknown
  4092. @item tb
  4093. time base of the input video
  4094. @end table
  4095. @subsection Examples
  4096. @itemize
  4097. @item
  4098. Set the hue to 90 degrees and the saturation to 1.0:
  4099. @example
  4100. hue=h=90:s=1
  4101. @end example
  4102. @item
  4103. Same command but expressing the hue in radians:
  4104. @example
  4105. hue=H=PI/2:s=1
  4106. @end example
  4107. @item
  4108. Rotate hue and make the saturation swing between 0
  4109. and 2 over a period of 1 second:
  4110. @example
  4111. hue="H=2*PI*t: s=sin(2*PI*t)+1"
  4112. @end example
  4113. @item
  4114. Apply a 3 seconds saturation fade-in effect starting at 0:
  4115. @example
  4116. hue="s=min(t/3\,1)"
  4117. @end example
  4118. The general fade-in expression can be written as:
  4119. @example
  4120. hue="s=min(0\, max((t-START)/DURATION\, 1))"
  4121. @end example
  4122. @item
  4123. Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
  4124. @example
  4125. hue="s=max(0\, min(1\, (8-t)/3))"
  4126. @end example
  4127. The general fade-out expression can be written as:
  4128. @example
  4129. hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
  4130. @end example
  4131. @end itemize
  4132. @subsection Commands
  4133. This filter supports the following commands:
  4134. @table @option
  4135. @item b
  4136. @item s
  4137. @item h
  4138. @item H
  4139. Modify the hue and/or the saturation and/or brightness of the input video.
  4140. The command accepts the same syntax of the corresponding option.
  4141. If the specified expression is not valid, it is kept at its current
  4142. value.
  4143. @end table
  4144. @section idet
  4145. Detect video interlacing type.
  4146. This filter tries to detect if the input is interlaced or progressive,
  4147. top or bottom field first.
  4148. The filter accepts the following options:
  4149. @table @option
  4150. @item intl_thres
  4151. Set interlacing threshold.
  4152. @item prog_thres
  4153. Set progressive threshold.
  4154. @end table
  4155. @section il
  4156. Deinterleave or interleave fields.
  4157. This filter allows one to process interlaced images fields without
  4158. deinterlacing them. Deinterleaving splits the input frame into 2
  4159. fields (so called half pictures). Odd lines are moved to the top
  4160. half of the output image, even lines to the bottom half.
  4161. You can process (filter) them independently and then re-interleave them.
  4162. The filter accepts the following options:
  4163. @table @option
  4164. @item luma_mode, l
  4165. @item chroma_mode, c
  4166. @item alpha_mode, a
  4167. Available values for @var{luma_mode}, @var{chroma_mode} and
  4168. @var{alpha_mode} are:
  4169. @table @samp
  4170. @item none
  4171. Do nothing.
  4172. @item deinterleave, d
  4173. Deinterleave fields, placing one above the other.
  4174. @item interleave, i
  4175. Interleave fields. Reverse the effect of deinterleaving.
  4176. @end table
  4177. Default value is @code{none}.
  4178. @item luma_swap, ls
  4179. @item chroma_swap, cs
  4180. @item alpha_swap, as
  4181. Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
  4182. @end table
  4183. @section interlace
  4184. Simple interlacing filter from progressive contents. This interleaves upper (or
  4185. lower) lines from odd frames with lower (or upper) lines from even frames,
  4186. halving the frame rate and preserving image height.
  4187. @example
  4188. Original Original New Frame
  4189. Frame 'j' Frame 'j+1' (tff)
  4190. ========== =========== ==================
  4191. Line 0 --------------------> Frame 'j' Line 0
  4192. Line 1 Line 1 ----> Frame 'j+1' Line 1
  4193. Line 2 ---------------------> Frame 'j' Line 2
  4194. Line 3 Line 3 ----> Frame 'j+1' Line 3
  4195. ... ... ...
  4196. New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
  4197. @end example
  4198. It accepts the following optional parameters:
  4199. @table @option
  4200. @item scan
  4201. This determines whether the interlaced frame is taken from the even
  4202. (tff - default) or odd (bff) lines of the progressive frame.
  4203. @item lowpass
  4204. Enable (default) or disable the vertical lowpass filter to avoid twitter
  4205. interlacing and reduce moire patterns.
  4206. @end table
  4207. @section kerndeint
  4208. Deinterlace input video by applying Donald Graft's adaptive kernel
  4209. deinterling. Work on interlaced parts of a video to produce
  4210. progressive frames.
  4211. The description of the accepted parameters follows.
  4212. @table @option
  4213. @item thresh
  4214. Set the threshold which affects the filter's tolerance when
  4215. determining if a pixel line must be processed. It must be an integer
  4216. in the range [0,255] and defaults to 10. A value of 0 will result in
  4217. applying the process on every pixels.
  4218. @item map
  4219. Paint pixels exceeding the threshold value to white if set to 1.
  4220. Default is 0.
  4221. @item order
  4222. Set the fields order. Swap fields if set to 1, leave fields alone if
  4223. 0. Default is 0.
  4224. @item sharp
  4225. Enable additional sharpening if set to 1. Default is 0.
  4226. @item twoway
  4227. Enable twoway sharpening if set to 1. Default is 0.
  4228. @end table
  4229. @subsection Examples
  4230. @itemize
  4231. @item
  4232. Apply default values:
  4233. @example
  4234. kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
  4235. @end example
  4236. @item
  4237. Enable additional sharpening:
  4238. @example
  4239. kerndeint=sharp=1
  4240. @end example
  4241. @item
  4242. Paint processed pixels in white:
  4243. @example
  4244. kerndeint=map=1
  4245. @end example
  4246. @end itemize
  4247. @section lenscorrection
  4248. Correct radial lens distortion
  4249. This filter can be used to correct for radial distortion as can result from the use
  4250. of wide angle lenses, and thereby re-rectify the image. To find the right parameters
  4251. one can use tools available for example as part of opencv or simply trial-and-error.
  4252. To use opencv use the calibration sample (under samples/cpp) from the opencv sources
  4253. and extract the k1 and k2 coefficients from the resulting matrix.
  4254. Note that effectively the same filter is available in the open-source tools Krita and
  4255. Digikam from the KDE project.
  4256. In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
  4257. this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
  4258. brightness distribution, so you may want to use both filters together in certain
  4259. cases, though you will have to take care of ordering, i.e. whether vignetting should
  4260. be applied before or after lens correction.
  4261. @subsection Options
  4262. The filter accepts the following options:
  4263. @table @option
  4264. @item cx
  4265. Relative x-coordinate of the focal point of the image, and thereby the center of the
  4266. distrortion. This value has a range [0,1] and is expressed as fractions of the image
  4267. width.
  4268. @item cy
  4269. Relative y-coordinate of the focal point of the image, and thereby the center of the
  4270. distrortion. This value has a range [0,1] and is expressed as fractions of the image
  4271. height.
  4272. @item k1
  4273. Coefficient of the quadratic correction term. 0.5 means no correction.
  4274. @item k2
  4275. Coefficient of the double quadratic correction term. 0.5 means no correction.
  4276. @end table
  4277. The formula that generates the correction is:
  4278. @var{r_src} = @var{r_tgt} * (1 + @var{k1} * (@var{r_tgt} / @var{r_0})^2 + @var{k2} * (@var{r_tgt} / @var{r_0})^4)
  4279. where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
  4280. distances from the focal point in the source and target images, respectively.
  4281. @anchor{lut3d}
  4282. @section lut3d
  4283. Apply a 3D LUT to an input video.
  4284. The filter accepts the following options:
  4285. @table @option
  4286. @item file
  4287. Set the 3D LUT file name.
  4288. Currently supported formats:
  4289. @table @samp
  4290. @item 3dl
  4291. AfterEffects
  4292. @item cube
  4293. Iridas
  4294. @item dat
  4295. DaVinci
  4296. @item m3d
  4297. Pandora
  4298. @end table
  4299. @item interp
  4300. Select interpolation mode.
  4301. Available values are:
  4302. @table @samp
  4303. @item nearest
  4304. Use values from the nearest defined point.
  4305. @item trilinear
  4306. Interpolate values using the 8 points defining a cube.
  4307. @item tetrahedral
  4308. Interpolate values using a tetrahedron.
  4309. @end table
  4310. @end table
  4311. @section lut, lutrgb, lutyuv
  4312. Compute a look-up table for binding each pixel component input value
  4313. to an output value, and apply it to the input video.
  4314. @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
  4315. to an RGB input video.
  4316. These filters accept the following parameters:
  4317. @table @option
  4318. @item c0
  4319. set first pixel component expression
  4320. @item c1
  4321. set second pixel component expression
  4322. @item c2
  4323. set third pixel component expression
  4324. @item c3
  4325. set fourth pixel component expression, corresponds to the alpha component
  4326. @item r
  4327. set red component expression
  4328. @item g
  4329. set green component expression
  4330. @item b
  4331. set blue component expression
  4332. @item a
  4333. alpha component expression
  4334. @item y
  4335. set Y/luminance component expression
  4336. @item u
  4337. set U/Cb component expression
  4338. @item v
  4339. set V/Cr component expression
  4340. @end table
  4341. Each of them specifies the expression to use for computing the lookup table for
  4342. the corresponding pixel component values.
  4343. The exact component associated to each of the @var{c*} options depends on the
  4344. format in input.
  4345. The @var{lut} filter requires either YUV or RGB pixel formats in input,
  4346. @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
  4347. The expressions can contain the following constants and functions:
  4348. @table @option
  4349. @item w
  4350. @item h
  4351. The input width and height.
  4352. @item val
  4353. The input value for the pixel component.
  4354. @item clipval
  4355. The input value, clipped to the @var{minval}-@var{maxval} range.
  4356. @item maxval
  4357. The maximum value for the pixel component.
  4358. @item minval
  4359. The minimum value for the pixel component.
  4360. @item negval
  4361. The negated value for the pixel component value, clipped to the
  4362. @var{minval}-@var{maxval} range; it corresponds to the expression
  4363. "maxval-clipval+minval".
  4364. @item clip(val)
  4365. The computed value in @var{val}, clipped to the
  4366. @var{minval}-@var{maxval} range.
  4367. @item gammaval(gamma)
  4368. The computed gamma correction value of the pixel component value,
  4369. clipped to the @var{minval}-@var{maxval} range. It corresponds to the
  4370. expression
  4371. "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
  4372. @end table
  4373. All expressions default to "val".
  4374. @subsection Examples
  4375. @itemize
  4376. @item
  4377. Negate input video:
  4378. @example
  4379. lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
  4380. lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
  4381. @end example
  4382. The above is the same as:
  4383. @example
  4384. lutrgb="r=negval:g=negval:b=negval"
  4385. lutyuv="y=negval:u=negval:v=negval"
  4386. @end example
  4387. @item
  4388. Negate luminance:
  4389. @example
  4390. lutyuv=y=negval
  4391. @end example
  4392. @item
  4393. Remove chroma components, turning the video into a graytone image:
  4394. @example
  4395. lutyuv="u=128:v=128"
  4396. @end example
  4397. @item
  4398. Apply a luma burning effect:
  4399. @example
  4400. lutyuv="y=2*val"
  4401. @end example
  4402. @item
  4403. Remove green and blue components:
  4404. @example
  4405. lutrgb="g=0:b=0"
  4406. @end example
  4407. @item
  4408. Set a constant alpha channel value on input:
  4409. @example
  4410. format=rgba,lutrgb=a="maxval-minval/2"
  4411. @end example
  4412. @item
  4413. Correct luminance gamma by a factor of 0.5:
  4414. @example
  4415. lutyuv=y=gammaval(0.5)
  4416. @end example
  4417. @item
  4418. Discard least significant bits of luma:
  4419. @example
  4420. lutyuv=y='bitand(val, 128+64+32)'
  4421. @end example
  4422. @end itemize
  4423. @section mergeplanes
  4424. Merge color channel components from several video streams.
  4425. The filter accepts up to 4 input streams, and merge selected input
  4426. planes to the output video.
  4427. This filter accepts the following options:
  4428. @table @option
  4429. @item mapping
  4430. Set input to output plane mapping. Default is @code{0}.
  4431. The mappings is specified as a bitmap. It should be specified as a
  4432. hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
  4433. mapping for the first plane of the output stream. 'A' sets the number of
  4434. the input stream to use (from 0 to 3), and 'a' the plane number of the
  4435. corresponding input to use (from 0 to 3). The rest of the mappings is
  4436. similar, 'Bb' describes the mapping for the output stream second
  4437. plane, 'Cc' describes the mapping for the output stream third plane and
  4438. 'Dd' describes the mapping for the output stream fourth plane.
  4439. @item format
  4440. Set output pixel format. Default is @code{yuva444p}.
  4441. @end table
  4442. @subsection Examples
  4443. @itemize
  4444. @item
  4445. Merge three gray video streams of same width and height into single video stream:
  4446. @example
  4447. [a0][a1][a2]mergeplanes=0x001020:yuv444p
  4448. @end example
  4449. @item
  4450. Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
  4451. @example
  4452. [a0][a1]mergeplanes=0x00010210:yuva444p
  4453. @end example
  4454. @item
  4455. Swap Y and A plane in yuva444p stream:
  4456. @example
  4457. format=yuva444p,mergeplanes=0x03010200:yuva444p
  4458. @end example
  4459. @item
  4460. Swap U and V plane in yuv420p stream:
  4461. @example
  4462. format=yuv420p,mergeplanes=0x000201:yuv420p
  4463. @end example
  4464. @item
  4465. Cast a rgb24 clip to yuv444p:
  4466. @example
  4467. format=rgb24,mergeplanes=0x000102:yuv444p
  4468. @end example
  4469. @end itemize
  4470. @section mcdeint
  4471. Apply motion-compensation deinterlacing.
  4472. It needs one field per frame as input and must thus be used together
  4473. with yadif=1/3 or equivalent.
  4474. This filter accepts the following options:
  4475. @table @option
  4476. @item mode
  4477. Set the deinterlacing mode.
  4478. It accepts one of the following values:
  4479. @table @samp
  4480. @item fast
  4481. @item medium
  4482. @item slow
  4483. use iterative motion estimation
  4484. @item extra_slow
  4485. like @samp{slow}, but use multiple reference frames.
  4486. @end table
  4487. Default value is @samp{fast}.
  4488. @item parity
  4489. Set the picture field parity assumed for the input video. It must be
  4490. one of the following values:
  4491. @table @samp
  4492. @item 0, tff
  4493. assume top field first
  4494. @item 1, bff
  4495. assume bottom field first
  4496. @end table
  4497. Default value is @samp{bff}.
  4498. @item qp
  4499. Set per-block quantization parameter (QP) used by the internal
  4500. encoder.
  4501. Higher values should result in a smoother motion vector field but less
  4502. optimal individual vectors. Default value is 1.
  4503. @end table
  4504. @section mp
  4505. Apply an MPlayer filter to the input video.
  4506. This filter provides a wrapper around some of the filters of
  4507. MPlayer/MEncoder.
  4508. This wrapper is considered experimental. Some of the wrapped filters
  4509. may not work properly and we may drop support for them, as they will
  4510. be implemented natively into FFmpeg. Thus you should avoid
  4511. depending on them when writing portable scripts.
  4512. The filter accepts the parameters:
  4513. @var{filter_name}[:=]@var{filter_params}
  4514. @var{filter_name} is the name of a supported MPlayer filter,
  4515. @var{filter_params} is a string containing the parameters accepted by
  4516. the named filter.
  4517. The list of the currently supported filters follows:
  4518. @table @var
  4519. @item eq2
  4520. @item eq
  4521. @item fspp
  4522. @item ilpack
  4523. @item pp7
  4524. @item softpulldown
  4525. @item uspp
  4526. @end table
  4527. The parameter syntax and behavior for the listed filters are the same
  4528. of the corresponding MPlayer filters. For detailed instructions check
  4529. the "VIDEO FILTERS" section in the MPlayer manual.
  4530. @subsection Examples
  4531. @itemize
  4532. @item
  4533. Adjust gamma, brightness, contrast:
  4534. @example
  4535. mp=eq2=1.0:2:0.5
  4536. @end example
  4537. @end itemize
  4538. See also mplayer(1), @url{http://www.mplayerhq.hu/}.
  4539. @section mpdecimate
  4540. Drop frames that do not differ greatly from the previous frame in
  4541. order to reduce frame rate.
  4542. The main use of this filter is for very-low-bitrate encoding
  4543. (e.g. streaming over dialup modem), but it could in theory be used for
  4544. fixing movies that were inverse-telecined incorrectly.
  4545. A description of the accepted options follows.
  4546. @table @option
  4547. @item max
  4548. Set the maximum number of consecutive frames which can be dropped (if
  4549. positive), or the minimum interval between dropped frames (if
  4550. negative). If the value is 0, the frame is dropped unregarding the
  4551. number of previous sequentially dropped frames.
  4552. Default value is 0.
  4553. @item hi
  4554. @item lo
  4555. @item frac
  4556. Set the dropping threshold values.
  4557. Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
  4558. represent actual pixel value differences, so a threshold of 64
  4559. corresponds to 1 unit of difference for each pixel, or the same spread
  4560. out differently over the block.
  4561. A frame is a candidate for dropping if no 8x8 blocks differ by more
  4562. than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
  4563. meaning the whole image) differ by more than a threshold of @option{lo}.
  4564. Default value for @option{hi} is 64*12, default value for @option{lo} is
  4565. 64*5, and default value for @option{frac} is 0.33.
  4566. @end table
  4567. @section negate
  4568. Negate input video.
  4569. It accepts an integer in input; if non-zero it negates the
  4570. alpha component (if available). The default value in input is 0.
  4571. @section noformat
  4572. Force libavfilter not to use any of the specified pixel formats for the
  4573. input to the next filter.
  4574. It accepts the following parameters:
  4575. @table @option
  4576. @item pix_fmts
  4577. A '|'-separated list of pixel format names, such as
  4578. apix_fmts=yuv420p|monow|rgb24".
  4579. @end table
  4580. @subsection Examples
  4581. @itemize
  4582. @item
  4583. Force libavfilter to use a format different from @var{yuv420p} for the
  4584. input to the vflip filter:
  4585. @example
  4586. noformat=pix_fmts=yuv420p,vflip
  4587. @end example
  4588. @item
  4589. Convert the input video to any of the formats not contained in the list:
  4590. @example
  4591. noformat=yuv420p|yuv444p|yuv410p
  4592. @end example
  4593. @end itemize
  4594. @section noise
  4595. Add noise on video input frame.
  4596. The filter accepts the following options:
  4597. @table @option
  4598. @item all_seed
  4599. @item c0_seed
  4600. @item c1_seed
  4601. @item c2_seed
  4602. @item c3_seed
  4603. Set noise seed for specific pixel component or all pixel components in case
  4604. of @var{all_seed}. Default value is @code{123457}.
  4605. @item all_strength, alls
  4606. @item c0_strength, c0s
  4607. @item c1_strength, c1s
  4608. @item c2_strength, c2s
  4609. @item c3_strength, c3s
  4610. Set noise strength for specific pixel component or all pixel components in case
  4611. @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
  4612. @item all_flags, allf
  4613. @item c0_flags, c0f
  4614. @item c1_flags, c1f
  4615. @item c2_flags, c2f
  4616. @item c3_flags, c3f
  4617. Set pixel component flags or set flags for all components if @var{all_flags}.
  4618. Available values for component flags are:
  4619. @table @samp
  4620. @item a
  4621. averaged temporal noise (smoother)
  4622. @item p
  4623. mix random noise with a (semi)regular pattern
  4624. @item t
  4625. temporal noise (noise pattern changes between frames)
  4626. @item u
  4627. uniform noise (gaussian otherwise)
  4628. @end table
  4629. @end table
  4630. @subsection Examples
  4631. Add temporal and uniform noise to input video:
  4632. @example
  4633. noise=alls=20:allf=t+u
  4634. @end example
  4635. @section null
  4636. Pass the video source unchanged to the output.
  4637. @section ocv
  4638. Apply a video transform using libopencv.
  4639. To enable this filter, install the libopencv library and headers and
  4640. configure FFmpeg with @code{--enable-libopencv}.
  4641. It accepts the following parameters:
  4642. @table @option
  4643. @item filter_name
  4644. The name of the libopencv filter to apply.
  4645. @item filter_params
  4646. The parameters to pass to the libopencv filter. If not specified, the default
  4647. values are assumed.
  4648. @end table
  4649. Refer to the official libopencv documentation for more precise
  4650. information:
  4651. @url{http://opencv.willowgarage.com/documentation/c/image_filtering.html}
  4652. Several libopencv filters are supported; see the following subsections.
  4653. @anchor{dilate}
  4654. @subsection dilate
  4655. Dilate an image by using a specific structuring element.
  4656. It corresponds to the libopencv function @code{cvDilate}.
  4657. It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
  4658. @var{struct_el} represents a structuring element, and has the syntax:
  4659. @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
  4660. @var{cols} and @var{rows} represent the number of columns and rows of
  4661. the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
  4662. point, and @var{shape} the shape for the structuring element. @var{shape}
  4663. must be "rect", "cross", "ellipse", or "custom".
  4664. If the value for @var{shape} is "custom", it must be followed by a
  4665. string of the form "=@var{filename}". The file with name
  4666. @var{filename} is assumed to represent a binary image, with each
  4667. printable character corresponding to a bright pixel. When a custom
  4668. @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
  4669. or columns and rows of the read file are assumed instead.
  4670. The default value for @var{struct_el} is "3x3+0x0/rect".
  4671. @var{nb_iterations} specifies the number of times the transform is
  4672. applied to the image, and defaults to 1.
  4673. Some examples:
  4674. @example
  4675. # Use the default values
  4676. ocv=dilate
  4677. # Dilate using a structuring element with a 5x5 cross, iterating two times
  4678. ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
  4679. # Read the shape from the file diamond.shape, iterating two times.
  4680. # The file diamond.shape may contain a pattern of characters like this
  4681. # *
  4682. # ***
  4683. # *****
  4684. # ***
  4685. # *
  4686. # The specified columns and rows are ignored
  4687. # but the anchor point coordinates are not
  4688. ocv=dilate:0x0+2x2/custom=diamond.shape|2
  4689. @end example
  4690. @subsection erode
  4691. Erode an image by using a specific structuring element.
  4692. It corresponds to the libopencv function @code{cvErode}.
  4693. It accepts the parameters: @var{struct_el}:@var{nb_iterations},
  4694. with the same syntax and semantics as the @ref{dilate} filter.
  4695. @subsection smooth
  4696. Smooth the input video.
  4697. The filter takes the following parameters:
  4698. @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
  4699. @var{type} is the type of smooth filter to apply, and must be one of
  4700. the following values: "blur", "blur_no_scale", "median", "gaussian",
  4701. or "bilateral". The default value is "gaussian".
  4702. The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
  4703. depend on the smooth type. @var{param1} and
  4704. @var{param2} accept integer positive values or 0. @var{param3} and
  4705. @var{param4} accept floating point values.
  4706. The default value for @var{param1} is 3. The default value for the
  4707. other parameters is 0.
  4708. These parameters correspond to the parameters assigned to the
  4709. libopencv function @code{cvSmooth}.
  4710. @anchor{overlay}
  4711. @section overlay
  4712. Overlay one video on top of another.
  4713. It takes two inputs and has one output. The first input is the "main"
  4714. video on which the second input is overlayed.
  4715. It accepts the following parameters:
  4716. A description of the accepted options follows.
  4717. @table @option
  4718. @item x
  4719. @item y
  4720. Set the expression for the x and y coordinates of the overlayed video
  4721. on the main video. Default value is "0" for both expressions. In case
  4722. the expression is invalid, it is set to a huge value (meaning that the
  4723. overlay will not be displayed within the output visible area).
  4724. @item eof_action
  4725. The action to take when EOF is encountered on the secondary input; it accepts
  4726. one of the following values:
  4727. @table @option
  4728. @item repeat
  4729. Repeat the last frame (the default).
  4730. @item endall
  4731. End both streams.
  4732. @item pass
  4733. Pass the main input through.
  4734. @end table
  4735. @item eval
  4736. Set when the expressions for @option{x}, and @option{y} are evaluated.
  4737. It accepts the following values:
  4738. @table @samp
  4739. @item init
  4740. only evaluate expressions once during the filter initialization or
  4741. when a command is processed
  4742. @item frame
  4743. evaluate expressions for each incoming frame
  4744. @end table
  4745. Default value is @samp{frame}.
  4746. @item shortest
  4747. If set to 1, force the output to terminate when the shortest input
  4748. terminates. Default value is 0.
  4749. @item format
  4750. Set the format for the output video.
  4751. It accepts the following values:
  4752. @table @samp
  4753. @item yuv420
  4754. force YUV420 output
  4755. @item yuv422
  4756. force YUV422 output
  4757. @item yuv444
  4758. force YUV444 output
  4759. @item rgb
  4760. force RGB output
  4761. @end table
  4762. Default value is @samp{yuv420}.
  4763. @item rgb @emph{(deprecated)}
  4764. If set to 1, force the filter to accept inputs in the RGB
  4765. color space. Default value is 0. This option is deprecated, use
  4766. @option{format} instead.
  4767. @item repeatlast
  4768. If set to 1, force the filter to draw the last overlay frame over the
  4769. main input until the end of the stream. A value of 0 disables this
  4770. behavior. Default value is 1.
  4771. @end table
  4772. The @option{x}, and @option{y} expressions can contain the following
  4773. parameters.
  4774. @table @option
  4775. @item main_w, W
  4776. @item main_h, H
  4777. The main input width and height.
  4778. @item overlay_w, w
  4779. @item overlay_h, h
  4780. The overlay input width and height.
  4781. @item x
  4782. @item y
  4783. The computed values for @var{x} and @var{y}. They are evaluated for
  4784. each new frame.
  4785. @item hsub
  4786. @item vsub
  4787. horizontal and vertical chroma subsample values of the output
  4788. format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
  4789. @var{vsub} is 1.
  4790. @item n
  4791. the number of input frame, starting from 0
  4792. @item pos
  4793. the position in the file of the input frame, NAN if unknown
  4794. @item t
  4795. The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
  4796. @end table
  4797. Note that the @var{n}, @var{pos}, @var{t} variables are available only
  4798. when evaluation is done @emph{per frame}, and will evaluate to NAN
  4799. when @option{eval} is set to @samp{init}.
  4800. Be aware that frames are taken from each input video in timestamp
  4801. order, hence, if their initial timestamps differ, it is a good idea
  4802. to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
  4803. have them begin in the same zero timestamp, as the example for
  4804. the @var{movie} filter does.
  4805. You can chain together more overlays but you should test the
  4806. efficiency of such approach.
  4807. @subsection Commands
  4808. This filter supports the following commands:
  4809. @table @option
  4810. @item x
  4811. @item y
  4812. Modify the x and y of the overlay input.
  4813. The command accepts the same syntax of the corresponding option.
  4814. If the specified expression is not valid, it is kept at its current
  4815. value.
  4816. @end table
  4817. @subsection Examples
  4818. @itemize
  4819. @item
  4820. Draw the overlay at 10 pixels from the bottom right corner of the main
  4821. video:
  4822. @example
  4823. overlay=main_w-overlay_w-10:main_h-overlay_h-10
  4824. @end example
  4825. Using named options the example above becomes:
  4826. @example
  4827. overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
  4828. @end example
  4829. @item
  4830. Insert a transparent PNG logo in the bottom left corner of the input,
  4831. using the @command{ffmpeg} tool with the @code{-filter_complex} option:
  4832. @example
  4833. ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
  4834. @end example
  4835. @item
  4836. Insert 2 different transparent PNG logos (second logo on bottom
  4837. right corner) using the @command{ffmpeg} tool:
  4838. @example
  4839. ffmpeg -i input -i logo1 -i logo2 -filter_complex 'overlay=x=10:y=H-h-10,overlay=x=W-w-10:y=H-h-10' output
  4840. @end example
  4841. @item
  4842. Add a transparent color layer on top of the main video; @code{WxH}
  4843. must specify the size of the main input to the overlay filter:
  4844. @example
  4845. color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
  4846. @end example
  4847. @item
  4848. Play an original video and a filtered version (here with the deshake
  4849. filter) side by side using the @command{ffplay} tool:
  4850. @example
  4851. ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
  4852. @end example
  4853. The above command is the same as:
  4854. @example
  4855. ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
  4856. @end example
  4857. @item
  4858. Make a sliding overlay appearing from the left to the right top part of the
  4859. screen starting since time 2:
  4860. @example
  4861. overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
  4862. @end example
  4863. @item
  4864. Compose output by putting two input videos side to side:
  4865. @example
  4866. ffmpeg -i left.avi -i right.avi -filter_complex "
  4867. nullsrc=size=200x100 [background];
  4868. [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
  4869. [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
  4870. [background][left] overlay=shortest=1 [background+left];
  4871. [background+left][right] overlay=shortest=1:x=100 [left+right]
  4872. "
  4873. @end example
  4874. @item
  4875. Mask 10-20 seconds of a video by applying the delogo filter to a section
  4876. @example
  4877. ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
  4878. -vf '[in]split[split_main][split_delogo];[split_delogo]trim=start=360:end=371,delogo=0:0:640:480[delogoed];[split_main][delogoed]overlay=eof_action=pass[out]'
  4879. masked.avi
  4880. @end example
  4881. @item
  4882. Chain several overlays in cascade:
  4883. @example
  4884. nullsrc=s=200x200 [bg];
  4885. testsrc=s=100x100, split=4 [in0][in1][in2][in3];
  4886. [in0] lutrgb=r=0, [bg] overlay=0:0 [mid0];
  4887. [in1] lutrgb=g=0, [mid0] overlay=100:0 [mid1];
  4888. [in2] lutrgb=b=0, [mid1] overlay=0:100 [mid2];
  4889. [in3] null, [mid2] overlay=100:100 [out0]
  4890. @end example
  4891. @end itemize
  4892. @section owdenoise
  4893. Apply Overcomplete Wavelet denoiser.
  4894. The filter accepts the following options:
  4895. @table @option
  4896. @item depth
  4897. Set depth.
  4898. Larger depth values will denoise lower frequency components more, but
  4899. slow down filtering.
  4900. Must be an int in the range 8-16, default is @code{8}.
  4901. @item luma_strength, ls
  4902. Set luma strength.
  4903. Must be a double value in the range 0-1000, default is @code{1.0}.
  4904. @item chroma_strength, cs
  4905. Set chroma strength.
  4906. Must be a double value in the range 0-1000, default is @code{1.0}.
  4907. @end table
  4908. @section pad
  4909. Add paddings to the input image, and place the original input at the
  4910. provided @var{x}, @var{y} coordinates.
  4911. It accepts the following parameters:
  4912. @table @option
  4913. @item width, w
  4914. @item height, h
  4915. Specify an expression for the size of the output image with the
  4916. paddings added. If the value for @var{width} or @var{height} is 0, the
  4917. corresponding input size is used for the output.
  4918. The @var{width} expression can reference the value set by the
  4919. @var{height} expression, and vice versa.
  4920. The default value of @var{width} and @var{height} is 0.
  4921. @item x
  4922. @item y
  4923. Specify the offsets to place the input image at within the padded area,
  4924. with respect to the top/left border of the output image.
  4925. The @var{x} expression can reference the value set by the @var{y}
  4926. expression, and vice versa.
  4927. The default value of @var{x} and @var{y} is 0.
  4928. @item color
  4929. Specify the color of the padded area. For the syntax of this option,
  4930. check the "Color" section in the ffmpeg-utils manual.
  4931. The default value of @var{color} is "black".
  4932. @end table
  4933. The value for the @var{width}, @var{height}, @var{x}, and @var{y}
  4934. options are expressions containing the following constants:
  4935. @table @option
  4936. @item in_w
  4937. @item in_h
  4938. The input video width and height.
  4939. @item iw
  4940. @item ih
  4941. These are the same as @var{in_w} and @var{in_h}.
  4942. @item out_w
  4943. @item out_h
  4944. The output width and height (the size of the padded area), as
  4945. specified by the @var{width} and @var{height} expressions.
  4946. @item ow
  4947. @item oh
  4948. These are the same as @var{out_w} and @var{out_h}.
  4949. @item x
  4950. @item y
  4951. The x and y offsets as specified by the @var{x} and @var{y}
  4952. expressions, or NAN if not yet specified.
  4953. @item a
  4954. same as @var{iw} / @var{ih}
  4955. @item sar
  4956. input sample aspect ratio
  4957. @item dar
  4958. input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
  4959. @item hsub
  4960. @item vsub
  4961. The horizontal and vertical chroma subsample values. For example for the
  4962. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  4963. @end table
  4964. @subsection Examples
  4965. @itemize
  4966. @item
  4967. Add paddings with the color "violet" to the input video. The output video
  4968. size is 640x480, and the top-left corner of the input video is placed at
  4969. column 0, row 40
  4970. @example
  4971. pad=640:480:0:40:violet
  4972. @end example
  4973. The example above is equivalent to the following command:
  4974. @example
  4975. pad=width=640:height=480:x=0:y=40:color=violet
  4976. @end example
  4977. @item
  4978. Pad the input to get an output with dimensions increased by 3/2,
  4979. and put the input video at the center of the padded area:
  4980. @example
  4981. pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
  4982. @end example
  4983. @item
  4984. Pad the input to get a squared output with size equal to the maximum
  4985. value between the input width and height, and put the input video at
  4986. the center of the padded area:
  4987. @example
  4988. pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
  4989. @end example
  4990. @item
  4991. Pad the input to get a final w/h ratio of 16:9:
  4992. @example
  4993. pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
  4994. @end example
  4995. @item
  4996. In case of anamorphic video, in order to set the output display aspect
  4997. correctly, it is necessary to use @var{sar} in the expression,
  4998. according to the relation:
  4999. @example
  5000. (ih * X / ih) * sar = output_dar
  5001. X = output_dar / sar
  5002. @end example
  5003. Thus the previous example needs to be modified to:
  5004. @example
  5005. pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
  5006. @end example
  5007. @item
  5008. Double the output size and put the input video in the bottom-right
  5009. corner of the output padded area:
  5010. @example
  5011. pad="2*iw:2*ih:ow-iw:oh-ih"
  5012. @end example
  5013. @end itemize
  5014. @section perspective
  5015. Correct perspective of video not recorded perpendicular to the screen.
  5016. A description of the accepted parameters follows.
  5017. @table @option
  5018. @item x0
  5019. @item y0
  5020. @item x1
  5021. @item y1
  5022. @item x2
  5023. @item y2
  5024. @item x3
  5025. @item y3
  5026. Set coordinates expression for top left, top right, bottom left and bottom right corners.
  5027. Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
  5028. The expressions can use the following variables:
  5029. @table @option
  5030. @item W
  5031. @item H
  5032. the width and height of video frame.
  5033. @end table
  5034. @item interpolation
  5035. Set interpolation for perspective correction.
  5036. It accepts the following values:
  5037. @table @samp
  5038. @item linear
  5039. @item cubic
  5040. @end table
  5041. Default value is @samp{linear}.
  5042. @end table
  5043. @section phase
  5044. Delay interlaced video by one field time so that the field order changes.
  5045. The intended use is to fix PAL movies that have been captured with the
  5046. opposite field order to the film-to-video transfer.
  5047. A description of the accepted parameters follows.
  5048. @table @option
  5049. @item mode
  5050. Set phase mode.
  5051. It accepts the following values:
  5052. @table @samp
  5053. @item t
  5054. Capture field order top-first, transfer bottom-first.
  5055. Filter will delay the bottom field.
  5056. @item b
  5057. Capture field order bottom-first, transfer top-first.
  5058. Filter will delay the top field.
  5059. @item p
  5060. Capture and transfer with the same field order. This mode only exists
  5061. for the documentation of the other options to refer to, but if you
  5062. actually select it, the filter will faithfully do nothing.
  5063. @item a
  5064. Capture field order determined automatically by field flags, transfer
  5065. opposite.
  5066. Filter selects among @samp{t} and @samp{b} modes on a frame by frame
  5067. basis using field flags. If no field information is available,
  5068. then this works just like @samp{u}.
  5069. @item u
  5070. Capture unknown or varying, transfer opposite.
  5071. Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
  5072. analyzing the images and selecting the alternative that produces best
  5073. match between the fields.
  5074. @item T
  5075. Capture top-first, transfer unknown or varying.
  5076. Filter selects among @samp{t} and @samp{p} using image analysis.
  5077. @item B
  5078. Capture bottom-first, transfer unknown or varying.
  5079. Filter selects among @samp{b} and @samp{p} using image analysis.
  5080. @item A
  5081. Capture determined by field flags, transfer unknown or varying.
  5082. Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
  5083. image analysis. If no field information is available, then this works just
  5084. like @samp{U}. This is the default mode.
  5085. @item U
  5086. Both capture and transfer unknown or varying.
  5087. Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
  5088. @end table
  5089. @end table
  5090. @section pixdesctest
  5091. Pixel format descriptor test filter, mainly useful for internal
  5092. testing. The output video should be equal to the input video.
  5093. For example:
  5094. @example
  5095. format=monow, pixdesctest
  5096. @end example
  5097. can be used to test the monowhite pixel format descriptor definition.
  5098. @section pp
  5099. Enable the specified chain of postprocessing subfilters using libpostproc. This
  5100. library should be automatically selected with a GPL build (@code{--enable-gpl}).
  5101. Subfilters must be separated by '/' and can be disabled by prepending a '-'.
  5102. Each subfilter and some options have a short and a long name that can be used
  5103. interchangeably, i.e. dr/dering are the same.
  5104. The filters accept the following options:
  5105. @table @option
  5106. @item subfilters
  5107. Set postprocessing subfilters string.
  5108. @end table
  5109. All subfilters share common options to determine their scope:
  5110. @table @option
  5111. @item a/autoq
  5112. Honor the quality commands for this subfilter.
  5113. @item c/chrom
  5114. Do chrominance filtering, too (default).
  5115. @item y/nochrom
  5116. Do luminance filtering only (no chrominance).
  5117. @item n/noluma
  5118. Do chrominance filtering only (no luminance).
  5119. @end table
  5120. These options can be appended after the subfilter name, separated by a '|'.
  5121. Available subfilters are:
  5122. @table @option
  5123. @item hb/hdeblock[|difference[|flatness]]
  5124. Horizontal deblocking filter
  5125. @table @option
  5126. @item difference
  5127. Difference factor where higher values mean more deblocking (default: @code{32}).
  5128. @item flatness
  5129. Flatness threshold where lower values mean more deblocking (default: @code{39}).
  5130. @end table
  5131. @item vb/vdeblock[|difference[|flatness]]
  5132. Vertical deblocking filter
  5133. @table @option
  5134. @item difference
  5135. Difference factor where higher values mean more deblocking (default: @code{32}).
  5136. @item flatness
  5137. Flatness threshold where lower values mean more deblocking (default: @code{39}).
  5138. @end table
  5139. @item ha/hadeblock[|difference[|flatness]]
  5140. Accurate horizontal deblocking filter
  5141. @table @option
  5142. @item difference
  5143. Difference factor where higher values mean more deblocking (default: @code{32}).
  5144. @item flatness
  5145. Flatness threshold where lower values mean more deblocking (default: @code{39}).
  5146. @end table
  5147. @item va/vadeblock[|difference[|flatness]]
  5148. Accurate vertical deblocking filter
  5149. @table @option
  5150. @item difference
  5151. Difference factor where higher values mean more deblocking (default: @code{32}).
  5152. @item flatness
  5153. Flatness threshold where lower values mean more deblocking (default: @code{39}).
  5154. @end table
  5155. @end table
  5156. The horizontal and vertical deblocking filters share the difference and
  5157. flatness values so you cannot set different horizontal and vertical
  5158. thresholds.
  5159. @table @option
  5160. @item h1/x1hdeblock
  5161. Experimental horizontal deblocking filter
  5162. @item v1/x1vdeblock
  5163. Experimental vertical deblocking filter
  5164. @item dr/dering
  5165. Deringing filter
  5166. @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
  5167. @table @option
  5168. @item threshold1
  5169. larger -> stronger filtering
  5170. @item threshold2
  5171. larger -> stronger filtering
  5172. @item threshold3
  5173. larger -> stronger filtering
  5174. @end table
  5175. @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
  5176. @table @option
  5177. @item f/fullyrange
  5178. Stretch luminance to @code{0-255}.
  5179. @end table
  5180. @item lb/linblenddeint
  5181. Linear blend deinterlacing filter that deinterlaces the given block by
  5182. filtering all lines with a @code{(1 2 1)} filter.
  5183. @item li/linipoldeint
  5184. Linear interpolating deinterlacing filter that deinterlaces the given block by
  5185. linearly interpolating every second line.
  5186. @item ci/cubicipoldeint
  5187. Cubic interpolating deinterlacing filter deinterlaces the given block by
  5188. cubically interpolating every second line.
  5189. @item md/mediandeint
  5190. Median deinterlacing filter that deinterlaces the given block by applying a
  5191. median filter to every second line.
  5192. @item fd/ffmpegdeint
  5193. FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
  5194. second line with a @code{(-1 4 2 4 -1)} filter.
  5195. @item l5/lowpass5
  5196. Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
  5197. block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
  5198. @item fq/forceQuant[|quantizer]
  5199. Overrides the quantizer table from the input with the constant quantizer you
  5200. specify.
  5201. @table @option
  5202. @item quantizer
  5203. Quantizer to use
  5204. @end table
  5205. @item de/default
  5206. Default pp filter combination (@code{hb|a,vb|a,dr|a})
  5207. @item fa/fast
  5208. Fast pp filter combination (@code{h1|a,v1|a,dr|a})
  5209. @item ac
  5210. High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
  5211. @end table
  5212. @subsection Examples
  5213. @itemize
  5214. @item
  5215. Apply horizontal and vertical deblocking, deringing and automatic
  5216. brightness/contrast:
  5217. @example
  5218. pp=hb/vb/dr/al
  5219. @end example
  5220. @item
  5221. Apply default filters without brightness/contrast correction:
  5222. @example
  5223. pp=de/-al
  5224. @end example
  5225. @item
  5226. Apply default filters and temporal denoiser:
  5227. @example
  5228. pp=default/tmpnoise|1|2|3
  5229. @end example
  5230. @item
  5231. Apply deblocking on luminance only, and switch vertical deblocking on or off
  5232. automatically depending on available CPU time:
  5233. @example
  5234. pp=hb|y/vb|a
  5235. @end example
  5236. @end itemize
  5237. @section psnr
  5238. Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
  5239. Ratio) between two input videos.
  5240. This filter takes in input two input videos, the first input is
  5241. considered the "main" source and is passed unchanged to the
  5242. output. The second input is used as a "reference" video for computing
  5243. the PSNR.
  5244. Both video inputs must have the same resolution and pixel format for
  5245. this filter to work correctly. Also it assumes that both inputs
  5246. have the same number of frames, which are compared one by one.
  5247. The obtained average PSNR is printed through the logging system.
  5248. The filter stores the accumulated MSE (mean squared error) of each
  5249. frame, and at the end of the processing it is averaged across all frames
  5250. equally, and the following formula is applied to obtain the PSNR:
  5251. @example
  5252. PSNR = 10*log10(MAX^2/MSE)
  5253. @end example
  5254. Where MAX is the average of the maximum values of each component of the
  5255. image.
  5256. The description of the accepted parameters follows.
  5257. @table @option
  5258. @item stats_file, f
  5259. If specified the filter will use the named file to save the PSNR of
  5260. each individual frame.
  5261. @end table
  5262. The file printed if @var{stats_file} is selected, contains a sequence of
  5263. key/value pairs of the form @var{key}:@var{value} for each compared
  5264. couple of frames.
  5265. A description of each shown parameter follows:
  5266. @table @option
  5267. @item n
  5268. sequential number of the input frame, starting from 1
  5269. @item mse_avg
  5270. Mean Square Error pixel-by-pixel average difference of the compared
  5271. frames, averaged over all the image components.
  5272. @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_g, mse_a
  5273. Mean Square Error pixel-by-pixel average difference of the compared
  5274. frames for the component specified by the suffix.
  5275. @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
  5276. Peak Signal to Noise ratio of the compared frames for the component
  5277. specified by the suffix.
  5278. @end table
  5279. For example:
  5280. @example
  5281. movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
  5282. [main][ref] psnr="stats_file=stats.log" [out]
  5283. @end example
  5284. On this example the input file being processed is compared with the
  5285. reference file @file{ref_movie.mpg}. The PSNR of each individual frame
  5286. is stored in @file{stats.log}.
  5287. @anchor{pullup}
  5288. @section pullup
  5289. Pulldown reversal (inverse telecine) filter, capable of handling mixed
  5290. hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
  5291. content.
  5292. The pullup filter is designed to take advantage of future context in making
  5293. its decisions. This filter is stateless in the sense that it does not lock
  5294. onto a pattern to follow, but it instead looks forward to the following
  5295. fields in order to identify matches and rebuild progressive frames.
  5296. To produce content with an even framerate, insert the fps filter after
  5297. pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
  5298. @code{fps=24} for 30fps and the (rare) telecined 25fps input.
  5299. The filter accepts the following options:
  5300. @table @option
  5301. @item jl
  5302. @item jr
  5303. @item jt
  5304. @item jb
  5305. These options set the amount of "junk" to ignore at the left, right, top, and
  5306. bottom of the image, respectively. Left and right are in units of 8 pixels,
  5307. while top and bottom are in units of 2 lines.
  5308. The default is 8 pixels on each side.
  5309. @item sb
  5310. Set the strict breaks. Setting this option to 1 will reduce the chances of
  5311. filter generating an occasional mismatched frame, but it may also cause an
  5312. excessive number of frames to be dropped during high motion sequences.
  5313. Conversely, setting it to -1 will make filter match fields more easily.
  5314. This may help processing of video where there is slight blurring between
  5315. the fields, but may also cause there to be interlaced frames in the output.
  5316. Default value is @code{0}.
  5317. @item mp
  5318. Set the metric plane to use. It accepts the following values:
  5319. @table @samp
  5320. @item l
  5321. Use luma plane.
  5322. @item u
  5323. Use chroma blue plane.
  5324. @item v
  5325. Use chroma red plane.
  5326. @end table
  5327. This option may be set to use chroma plane instead of the default luma plane
  5328. for doing filter's computations. This may improve accuracy on very clean
  5329. source material, but more likely will decrease accuracy, especially if there
  5330. is chroma noise (rainbow effect) or any grayscale video.
  5331. The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
  5332. load and make pullup usable in realtime on slow machines.
  5333. @end table
  5334. For best results (without duplicated frames in the output file) it is
  5335. necessary to change the output frame rate. For example, to inverse
  5336. telecine NTSC input:
  5337. @example
  5338. ffmpeg -i input -vf pullup -r 24000/1001 ...
  5339. @end example
  5340. @section removelogo
  5341. Suppress a TV station logo, using an image file to determine which
  5342. pixels comprise the logo. It works by filling in the pixels that
  5343. comprise the logo with neighboring pixels.
  5344. The filter accepts the following options:
  5345. @table @option
  5346. @item filename, f
  5347. Set the filter bitmap file, which can be any image format supported by
  5348. libavformat. The width and height of the image file must match those of the
  5349. video stream being processed.
  5350. @end table
  5351. Pixels in the provided bitmap image with a value of zero are not
  5352. considered part of the logo, non-zero pixels are considered part of
  5353. the logo. If you use white (255) for the logo and black (0) for the
  5354. rest, you will be safe. For making the filter bitmap, it is
  5355. recommended to take a screen capture of a black frame with the logo
  5356. visible, and then using a threshold filter followed by the erode
  5357. filter once or twice.
  5358. If needed, little splotches can be fixed manually. Remember that if
  5359. logo pixels are not covered, the filter quality will be much
  5360. reduced. Marking too many pixels as part of the logo does not hurt as
  5361. much, but it will increase the amount of blurring needed to cover over
  5362. the image and will destroy more information than necessary, and extra
  5363. pixels will slow things down on a large logo.
  5364. @section rotate
  5365. Rotate video by an arbitrary angle expressed in radians.
  5366. The filter accepts the following options:
  5367. A description of the optional parameters follows.
  5368. @table @option
  5369. @item angle, a
  5370. Set an expression for the angle by which to rotate the input video
  5371. clockwise, expressed as a number of radians. A negative value will
  5372. result in a counter-clockwise rotation. By default it is set to "0".
  5373. This expression is evaluated for each frame.
  5374. @item out_w, ow
  5375. Set the output width expression, default value is "iw".
  5376. This expression is evaluated just once during configuration.
  5377. @item out_h, oh
  5378. Set the output height expression, default value is "ih".
  5379. This expression is evaluated just once during configuration.
  5380. @item bilinear
  5381. Enable bilinear interpolation if set to 1, a value of 0 disables
  5382. it. Default value is 1.
  5383. @item fillcolor, c
  5384. Set the color used to fill the output area not covered by the rotated
  5385. image. For the generalsyntax of this option, check the "Color" section in the
  5386. ffmpeg-utils manual. If the special value "none" is selected then no
  5387. background is printed (useful for example if the background is never shown).
  5388. Default value is "black".
  5389. @end table
  5390. The expressions for the angle and the output size can contain the
  5391. following constants and functions:
  5392. @table @option
  5393. @item n
  5394. sequential number of the input frame, starting from 0. It is always NAN
  5395. before the first frame is filtered.
  5396. @item t
  5397. time in seconds of the input frame, it is set to 0 when the filter is
  5398. configured. It is always NAN before the first frame is filtered.
  5399. @item hsub
  5400. @item vsub
  5401. horizontal and vertical chroma subsample values. For example for the
  5402. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  5403. @item in_w, iw
  5404. @item in_h, ih
  5405. the input video width and height
  5406. @item out_w, ow
  5407. @item out_h, oh
  5408. the output width and height, that is the size of the padded area as
  5409. specified by the @var{width} and @var{height} expressions
  5410. @item rotw(a)
  5411. @item roth(a)
  5412. the minimal width/height required for completely containing the input
  5413. video rotated by @var{a} radians.
  5414. These are only available when computing the @option{out_w} and
  5415. @option{out_h} expressions.
  5416. @end table
  5417. @subsection Examples
  5418. @itemize
  5419. @item
  5420. Rotate the input by PI/6 radians clockwise:
  5421. @example
  5422. rotate=PI/6
  5423. @end example
  5424. @item
  5425. Rotate the input by PI/6 radians counter-clockwise:
  5426. @example
  5427. rotate=-PI/6
  5428. @end example
  5429. @item
  5430. Rotate the input by 45 degrees clockwise:
  5431. @example
  5432. rotate=45*PI/180
  5433. @end example
  5434. @item
  5435. Apply a constant rotation with period T, starting from an angle of PI/3:
  5436. @example
  5437. rotate=PI/3+2*PI*t/T
  5438. @end example
  5439. @item
  5440. Make the input video rotation oscillating with a period of T
  5441. seconds and an amplitude of A radians:
  5442. @example
  5443. rotate=A*sin(2*PI/T*t)
  5444. @end example
  5445. @item
  5446. Rotate the video, output size is chosen so that the whole rotating
  5447. input video is always completely contained in the output:
  5448. @example
  5449. rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
  5450. @end example
  5451. @item
  5452. Rotate the video, reduce the output size so that no background is ever
  5453. shown:
  5454. @example
  5455. rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
  5456. @end example
  5457. @end itemize
  5458. @subsection Commands
  5459. The filter supports the following commands:
  5460. @table @option
  5461. @item a, angle
  5462. Set the angle expression.
  5463. The command accepts the same syntax of the corresponding option.
  5464. If the specified expression is not valid, it is kept at its current
  5465. value.
  5466. @end table
  5467. @section sab
  5468. Apply Shape Adaptive Blur.
  5469. The filter accepts the following options:
  5470. @table @option
  5471. @item luma_radius, lr
  5472. Set luma blur filter strength, must be a value in range 0.1-4.0, default
  5473. value is 1.0. A greater value will result in a more blurred image, and
  5474. in slower processing.
  5475. @item luma_pre_filter_radius, lpfr
  5476. Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
  5477. value is 1.0.
  5478. @item luma_strength, ls
  5479. Set luma maximum difference between pixels to still be considered, must
  5480. be a value in the 0.1-100.0 range, default value is 1.0.
  5481. @item chroma_radius, cr
  5482. Set chroma blur filter strength, must be a value in range 0.1-4.0. A
  5483. greater value will result in a more blurred image, and in slower
  5484. processing.
  5485. @item chroma_pre_filter_radius, cpfr
  5486. Set chroma pre-filter radius, must be a value in the 0.1-2.0 range.
  5487. @item chroma_strength, cs
  5488. Set chroma maximum difference between pixels to still be considered,
  5489. must be a value in the 0.1-100.0 range.
  5490. @end table
  5491. Each chroma option value, if not explicitly specified, is set to the
  5492. corresponding luma option value.
  5493. @anchor{scale}
  5494. @section scale
  5495. Scale (resize) the input video, using the libswscale library.
  5496. The scale filter forces the output display aspect ratio to be the same
  5497. of the input, by changing the output sample aspect ratio.
  5498. If the input image format is different from the format requested by
  5499. the next filter, the scale filter will convert the input to the
  5500. requested format.
  5501. @subsection Options
  5502. The filter accepts the following options, or any of the options
  5503. supported by the libswscale scaler.
  5504. See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
  5505. the complete list of scaler options.
  5506. @table @option
  5507. @item width, w
  5508. @item height, h
  5509. Set the output video dimension expression. Default value is the input
  5510. dimension.
  5511. If the value is 0, the input width is used for the output.
  5512. If one of the values is -1, the scale filter will use a value that
  5513. maintains the aspect ratio of the input image, calculated from the
  5514. other specified dimension. If both of them are -1, the input size is
  5515. used
  5516. If one of the values is -n with n > 1, the scale filter will also use a value
  5517. that maintains the aspect ratio of the input image, calculated from the other
  5518. specified dimension. After that it will, however, make sure that the calculated
  5519. dimension is divisible by n and adjust the value if necessary.
  5520. See below for the list of accepted constants for use in the dimension
  5521. expression.
  5522. @item interl
  5523. Set the interlacing mode. It accepts the following values:
  5524. @table @samp
  5525. @item 1
  5526. Force interlaced aware scaling.
  5527. @item 0
  5528. Do not apply interlaced scaling.
  5529. @item -1
  5530. Select interlaced aware scaling depending on whether the source frames
  5531. are flagged as interlaced or not.
  5532. @end table
  5533. Default value is @samp{0}.
  5534. @item flags
  5535. Set libswscale scaling flags. See
  5536. @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
  5537. complete list of values. If not explicitly specified the filter applies
  5538. the default flags.
  5539. @item size, s
  5540. Set the video size. For the syntax of this option, check the "Video size"
  5541. section in the ffmpeg-utils manual.
  5542. @item in_color_matrix
  5543. @item out_color_matrix
  5544. Set in/output YCbCr color space type.
  5545. This allows the autodetected value to be overridden as well as allows forcing
  5546. a specific value used for the output and encoder.
  5547. If not specified, the color space type depends on the pixel format.
  5548. Possible values:
  5549. @table @samp
  5550. @item auto
  5551. Choose automatically.
  5552. @item bt709
  5553. Format conforming to International Telecommunication Union (ITU)
  5554. Recommendation BT.709.
  5555. @item fcc
  5556. Set color space conforming to the United States Federal Communications
  5557. Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
  5558. @item bt601
  5559. Set color space conforming to:
  5560. @itemize
  5561. @item
  5562. ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
  5563. @item
  5564. ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
  5565. @item
  5566. Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
  5567. @end itemize
  5568. @item smpte240m
  5569. Set color space conforming to SMPTE ST 240:1999.
  5570. @end table
  5571. @item in_range
  5572. @item out_range
  5573. Set in/output YCbCr sample range.
  5574. This allows the autodetected value to be overridden as well as allows forcing
  5575. a specific value used for the output and encoder. If not specified, the
  5576. range depends on the pixel format. Possible values:
  5577. @table @samp
  5578. @item auto
  5579. Choose automatically.
  5580. @item jpeg/full/pc
  5581. Set full range (0-255 in case of 8-bit luma).
  5582. @item mpeg/tv
  5583. Set "MPEG" range (16-235 in case of 8-bit luma).
  5584. @end table
  5585. @item force_original_aspect_ratio
  5586. Enable decreasing or increasing output video width or height if necessary to
  5587. keep the original aspect ratio. Possible values:
  5588. @table @samp
  5589. @item disable
  5590. Scale the video as specified and disable this feature.
  5591. @item decrease
  5592. The output video dimensions will automatically be decreased if needed.
  5593. @item increase
  5594. The output video dimensions will automatically be increased if needed.
  5595. @end table
  5596. One useful instance of this option is that when you know a specific device's
  5597. maximum allowed resolution, you can use this to limit the output video to
  5598. that, while retaining the aspect ratio. For example, device A allows
  5599. 1280x720 playback, and your video is 1920x800. Using this option (set it to
  5600. decrease) and specifying 1280x720 to the command line makes the output
  5601. 1280x533.
  5602. Please note that this is a different thing than specifying -1 for @option{w}
  5603. or @option{h}, you still need to specify the output resolution for this option
  5604. to work.
  5605. @end table
  5606. The values of the @option{w} and @option{h} options are expressions
  5607. containing the following constants:
  5608. @table @var
  5609. @item in_w
  5610. @item in_h
  5611. The input width and height
  5612. @item iw
  5613. @item ih
  5614. These are the same as @var{in_w} and @var{in_h}.
  5615. @item out_w
  5616. @item out_h
  5617. The output (scaled) width and height
  5618. @item ow
  5619. @item oh
  5620. These are the same as @var{out_w} and @var{out_h}
  5621. @item a
  5622. The same as @var{iw} / @var{ih}
  5623. @item sar
  5624. input sample aspect ratio
  5625. @item dar
  5626. The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
  5627. @item hsub
  5628. @item vsub
  5629. horizontal and vertical input chroma subsample values. For example for the
  5630. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  5631. @item ohsub
  5632. @item ovsub
  5633. horizontal and vertical output chroma subsample values. For example for the
  5634. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  5635. @end table
  5636. @subsection Examples
  5637. @itemize
  5638. @item
  5639. Scale the input video to a size of 200x100
  5640. @example
  5641. scale=w=200:h=100
  5642. @end example
  5643. This is equivalent to:
  5644. @example
  5645. scale=200:100
  5646. @end example
  5647. or:
  5648. @example
  5649. scale=200x100
  5650. @end example
  5651. @item
  5652. Specify a size abbreviation for the output size:
  5653. @example
  5654. scale=qcif
  5655. @end example
  5656. which can also be written as:
  5657. @example
  5658. scale=size=qcif
  5659. @end example
  5660. @item
  5661. Scale the input to 2x:
  5662. @example
  5663. scale=w=2*iw:h=2*ih
  5664. @end example
  5665. @item
  5666. The above is the same as:
  5667. @example
  5668. scale=2*in_w:2*in_h
  5669. @end example
  5670. @item
  5671. Scale the input to 2x with forced interlaced scaling:
  5672. @example
  5673. scale=2*iw:2*ih:interl=1
  5674. @end example
  5675. @item
  5676. Scale the input to half size:
  5677. @example
  5678. scale=w=iw/2:h=ih/2
  5679. @end example
  5680. @item
  5681. Increase the width, and set the height to the same size:
  5682. @example
  5683. scale=3/2*iw:ow
  5684. @end example
  5685. @item
  5686. Seek Greek harmony:
  5687. @example
  5688. scale=iw:1/PHI*iw
  5689. scale=ih*PHI:ih
  5690. @end example
  5691. @item
  5692. Increase the height, and set the width to 3/2 of the height:
  5693. @example
  5694. scale=w=3/2*oh:h=3/5*ih
  5695. @end example
  5696. @item
  5697. Increase the size, making the size a multiple of the chroma
  5698. subsample values:
  5699. @example
  5700. scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
  5701. @end example
  5702. @item
  5703. Increase the width to a maximum of 500 pixels,
  5704. keeping the same aspect ratio as the input:
  5705. @example
  5706. scale=w='min(500\, iw*3/2):h=-1'
  5707. @end example
  5708. @end itemize
  5709. @section separatefields
  5710. The @code{separatefields} takes a frame-based video input and splits
  5711. each frame into its components fields, producing a new half height clip
  5712. with twice the frame rate and twice the frame count.
  5713. This filter use field-dominance information in frame to decide which
  5714. of each pair of fields to place first in the output.
  5715. If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
  5716. @section setdar, setsar
  5717. The @code{setdar} filter sets the Display Aspect Ratio for the filter
  5718. output video.
  5719. This is done by changing the specified Sample (aka Pixel) Aspect
  5720. Ratio, according to the following equation:
  5721. @example
  5722. @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
  5723. @end example
  5724. Keep in mind that the @code{setdar} filter does not modify the pixel
  5725. dimensions of the video frame. Also, the display aspect ratio set by
  5726. this filter may be changed by later filters in the filterchain,
  5727. e.g. in case of scaling or if another "setdar" or a "setsar" filter is
  5728. applied.
  5729. The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
  5730. the filter output video.
  5731. Note that as a consequence of the application of this filter, the
  5732. output display aspect ratio will change according to the equation
  5733. above.
  5734. Keep in mind that the sample aspect ratio set by the @code{setsar}
  5735. filter may be changed by later filters in the filterchain, e.g. if
  5736. another "setsar" or a "setdar" filter is applied.
  5737. It accepts the following parameters:
  5738. @table @option
  5739. @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
  5740. Set the aspect ratio used by the filter.
  5741. The parameter can be a floating point number string, an expression, or
  5742. a string of the form @var{num}:@var{den}, where @var{num} and
  5743. @var{den} are the numerator and denominator of the aspect ratio. If
  5744. the parameter is not specified, it is assumed the value "0".
  5745. In case the form "@var{num}:@var{den}" is used, the @code{:} character
  5746. should be escaped.
  5747. @item max
  5748. Set the maximum integer value to use for expressing numerator and
  5749. denominator when reducing the expressed aspect ratio to a rational.
  5750. Default value is @code{100}.
  5751. @end table
  5752. The parameter @var{sar} is an expression containing
  5753. the following constants:
  5754. @table @option
  5755. @item E, PI, PHI
  5756. These are approximated values for the mathematical constants e
  5757. (Euler's number), pi (Greek pi), and phi (the golden ratio).
  5758. @item w, h
  5759. The input width and height.
  5760. @item a
  5761. These are the same as @var{w} / @var{h}.
  5762. @item sar
  5763. The input sample aspect ratio.
  5764. @item dar
  5765. The input display aspect ratio. It is the same as
  5766. (@var{w} / @var{h}) * @var{sar}.
  5767. @item hsub, vsub
  5768. Horizontal and vertical chroma subsample values. For example, for the
  5769. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  5770. @end table
  5771. @subsection Examples
  5772. @itemize
  5773. @item
  5774. To change the display aspect ratio to 16:9, specify one of the following:
  5775. @example
  5776. setdar=dar=1.77777
  5777. setdar=dar=16/9
  5778. setdar=dar=1.77777
  5779. @end example
  5780. @item
  5781. To change the sample aspect ratio to 10:11, specify:
  5782. @example
  5783. setsar=sar=10/11
  5784. @end example
  5785. @item
  5786. To set a display aspect ratio of 16:9, and specify a maximum integer value of
  5787. 1000 in the aspect ratio reduction, use the command:
  5788. @example
  5789. setdar=ratio=16/9:max=1000
  5790. @end example
  5791. @end itemize
  5792. @anchor{setfield}
  5793. @section setfield
  5794. Force field for the output video frame.
  5795. The @code{setfield} filter marks the interlace type field for the
  5796. output frames. It does not change the input frame, but only sets the
  5797. corresponding property, which affects how the frame is treated by
  5798. following filters (e.g. @code{fieldorder} or @code{yadif}).
  5799. The filter accepts the following options:
  5800. @table @option
  5801. @item mode
  5802. Available values are:
  5803. @table @samp
  5804. @item auto
  5805. Keep the same field property.
  5806. @item bff
  5807. Mark the frame as bottom-field-first.
  5808. @item tff
  5809. Mark the frame as top-field-first.
  5810. @item prog
  5811. Mark the frame as progressive.
  5812. @end table
  5813. @end table
  5814. @section showinfo
  5815. Show a line containing various information for each input video frame.
  5816. The input video is not modified.
  5817. The shown line contains a sequence of key/value pairs of the form
  5818. @var{key}:@var{value}.
  5819. It accepts the following parameters:
  5820. @table @option
  5821. @item n
  5822. The (sequential) number of the input frame, starting from 0.
  5823. @item pts
  5824. The Presentation TimeStamp of the input frame, expressed as a number of
  5825. time base units. The time base unit depends on the filter input pad.
  5826. @item pts_time
  5827. The Presentation TimeStamp of the input frame, expressed as a number of
  5828. seconds.
  5829. @item pos
  5830. The position of the frame in the input stream, or -1 if this information is
  5831. unavailable and/or meaningless (for example in case of synthetic video).
  5832. @item fmt
  5833. The pixel format name.
  5834. @item sar
  5835. The sample aspect ratio of the input frame, expressed in the form
  5836. @var{num}/@var{den}.
  5837. @item s
  5838. The size of the input frame. For the syntax of this option, check the "Video size"
  5839. section in the ffmpeg-utils manual.
  5840. @item i
  5841. The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
  5842. for bottom field first).
  5843. @item iskey
  5844. This is 1 if the frame is a key frame, 0 otherwise.
  5845. @item type
  5846. The picture type of the input frame ("I" for an I-frame, "P" for a
  5847. P-frame, "B" for a B-frame, or "?" for an unknown type).
  5848. Also refer to the documentation of the @code{AVPictureType} enum and of
  5849. the @code{av_get_picture_type_char} function defined in
  5850. @file{libavutil/avutil.h}.
  5851. @item checksum
  5852. The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
  5853. @item plane_checksum
  5854. The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
  5855. expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
  5856. @end table
  5857. @section shuffleplanes
  5858. Reorder and/or duplicate video planes.
  5859. It accepts the following parameters:
  5860. @table @option
  5861. @item map0
  5862. The index of the input plane to be used as the first output plane.
  5863. @item map1
  5864. The index of the input plane to be used as the second output plane.
  5865. @item map2
  5866. The index of the input plane to be used as the third output plane.
  5867. @item map3
  5868. The index of the input plane to be used as the fourth output plane.
  5869. @end table
  5870. The first plane has the index 0. The default is to keep the input unchanged.
  5871. Swap the second and third planes of the input:
  5872. @example
  5873. ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
  5874. @end example
  5875. @section signalstats
  5876. Evaluate various visual metrics that assist in determining issues associated
  5877. with the digitization of analog video media.
  5878. By default the filter will log these metadata values:
  5879. @table @option
  5880. @item YMIN
  5881. Display the minimal Y value contained within the input frame. Expressed in
  5882. range of [0-255].
  5883. @item YLOW
  5884. Display the Y value at the 10% percentile within the input frame. Expressed in
  5885. range of [0-255].
  5886. @item YAVG
  5887. Display the average Y value within the input frame. Expressed in range of
  5888. [0-255].
  5889. @item YHIGH
  5890. Display the Y value at the 90% percentile within the input frame. Expressed in
  5891. range of [0-255].
  5892. @item YMAX
  5893. Display the maximum Y value contained within the input frame. Expressed in
  5894. range of [0-255].
  5895. @item UMIN
  5896. Display the minimal U value contained within the input frame. Expressed in
  5897. range of [0-255].
  5898. @item ULOW
  5899. Display the U value at the 10% percentile within the input frame. Expressed in
  5900. range of [0-255].
  5901. @item UAVG
  5902. Display the average U value within the input frame. Expressed in range of
  5903. [0-255].
  5904. @item UHIGH
  5905. Display the U value at the 90% percentile within the input frame. Expressed in
  5906. range of [0-255].
  5907. @item UMAX
  5908. Display the maximum U value contained within the input frame. Expressed in
  5909. range of [0-255].
  5910. @item VMIN
  5911. Display the minimal V value contained within the input frame. Expressed in
  5912. range of [0-255].
  5913. @item VLOW
  5914. Display the V value at the 10% percentile within the input frame. Expressed in
  5915. range of [0-255].
  5916. @item VAVG
  5917. Display the average V value within the input frame. Expressed in range of
  5918. [0-255].
  5919. @item VHIGH
  5920. Display the V value at the 90% percentile within the input frame. Expressed in
  5921. range of [0-255].
  5922. @item VMAX
  5923. Display the maximum V value contained within the input frame. Expressed in
  5924. range of [0-255].
  5925. @item SATMIN
  5926. Display the minimal saturation value contained within the input frame.
  5927. Expressed in range of [0-~181.02].
  5928. @item SATLOW
  5929. Display the saturation value at the 10% percentile within the input frame.
  5930. Expressed in range of [0-~181.02].
  5931. @item SATAVG
  5932. Display the average saturation value within the input frame. Expressed in range
  5933. of [0-~181.02].
  5934. @item SATHIGH
  5935. Display the saturation value at the 90% percentile within the input frame.
  5936. Expressed in range of [0-~181.02].
  5937. @item SATMAX
  5938. Display the maximum saturation value contained within the input frame.
  5939. Expressed in range of [0-~181.02].
  5940. @item HUEMED
  5941. Display the median value for hue within the input frame. Expressed in range of
  5942. [0-360].
  5943. @item HUEAVG
  5944. Display the average value for hue within the input frame. Expressed in range of
  5945. [0-360].
  5946. @item YDIF
  5947. Display the average of sample value difference between all values of the Y
  5948. plane in the current frame and corresponding values of the previous input frame.
  5949. Expressed in range of [0-255].
  5950. @item UDIF
  5951. Display the average of sample value difference between all values of the U
  5952. plane in the current frame and corresponding values of the previous input frame.
  5953. Expressed in range of [0-255].
  5954. @item VDIF
  5955. Display the average of sample value difference between all values of the V
  5956. plane in the current frame and corresponding values of the previous input frame.
  5957. Expressed in range of [0-255].
  5958. @end table
  5959. The filter accepts the following options:
  5960. @table @option
  5961. @item stat
  5962. @item out
  5963. @option{stat} specify an additional form of image analysis.
  5964. @option{out} output video with the specified type of pixel highlighted.
  5965. Both options accept the following values:
  5966. @table @samp
  5967. @item tout
  5968. Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
  5969. unlike the neighboring pixels of the same field. Examples of temporal outliers
  5970. include the results of video dropouts, head clogs, or tape tracking issues.
  5971. @item vrep
  5972. Identify @var{vertical line repetition}. Vertical line repetition includes
  5973. similar rows of pixels within a frame. In born-digital video vertical line
  5974. repetition is common, but this pattern is uncommon in video digitized from an
  5975. analog source. When it occurs in video that results from the digitization of an
  5976. analog source it can indicate concealment from a dropout compensator.
  5977. @item brng
  5978. Identify pixels that fall outside of legal broadcast range.
  5979. @end table
  5980. @item color, c
  5981. Set the highlight color for the @option{out} option. The default color is
  5982. yellow.
  5983. @end table
  5984. @subsection Examples
  5985. @itemize
  5986. @item
  5987. Output data of various video metrics:
  5988. @example
  5989. ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
  5990. @end example
  5991. @item
  5992. Output specific data about the minimum and maximum values of the Y plane per frame:
  5993. @example
  5994. ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
  5995. @end example
  5996. @item
  5997. Playback video while highlighting pixels that are outside of broadcast range in red.
  5998. @example
  5999. ffplay example.mov -vf signalstats="out=brng:color=red"
  6000. @end example
  6001. @item
  6002. Playback video with signalstats metadata drawn over the frame.
  6003. @example
  6004. ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
  6005. @end example
  6006. The contents of signalstat_drawtext.txt used in the command are:
  6007. @example
  6008. time %@{pts:hms@}
  6009. Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
  6010. U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
  6011. V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
  6012. saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
  6013. @end example
  6014. @end itemize
  6015. @anchor{smartblur}
  6016. @section smartblur
  6017. Blur the input video without impacting the outlines.
  6018. It accepts the following options:
  6019. @table @option
  6020. @item luma_radius, lr
  6021. Set the luma radius. The option value must be a float number in
  6022. the range [0.1,5.0] that specifies the variance of the gaussian filter
  6023. used to blur the image (slower if larger). Default value is 1.0.
  6024. @item luma_strength, ls
  6025. Set the luma strength. The option value must be a float number
  6026. in the range [-1.0,1.0] that configures the blurring. A value included
  6027. in [0.0,1.0] will blur the image whereas a value included in
  6028. [-1.0,0.0] will sharpen the image. Default value is 1.0.
  6029. @item luma_threshold, lt
  6030. Set the luma threshold used as a coefficient to determine
  6031. whether a pixel should be blurred or not. The option value must be an
  6032. integer in the range [-30,30]. A value of 0 will filter all the image,
  6033. a value included in [0,30] will filter flat areas and a value included
  6034. in [-30,0] will filter edges. Default value is 0.
  6035. @item chroma_radius, cr
  6036. Set the chroma radius. The option value must be a float number in
  6037. the range [0.1,5.0] that specifies the variance of the gaussian filter
  6038. used to blur the image (slower if larger). Default value is 1.0.
  6039. @item chroma_strength, cs
  6040. Set the chroma strength. The option value must be a float number
  6041. in the range [-1.0,1.0] that configures the blurring. A value included
  6042. in [0.0,1.0] will blur the image whereas a value included in
  6043. [-1.0,0.0] will sharpen the image. Default value is 1.0.
  6044. @item chroma_threshold, ct
  6045. Set the chroma threshold used as a coefficient to determine
  6046. whether a pixel should be blurred or not. The option value must be an
  6047. integer in the range [-30,30]. A value of 0 will filter all the image,
  6048. a value included in [0,30] will filter flat areas and a value included
  6049. in [-30,0] will filter edges. Default value is 0.
  6050. @end table
  6051. If a chroma option is not explicitly set, the corresponding luma value
  6052. is set.
  6053. @section stereo3d
  6054. Convert between different stereoscopic image formats.
  6055. The filters accept the following options:
  6056. @table @option
  6057. @item in
  6058. Set stereoscopic image format of input.
  6059. Available values for input image formats are:
  6060. @table @samp
  6061. @item sbsl
  6062. side by side parallel (left eye left, right eye right)
  6063. @item sbsr
  6064. side by side crosseye (right eye left, left eye right)
  6065. @item sbs2l
  6066. side by side parallel with half width resolution
  6067. (left eye left, right eye right)
  6068. @item sbs2r
  6069. side by side crosseye with half width resolution
  6070. (right eye left, left eye right)
  6071. @item abl
  6072. above-below (left eye above, right eye below)
  6073. @item abr
  6074. above-below (right eye above, left eye below)
  6075. @item ab2l
  6076. above-below with half height resolution
  6077. (left eye above, right eye below)
  6078. @item ab2r
  6079. above-below with half height resolution
  6080. (right eye above, left eye below)
  6081. @item al
  6082. alternating frames (left eye first, right eye second)
  6083. @item ar
  6084. alternating frames (right eye first, left eye second)
  6085. Default value is @samp{sbsl}.
  6086. @end table
  6087. @item out
  6088. Set stereoscopic image format of output.
  6089. Available values for output image formats are all the input formats as well as:
  6090. @table @samp
  6091. @item arbg
  6092. anaglyph red/blue gray
  6093. (red filter on left eye, blue filter on right eye)
  6094. @item argg
  6095. anaglyph red/green gray
  6096. (red filter on left eye, green filter on right eye)
  6097. @item arcg
  6098. anaglyph red/cyan gray
  6099. (red filter on left eye, cyan filter on right eye)
  6100. @item arch
  6101. anaglyph red/cyan half colored
  6102. (red filter on left eye, cyan filter on right eye)
  6103. @item arcc
  6104. anaglyph red/cyan color
  6105. (red filter on left eye, cyan filter on right eye)
  6106. @item arcd
  6107. anaglyph red/cyan color optimized with the least squares projection of dubois
  6108. (red filter on left eye, cyan filter on right eye)
  6109. @item agmg
  6110. anaglyph green/magenta gray
  6111. (green filter on left eye, magenta filter on right eye)
  6112. @item agmh
  6113. anaglyph green/magenta half colored
  6114. (green filter on left eye, magenta filter on right eye)
  6115. @item agmc
  6116. anaglyph green/magenta colored
  6117. (green filter on left eye, magenta filter on right eye)
  6118. @item agmd
  6119. anaglyph green/magenta color optimized with the least squares projection of dubois
  6120. (green filter on left eye, magenta filter on right eye)
  6121. @item aybg
  6122. anaglyph yellow/blue gray
  6123. (yellow filter on left eye, blue filter on right eye)
  6124. @item aybh
  6125. anaglyph yellow/blue half colored
  6126. (yellow filter on left eye, blue filter on right eye)
  6127. @item aybc
  6128. anaglyph yellow/blue colored
  6129. (yellow filter on left eye, blue filter on right eye)
  6130. @item aybd
  6131. anaglyph yellow/blue color optimized with the least squares projection of dubois
  6132. (yellow filter on left eye, blue filter on right eye)
  6133. @item irl
  6134. interleaved rows (left eye has top row, right eye starts on next row)
  6135. @item irr
  6136. interleaved rows (right eye has top row, left eye starts on next row)
  6137. @item ml
  6138. mono output (left eye only)
  6139. @item mr
  6140. mono output (right eye only)
  6141. @end table
  6142. Default value is @samp{arcd}.
  6143. @end table
  6144. @subsection Examples
  6145. @itemize
  6146. @item
  6147. Convert input video from side by side parallel to anaglyph yellow/blue dubois:
  6148. @example
  6149. stereo3d=sbsl:aybd
  6150. @end example
  6151. @item
  6152. Convert input video from above bellow (left eye above, right eye below) to side by side crosseye.
  6153. @example
  6154. stereo3d=abl:sbsr
  6155. @end example
  6156. @end itemize
  6157. @section spp
  6158. Apply a simple postprocessing filter that compresses and decompresses the image
  6159. at several (or - in the case of @option{quality} level @code{6} - all) shifts
  6160. and average the results.
  6161. The filter accepts the following options:
  6162. @table @option
  6163. @item quality
  6164. Set quality. This option defines the number of levels for averaging. It accepts
  6165. an integer in the range 0-6. If set to @code{0}, the filter will have no
  6166. effect. A value of @code{6} means the higher quality. For each increment of
  6167. that value the speed drops by a factor of approximately 2. Default value is
  6168. @code{3}.
  6169. @item qp
  6170. Force a constant quantization parameter. If not set, the filter will use the QP
  6171. from the video stream (if available).
  6172. @item mode
  6173. Set thresholding mode. Available modes are:
  6174. @table @samp
  6175. @item hard
  6176. Set hard thresholding (default).
  6177. @item soft
  6178. Set soft thresholding (better de-ringing effect, but likely blurrier).
  6179. @end table
  6180. @item use_bframe_qp
  6181. Enable the use of the QP from the B-Frames if set to @code{1}. Using this
  6182. option may cause flicker since the B-Frames have often larger QP. Default is
  6183. @code{0} (not enabled).
  6184. @end table
  6185. @anchor{subtitles}
  6186. @section subtitles
  6187. Draw subtitles on top of input video using the libass library.
  6188. To enable compilation of this filter you need to configure FFmpeg with
  6189. @code{--enable-libass}. This filter also requires a build with libavcodec and
  6190. libavformat to convert the passed subtitles file to ASS (Advanced Substation
  6191. Alpha) subtitles format.
  6192. The filter accepts the following options:
  6193. @table @option
  6194. @item filename, f
  6195. Set the filename of the subtitle file to read. It must be specified.
  6196. @item original_size
  6197. Specify the size of the original video, the video for which the ASS file
  6198. was composed. For the syntax of this option, check the "Video size" section in
  6199. the ffmpeg-utils manual. Due to a misdesign in ASS aspect ratio arithmetic,
  6200. this is necessary to correctly scale the fonts if the aspect ratio has been
  6201. changed.
  6202. @item charenc
  6203. Set subtitles input character encoding. @code{subtitles} filter only. Only
  6204. useful if not UTF-8.
  6205. @item stream_index, si
  6206. Set subtitles stream index. @code{subtitles} filter only.
  6207. @end table
  6208. If the first key is not specified, it is assumed that the first value
  6209. specifies the @option{filename}.
  6210. For example, to render the file @file{sub.srt} on top of the input
  6211. video, use the command:
  6212. @example
  6213. subtitles=sub.srt
  6214. @end example
  6215. which is equivalent to:
  6216. @example
  6217. subtitles=filename=sub.srt
  6218. @end example
  6219. To render the default subtitles stream from file @file{video.mkv}, use:
  6220. @example
  6221. subtitles=video.mkv
  6222. @end example
  6223. To render the second subtitles stream from that file, use:
  6224. @example
  6225. subtitles=video.mkv:si=1
  6226. @end example
  6227. @section super2xsai
  6228. Scale the input by 2x and smooth using the Super2xSaI (Scale and
  6229. Interpolate) pixel art scaling algorithm.
  6230. Useful for enlarging pixel art images without reducing sharpness.
  6231. @section swapuv
  6232. Swap U & V plane.
  6233. @section telecine
  6234. Apply telecine process to the video.
  6235. This filter accepts the following options:
  6236. @table @option
  6237. @item first_field
  6238. @table @samp
  6239. @item top, t
  6240. top field first
  6241. @item bottom, b
  6242. bottom field first
  6243. The default value is @code{top}.
  6244. @end table
  6245. @item pattern
  6246. A string of numbers representing the pulldown pattern you wish to apply.
  6247. The default value is @code{23}.
  6248. @end table
  6249. @example
  6250. Some typical patterns:
  6251. NTSC output (30i):
  6252. 27.5p: 32222
  6253. 24p: 23 (classic)
  6254. 24p: 2332 (preferred)
  6255. 20p: 33
  6256. 18p: 334
  6257. 16p: 3444
  6258. PAL output (25i):
  6259. 27.5p: 12222
  6260. 24p: 222222222223 ("Euro pulldown")
  6261. 16.67p: 33
  6262. 16p: 33333334
  6263. @end example
  6264. @section thumbnail
  6265. Select the most representative frame in a given sequence of consecutive frames.
  6266. The filter accepts the following options:
  6267. @table @option
  6268. @item n
  6269. Set the frames batch size to analyze; in a set of @var{n} frames, the filter
  6270. will pick one of them, and then handle the next batch of @var{n} frames until
  6271. the end. Default is @code{100}.
  6272. @end table
  6273. Since the filter keeps track of the whole frames sequence, a bigger @var{n}
  6274. value will result in a higher memory usage, so a high value is not recommended.
  6275. @subsection Examples
  6276. @itemize
  6277. @item
  6278. Extract one picture each 50 frames:
  6279. @example
  6280. thumbnail=50
  6281. @end example
  6282. @item
  6283. Complete example of a thumbnail creation with @command{ffmpeg}:
  6284. @example
  6285. ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
  6286. @end example
  6287. @end itemize
  6288. @section tile
  6289. Tile several successive frames together.
  6290. The filter accepts the following options:
  6291. @table @option
  6292. @item layout
  6293. Set the grid size (i.e. the number of lines and columns). For the syntax of
  6294. this option, check the "Video size" section in the ffmpeg-utils manual.
  6295. @item nb_frames
  6296. Set the maximum number of frames to render in the given area. It must be less
  6297. than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
  6298. the area will be used.
  6299. @item margin
  6300. Set the outer border margin in pixels.
  6301. @item padding
  6302. Set the inner border thickness (i.e. the number of pixels between frames). For
  6303. more advanced padding options (such as having different values for the edges),
  6304. refer to the pad video filter.
  6305. @item color
  6306. Specify the color of the unused areaFor the syntax of this option, check the
  6307. "Color" section in the ffmpeg-utils manual. The default value of @var{color}
  6308. is "black".
  6309. @end table
  6310. @subsection Examples
  6311. @itemize
  6312. @item
  6313. Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
  6314. @example
  6315. ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
  6316. @end example
  6317. The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
  6318. duplicating each output frame to accommodate the originally detected frame
  6319. rate.
  6320. @item
  6321. Display @code{5} pictures in an area of @code{3x2} frames,
  6322. with @code{7} pixels between them, and @code{2} pixels of initial margin, using
  6323. mixed flat and named options:
  6324. @example
  6325. tile=3x2:nb_frames=5:padding=7:margin=2
  6326. @end example
  6327. @end itemize
  6328. @section tinterlace
  6329. Perform various types of temporal field interlacing.
  6330. Frames are counted starting from 1, so the first input frame is
  6331. considered odd.
  6332. The filter accepts the following options:
  6333. @table @option
  6334. @item mode
  6335. Specify the mode of the interlacing. This option can also be specified
  6336. as a value alone. See below for a list of values for this option.
  6337. Available values are:
  6338. @table @samp
  6339. @item merge, 0
  6340. Move odd frames into the upper field, even into the lower field,
  6341. generating a double height frame at half frame rate.
  6342. @item drop_odd, 1
  6343. Only output even frames, odd frames are dropped, generating a frame with
  6344. unchanged height at half frame rate.
  6345. @item drop_even, 2
  6346. Only output odd frames, even frames are dropped, generating a frame with
  6347. unchanged height at half frame rate.
  6348. @item pad, 3
  6349. Expand each frame to full height, but pad alternate lines with black,
  6350. generating a frame with double height at the same input frame rate.
  6351. @item interleave_top, 4
  6352. Interleave the upper field from odd frames with the lower field from
  6353. even frames, generating a frame with unchanged height at half frame rate.
  6354. @item interleave_bottom, 5
  6355. Interleave the lower field from odd frames with the upper field from
  6356. even frames, generating a frame with unchanged height at half frame rate.
  6357. @item interlacex2, 6
  6358. Double frame rate with unchanged height. Frames are inserted each
  6359. containing the second temporal field from the previous input frame and
  6360. the first temporal field from the next input frame. This mode relies on
  6361. the top_field_first flag. Useful for interlaced video displays with no
  6362. field synchronisation.
  6363. @end table
  6364. Numeric values are deprecated but are accepted for backward
  6365. compatibility reasons.
  6366. Default mode is @code{merge}.
  6367. @item flags
  6368. Specify flags influencing the filter process.
  6369. Available value for @var{flags} is:
  6370. @table @option
  6371. @item low_pass_filter, vlfp
  6372. Enable vertical low-pass filtering in the filter.
  6373. Vertical low-pass filtering is required when creating an interlaced
  6374. destination from a progressive source which contains high-frequency
  6375. vertical detail. Filtering will reduce interlace 'twitter' and Moire
  6376. patterning.
  6377. Vertical low-pass filtering can only be enabled for @option{mode}
  6378. @var{interleave_top} and @var{interleave_bottom}.
  6379. @end table
  6380. @end table
  6381. @section transpose
  6382. Transpose rows with columns in the input video and optionally flip it.
  6383. It accepts the following parameters:
  6384. @table @option
  6385. @item dir
  6386. Specify the transposition direction.
  6387. Can assume the following values:
  6388. @table @samp
  6389. @item 0, 4, cclock_flip
  6390. Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
  6391. @example
  6392. L.R L.l
  6393. . . -> . .
  6394. l.r R.r
  6395. @end example
  6396. @item 1, 5, clock
  6397. Rotate by 90 degrees clockwise, that is:
  6398. @example
  6399. L.R l.L
  6400. . . -> . .
  6401. l.r r.R
  6402. @end example
  6403. @item 2, 6, cclock
  6404. Rotate by 90 degrees counterclockwise, that is:
  6405. @example
  6406. L.R R.r
  6407. . . -> . .
  6408. l.r L.l
  6409. @end example
  6410. @item 3, 7, clock_flip
  6411. Rotate by 90 degrees clockwise and vertically flip, that is:
  6412. @example
  6413. L.R r.R
  6414. . . -> . .
  6415. l.r l.L
  6416. @end example
  6417. @end table
  6418. For values between 4-7, the transposition is only done if the input
  6419. video geometry is portrait and not landscape. These values are
  6420. deprecated, the @code{passthrough} option should be used instead.
  6421. Numerical values are deprecated, and should be dropped in favor of
  6422. symbolic constants.
  6423. @item passthrough
  6424. Do not apply the transposition if the input geometry matches the one
  6425. specified by the specified value. It accepts the following values:
  6426. @table @samp
  6427. @item none
  6428. Always apply transposition.
  6429. @item portrait
  6430. Preserve portrait geometry (when @var{height} >= @var{width}).
  6431. @item landscape
  6432. Preserve landscape geometry (when @var{width} >= @var{height}).
  6433. @end table
  6434. Default value is @code{none}.
  6435. @end table
  6436. For example to rotate by 90 degrees clockwise and preserve portrait
  6437. layout:
  6438. @example
  6439. transpose=dir=1:passthrough=portrait
  6440. @end example
  6441. The command above can also be specified as:
  6442. @example
  6443. transpose=1:portrait
  6444. @end example
  6445. @section trim
  6446. Trim the input so that the output contains one continuous subpart of the input.
  6447. It accepts the following parameters:
  6448. @table @option
  6449. @item start
  6450. Specify the time of the start of the kept section, i.e. the frame with the
  6451. timestamp @var{start} will be the first frame in the output.
  6452. @item end
  6453. Specify the time of the first frame that will be dropped, i.e. the frame
  6454. immediately preceding the one with the timestamp @var{end} will be the last
  6455. frame in the output.
  6456. @item start_pts
  6457. This is the same as @var{start}, except this option sets the start timestamp
  6458. in timebase units instead of seconds.
  6459. @item end_pts
  6460. This is the same as @var{end}, except this option sets the end timestamp
  6461. in timebase units instead of seconds.
  6462. @item duration
  6463. The maximum duration of the output in seconds.
  6464. @item start_frame
  6465. The number of the first frame that should be passed to the output.
  6466. @item end_frame
  6467. The number of the first frame that should be dropped.
  6468. @end table
  6469. @option{start}, @option{end}, @option{duration} are expressed as time
  6470. duration specifications, check the "Time duration" section in the
  6471. ffmpeg-utils manual.
  6472. Note that the first two sets of the start/end options and the @option{duration}
  6473. option look at the frame timestamp, while the _frame variants simply count the
  6474. frames that pass through the filter. Also note that this filter does not modify
  6475. the timestamps. If you wish for the output timestamps to start at zero, insert a
  6476. setpts filter after the trim filter.
  6477. If multiple start or end options are set, this filter tries to be greedy and
  6478. keep all the frames that match at least one of the specified constraints. To keep
  6479. only the part that matches all the constraints at once, chain multiple trim
  6480. filters.
  6481. The defaults are such that all the input is kept. So it is possible to set e.g.
  6482. just the end values to keep everything before the specified time.
  6483. Examples:
  6484. @itemize
  6485. @item
  6486. Drop everything except the second minute of input:
  6487. @example
  6488. ffmpeg -i INPUT -vf trim=60:120
  6489. @end example
  6490. @item
  6491. Keep only the first second:
  6492. @example
  6493. ffmpeg -i INPUT -vf trim=duration=1
  6494. @end example
  6495. @end itemize
  6496. @section unsharp
  6497. Sharpen or blur the input video.
  6498. It accepts the following parameters:
  6499. @table @option
  6500. @item luma_msize_x, lx
  6501. Set the luma matrix horizontal size. It must be an odd integer between
  6502. 3 and 63. The default value is 5.
  6503. @item luma_msize_y, ly
  6504. Set the luma matrix vertical size. It must be an odd integer between 3
  6505. and 63. The default value is 5.
  6506. @item luma_amount, la
  6507. Set the luma effect strength. It must be a floating point number, reasonable
  6508. values lay between -1.5 and 1.5.
  6509. Negative values will blur the input video, while positive values will
  6510. sharpen it, a value of zero will disable the effect.
  6511. Default value is 1.0.
  6512. @item chroma_msize_x, cx
  6513. Set the chroma matrix horizontal size. It must be an odd integer
  6514. between 3 and 63. The default value is 5.
  6515. @item chroma_msize_y, cy
  6516. Set the chroma matrix vertical size. It must be an odd integer
  6517. between 3 and 63. The default value is 5.
  6518. @item chroma_amount, ca
  6519. Set the chroma effect strength. It must be a floating point number, reasonable
  6520. values lay between -1.5 and 1.5.
  6521. Negative values will blur the input video, while positive values will
  6522. sharpen it, a value of zero will disable the effect.
  6523. Default value is 0.0.
  6524. @item opencl
  6525. If set to 1, specify using OpenCL capabilities, only available if
  6526. FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
  6527. @end table
  6528. All parameters are optional and default to the equivalent of the
  6529. string '5:5:1.0:5:5:0.0'.
  6530. @subsection Examples
  6531. @itemize
  6532. @item
  6533. Apply strong luma sharpen effect:
  6534. @example
  6535. unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
  6536. @end example
  6537. @item
  6538. Apply a strong blur of both luma and chroma parameters:
  6539. @example
  6540. unsharp=7:7:-2:7:7:-2
  6541. @end example
  6542. @end itemize
  6543. @anchor{vidstabdetect}
  6544. @section vidstabdetect
  6545. Analyze video stabilization/deshaking. Perform pass 1 of 2, see
  6546. @ref{vidstabtransform} for pass 2.
  6547. This filter generates a file with relative translation and rotation
  6548. transform information about subsequent frames, which is then used by
  6549. the @ref{vidstabtransform} filter.
  6550. To enable compilation of this filter you need to configure FFmpeg with
  6551. @code{--enable-libvidstab}.
  6552. This filter accepts the following options:
  6553. @table @option
  6554. @item result
  6555. Set the path to the file used to write the transforms information.
  6556. Default value is @file{transforms.trf}.
  6557. @item shakiness
  6558. Set how shaky the video is and how quick the camera is. It accepts an
  6559. integer in the range 1-10, a value of 1 means little shakiness, a
  6560. value of 10 means strong shakiness. Default value is 5.
  6561. @item accuracy
  6562. Set the accuracy of the detection process. It must be a value in the
  6563. range 1-15. A value of 1 means low accuracy, a value of 15 means high
  6564. accuracy. Default value is 15.
  6565. @item stepsize
  6566. Set stepsize of the search process. The region around minimum is
  6567. scanned with 1 pixel resolution. Default value is 6.
  6568. @item mincontrast
  6569. Set minimum contrast. Below this value a local measurement field is
  6570. discarded. Must be a floating point value in the range 0-1. Default
  6571. value is 0.3.
  6572. @item tripod
  6573. Set reference frame number for tripod mode.
  6574. If enabled, the motion of the frames is compared to a reference frame
  6575. in the filtered stream, identified by the specified number. The idea
  6576. is to compensate all movements in a more-or-less static scene and keep
  6577. the camera view absolutely still.
  6578. If set to 0, it is disabled. The frames are counted starting from 1.
  6579. @item show
  6580. Show fields and transforms in the resulting frames. It accepts an
  6581. integer in the range 0-2. Default value is 0, which disables any
  6582. visualization.
  6583. @end table
  6584. @subsection Examples
  6585. @itemize
  6586. @item
  6587. Use default values:
  6588. @example
  6589. vidstabdetect
  6590. @end example
  6591. @item
  6592. Analyze strongly shaky movie and put the results in file
  6593. @file{mytransforms.trf}:
  6594. @example
  6595. vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
  6596. @end example
  6597. @item
  6598. Visualize the result of internal transformations in the resulting
  6599. video:
  6600. @example
  6601. vidstabdetect=show=1
  6602. @end example
  6603. @item
  6604. Analyze a video with medium shakiness using @command{ffmpeg}:
  6605. @example
  6606. ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
  6607. @end example
  6608. @end itemize
  6609. @anchor{vidstabtransform}
  6610. @section vidstabtransform
  6611. Video stabilization/deshaking: pass 2 of 2,
  6612. see @ref{vidstabdetect} for pass 1.
  6613. Read a file with transform information for each frame and
  6614. apply/compensate them. Together with the @ref{vidstabdetect}
  6615. filter this can be used to deshake videos. See also
  6616. @url{http://public.hronopik.de/vid.stab}. It is important to also use
  6617. the unsharp filter, see below.
  6618. To enable compilation of this filter you need to configure FFmpeg with
  6619. @code{--enable-libvidstab}.
  6620. @subsection Options
  6621. @table @option
  6622. @item input
  6623. Set path to the file used to read the transforms. Default value is
  6624. @file{transforms.trf}).
  6625. @item smoothing
  6626. Set the number of frames (value*2 + 1) used for lowpass filtering the
  6627. camera movements. Default value is 10.
  6628. For example a number of 10 means that 21 frames are used (10 in the
  6629. past and 10 in the future) to smoothen the motion in the video. A
  6630. larger values leads to a smoother video, but limits the acceleration
  6631. of the camera (pan/tilt movements). 0 is a special case where a
  6632. static camera is simulated.
  6633. @item optalgo
  6634. Set the camera path optimization algorithm.
  6635. Accepted values are:
  6636. @table @samp
  6637. @item gauss
  6638. gaussian kernel low-pass filter on camera motion (default)
  6639. @item avg
  6640. averaging on transformations
  6641. @end table
  6642. @item maxshift
  6643. Set maximal number of pixels to translate frames. Default value is -1,
  6644. meaning no limit.
  6645. @item maxangle
  6646. Set maximal angle in radians (degree*PI/180) to rotate frames. Default
  6647. value is -1, meaning no limit.
  6648. @item crop
  6649. Specify how to deal with borders that may be visible due to movement
  6650. compensation.
  6651. Available values are:
  6652. @table @samp
  6653. @item keep
  6654. keep image information from previous frame (default)
  6655. @item black
  6656. fill the border black
  6657. @end table
  6658. @item invert
  6659. Invert transforms if set to 1. Default value is 0.
  6660. @item relative
  6661. Consider transforms as relative to previsou frame if set to 1,
  6662. absolute if set to 0. Default value is 0.
  6663. @item zoom
  6664. Set percentage to zoom. A positive value will result in a zoom-in
  6665. effect, a negative value in a zoom-out effect. Default value is 0 (no
  6666. zoom).
  6667. @item optzoom
  6668. Set optimal zooming to avoid borders.
  6669. Accepted values are:
  6670. @table @samp
  6671. @item 0
  6672. disabled
  6673. @item 1
  6674. optimal static zoom value is determined (only very strong movements
  6675. will lead to visible borders) (default)
  6676. @item 2
  6677. optimal adaptive zoom value is determined (no borders will be
  6678. visible), see @option{zoomspeed}
  6679. @end table
  6680. Note that the value given at zoom is added to the one calculated here.
  6681. @item zoomspeed
  6682. Set percent to zoom maximally each frame (enabled when
  6683. @option{optzoom} is set to 2). Range is from 0 to 5, default value is
  6684. 0.25.
  6685. @item interpol
  6686. Specify type of interpolation.
  6687. Available values are:
  6688. @table @samp
  6689. @item no
  6690. no interpolation
  6691. @item linear
  6692. linear only horizontal
  6693. @item bilinear
  6694. linear in both directions (default)
  6695. @item bicubic
  6696. cubic in both directions (slow)
  6697. @end table
  6698. @item tripod
  6699. Enable virtual tripod mode if set to 1, which is equivalent to
  6700. @code{relative=0:smoothing=0}. Default value is 0.
  6701. Use also @code{tripod} option of @ref{vidstabdetect}.
  6702. @item debug
  6703. Increase log verbosity if set to 1. Also the detected global motions
  6704. are written to the temporary file @file{global_motions.trf}. Default
  6705. value is 0.
  6706. @end table
  6707. @subsection Examples
  6708. @itemize
  6709. @item
  6710. Use @command{ffmpeg} for a typical stabilization with default values:
  6711. @example
  6712. ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
  6713. @end example
  6714. Note the use of the unsharp filter which is always recommended.
  6715. @item
  6716. Zoom in a bit more and load transform data from a given file:
  6717. @example
  6718. vidstabtransform=zoom=5:input="mytransforms.trf"
  6719. @end example
  6720. @item
  6721. Smoothen the video even more:
  6722. @example
  6723. vidstabtransform=smoothing=30
  6724. @end example
  6725. @end itemize
  6726. @section vflip
  6727. Flip the input video vertically.
  6728. For example, to vertically flip a video with @command{ffmpeg}:
  6729. @example
  6730. ffmpeg -i in.avi -vf "vflip" out.avi
  6731. @end example
  6732. @anchor{vignette}
  6733. @section vignette
  6734. Make or reverse a natural vignetting effect.
  6735. The filter accepts the following options:
  6736. @table @option
  6737. @item angle, a
  6738. Set lens angle expression as a number of radians.
  6739. The value is clipped in the @code{[0,PI/2]} range.
  6740. Default value: @code{"PI/5"}
  6741. @item x0
  6742. @item y0
  6743. Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
  6744. by default.
  6745. @item mode
  6746. Set forward/backward mode.
  6747. Available modes are:
  6748. @table @samp
  6749. @item forward
  6750. The larger the distance from the central point, the darker the image becomes.
  6751. @item backward
  6752. The larger the distance from the central point, the brighter the image becomes.
  6753. This can be used to reverse a vignette effect, though there is no automatic
  6754. detection to extract the lens @option{angle} and other settings (yet). It can
  6755. also be used to create a burning effect.
  6756. @end table
  6757. Default value is @samp{forward}.
  6758. @item eval
  6759. Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
  6760. It accepts the following values:
  6761. @table @samp
  6762. @item init
  6763. Evaluate expressions only once during the filter initialization.
  6764. @item frame
  6765. Evaluate expressions for each incoming frame. This is way slower than the
  6766. @samp{init} mode since it requires all the scalers to be re-computed, but it
  6767. allows advanced dynamic expressions.
  6768. @end table
  6769. Default value is @samp{init}.
  6770. @item dither
  6771. Set dithering to reduce the circular banding effects. Default is @code{1}
  6772. (enabled).
  6773. @item aspect
  6774. Set vignette aspect. This setting allows one to adjust the shape of the vignette.
  6775. Setting this value to the SAR of the input will make a rectangular vignetting
  6776. following the dimensions of the video.
  6777. Default is @code{1/1}.
  6778. @end table
  6779. @subsection Expressions
  6780. The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
  6781. following parameters.
  6782. @table @option
  6783. @item w
  6784. @item h
  6785. input width and height
  6786. @item n
  6787. the number of input frame, starting from 0
  6788. @item pts
  6789. the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
  6790. @var{TB} units, NAN if undefined
  6791. @item r
  6792. frame rate of the input video, NAN if the input frame rate is unknown
  6793. @item t
  6794. the PTS (Presentation TimeStamp) of the filtered video frame,
  6795. expressed in seconds, NAN if undefined
  6796. @item tb
  6797. time base of the input video
  6798. @end table
  6799. @subsection Examples
  6800. @itemize
  6801. @item
  6802. Apply simple strong vignetting effect:
  6803. @example
  6804. vignette=PI/4
  6805. @end example
  6806. @item
  6807. Make a flickering vignetting:
  6808. @example
  6809. vignette='PI/4+random(1)*PI/50':eval=frame
  6810. @end example
  6811. @end itemize
  6812. @section w3fdif
  6813. Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
  6814. Deinterlacing Filter").
  6815. Based on the process described by Martin Weston for BBC R&D, and
  6816. implemented based on the de-interlace algorithm written by Jim
  6817. Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
  6818. uses filter coefficients calculated by BBC R&D.
  6819. There are two sets of filter coefficients, so called "simple":
  6820. and "complex". Which set of filter coefficients is used can
  6821. be set by passing an optional parameter:
  6822. @table @option
  6823. @item filter
  6824. Set the interlacing filter coefficients. Accepts one of the following values:
  6825. @table @samp
  6826. @item simple
  6827. Simple filter coefficient set.
  6828. @item complex
  6829. More-complex filter coefficient set.
  6830. @end table
  6831. Default value is @samp{complex}.
  6832. @item deint
  6833. Specify which frames to deinterlace. Accept one of the following values:
  6834. @table @samp
  6835. @item all
  6836. Deinterlace all frames,
  6837. @item interlaced
  6838. Only deinterlace frames marked as interlaced.
  6839. @end table
  6840. Default value is @samp{all}.
  6841. @end table
  6842. @anchor{yadif}
  6843. @section yadif
  6844. Deinterlace the input video ("yadif" means "yet another deinterlacing
  6845. filter").
  6846. It accepts the following parameters:
  6847. @table @option
  6848. @item mode
  6849. The interlacing mode to adopt. It accepts one of the following values:
  6850. @table @option
  6851. @item 0, send_frame
  6852. Output one frame for each frame.
  6853. @item 1, send_field
  6854. Output one frame for each field.
  6855. @item 2, send_frame_nospatial
  6856. Like @code{send_frame}, but it skips the spatial interlacing check.
  6857. @item 3, send_field_nospatial
  6858. Like @code{send_field}, but it skips the spatial interlacing check.
  6859. @end table
  6860. The default value is @code{send_frame}.
  6861. @item parity
  6862. The picture field parity assumed for the input interlaced video. It accepts one
  6863. of the following values:
  6864. @table @option
  6865. @item 0, tff
  6866. Assume the top field is first.
  6867. @item 1, bff
  6868. Assume the bottom field is first.
  6869. @item -1, auto
  6870. Enable automatic detection of field parity.
  6871. @end table
  6872. The default value is @code{auto}.
  6873. If the interlacing is unknown or the decoder does not export this information,
  6874. top field first will be assumed.
  6875. @item deint
  6876. Specify which frames to deinterlace. Accept one of the following
  6877. values:
  6878. @table @option
  6879. @item 0, all
  6880. Deinterlace all frames.
  6881. @item 1, interlaced
  6882. Only deinterlace frames marked as interlaced.
  6883. @end table
  6884. The default value is @code{all}.
  6885. @end table
  6886. @section zoompan
  6887. Apply Zoom & Pan effect.
  6888. This filter accepts the following options:
  6889. @table @option
  6890. @item zoom, z
  6891. Set the zoom expression. Default is 1.
  6892. @item x
  6893. @item y
  6894. Set the x and y expression. Default is 0.
  6895. @item d
  6896. Set the duration expression in number of frames.
  6897. This sets for how many number of frames effect will last for
  6898. single input image.
  6899. @item s
  6900. Set the output image size, default is 'hd720'.
  6901. @end table
  6902. Each expression can contain the following constants:
  6903. @table @option
  6904. @item in_w, iw
  6905. Input width.
  6906. @item in_h, ih
  6907. Input height.
  6908. @item out_w, ow
  6909. Output width.
  6910. @item out_h, oh
  6911. Output height.
  6912. @item in
  6913. Input frame count.
  6914. @item on
  6915. Output frame count.
  6916. @item x
  6917. @item y
  6918. Last calculated 'x' and 'y' position from 'x' and 'y' expression
  6919. for current input frame.
  6920. @item px
  6921. @item py
  6922. 'x' and 'y' of last output frame of previous input frame or 0 when there was
  6923. not yet such frame (first input frame).
  6924. @item zoom
  6925. Last calculated zoom from 'z' expression for current input frame.
  6926. @item pzoom
  6927. Last calculated zoom of last output frame of previous input frame.
  6928. @item duration
  6929. Number of output frames for current input frame. Calculated from 'd' expression
  6930. for each input frame.
  6931. @item pduration
  6932. number of output frames created for previous input frame
  6933. @item a
  6934. Rational number: input width / input height
  6935. @item sar
  6936. sample aspect ratio
  6937. @item dar
  6938. display aspect ratio
  6939. @end table
  6940. @subsection Examples
  6941. @itemize
  6942. @item
  6943. Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
  6944. @example
  6945. zoompan=z='min(zoom+0.0015,1.5)':d=700:x='if(gte(zoom,1.5),x,x+1/a)':y='if(gte(zoom,1.5),y,y+1)':s=640x360
  6946. @end example
  6947. @end itemize
  6948. @c man end VIDEO FILTERS
  6949. @chapter Video Sources
  6950. @c man begin VIDEO SOURCES
  6951. Below is a description of the currently available video sources.
  6952. @section buffer
  6953. Buffer video frames, and make them available to the filter chain.
  6954. This source is mainly intended for a programmatic use, in particular
  6955. through the interface defined in @file{libavfilter/vsrc_buffer.h}.
  6956. It accepts the following parameters:
  6957. @table @option
  6958. @item video_size
  6959. Specify the size (width and height) of the buffered video frames. For the
  6960. syntax of this option, check the "Video size" section in the ffmpeg-utils
  6961. manual.
  6962. @item width
  6963. The input video width.
  6964. @item height
  6965. The input video height.
  6966. @item pix_fmt
  6967. A string representing the pixel format of the buffered video frames.
  6968. It may be a number corresponding to a pixel format, or a pixel format
  6969. name.
  6970. @item time_base
  6971. Specify the timebase assumed by the timestamps of the buffered frames.
  6972. @item frame_rate
  6973. Specify the frame rate expected for the video stream.
  6974. @item pixel_aspect, sar
  6975. The sample (pixel) aspect ratio of the input video.
  6976. @item sws_param
  6977. Specify the optional parameters to be used for the scale filter which
  6978. is automatically inserted when an input change is detected in the
  6979. input size or format.
  6980. @end table
  6981. For example:
  6982. @example
  6983. buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
  6984. @end example
  6985. will instruct the source to accept video frames with size 320x240 and
  6986. with format "yuv410p", assuming 1/24 as the timestamps timebase and
  6987. square pixels (1:1 sample aspect ratio).
  6988. Since the pixel format with name "yuv410p" corresponds to the number 6
  6989. (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
  6990. this example corresponds to:
  6991. @example
  6992. buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
  6993. @end example
  6994. Alternatively, the options can be specified as a flat string, but this
  6995. syntax is deprecated:
  6996. @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}]
  6997. @section cellauto
  6998. Create a pattern generated by an elementary cellular automaton.
  6999. The initial state of the cellular automaton can be defined through the
  7000. @option{filename}, and @option{pattern} options. If such options are
  7001. not specified an initial state is created randomly.
  7002. At each new frame a new row in the video is filled with the result of
  7003. the cellular automaton next generation. The behavior when the whole
  7004. frame is filled is defined by the @option{scroll} option.
  7005. This source accepts the following options:
  7006. @table @option
  7007. @item filename, f
  7008. Read the initial cellular automaton state, i.e. the starting row, from
  7009. the specified file.
  7010. In the file, each non-whitespace character is considered an alive
  7011. cell, a newline will terminate the row, and further characters in the
  7012. file will be ignored.
  7013. @item pattern, p
  7014. Read the initial cellular automaton state, i.e. the starting row, from
  7015. the specified string.
  7016. Each non-whitespace character in the string is considered an alive
  7017. cell, a newline will terminate the row, and further characters in the
  7018. string will be ignored.
  7019. @item rate, r
  7020. Set the video rate, that is the number of frames generated per second.
  7021. Default is 25.
  7022. @item random_fill_ratio, ratio
  7023. Set the random fill ratio for the initial cellular automaton row. It
  7024. is a floating point number value ranging from 0 to 1, defaults to
  7025. 1/PHI.
  7026. This option is ignored when a file or a pattern is specified.
  7027. @item random_seed, seed
  7028. Set the seed for filling randomly the initial row, must be an integer
  7029. included between 0 and UINT32_MAX. If not specified, or if explicitly
  7030. set to -1, the filter will try to use a good random seed on a best
  7031. effort basis.
  7032. @item rule
  7033. Set the cellular automaton rule, it is a number ranging from 0 to 255.
  7034. Default value is 110.
  7035. @item size, s
  7036. Set the size of the output video. For the syntax of this option, check
  7037. the "Video size" section in the ffmpeg-utils manual.
  7038. If @option{filename} or @option{pattern} is specified, the size is set
  7039. by default to the width of the specified initial state row, and the
  7040. height is set to @var{width} * PHI.
  7041. If @option{size} is set, it must contain the width of the specified
  7042. pattern string, and the specified pattern will be centered in the
  7043. larger row.
  7044. If a filename or a pattern string is not specified, the size value
  7045. defaults to "320x518" (used for a randomly generated initial state).
  7046. @item scroll
  7047. If set to 1, scroll the output upward when all the rows in the output
  7048. have been already filled. If set to 0, the new generated row will be
  7049. written over the top row just after the bottom row is filled.
  7050. Defaults to 1.
  7051. @item start_full, full
  7052. If set to 1, completely fill the output with generated rows before
  7053. outputting the first frame.
  7054. This is the default behavior, for disabling set the value to 0.
  7055. @item stitch
  7056. If set to 1, stitch the left and right row edges together.
  7057. This is the default behavior, for disabling set the value to 0.
  7058. @end table
  7059. @subsection Examples
  7060. @itemize
  7061. @item
  7062. Read the initial state from @file{pattern}, and specify an output of
  7063. size 200x400.
  7064. @example
  7065. cellauto=f=pattern:s=200x400
  7066. @end example
  7067. @item
  7068. Generate a random initial row with a width of 200 cells, with a fill
  7069. ratio of 2/3:
  7070. @example
  7071. cellauto=ratio=2/3:s=200x200
  7072. @end example
  7073. @item
  7074. Create a pattern generated by rule 18 starting by a single alive cell
  7075. centered on an initial row with width 100:
  7076. @example
  7077. cellauto=p=@@:s=100x400:full=0:rule=18
  7078. @end example
  7079. @item
  7080. Specify a more elaborated initial pattern:
  7081. @example
  7082. cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
  7083. @end example
  7084. @end itemize
  7085. @section mandelbrot
  7086. Generate a Mandelbrot set fractal, and progressively zoom towards the
  7087. point specified with @var{start_x} and @var{start_y}.
  7088. This source accepts the following options:
  7089. @table @option
  7090. @item end_pts
  7091. Set the terminal pts value. Default value is 400.
  7092. @item end_scale
  7093. Set the terminal scale value.
  7094. Must be a floating point value. Default value is 0.3.
  7095. @item inner
  7096. Set the inner coloring mode, that is the algorithm used to draw the
  7097. Mandelbrot fractal internal region.
  7098. It shall assume one of the following values:
  7099. @table @option
  7100. @item black
  7101. Set black mode.
  7102. @item convergence
  7103. Show time until convergence.
  7104. @item mincol
  7105. Set color based on point closest to the origin of the iterations.
  7106. @item period
  7107. Set period mode.
  7108. @end table
  7109. Default value is @var{mincol}.
  7110. @item bailout
  7111. Set the bailout value. Default value is 10.0.
  7112. @item maxiter
  7113. Set the maximum of iterations performed by the rendering
  7114. algorithm. Default value is 7189.
  7115. @item outer
  7116. Set outer coloring mode.
  7117. It shall assume one of following values:
  7118. @table @option
  7119. @item iteration_count
  7120. Set iteration cound mode.
  7121. @item normalized_iteration_count
  7122. set normalized iteration count mode.
  7123. @end table
  7124. Default value is @var{normalized_iteration_count}.
  7125. @item rate, r
  7126. Set frame rate, expressed as number of frames per second. Default
  7127. value is "25".
  7128. @item size, s
  7129. Set frame size. For the syntax of this option, check the "Video
  7130. size" section in the ffmpeg-utils manual. Default value is "640x480".
  7131. @item start_scale
  7132. Set the initial scale value. Default value is 3.0.
  7133. @item start_x
  7134. Set the initial x position. Must be a floating point value between
  7135. -100 and 100. Default value is -0.743643887037158704752191506114774.
  7136. @item start_y
  7137. Set the initial y position. Must be a floating point value between
  7138. -100 and 100. Default value is -0.131825904205311970493132056385139.
  7139. @end table
  7140. @section mptestsrc
  7141. Generate various test patterns, as generated by the MPlayer test filter.
  7142. The size of the generated video is fixed, and is 256x256.
  7143. This source is useful in particular for testing encoding features.
  7144. This source accepts the following options:
  7145. @table @option
  7146. @item rate, r
  7147. Specify the frame rate of the sourced video, as the number of frames
  7148. generated per second. It has to be a string in the format
  7149. @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
  7150. number or a valid video frame rate abbreviation. The default value is
  7151. "25".
  7152. @item duration, d
  7153. Set the video duration of the sourced video. The accepted syntax is:
  7154. @example
  7155. [-]HH:MM:SS[.m...]
  7156. [-]S+[.m...]
  7157. @end example
  7158. See also the function @code{av_parse_time()}.
  7159. If not specified, or the expressed duration is negative, the video is
  7160. supposed to be generated forever.
  7161. @item test, t
  7162. Set the number or the name of the test to perform. Supported tests are:
  7163. @table @option
  7164. @item dc_luma
  7165. @item dc_chroma
  7166. @item freq_luma
  7167. @item freq_chroma
  7168. @item amp_luma
  7169. @item amp_chroma
  7170. @item cbp
  7171. @item mv
  7172. @item ring1
  7173. @item ring2
  7174. @item all
  7175. @end table
  7176. Default value is "all", which will cycle through the list of all tests.
  7177. @end table
  7178. Some examples:
  7179. @example
  7180. testsrc=t=dc_luma
  7181. @end example
  7182. will generate a "dc_luma" test pattern.
  7183. @section frei0r_src
  7184. Provide a frei0r source.
  7185. To enable compilation of this filter you need to install the frei0r
  7186. header and configure FFmpeg with @code{--enable-frei0r}.
  7187. This source accepts the following parameters:
  7188. @table @option
  7189. @item size
  7190. The size of the video to generate. For the syntax of this option, check the
  7191. "Video size" section in the ffmpeg-utils manual.
  7192. @item framerate
  7193. The framerate of the generated video. It may be a string of the form
  7194. @var{num}/@var{den} or a frame rate abbreviation.
  7195. @item filter_name
  7196. The name to the frei0r source to load. For more information regarding frei0r and
  7197. how to set the parameters, read the @ref{frei0r} section in the video filters
  7198. documentation.
  7199. @item filter_params
  7200. A '|'-separated list of parameters to pass to the frei0r source.
  7201. @end table
  7202. For example, to generate a frei0r partik0l source with size 200x200
  7203. and frame rate 10 which is overlayed on the overlay filter main input:
  7204. @example
  7205. frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
  7206. @end example
  7207. @section life
  7208. Generate a life pattern.
  7209. This source is based on a generalization of John Conway's life game.
  7210. The sourced input represents a life grid, each pixel represents a cell
  7211. which can be in one of two possible states, alive or dead. Every cell
  7212. interacts with its eight neighbours, which are the cells that are
  7213. horizontally, vertically, or diagonally adjacent.
  7214. At each interaction the grid evolves according to the adopted rule,
  7215. which specifies the number of neighbor alive cells which will make a
  7216. cell stay alive or born. The @option{rule} option allows one to specify
  7217. the rule to adopt.
  7218. This source accepts the following options:
  7219. @table @option
  7220. @item filename, f
  7221. Set the file from which to read the initial grid state. In the file,
  7222. each non-whitespace character is considered an alive cell, and newline
  7223. is used to delimit the end of each row.
  7224. If this option is not specified, the initial grid is generated
  7225. randomly.
  7226. @item rate, r
  7227. Set the video rate, that is the number of frames generated per second.
  7228. Default is 25.
  7229. @item random_fill_ratio, ratio
  7230. Set the random fill ratio for the initial random grid. It is a
  7231. floating point number value ranging from 0 to 1, defaults to 1/PHI.
  7232. It is ignored when a file is specified.
  7233. @item random_seed, seed
  7234. Set the seed for filling the initial random grid, must be an integer
  7235. included between 0 and UINT32_MAX. If not specified, or if explicitly
  7236. set to -1, the filter will try to use a good random seed on a best
  7237. effort basis.
  7238. @item rule
  7239. Set the life rule.
  7240. A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
  7241. where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
  7242. @var{NS} specifies the number of alive neighbor cells which make a
  7243. live cell stay alive, and @var{NB} the number of alive neighbor cells
  7244. which make a dead cell to become alive (i.e. to "born").
  7245. "s" and "b" can be used in place of "S" and "B", respectively.
  7246. Alternatively a rule can be specified by an 18-bits integer. The 9
  7247. high order bits are used to encode the next cell state if it is alive
  7248. for each number of neighbor alive cells, the low order bits specify
  7249. the rule for "borning" new cells. Higher order bits encode for an
  7250. higher number of neighbor cells.
  7251. For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
  7252. rule of 12 and a born rule of 9, which corresponds to "S23/B03".
  7253. Default value is "S23/B3", which is the original Conway's game of life
  7254. rule, and will keep a cell alive if it has 2 or 3 neighbor alive
  7255. cells, and will born a new cell if there are three alive cells around
  7256. a dead cell.
  7257. @item size, s
  7258. Set the size of the output video. For the syntax of this option, check the
  7259. "Video size" section in the ffmpeg-utils manual.
  7260. If @option{filename} is specified, the size is set by default to the
  7261. same size of the input file. If @option{size} is set, it must contain
  7262. the size specified in the input file, and the initial grid defined in
  7263. that file is centered in the larger resulting area.
  7264. If a filename is not specified, the size value defaults to "320x240"
  7265. (used for a randomly generated initial grid).
  7266. @item stitch
  7267. If set to 1, stitch the left and right grid edges together, and the
  7268. top and bottom edges also. Defaults to 1.
  7269. @item mold
  7270. Set cell mold speed. If set, a dead cell will go from @option{death_color} to
  7271. @option{mold_color} with a step of @option{mold}. @option{mold} can have a
  7272. value from 0 to 255.
  7273. @item life_color
  7274. Set the color of living (or new born) cells.
  7275. @item death_color
  7276. Set the color of dead cells. If @option{mold} is set, this is the first color
  7277. used to represent a dead cell.
  7278. @item mold_color
  7279. Set mold color, for definitely dead and moldy cells.
  7280. For the syntax of these 3 color options, check the "Color" section in the
  7281. ffmpeg-utils manual.
  7282. @end table
  7283. @subsection Examples
  7284. @itemize
  7285. @item
  7286. Read a grid from @file{pattern}, and center it on a grid of size
  7287. 300x300 pixels:
  7288. @example
  7289. life=f=pattern:s=300x300
  7290. @end example
  7291. @item
  7292. Generate a random grid of size 200x200, with a fill ratio of 2/3:
  7293. @example
  7294. life=ratio=2/3:s=200x200
  7295. @end example
  7296. @item
  7297. Specify a custom rule for evolving a randomly generated grid:
  7298. @example
  7299. life=rule=S14/B34
  7300. @end example
  7301. @item
  7302. Full example with slow death effect (mold) using @command{ffplay}:
  7303. @example
  7304. ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
  7305. @end example
  7306. @end itemize
  7307. @anchor{color}
  7308. @anchor{haldclutsrc}
  7309. @anchor{nullsrc}
  7310. @anchor{rgbtestsrc}
  7311. @anchor{smptebars}
  7312. @anchor{smptehdbars}
  7313. @anchor{testsrc}
  7314. @section color, haldclutsrc, nullsrc, rgbtestsrc, smptebars, smptehdbars, testsrc
  7315. The @code{color} source provides an uniformly colored input.
  7316. The @code{haldclutsrc} source provides an identity Hald CLUT. See also
  7317. @ref{haldclut} filter.
  7318. The @code{nullsrc} source returns unprocessed video frames. It is
  7319. mainly useful to be employed in analysis / debugging tools, or as the
  7320. source for filters which ignore the input data.
  7321. The @code{rgbtestsrc} source generates an RGB test pattern useful for
  7322. detecting RGB vs BGR issues. You should see a red, green and blue
  7323. stripe from top to bottom.
  7324. The @code{smptebars} source generates a color bars pattern, based on
  7325. the SMPTE Engineering Guideline EG 1-1990.
  7326. The @code{smptehdbars} source generates a color bars pattern, based on
  7327. the SMPTE RP 219-2002.
  7328. The @code{testsrc} source generates a test video pattern, showing a
  7329. color pattern, a scrolling gradient and a timestamp. This is mainly
  7330. intended for testing purposes.
  7331. The sources accept the following parameters:
  7332. @table @option
  7333. @item color, c
  7334. Specify the color of the source, only available in the @code{color}
  7335. source. For the syntax of this option, check the "Color" section in the
  7336. ffmpeg-utils manual.
  7337. @item level
  7338. Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
  7339. source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
  7340. pixels to be used as identity matrix for 3D lookup tables. Each component is
  7341. coded on a @code{1/(N*N)} scale.
  7342. @item size, s
  7343. Specify the size of the sourced video. For the syntax of this option, check the
  7344. "Video size" section in the ffmpeg-utils manual. The default value is
  7345. "320x240".
  7346. This option is not available with the @code{haldclutsrc} filter.
  7347. @item rate, r
  7348. Specify the frame rate of the sourced video, as the number of frames
  7349. generated per second. It has to be a string in the format
  7350. @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
  7351. number or a valid video frame rate abbreviation. The default value is
  7352. "25".
  7353. @item sar
  7354. Set the sample aspect ratio of the sourced video.
  7355. @item duration, d
  7356. Set the video duration of the sourced video. The accepted syntax is:
  7357. @example
  7358. [-]HH[:MM[:SS[.m...]]]
  7359. [-]S+[.m...]
  7360. @end example
  7361. Also see the the @code{av_parse_time()} function.
  7362. If not specified, or the expressed duration is negative, the video is
  7363. supposed to be generated forever.
  7364. @item decimals, n
  7365. Set the number of decimals to show in the timestamp, only available in the
  7366. @code{testsrc} source.
  7367. The displayed timestamp value will correspond to the original
  7368. timestamp value multiplied by the power of 10 of the specified
  7369. value. Default value is 0.
  7370. @end table
  7371. For example the following:
  7372. @example
  7373. testsrc=duration=5.3:size=qcif:rate=10
  7374. @end example
  7375. will generate a video with a duration of 5.3 seconds, with size
  7376. 176x144 and a frame rate of 10 frames per second.
  7377. The following graph description will generate a red source
  7378. with an opacity of 0.2, with size "qcif" and a frame rate of 10
  7379. frames per second.
  7380. @example
  7381. color=c=red@@0.2:s=qcif:r=10
  7382. @end example
  7383. If the input content is to be ignored, @code{nullsrc} can be used. The
  7384. following command generates noise in the luminance plane by employing
  7385. the @code{geq} filter:
  7386. @example
  7387. nullsrc=s=256x256, geq=random(1)*255:128:128
  7388. @end example
  7389. @subsection Commands
  7390. The @code{color} source supports the following commands:
  7391. @table @option
  7392. @item c, color
  7393. Set the color of the created image. Accepts the same syntax of the
  7394. corresponding @option{color} option.
  7395. @end table
  7396. @c man end VIDEO SOURCES
  7397. @chapter Video Sinks
  7398. @c man begin VIDEO SINKS
  7399. Below is a description of the currently available video sinks.
  7400. @section buffersink
  7401. Buffer video frames, and make them available to the end of the filter
  7402. graph.
  7403. This sink is mainly intended for programmatic use, in particular
  7404. through the interface defined in @file{libavfilter/buffersink.h}
  7405. or the options system.
  7406. It accepts a pointer to an AVBufferSinkContext structure, which
  7407. defines the incoming buffers' formats, to be passed as the opaque
  7408. parameter to @code{avfilter_init_filter} for initialization.
  7409. @section nullsink
  7410. Null video sink: do absolutely nothing with the input video. It is
  7411. mainly useful as a template and for use in analysis / debugging
  7412. tools.
  7413. @c man end VIDEO SINKS
  7414. @chapter Multimedia Filters
  7415. @c man begin MULTIMEDIA FILTERS
  7416. Below is a description of the currently available multimedia filters.
  7417. @section avectorscope
  7418. Convert input audio to a video output, representing the audio vector
  7419. scope.
  7420. The filter is used to measure the difference between channels of stereo
  7421. audio stream. A monoaural signal, consisting of identical left and right
  7422. signal, results in straight vertical line. Any stereo separation is visible
  7423. as a deviation from this line, creating a Lissajous figure.
  7424. If the straight (or deviation from it) but horizontal line appears this
  7425. indicates that the left and right channels are out of phase.
  7426. The filter accepts the following options:
  7427. @table @option
  7428. @item mode, m
  7429. Set the vectorscope mode.
  7430. Available values are:
  7431. @table @samp
  7432. @item lissajous
  7433. Lissajous rotated by 45 degrees.
  7434. @item lissajous_xy
  7435. Same as above but not rotated.
  7436. @end table
  7437. Default value is @samp{lissajous}.
  7438. @item size, s
  7439. Set the video size for the output. For the syntax of this option, check the "Video size"
  7440. section in the ffmpeg-utils manual. Default value is @code{400x400}.
  7441. @item rate, r
  7442. Set the output frame rate. Default value is @code{25}.
  7443. @item rc
  7444. @item gc
  7445. @item bc
  7446. Specify the red, green and blue contrast. Default values are @code{40}, @code{160} and @code{80}.
  7447. Allowed range is @code{[0, 255]}.
  7448. @item rf
  7449. @item gf
  7450. @item bf
  7451. Specify the red, green and blue fade. Default values are @code{15}, @code{10} and @code{5}.
  7452. Allowed range is @code{[0, 255]}.
  7453. @item zoom
  7454. Set the zoom factor. Default value is @code{1}. Allowed range is @code{[1, 10]}.
  7455. @end table
  7456. @subsection Examples
  7457. @itemize
  7458. @item
  7459. Complete example using @command{ffplay}:
  7460. @example
  7461. ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
  7462. [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
  7463. @end example
  7464. @end itemize
  7465. @section concat
  7466. Concatenate audio and video streams, joining them together one after the
  7467. other.
  7468. The filter works on segments of synchronized video and audio streams. All
  7469. segments must have the same number of streams of each type, and that will
  7470. also be the number of streams at output.
  7471. The filter accepts the following options:
  7472. @table @option
  7473. @item n
  7474. Set the number of segments. Default is 2.
  7475. @item v
  7476. Set the number of output video streams, that is also the number of video
  7477. streams in each segment. Default is 1.
  7478. @item a
  7479. Set the number of output audio streams, that is also the number of audio
  7480. streams in each segment. Default is 0.
  7481. @item unsafe
  7482. Activate unsafe mode: do not fail if segments have a different format.
  7483. @end table
  7484. The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
  7485. @var{a} audio outputs.
  7486. There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
  7487. segment, in the same order as the outputs, then the inputs for the second
  7488. segment, etc.
  7489. Related streams do not always have exactly the same duration, for various
  7490. reasons including codec frame size or sloppy authoring. For that reason,
  7491. related synchronized streams (e.g. a video and its audio track) should be
  7492. concatenated at once. The concat filter will use the duration of the longest
  7493. stream in each segment (except the last one), and if necessary pad shorter
  7494. audio streams with silence.
  7495. For this filter to work correctly, all segments must start at timestamp 0.
  7496. All corresponding streams must have the same parameters in all segments; the
  7497. filtering system will automatically select a common pixel format for video
  7498. streams, and a common sample format, sample rate and channel layout for
  7499. audio streams, but other settings, such as resolution, must be converted
  7500. explicitly by the user.
  7501. Different frame rates are acceptable but will result in variable frame rate
  7502. at output; be sure to configure the output file to handle it.
  7503. @subsection Examples
  7504. @itemize
  7505. @item
  7506. Concatenate an opening, an episode and an ending, all in bilingual version
  7507. (video in stream 0, audio in streams 1 and 2):
  7508. @example
  7509. ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
  7510. '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
  7511. concat=n=3:v=1:a=2 [v] [a1] [a2]' \
  7512. -map '[v]' -map '[a1]' -map '[a2]' output.mkv
  7513. @end example
  7514. @item
  7515. Concatenate two parts, handling audio and video separately, using the
  7516. (a)movie sources, and adjusting the resolution:
  7517. @example
  7518. movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
  7519. movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
  7520. [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
  7521. @end example
  7522. Note that a desync will happen at the stitch if the audio and video streams
  7523. do not have exactly the same duration in the first file.
  7524. @end itemize
  7525. @section ebur128
  7526. EBU R128 scanner filter. This filter takes an audio stream as input and outputs
  7527. it unchanged. By default, it logs a message at a frequency of 10Hz with the
  7528. Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
  7529. Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
  7530. The filter also has a video output (see the @var{video} option) with a real
  7531. time graph to observe the loudness evolution. The graphic contains the logged
  7532. message mentioned above, so it is not printed anymore when this option is set,
  7533. unless the verbose logging is set. The main graphing area contains the
  7534. short-term loudness (3 seconds of analysis), and the gauge on the right is for
  7535. the momentary loudness (400 milliseconds).
  7536. More information about the Loudness Recommendation EBU R128 on
  7537. @url{http://tech.ebu.ch/loudness}.
  7538. The filter accepts the following options:
  7539. @table @option
  7540. @item video
  7541. Activate the video output. The audio stream is passed unchanged whether this
  7542. option is set or no. The video stream will be the first output stream if
  7543. activated. Default is @code{0}.
  7544. @item size
  7545. Set the video size. This option is for video only. For the syntax of this
  7546. option, check the "Video size" section in the ffmpeg-utils manual. Default
  7547. and minimum resolution is @code{640x480}.
  7548. @item meter
  7549. Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
  7550. @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
  7551. other integer value between this range is allowed.
  7552. @item metadata
  7553. Set metadata injection. If set to @code{1}, the audio input will be segmented
  7554. into 100ms output frames, each of them containing various loudness information
  7555. in metadata. All the metadata keys are prefixed with @code{lavfi.r128.}.
  7556. Default is @code{0}.
  7557. @item framelog
  7558. Force the frame logging level.
  7559. Available values are:
  7560. @table @samp
  7561. @item info
  7562. information logging level
  7563. @item verbose
  7564. verbose logging level
  7565. @end table
  7566. By default, the logging level is set to @var{info}. If the @option{video} or
  7567. the @option{metadata} options are set, it switches to @var{verbose}.
  7568. @item peak
  7569. Set peak mode(s).
  7570. Available modes can be cumulated (the option is a @code{flag} type). Possible
  7571. values are:
  7572. @table @samp
  7573. @item none
  7574. Disable any peak mode (default).
  7575. @item sample
  7576. Enable sample-peak mode.
  7577. Simple peak mode looking for the higher sample value. It logs a message
  7578. for sample-peak (identified by @code{SPK}).
  7579. @item true
  7580. Enable true-peak mode.
  7581. If enabled, the peak lookup is done on an over-sampled version of the input
  7582. stream for better peak accuracy. It logs a message for true-peak.
  7583. (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
  7584. This mode requires a build with @code{libswresample}.
  7585. @end table
  7586. @end table
  7587. @subsection Examples
  7588. @itemize
  7589. @item
  7590. Real-time graph using @command{ffplay}, with a EBU scale meter +18:
  7591. @example
  7592. ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
  7593. @end example
  7594. @item
  7595. Run an analysis with @command{ffmpeg}:
  7596. @example
  7597. ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
  7598. @end example
  7599. @end itemize
  7600. @section interleave, ainterleave
  7601. Temporally interleave frames from several inputs.
  7602. @code{interleave} works with video inputs, @code{ainterleave} with audio.
  7603. These filters read frames from several inputs and send the oldest
  7604. queued frame to the output.
  7605. Input streams must have a well defined, monotonically increasing frame
  7606. timestamp values.
  7607. In order to submit one frame to output, these filters need to enqueue
  7608. at least one frame for each input, so they cannot work in case one
  7609. input is not yet terminated and will not receive incoming frames.
  7610. For example consider the case when one input is a @code{select} filter
  7611. which always drop input frames. The @code{interleave} filter will keep
  7612. reading from that input, but it will never be able to send new frames
  7613. to output until the input will send an end-of-stream signal.
  7614. Also, depending on inputs synchronization, the filters will drop
  7615. frames in case one input receives more frames than the other ones, and
  7616. the queue is already filled.
  7617. These filters accept the following options:
  7618. @table @option
  7619. @item nb_inputs, n
  7620. Set the number of different inputs, it is 2 by default.
  7621. @end table
  7622. @subsection Examples
  7623. @itemize
  7624. @item
  7625. Interleave frames belonging to different streams using @command{ffmpeg}:
  7626. @example
  7627. ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
  7628. @end example
  7629. @item
  7630. Add flickering blur effect:
  7631. @example
  7632. select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
  7633. @end example
  7634. @end itemize
  7635. @section perms, aperms
  7636. Set read/write permissions for the output frames.
  7637. These filters are mainly aimed at developers to test direct path in the
  7638. following filter in the filtergraph.
  7639. The filters accept the following options:
  7640. @table @option
  7641. @item mode
  7642. Select the permissions mode.
  7643. It accepts the following values:
  7644. @table @samp
  7645. @item none
  7646. Do nothing. This is the default.
  7647. @item ro
  7648. Set all the output frames read-only.
  7649. @item rw
  7650. Set all the output frames directly writable.
  7651. @item toggle
  7652. Make the frame read-only if writable, and writable if read-only.
  7653. @item random
  7654. Set each output frame read-only or writable randomly.
  7655. @end table
  7656. @item seed
  7657. Set the seed for the @var{random} mode, must be an integer included between
  7658. @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
  7659. @code{-1}, the filter will try to use a good random seed on a best effort
  7660. basis.
  7661. @end table
  7662. Note: in case of auto-inserted filter between the permission filter and the
  7663. following one, the permission might not be received as expected in that
  7664. following filter. Inserting a @ref{format} or @ref{aformat} filter before the
  7665. perms/aperms filter can avoid this problem.
  7666. @section select, aselect
  7667. Select frames to pass in output.
  7668. This filter accepts the following options:
  7669. @table @option
  7670. @item expr, e
  7671. Set expression, which is evaluated for each input frame.
  7672. If the expression is evaluated to zero, the frame is discarded.
  7673. If the evaluation result is negative or NaN, the frame is sent to the
  7674. first output; otherwise it is sent to the output with index
  7675. @code{ceil(val)-1}, assuming that the input index starts from 0.
  7676. For example a value of @code{1.2} corresponds to the output with index
  7677. @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
  7678. @item outputs, n
  7679. Set the number of outputs. The output to which to send the selected
  7680. frame is based on the result of the evaluation. Default value is 1.
  7681. @end table
  7682. The expression can contain the following constants:
  7683. @table @option
  7684. @item n
  7685. The (sequential) number of the filtered frame, starting from 0.
  7686. @item selected_n
  7687. The (sequential) number of the selected frame, starting from 0.
  7688. @item prev_selected_n
  7689. The sequential number of the last selected frame. It's NAN if undefined.
  7690. @item TB
  7691. The timebase of the input timestamps.
  7692. @item pts
  7693. The PTS (Presentation TimeStamp) of the filtered video frame,
  7694. expressed in @var{TB} units. It's NAN if undefined.
  7695. @item t
  7696. The PTS of the filtered video frame,
  7697. expressed in seconds. It's NAN if undefined.
  7698. @item prev_pts
  7699. The PTS of the previously filtered video frame. It's NAN if undefined.
  7700. @item prev_selected_pts
  7701. The PTS of the last previously filtered video frame. It's NAN if undefined.
  7702. @item prev_selected_t
  7703. The PTS of the last previously selected video frame. It's NAN if undefined.
  7704. @item start_pts
  7705. The PTS of the first video frame in the video. It's NAN if undefined.
  7706. @item start_t
  7707. The time of the first video frame in the video. It's NAN if undefined.
  7708. @item pict_type @emph{(video only)}
  7709. The type of the filtered frame. It can assume one of the following
  7710. values:
  7711. @table @option
  7712. @item I
  7713. @item P
  7714. @item B
  7715. @item S
  7716. @item SI
  7717. @item SP
  7718. @item BI
  7719. @end table
  7720. @item interlace_type @emph{(video only)}
  7721. The frame interlace type. It can assume one of the following values:
  7722. @table @option
  7723. @item PROGRESSIVE
  7724. The frame is progressive (not interlaced).
  7725. @item TOPFIRST
  7726. The frame is top-field-first.
  7727. @item BOTTOMFIRST
  7728. The frame is bottom-field-first.
  7729. @end table
  7730. @item consumed_sample_n @emph{(audio only)}
  7731. the number of selected samples before the current frame
  7732. @item samples_n @emph{(audio only)}
  7733. the number of samples in the current frame
  7734. @item sample_rate @emph{(audio only)}
  7735. the input sample rate
  7736. @item key
  7737. This is 1 if the filtered frame is a key-frame, 0 otherwise.
  7738. @item pos
  7739. the position in the file of the filtered frame, -1 if the information
  7740. is not available (e.g. for synthetic video)
  7741. @item scene @emph{(video only)}
  7742. value between 0 and 1 to indicate a new scene; a low value reflects a low
  7743. probability for the current frame to introduce a new scene, while a higher
  7744. value means the current frame is more likely to be one (see the example below)
  7745. @end table
  7746. The default value of the select expression is "1".
  7747. @subsection Examples
  7748. @itemize
  7749. @item
  7750. Select all frames in input:
  7751. @example
  7752. select
  7753. @end example
  7754. The example above is the same as:
  7755. @example
  7756. select=1
  7757. @end example
  7758. @item
  7759. Skip all frames:
  7760. @example
  7761. select=0
  7762. @end example
  7763. @item
  7764. Select only I-frames:
  7765. @example
  7766. select='eq(pict_type\,I)'
  7767. @end example
  7768. @item
  7769. Select one frame every 100:
  7770. @example
  7771. select='not(mod(n\,100))'
  7772. @end example
  7773. @item
  7774. Select only frames contained in the 10-20 time interval:
  7775. @example
  7776. select=between(t\,10\,20)
  7777. @end example
  7778. @item
  7779. Select only I frames contained in the 10-20 time interval:
  7780. @example
  7781. select=between(t\,10\,20)*eq(pict_type\,I)
  7782. @end example
  7783. @item
  7784. Select frames with a minimum distance of 10 seconds:
  7785. @example
  7786. select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
  7787. @end example
  7788. @item
  7789. Use aselect to select only audio frames with samples number > 100:
  7790. @example
  7791. aselect='gt(samples_n\,100)'
  7792. @end example
  7793. @item
  7794. Create a mosaic of the first scenes:
  7795. @example
  7796. ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
  7797. @end example
  7798. Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
  7799. choice.
  7800. @item
  7801. Send even and odd frames to separate outputs, and compose them:
  7802. @example
  7803. select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
  7804. @end example
  7805. @end itemize
  7806. @section sendcmd, asendcmd
  7807. Send commands to filters in the filtergraph.
  7808. These filters read commands to be sent to other filters in the
  7809. filtergraph.
  7810. @code{sendcmd} must be inserted between two video filters,
  7811. @code{asendcmd} must be inserted between two audio filters, but apart
  7812. from that they act the same way.
  7813. The specification of commands can be provided in the filter arguments
  7814. with the @var{commands} option, or in a file specified by the
  7815. @var{filename} option.
  7816. These filters accept the following options:
  7817. @table @option
  7818. @item commands, c
  7819. Set the commands to be read and sent to the other filters.
  7820. @item filename, f
  7821. Set the filename of the commands to be read and sent to the other
  7822. filters.
  7823. @end table
  7824. @subsection Commands syntax
  7825. A commands description consists of a sequence of interval
  7826. specifications, comprising a list of commands to be executed when a
  7827. particular event related to that interval occurs. The occurring event
  7828. is typically the current frame time entering or leaving a given time
  7829. interval.
  7830. An interval is specified by the following syntax:
  7831. @example
  7832. @var{START}[-@var{END}] @var{COMMANDS};
  7833. @end example
  7834. The time interval is specified by the @var{START} and @var{END} times.
  7835. @var{END} is optional and defaults to the maximum time.
  7836. The current frame time is considered within the specified interval if
  7837. it is included in the interval [@var{START}, @var{END}), that is when
  7838. the time is greater or equal to @var{START} and is lesser than
  7839. @var{END}.
  7840. @var{COMMANDS} consists of a sequence of one or more command
  7841. specifications, separated by ",", relating to that interval. The
  7842. syntax of a command specification is given by:
  7843. @example
  7844. [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
  7845. @end example
  7846. @var{FLAGS} is optional and specifies the type of events relating to
  7847. the time interval which enable sending the specified command, and must
  7848. be a non-null sequence of identifier flags separated by "+" or "|" and
  7849. enclosed between "[" and "]".
  7850. The following flags are recognized:
  7851. @table @option
  7852. @item enter
  7853. The command is sent when the current frame timestamp enters the
  7854. specified interval. In other words, the command is sent when the
  7855. previous frame timestamp was not in the given interval, and the
  7856. current is.
  7857. @item leave
  7858. The command is sent when the current frame timestamp leaves the
  7859. specified interval. In other words, the command is sent when the
  7860. previous frame timestamp was in the given interval, and the
  7861. current is not.
  7862. @end table
  7863. If @var{FLAGS} is not specified, a default value of @code{[enter]} is
  7864. assumed.
  7865. @var{TARGET} specifies the target of the command, usually the name of
  7866. the filter class or a specific filter instance name.
  7867. @var{COMMAND} specifies the name of the command for the target filter.
  7868. @var{ARG} is optional and specifies the optional list of argument for
  7869. the given @var{COMMAND}.
  7870. Between one interval specification and another, whitespaces, or
  7871. sequences of characters starting with @code{#} until the end of line,
  7872. are ignored and can be used to annotate comments.
  7873. A simplified BNF description of the commands specification syntax
  7874. follows:
  7875. @example
  7876. @var{COMMAND_FLAG} ::= "enter" | "leave"
  7877. @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
  7878. @var{COMMAND} ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
  7879. @var{COMMANDS} ::= @var{COMMAND} [,@var{COMMANDS}]
  7880. @var{INTERVAL} ::= @var{START}[-@var{END}] @var{COMMANDS}
  7881. @var{INTERVALS} ::= @var{INTERVAL}[;@var{INTERVALS}]
  7882. @end example
  7883. @subsection Examples
  7884. @itemize
  7885. @item
  7886. Specify audio tempo change at second 4:
  7887. @example
  7888. asendcmd=c='4.0 atempo tempo 1.5',atempo
  7889. @end example
  7890. @item
  7891. Specify a list of drawtext and hue commands in a file.
  7892. @example
  7893. # show text in the interval 5-10
  7894. 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
  7895. [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
  7896. # desaturate the image in the interval 15-20
  7897. 15.0-20.0 [enter] hue s 0,
  7898. [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
  7899. [leave] hue s 1,
  7900. [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
  7901. # apply an exponential saturation fade-out effect, starting from time 25
  7902. 25 [enter] hue s exp(25-t)
  7903. @end example
  7904. A filtergraph allowing to read and process the above command list
  7905. stored in a file @file{test.cmd}, can be specified with:
  7906. @example
  7907. sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
  7908. @end example
  7909. @end itemize
  7910. @anchor{setpts}
  7911. @section setpts, asetpts
  7912. Change the PTS (presentation timestamp) of the input frames.
  7913. @code{setpts} works on video frames, @code{asetpts} on audio frames.
  7914. This filter accepts the following options:
  7915. @table @option
  7916. @item expr
  7917. The expression which is evaluated for each frame to construct its timestamp.
  7918. @end table
  7919. The expression is evaluated through the eval API and can contain the following
  7920. constants:
  7921. @table @option
  7922. @item FRAME_RATE
  7923. frame rate, only defined for constant frame-rate video
  7924. @item PTS
  7925. The presentation timestamp in input
  7926. @item N
  7927. The count of the input frame for video or the number of consumed samples,
  7928. not including the current frame for audio, starting from 0.
  7929. @item NB_CONSUMED_SAMPLES
  7930. The number of consumed samples, not including the current frame (only
  7931. audio)
  7932. @item NB_SAMPLES, S
  7933. The number of samples in the current frame (only audio)
  7934. @item SAMPLE_RATE, SR
  7935. The audio sample rate.
  7936. @item STARTPTS
  7937. The PTS of the first frame.
  7938. @item STARTT
  7939. the time in seconds of the first frame
  7940. @item INTERLACED
  7941. State whether the current frame is interlaced.
  7942. @item T
  7943. the time in seconds of the current frame
  7944. @item POS
  7945. original position in the file of the frame, or undefined if undefined
  7946. for the current frame
  7947. @item PREV_INPTS
  7948. The previous input PTS.
  7949. @item PREV_INT
  7950. previous input time in seconds
  7951. @item PREV_OUTPTS
  7952. The previous output PTS.
  7953. @item PREV_OUTT
  7954. previous output time in seconds
  7955. @item RTCTIME
  7956. The wallclock (RTC) time in microseconds.. This is deprecated, use time(0)
  7957. instead.
  7958. @item RTCSTART
  7959. The wallclock (RTC) time at the start of the movie in microseconds.
  7960. @item TB
  7961. The timebase of the input timestamps.
  7962. @end table
  7963. @subsection Examples
  7964. @itemize
  7965. @item
  7966. Start counting PTS from zero
  7967. @example
  7968. setpts=PTS-STARTPTS
  7969. @end example
  7970. @item
  7971. Apply fast motion effect:
  7972. @example
  7973. setpts=0.5*PTS
  7974. @end example
  7975. @item
  7976. Apply slow motion effect:
  7977. @example
  7978. setpts=2.0*PTS
  7979. @end example
  7980. @item
  7981. Set fixed rate of 25 frames per second:
  7982. @example
  7983. setpts=N/(25*TB)
  7984. @end example
  7985. @item
  7986. Set fixed rate 25 fps with some jitter:
  7987. @example
  7988. setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
  7989. @end example
  7990. @item
  7991. Apply an offset of 10 seconds to the input PTS:
  7992. @example
  7993. setpts=PTS+10/TB
  7994. @end example
  7995. @item
  7996. Generate timestamps from a "live source" and rebase onto the current timebase:
  7997. @example
  7998. setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
  7999. @end example
  8000. @item
  8001. Generate timestamps by counting samples:
  8002. @example
  8003. asetpts=N/SR/TB
  8004. @end example
  8005. @end itemize
  8006. @section settb, asettb
  8007. Set the timebase to use for the output frames timestamps.
  8008. It is mainly useful for testing timebase configuration.
  8009. It accepts the following parameters:
  8010. @table @option
  8011. @item expr, tb
  8012. The expression which is evaluated into the output timebase.
  8013. @end table
  8014. The value for @option{tb} is an arithmetic expression representing a
  8015. rational. The expression can contain the constants "AVTB" (the default
  8016. timebase), "intb" (the input timebase) and "sr" (the sample rate,
  8017. audio only). Default value is "intb".
  8018. @subsection Examples
  8019. @itemize
  8020. @item
  8021. Set the timebase to 1/25:
  8022. @example
  8023. settb=expr=1/25
  8024. @end example
  8025. @item
  8026. Set the timebase to 1/10:
  8027. @example
  8028. settb=expr=0.1
  8029. @end example
  8030. @item
  8031. Set the timebase to 1001/1000:
  8032. @example
  8033. settb=1+0.001
  8034. @end example
  8035. @item
  8036. Set the timebase to 2*intb:
  8037. @example
  8038. settb=2*intb
  8039. @end example
  8040. @item
  8041. Set the default timebase value:
  8042. @example
  8043. settb=AVTB
  8044. @end example
  8045. @end itemize
  8046. @section showcqt
  8047. Convert input audio to a video output representing
  8048. frequency spectrum logarithmically (using constant Q transform with
  8049. Brown-Puckette algorithm), with musical tone scale, from E0 to D#10 (10 octaves).
  8050. The filter accepts the following options:
  8051. @table @option
  8052. @item volume
  8053. Specify transform volume (multiplier) expression. The expression can contain
  8054. variables:
  8055. @table @option
  8056. @item frequency, freq, f
  8057. the frequency where transform is evaluated
  8058. @item timeclamp, tc
  8059. value of timeclamp option
  8060. @end table
  8061. and functions:
  8062. @table @option
  8063. @item a_weighting(f)
  8064. A-weighting of equal loudness
  8065. @item b_weighting(f)
  8066. B-weighting of equal loudness
  8067. @item c_weighting(f)
  8068. C-weighting of equal loudness
  8069. @end table
  8070. Default value is @code{16}.
  8071. @item tlength
  8072. Specify transform length expression. The expression can contain variables:
  8073. @table @option
  8074. @item frequency, freq, f
  8075. the frequency where transform is evaluated
  8076. @item timeclamp, tc
  8077. value of timeclamp option
  8078. @end table
  8079. Default value is @code{384/f*tc/(384/f+tc)}.
  8080. @item timeclamp
  8081. Specify the transform timeclamp. At low frequency, there is trade-off between
  8082. accuracy in time domain and frequency domain. If timeclamp is lower,
  8083. event in time domain is represented more accurately (such as fast bass drum),
  8084. otherwise event in frequency domain is represented more accurately
  8085. (such as bass guitar). Acceptable value is [0.1, 1.0]. Default value is @code{0.17}.
  8086. @item coeffclamp
  8087. Specify the transform coeffclamp. If coeffclamp is lower, transform is
  8088. more accurate, otherwise transform is faster. Acceptable value is [0.1, 10.0].
  8089. Default value is @code{1.0}.
  8090. @item gamma
  8091. Specify gamma. Lower gamma makes the spectrum more contrast, higher gamma
  8092. makes the spectrum having more range. Acceptable value is [1.0, 7.0].
  8093. Default value is @code{3.0}.
  8094. @item fontfile
  8095. Specify font file for use with freetype. If not specified, use embedded font.
  8096. @item fullhd
  8097. If set to 1 (the default), the video size is 1920x1080 (full HD),
  8098. if set to 0, the video size is 960x540. Use this option to make CPU usage lower.
  8099. @item fps
  8100. Specify video fps. Default value is @code{25}.
  8101. @item count
  8102. Specify number of transform per frame, so there are fps*count transforms
  8103. per second. Note that audio data rate must be divisible by fps*count.
  8104. Default value is @code{6}.
  8105. @end table
  8106. @subsection Examples
  8107. @itemize
  8108. @item
  8109. Playing audio while showing the spectrum:
  8110. @example
  8111. ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
  8112. @end example
  8113. @item
  8114. Same as above, but with frame rate 30 fps:
  8115. @example
  8116. ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
  8117. @end example
  8118. @item
  8119. Playing at 960x540 and lower CPU usage:
  8120. @example
  8121. ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fullhd=0:count=3 [out0]'
  8122. @end example
  8123. @item
  8124. A1 and its harmonics: A1, A2, (near)E3, A3:
  8125. @example
  8126. ffplay -f lavfi 'aevalsrc=0.1*sin(2*PI*55*t)+0.1*sin(4*PI*55*t)+0.1*sin(6*PI*55*t)+0.1*sin(8*PI*55*t),
  8127. asplit[a][out1]; [a] showcqt [out0]'
  8128. @end example
  8129. @item
  8130. Same as above, but with more accuracy in frequency domain (and slower):
  8131. @example
  8132. ffplay -f lavfi 'aevalsrc=0.1*sin(2*PI*55*t)+0.1*sin(4*PI*55*t)+0.1*sin(6*PI*55*t)+0.1*sin(8*PI*55*t),
  8133. asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
  8134. @end example
  8135. @item
  8136. B-weighting of equal loudness
  8137. @example
  8138. volume=16*b_weighting(f)
  8139. @end example
  8140. @item
  8141. Lower Q factor
  8142. @example
  8143. tlength=100/f*tc/(100/f+tc)
  8144. @end example
  8145. @end itemize
  8146. @section showspectrum
  8147. Convert input audio to a video output, representing the audio frequency
  8148. spectrum.
  8149. The filter accepts the following options:
  8150. @table @option
  8151. @item size, s
  8152. Specify the video size for the output. For the syntax of this option, check
  8153. the "Video size" section in the ffmpeg-utils manual. Default value is
  8154. @code{640x512}.
  8155. @item slide
  8156. Specify if the spectrum should slide along the window. Default value is
  8157. @code{0}.
  8158. @item mode
  8159. Specify display mode.
  8160. It accepts the following values:
  8161. @table @samp
  8162. @item combined
  8163. all channels are displayed in the same row
  8164. @item separate
  8165. all channels are displayed in separate rows
  8166. @end table
  8167. Default value is @samp{combined}.
  8168. @item color
  8169. Specify display color mode.
  8170. It accepts the following values:
  8171. @table @samp
  8172. @item channel
  8173. each channel is displayed in a separate color
  8174. @item intensity
  8175. each channel is is displayed using the same color scheme
  8176. @end table
  8177. Default value is @samp{channel}.
  8178. @item scale
  8179. Specify scale used for calculating intensity color values.
  8180. It accepts the following values:
  8181. @table @samp
  8182. @item lin
  8183. linear
  8184. @item sqrt
  8185. square root, default
  8186. @item cbrt
  8187. cubic root
  8188. @item log
  8189. logarithmic
  8190. @end table
  8191. Default value is @samp{sqrt}.
  8192. @item saturation
  8193. Set saturation modifier for displayed colors. Negative values provide
  8194. alternative color scheme. @code{0} is no saturation at all.
  8195. Saturation must be in [-10.0, 10.0] range.
  8196. Default value is @code{1}.
  8197. @item win_func
  8198. Set window function.
  8199. It accepts the following values:
  8200. @table @samp
  8201. @item none
  8202. No samples pre-processing (do not expect this to be faster)
  8203. @item hann
  8204. Hann window
  8205. @item hamming
  8206. Hamming window
  8207. @item blackman
  8208. Blackman window
  8209. @end table
  8210. Default value is @code{hann}.
  8211. @end table
  8212. The usage is very similar to the showwaves filter; see the examples in that
  8213. section.
  8214. @subsection Examples
  8215. @itemize
  8216. @item
  8217. Large window with logarithmic color scaling:
  8218. @example
  8219. showspectrum=s=1280x480:scale=log
  8220. @end example
  8221. @item
  8222. Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
  8223. @example
  8224. ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
  8225. [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
  8226. @end example
  8227. @end itemize
  8228. @section showwaves
  8229. Convert input audio to a video output, representing the samples waves.
  8230. The filter accepts the following options:
  8231. @table @option
  8232. @item size, s
  8233. Specify the video size for the output. For the syntax of this option, check
  8234. the "Video size" section in the ffmpeg-utils manual. Default value
  8235. is "600x240".
  8236. @item mode
  8237. Set display mode.
  8238. Available values are:
  8239. @table @samp
  8240. @item point
  8241. Draw a point for each sample.
  8242. @item line
  8243. Draw a vertical line for each sample.
  8244. @item p2p
  8245. Draw a point for each sample and a line between them.
  8246. @end table
  8247. Default value is @code{point}.
  8248. @item n
  8249. Set the number of samples which are printed on the same column. A
  8250. larger value will decrease the frame rate. Must be a positive
  8251. integer. This option can be set only if the value for @var{rate}
  8252. is not explicitly specified.
  8253. @item rate, r
  8254. Set the (approximate) output frame rate. This is done by setting the
  8255. option @var{n}. Default value is "25".
  8256. @end table
  8257. @subsection Examples
  8258. @itemize
  8259. @item
  8260. Output the input file audio and the corresponding video representation
  8261. at the same time:
  8262. @example
  8263. amovie=a.mp3,asplit[out0],showwaves[out1]
  8264. @end example
  8265. @item
  8266. Create a synthetic signal and show it with showwaves, forcing a
  8267. frame rate of 30 frames per second:
  8268. @example
  8269. aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
  8270. @end example
  8271. @end itemize
  8272. @section split, asplit
  8273. Split input into several identical outputs.
  8274. @code{asplit} works with audio input, @code{split} with video.
  8275. The filter accepts a single parameter which specifies the number of outputs. If
  8276. unspecified, it defaults to 2.
  8277. @subsection Examples
  8278. @itemize
  8279. @item
  8280. Create two separate outputs from the same input:
  8281. @example
  8282. [in] split [out0][out1]
  8283. @end example
  8284. @item
  8285. To create 3 or more outputs, you need to specify the number of
  8286. outputs, like in:
  8287. @example
  8288. [in] asplit=3 [out0][out1][out2]
  8289. @end example
  8290. @item
  8291. Create two separate outputs from the same input, one cropped and
  8292. one padded:
  8293. @example
  8294. [in] split [splitout1][splitout2];
  8295. [splitout1] crop=100:100:0:0 [cropout];
  8296. [splitout2] pad=200:200:100:100 [padout];
  8297. @end example
  8298. @item
  8299. Create 5 copies of the input audio with @command{ffmpeg}:
  8300. @example
  8301. ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
  8302. @end example
  8303. @end itemize
  8304. @section zmq, azmq
  8305. Receive commands sent through a libzmq client, and forward them to
  8306. filters in the filtergraph.
  8307. @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
  8308. must be inserted between two video filters, @code{azmq} between two
  8309. audio filters.
  8310. To enable these filters you need to install the libzmq library and
  8311. headers and configure FFmpeg with @code{--enable-libzmq}.
  8312. For more information about libzmq see:
  8313. @url{http://www.zeromq.org/}
  8314. The @code{zmq} and @code{azmq} filters work as a libzmq server, which
  8315. receives messages sent through a network interface defined by the
  8316. @option{bind_address} option.
  8317. The received message must be in the form:
  8318. @example
  8319. @var{TARGET} @var{COMMAND} [@var{ARG}]
  8320. @end example
  8321. @var{TARGET} specifies the target of the command, usually the name of
  8322. the filter class or a specific filter instance name.
  8323. @var{COMMAND} specifies the name of the command for the target filter.
  8324. @var{ARG} is optional and specifies the optional argument list for the
  8325. given @var{COMMAND}.
  8326. Upon reception, the message is processed and the corresponding command
  8327. is injected into the filtergraph. Depending on the result, the filter
  8328. will send a reply to the client, adopting the format:
  8329. @example
  8330. @var{ERROR_CODE} @var{ERROR_REASON}
  8331. @var{MESSAGE}
  8332. @end example
  8333. @var{MESSAGE} is optional.
  8334. @subsection Examples
  8335. Look at @file{tools/zmqsend} for an example of a zmq client which can
  8336. be used to send commands processed by these filters.
  8337. Consider the following filtergraph generated by @command{ffplay}
  8338. @example
  8339. ffplay -dumpgraph 1 -f lavfi "
  8340. color=s=100x100:c=red [l];
  8341. color=s=100x100:c=blue [r];
  8342. nullsrc=s=200x100, zmq [bg];
  8343. [bg][l] overlay [bg+l];
  8344. [bg+l][r] overlay=x=100 "
  8345. @end example
  8346. To change the color of the left side of the video, the following
  8347. command can be used:
  8348. @example
  8349. echo Parsed_color_0 c yellow | tools/zmqsend
  8350. @end example
  8351. To change the right side:
  8352. @example
  8353. echo Parsed_color_1 c pink | tools/zmqsend
  8354. @end example
  8355. @c man end MULTIMEDIA FILTERS
  8356. @chapter Multimedia Sources
  8357. @c man begin MULTIMEDIA SOURCES
  8358. Below is a description of the currently available multimedia sources.
  8359. @section amovie
  8360. This is the same as @ref{movie} source, except it selects an audio
  8361. stream by default.
  8362. @anchor{movie}
  8363. @section movie
  8364. Read audio and/or video stream(s) from a movie container.
  8365. It accepts the following parameters:
  8366. @table @option
  8367. @item filename
  8368. The name of the resource to read (not necessarily a file; it can also be a
  8369. device or a stream accessed through some protocol).
  8370. @item format_name, f
  8371. Specifies the format assumed for the movie to read, and can be either
  8372. the name of a container or an input device. If not specified, the
  8373. format is guessed from @var{movie_name} or by probing.
  8374. @item seek_point, sp
  8375. Specifies the seek point in seconds. The frames will be output
  8376. starting from this seek point. The parameter is evaluated with
  8377. @code{av_strtod}, so the numerical value may be suffixed by an IS
  8378. postfix. The default value is "0".
  8379. @item streams, s
  8380. Specifies the streams to read. Several streams can be specified,
  8381. separated by "+". The source will then have as many outputs, in the
  8382. same order. The syntax is explained in the ``Stream specifiers''
  8383. section in the ffmpeg manual. Two special names, "dv" and "da" specify
  8384. respectively the default (best suited) video and audio stream. Default
  8385. is "dv", or "da" if the filter is called as "amovie".
  8386. @item stream_index, si
  8387. Specifies the index of the video stream to read. If the value is -1,
  8388. the most suitable video stream will be automatically selected. The default
  8389. value is "-1". Deprecated. If the filter is called "amovie", it will select
  8390. audio instead of video.
  8391. @item loop
  8392. Specifies how many times to read the stream in sequence.
  8393. If the value is less than 1, the stream will be read again and again.
  8394. Default value is "1".
  8395. Note that when the movie is looped the source timestamps are not
  8396. changed, so it will generate non monotonically increasing timestamps.
  8397. @end table
  8398. It allows overlaying a second video on top of the main input of
  8399. a filtergraph, as shown in this graph:
  8400. @example
  8401. input -----------> deltapts0 --> overlay --> output
  8402. ^
  8403. |
  8404. movie --> scale--> deltapts1 -------+
  8405. @end example
  8406. @subsection Examples
  8407. @itemize
  8408. @item
  8409. Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
  8410. on top of the input labelled "in":
  8411. @example
  8412. movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
  8413. [in] setpts=PTS-STARTPTS [main];
  8414. [main][over] overlay=16:16 [out]
  8415. @end example
  8416. @item
  8417. Read from a video4linux2 device, and overlay it on top of the input
  8418. labelled "in":
  8419. @example
  8420. movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
  8421. [in] setpts=PTS-STARTPTS [main];
  8422. [main][over] overlay=16:16 [out]
  8423. @end example
  8424. @item
  8425. Read the first video stream and the audio stream with id 0x81 from
  8426. dvd.vob; the video is connected to the pad named "video" and the audio is
  8427. connected to the pad named "audio":
  8428. @example
  8429. movie=dvd.vob:s=v:0+#0x81 [video] [audio]
  8430. @end example
  8431. @end itemize
  8432. @c man end MULTIMEDIA SOURCES