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.

18231 lines
486KB

  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. @verbatim
  9. [main]
  10. input --> split ---------------------> overlay --> output
  11. | ^
  12. |[tmp] [flip]|
  13. +-----> crop --> vflip -------+
  14. @end verbatim
  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 recognized by the
  93. @option{-filter}/@option{-vf}/@option{-af} and
  94. @option{-filter_complex} options in @command{ffmpeg} and
  95. @option{-vf}/@option{-af} in @command{ffplay}, and by the
  96. @code{avfilter_graph_parse_ptr()} function defined in
  97. @file{libavfilter/avfilter.h}.
  98. A filterchain consists of a sequence of connected filters, each one
  99. connected to the previous one in the sequence. A filterchain is
  100. represented by a list of ","-separated filter descriptions.
  101. A filtergraph consists of a sequence of filterchains. A sequence of
  102. filterchains is represented by a list of ";"-separated filterchain
  103. descriptions.
  104. A filter is represented by a string of the form:
  105. [@var{in_link_1}]...[@var{in_link_N}]@var{filter_name}=@var{arguments}[@var{out_link_1}]...[@var{out_link_M}]
  106. @var{filter_name} is the name of the filter class of which the
  107. described filter is an instance of, and has to be the name of one of
  108. the filter classes registered in the program.
  109. The name of the filter class is optionally followed by a string
  110. "=@var{arguments}".
  111. @var{arguments} is a string which contains the parameters used to
  112. initialize the filter instance. It may have one of two forms:
  113. @itemize
  114. @item
  115. A ':'-separated list of @var{key=value} pairs.
  116. @item
  117. A ':'-separated list of @var{value}. In this case, the keys are assumed to be
  118. the option names in the order they are declared. E.g. the @code{fade} filter
  119. declares three options in this order -- @option{type}, @option{start_frame} and
  120. @option{nb_frames}. Then the parameter list @var{in:0:30} means that the value
  121. @var{in} is assigned to the option @option{type}, @var{0} to
  122. @option{start_frame} and @var{30} to @option{nb_frames}.
  123. @item
  124. A ':'-separated list of mixed direct @var{value} and long @var{key=value}
  125. pairs. The direct @var{value} must precede the @var{key=value} pairs, and
  126. follow the same constraints order of the previous point. The following
  127. @var{key=value} pairs can be set in any preferred order.
  128. @end itemize
  129. If the option value itself is a list of items (e.g. the @code{format} filter
  130. takes a list of pixel formats), the items in the list are usually separated by
  131. @samp{|}.
  132. The list of arguments can be quoted using the character @samp{'} as initial
  133. and ending mark, and the character @samp{\} for escaping the characters
  134. within the quoted text; otherwise the argument string is considered
  135. terminated when the next special character (belonging to the set
  136. @samp{[]=;,}) is encountered.
  137. The name and arguments of the filter are optionally preceded and
  138. followed by a list of link labels.
  139. A link label allows one to name a link and associate it to a filter output
  140. or input pad. The preceding labels @var{in_link_1}
  141. ... @var{in_link_N}, are associated to the filter input pads,
  142. the following labels @var{out_link_1} ... @var{out_link_M}, are
  143. associated to the output pads.
  144. When two link labels with the same name are found in the
  145. filtergraph, a link between the corresponding input and output pad is
  146. created.
  147. If an output pad is not labelled, it is linked by default to the first
  148. unlabelled input pad of the next filter in the filterchain.
  149. For example in the filterchain
  150. @example
  151. nullsrc, split[L1], [L2]overlay, nullsink
  152. @end example
  153. the split filter instance has two output pads, and the overlay filter
  154. instance two input pads. The first output pad of split is labelled
  155. "L1", the first input pad of overlay is labelled "L2", and the second
  156. output pad of split is linked to the second input pad of overlay,
  157. which are both unlabelled.
  158. In a filter description, if the input label of the first filter is not
  159. specified, "in" is assumed; if the output label of the last filter is not
  160. specified, "out" is assumed.
  161. In a complete filterchain all the unlabelled filter input and output
  162. pads must be connected. A filtergraph is considered valid if all the
  163. filter input and output pads of all the filterchains are connected.
  164. Libavfilter will automatically insert @ref{scale} filters where format
  165. conversion is required. It is possible to specify swscale flags
  166. for those automatically inserted scalers by prepending
  167. @code{sws_flags=@var{flags};}
  168. to the filtergraph description.
  169. Here is a BNF description of the filtergraph syntax:
  170. @example
  171. @var{NAME} ::= sequence of alphanumeric characters and '_'
  172. @var{LINKLABEL} ::= "[" @var{NAME} "]"
  173. @var{LINKLABELS} ::= @var{LINKLABEL} [@var{LINKLABELS}]
  174. @var{FILTER_ARGUMENTS} ::= sequence of chars (possibly quoted)
  175. @var{FILTER} ::= [@var{LINKLABELS}] @var{NAME} ["=" @var{FILTER_ARGUMENTS}] [@var{LINKLABELS}]
  176. @var{FILTERCHAIN} ::= @var{FILTER} [,@var{FILTERCHAIN}]
  177. @var{FILTERGRAPH} ::= [sws_flags=@var{flags};] @var{FILTERCHAIN} [;@var{FILTERGRAPH}]
  178. @end example
  179. @section Notes on filtergraph escaping
  180. Filtergraph description composition entails several levels of
  181. escaping. See @ref{quoting_and_escaping,,the "Quoting and escaping"
  182. section in the ffmpeg-utils(1) manual,ffmpeg-utils} for more
  183. information about the employed escaping procedure.
  184. A first level escaping affects the content of each filter option
  185. value, which may contain the special character @code{:} used to
  186. separate values, or one of the escaping characters @code{\'}.
  187. A second level escaping affects the whole filter description, which
  188. may contain the escaping characters @code{\'} or the special
  189. characters @code{[],;} used by the filtergraph description.
  190. Finally, when you specify a filtergraph on a shell commandline, you
  191. need to perform a third level escaping for the shell special
  192. characters contained within it.
  193. For example, consider the following string to be embedded in
  194. the @ref{drawtext} filter description @option{text} value:
  195. @example
  196. this is a 'string': may contain one, or more, special characters
  197. @end example
  198. This string contains the @code{'} special escaping character, and the
  199. @code{:} special character, so it needs to be escaped in this way:
  200. @example
  201. text=this is a \'string\'\: may contain one, or more, special characters
  202. @end example
  203. A second level of escaping is required when embedding the filter
  204. description in a filtergraph description, in order to escape all the
  205. filtergraph special characters. Thus the example above becomes:
  206. @example
  207. drawtext=text=this is a \\\'string\\\'\\: may contain one\, or more\, special characters
  208. @end example
  209. (note that in addition to the @code{\'} escaping special characters,
  210. also @code{,} needs to be escaped).
  211. Finally an additional level of escaping is needed when writing the
  212. filtergraph description in a shell command, which depends on the
  213. escaping rules of the adopted shell. For example, assuming that
  214. @code{\} is special and needs to be escaped with another @code{\}, the
  215. previous string will finally result in:
  216. @example
  217. -vf "drawtext=text=this is a \\\\\\'string\\\\\\'\\\\: may contain one\\, or more\\, special characters"
  218. @end example
  219. @chapter Timeline editing
  220. Some filters support a generic @option{enable} option. For the filters
  221. supporting timeline editing, this option can be set to an expression which is
  222. evaluated before sending a frame to the filter. If the evaluation is non-zero,
  223. the filter will be enabled, otherwise the frame will be sent unchanged to the
  224. next filter in the filtergraph.
  225. The expression accepts the following values:
  226. @table @samp
  227. @item t
  228. timestamp expressed in seconds, NAN if the input timestamp is unknown
  229. @item n
  230. sequential number of the input frame, starting from 0
  231. @item pos
  232. the position in the file of the input frame, NAN if unknown
  233. @item w
  234. @item h
  235. width and height of the input frame if video
  236. @end table
  237. Additionally, these filters support an @option{enable} command that can be used
  238. to re-define the expression.
  239. Like any other filtering option, the @option{enable} option follows the same
  240. rules.
  241. For example, to enable a blur filter (@ref{smartblur}) from 10 seconds to 3
  242. minutes, and a @ref{curves} filter starting at 3 seconds:
  243. @example
  244. smartblur = enable='between(t,10,3*60)',
  245. curves = enable='gte(t,3)' : preset=cross_process
  246. @end example
  247. @c man end FILTERGRAPH DESCRIPTION
  248. @chapter Audio Filters
  249. @c man begin AUDIO FILTERS
  250. When you configure your FFmpeg build, you can disable any of the
  251. existing filters using @code{--disable-filters}.
  252. The configure output will show the audio filters included in your
  253. build.
  254. Below is a description of the currently available audio filters.
  255. @section acompressor
  256. A compressor is mainly used to reduce the dynamic range of a signal.
  257. Especially modern music is mostly compressed at a high ratio to
  258. improve the overall loudness. It's done to get the highest attention
  259. of a listener, "fatten" the sound and bring more "power" to the track.
  260. If a signal is compressed too much it may sound dull or "dead"
  261. afterwards or it may start to "pump" (which could be a powerful effect
  262. but can also destroy a track completely).
  263. The right compression is the key to reach a professional sound and is
  264. the high art of mixing and mastering. Because of its complex settings
  265. it may take a long time to get the right feeling for this kind of effect.
  266. Compression is done by detecting the volume above a chosen level
  267. @code{threshold} and dividing it by the factor set with @code{ratio}.
  268. So if you set the threshold to -12dB and your signal reaches -6dB a ratio
  269. of 2:1 will result in a signal at -9dB. Because an exact manipulation of
  270. the signal would cause distortion of the waveform the reduction can be
  271. levelled over the time. This is done by setting "Attack" and "Release".
  272. @code{attack} determines how long the signal has to rise above the threshold
  273. before any reduction will occur and @code{release} sets the time the signal
  274. has to fall below the threshold to reduce the reduction again. Shorter signals
  275. than the chosen attack time will be left untouched.
  276. The overall reduction of the signal can be made up afterwards with the
  277. @code{makeup} setting. So compressing the peaks of a signal about 6dB and
  278. raising the makeup to this level results in a signal twice as loud than the
  279. source. To gain a softer entry in the compression the @code{knee} flattens the
  280. hard edge at the threshold in the range of the chosen decibels.
  281. The filter accepts the following options:
  282. @table @option
  283. @item level_in
  284. Set input gain. Default is 1. Range is between 0.015625 and 64.
  285. @item threshold
  286. If a signal of second stream rises above this level it will affect the gain
  287. reduction of the first stream.
  288. By default it is 0.125. Range is between 0.00097563 and 1.
  289. @item ratio
  290. Set a ratio by which the signal is reduced. 1:2 means that if the level
  291. rose 4dB above the threshold, it will be only 2dB above after the reduction.
  292. Default is 2. Range is between 1 and 20.
  293. @item attack
  294. Amount of milliseconds the signal has to rise above the threshold before gain
  295. reduction starts. Default is 20. Range is between 0.01 and 2000.
  296. @item release
  297. Amount of milliseconds the signal has to fall below the threshold before
  298. reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
  299. @item makeup
  300. Set the amount by how much signal will be amplified after processing.
  301. Default is 2. Range is from 1 and 64.
  302. @item knee
  303. Curve the sharp knee around the threshold to enter gain reduction more softly.
  304. Default is 2.82843. Range is between 1 and 8.
  305. @item link
  306. Choose if the @code{average} level between all channels of input stream
  307. or the louder(@code{maximum}) channel of input stream affects the
  308. reduction. Default is @code{average}.
  309. @item detection
  310. Should the exact signal be taken in case of @code{peak} or an RMS one in case
  311. of @code{rms}. Default is @code{rms} which is mostly smoother.
  312. @item mix
  313. How much to use compressed signal in output. Default is 1.
  314. Range is between 0 and 1.
  315. @end table
  316. @section acrossfade
  317. Apply cross fade from one input audio stream to another input audio stream.
  318. The cross fade is applied for specified duration near the end of first stream.
  319. The filter accepts the following options:
  320. @table @option
  321. @item nb_samples, ns
  322. Specify the number of samples for which the cross fade effect has to last.
  323. At the end of the cross fade effect the first input audio will be completely
  324. silent. Default is 44100.
  325. @item duration, d
  326. Specify the duration of the cross fade effect. See
  327. @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
  328. for the accepted syntax.
  329. By default the duration is determined by @var{nb_samples}.
  330. If set this option is used instead of @var{nb_samples}.
  331. @item overlap, o
  332. Should first stream end overlap with second stream start. Default is enabled.
  333. @item curve1
  334. Set curve for cross fade transition for first stream.
  335. @item curve2
  336. Set curve for cross fade transition for second stream.
  337. For description of available curve types see @ref{afade} filter description.
  338. @end table
  339. @subsection Examples
  340. @itemize
  341. @item
  342. Cross fade from one input to another:
  343. @example
  344. ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:c1=exp:c2=exp output.flac
  345. @end example
  346. @item
  347. Cross fade from one input to another but without overlapping:
  348. @example
  349. ffmpeg -i first.flac -i second.flac -filter_complex acrossfade=d=10:o=0:c1=exp:c2=exp output.flac
  350. @end example
  351. @end itemize
  352. @section acrusher
  353. Reduce audio bit resolution.
  354. This filter is bit crusher with enhanced functionality. A bit crusher
  355. is used to audibly reduce number of bits an audio signal is sampled
  356. with. This doesn't change the bit depth at all, it just produces the
  357. effect. Material reduced in bit depth sounds more harsh and "digital".
  358. This filter is able to even round to continuous values instead of discrete
  359. bit depths.
  360. Additionally it has a D/C offset which results in different crushing of
  361. the lower and the upper half of the signal.
  362. An Anti-Aliasing setting is able to produce "softer" crushing sounds.
  363. Another feature of this filter is the logarithmic mode.
  364. This setting switches from linear distances between bits to logarithmic ones.
  365. The result is a much more "natural" sounding crusher which doesn't gate low
  366. signals for example. The human ear has a logarithmic perception, too
  367. so this kind of crushing is much more pleasant.
  368. Logarithmic crushing is also able to get anti-aliased.
  369. The filter accepts the following options:
  370. @table @option
  371. @item level_in
  372. Set level in.
  373. @item level_out
  374. Set level out.
  375. @item bits
  376. Set bit reduction.
  377. @item mix
  378. Set mixing amount.
  379. @item mode
  380. Can be linear: @code{lin} or logarithmic: @code{log}.
  381. @item dc
  382. Set DC.
  383. @item aa
  384. Set anti-aliasing.
  385. @item samples
  386. Set sample reduction.
  387. @item lfo
  388. Enable LFO. By default disabled.
  389. @item lforange
  390. Set LFO range.
  391. @item lforate
  392. Set LFO rate.
  393. @end table
  394. @section adelay
  395. Delay one or more audio channels.
  396. Samples in delayed channel are filled with silence.
  397. The filter accepts the following option:
  398. @table @option
  399. @item delays
  400. Set list of delays in milliseconds for each channel separated by '|'.
  401. At least one delay greater than 0 should be provided.
  402. Unused delays will be silently ignored. If number of given delays is
  403. smaller than number of channels all remaining channels will not be delayed.
  404. If you want to delay exact number of samples, append 'S' to number.
  405. @end table
  406. @subsection Examples
  407. @itemize
  408. @item
  409. Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
  410. the second channel (and any other channels that may be present) unchanged.
  411. @example
  412. adelay=1500|0|500
  413. @end example
  414. @item
  415. Delay second channel by 500 samples, the third channel by 700 samples and leave
  416. the first channel (and any other channels that may be present) unchanged.
  417. @example
  418. adelay=0|500S|700S
  419. @end example
  420. @end itemize
  421. @section aecho
  422. Apply echoing to the input audio.
  423. Echoes are reflected sound and can occur naturally amongst mountains
  424. (and sometimes large buildings) when talking or shouting; digital echo
  425. effects emulate this behaviour and are often used to help fill out the
  426. sound of a single instrument or vocal. The time difference between the
  427. original signal and the reflection is the @code{delay}, and the
  428. loudness of the reflected signal is the @code{decay}.
  429. Multiple echoes can have different delays and decays.
  430. A description of the accepted parameters follows.
  431. @table @option
  432. @item in_gain
  433. Set input gain of reflected signal. Default is @code{0.6}.
  434. @item out_gain
  435. Set output gain of reflected signal. Default is @code{0.3}.
  436. @item delays
  437. Set list of time intervals in milliseconds between original signal and reflections
  438. separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
  439. Default is @code{1000}.
  440. @item decays
  441. Set list of loudnesses of reflected signals separated by '|'.
  442. Allowed range for each @code{decay} is @code{(0 - 1.0]}.
  443. Default is @code{0.5}.
  444. @end table
  445. @subsection Examples
  446. @itemize
  447. @item
  448. Make it sound as if there are twice as many instruments as are actually playing:
  449. @example
  450. aecho=0.8:0.88:60:0.4
  451. @end example
  452. @item
  453. If delay is very short, then it sound like a (metallic) robot playing music:
  454. @example
  455. aecho=0.8:0.88:6:0.4
  456. @end example
  457. @item
  458. A longer delay will sound like an open air concert in the mountains:
  459. @example
  460. aecho=0.8:0.9:1000:0.3
  461. @end example
  462. @item
  463. Same as above but with one more mountain:
  464. @example
  465. aecho=0.8:0.9:1000|1800:0.3|0.25
  466. @end example
  467. @end itemize
  468. @section aemphasis
  469. Audio emphasis filter creates or restores material directly taken from LPs or
  470. emphased CDs with different filter curves. E.g. to store music on vinyl the
  471. signal has to be altered by a filter first to even out the disadvantages of
  472. this recording medium.
  473. Once the material is played back the inverse filter has to be applied to
  474. restore the distortion of the frequency response.
  475. The filter accepts the following options:
  476. @table @option
  477. @item level_in
  478. Set input gain.
  479. @item level_out
  480. Set output gain.
  481. @item mode
  482. Set filter mode. For restoring material use @code{reproduction} mode, otherwise
  483. use @code{production} mode. Default is @code{reproduction} mode.
  484. @item type
  485. Set filter type. Selects medium. Can be one of the following:
  486. @table @option
  487. @item col
  488. select Columbia.
  489. @item emi
  490. select EMI.
  491. @item bsi
  492. select BSI (78RPM).
  493. @item riaa
  494. select RIAA.
  495. @item cd
  496. select Compact Disc (CD).
  497. @item 50fm
  498. select 50µs (FM).
  499. @item 75fm
  500. select 75µs (FM).
  501. @item 50kf
  502. select 50µs (FM-KF).
  503. @item 75kf
  504. select 75µs (FM-KF).
  505. @end table
  506. @end table
  507. @section aeval
  508. Modify an audio signal according to the specified expressions.
  509. This filter accepts one or more expressions (one for each channel),
  510. which are evaluated and used to modify a corresponding audio signal.
  511. It accepts the following parameters:
  512. @table @option
  513. @item exprs
  514. Set the '|'-separated expressions list for each separate channel. If
  515. the number of input channels is greater than the number of
  516. expressions, the last specified expression is used for the remaining
  517. output channels.
  518. @item channel_layout, c
  519. Set output channel layout. If not specified, the channel layout is
  520. specified by the number of expressions. If set to @samp{same}, it will
  521. use by default the same input channel layout.
  522. @end table
  523. Each expression in @var{exprs} can contain the following constants and functions:
  524. @table @option
  525. @item ch
  526. channel number of the current expression
  527. @item n
  528. number of the evaluated sample, starting from 0
  529. @item s
  530. sample rate
  531. @item t
  532. time of the evaluated sample expressed in seconds
  533. @item nb_in_channels
  534. @item nb_out_channels
  535. input and output number of channels
  536. @item val(CH)
  537. the value of input channel with number @var{CH}
  538. @end table
  539. Note: this filter is slow. For faster processing you should use a
  540. dedicated filter.
  541. @subsection Examples
  542. @itemize
  543. @item
  544. Half volume:
  545. @example
  546. aeval=val(ch)/2:c=same
  547. @end example
  548. @item
  549. Invert phase of the second channel:
  550. @example
  551. aeval=val(0)|-val(1)
  552. @end example
  553. @end itemize
  554. @anchor{afade}
  555. @section afade
  556. Apply fade-in/out effect to input audio.
  557. A description of the accepted parameters follows.
  558. @table @option
  559. @item type, t
  560. Specify the effect type, can be either @code{in} for fade-in, or
  561. @code{out} for a fade-out effect. Default is @code{in}.
  562. @item start_sample, ss
  563. Specify the number of the start sample for starting to apply the fade
  564. effect. Default is 0.
  565. @item nb_samples, ns
  566. Specify the number of samples for which the fade effect has to last. At
  567. the end of the fade-in effect the output audio will have the same
  568. volume as the input audio, at the end of the fade-out transition
  569. the output audio will be silence. Default is 44100.
  570. @item start_time, st
  571. Specify the start time of the fade effect. Default is 0.
  572. The value must be specified as a time duration; see
  573. @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
  574. for the accepted syntax.
  575. If set this option is used instead of @var{start_sample}.
  576. @item duration, d
  577. Specify the duration of the fade effect. See
  578. @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
  579. for the accepted syntax.
  580. At the end of the fade-in effect the output audio will have the same
  581. volume as the input audio, at the end of the fade-out transition
  582. the output audio will be silence.
  583. By default the duration is determined by @var{nb_samples}.
  584. If set this option is used instead of @var{nb_samples}.
  585. @item curve
  586. Set curve for fade transition.
  587. It accepts the following values:
  588. @table @option
  589. @item tri
  590. select triangular, linear slope (default)
  591. @item qsin
  592. select quarter of sine wave
  593. @item hsin
  594. select half of sine wave
  595. @item esin
  596. select exponential sine wave
  597. @item log
  598. select logarithmic
  599. @item ipar
  600. select inverted parabola
  601. @item qua
  602. select quadratic
  603. @item cub
  604. select cubic
  605. @item squ
  606. select square root
  607. @item cbr
  608. select cubic root
  609. @item par
  610. select parabola
  611. @item exp
  612. select exponential
  613. @item iqsin
  614. select inverted quarter of sine wave
  615. @item ihsin
  616. select inverted half of sine wave
  617. @item dese
  618. select double-exponential seat
  619. @item desi
  620. select double-exponential sigmoid
  621. @end table
  622. @end table
  623. @subsection Examples
  624. @itemize
  625. @item
  626. Fade in first 15 seconds of audio:
  627. @example
  628. afade=t=in:ss=0:d=15
  629. @end example
  630. @item
  631. Fade out last 25 seconds of a 900 seconds audio:
  632. @example
  633. afade=t=out:st=875:d=25
  634. @end example
  635. @end itemize
  636. @section afftfilt
  637. Apply arbitrary expressions to samples in frequency domain.
  638. @table @option
  639. @item real
  640. Set frequency domain real expression for each separate channel separated
  641. by '|'. Default is "1".
  642. If the number of input channels is greater than the number of
  643. expressions, the last specified expression is used for the remaining
  644. output channels.
  645. @item imag
  646. Set frequency domain imaginary expression for each separate channel
  647. separated by '|'. If not set, @var{real} option is used.
  648. Each expression in @var{real} and @var{imag} can contain the following
  649. constants:
  650. @table @option
  651. @item sr
  652. sample rate
  653. @item b
  654. current frequency bin number
  655. @item nb
  656. number of available bins
  657. @item ch
  658. channel number of the current expression
  659. @item chs
  660. number of channels
  661. @item pts
  662. current frame pts
  663. @end table
  664. @item win_size
  665. Set window size.
  666. It accepts the following values:
  667. @table @samp
  668. @item w16
  669. @item w32
  670. @item w64
  671. @item w128
  672. @item w256
  673. @item w512
  674. @item w1024
  675. @item w2048
  676. @item w4096
  677. @item w8192
  678. @item w16384
  679. @item w32768
  680. @item w65536
  681. @end table
  682. Default is @code{w4096}
  683. @item win_func
  684. Set window function. Default is @code{hann}.
  685. @item overlap
  686. Set window overlap. If set to 1, the recommended overlap for selected
  687. window function will be picked. Default is @code{0.75}.
  688. @end table
  689. @subsection Examples
  690. @itemize
  691. @item
  692. Leave almost only low frequencies in audio:
  693. @example
  694. afftfilt="1-clip((b/nb)*b,0,1)"
  695. @end example
  696. @end itemize
  697. @anchor{aformat}
  698. @section aformat
  699. Set output format constraints for the input audio. The framework will
  700. negotiate the most appropriate format to minimize conversions.
  701. It accepts the following parameters:
  702. @table @option
  703. @item sample_fmts
  704. A '|'-separated list of requested sample formats.
  705. @item sample_rates
  706. A '|'-separated list of requested sample rates.
  707. @item channel_layouts
  708. A '|'-separated list of requested channel layouts.
  709. See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
  710. for the required syntax.
  711. @end table
  712. If a parameter is omitted, all values are allowed.
  713. Force the output to either unsigned 8-bit or signed 16-bit stereo
  714. @example
  715. aformat=sample_fmts=u8|s16:channel_layouts=stereo
  716. @end example
  717. @section agate
  718. A gate is mainly used to reduce lower parts of a signal. This kind of signal
  719. processing reduces disturbing noise between useful signals.
  720. Gating is done by detecting the volume below a chosen level @var{threshold}
  721. and dividing it by the factor set with @var{ratio}. The bottom of the noise
  722. floor is set via @var{range}. Because an exact manipulation of the signal
  723. would cause distortion of the waveform the reduction can be levelled over
  724. time. This is done by setting @var{attack} and @var{release}.
  725. @var{attack} determines how long the signal has to fall below the threshold
  726. before any reduction will occur and @var{release} sets the time the signal
  727. has to rise above the threshold to reduce the reduction again.
  728. Shorter signals than the chosen attack time will be left untouched.
  729. @table @option
  730. @item level_in
  731. Set input level before filtering.
  732. Default is 1. Allowed range is from 0.015625 to 64.
  733. @item range
  734. Set the level of gain reduction when the signal is below the threshold.
  735. Default is 0.06125. Allowed range is from 0 to 1.
  736. @item threshold
  737. If a signal rises above this level the gain reduction is released.
  738. Default is 0.125. Allowed range is from 0 to 1.
  739. @item ratio
  740. Set a ratio by which the signal is reduced.
  741. Default is 2. Allowed range is from 1 to 9000.
  742. @item attack
  743. Amount of milliseconds the signal has to rise above the threshold before gain
  744. reduction stops.
  745. Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
  746. @item release
  747. Amount of milliseconds the signal has to fall below the threshold before the
  748. reduction is increased again. Default is 250 milliseconds.
  749. Allowed range is from 0.01 to 9000.
  750. @item makeup
  751. Set amount of amplification of signal after processing.
  752. Default is 1. Allowed range is from 1 to 64.
  753. @item knee
  754. Curve the sharp knee around the threshold to enter gain reduction more softly.
  755. Default is 2.828427125. Allowed range is from 1 to 8.
  756. @item detection
  757. Choose if exact signal should be taken for detection or an RMS like one.
  758. Default is @code{rms}. Can be @code{peak} or @code{rms}.
  759. @item link
  760. Choose if the average level between all channels or the louder channel affects
  761. the reduction.
  762. Default is @code{average}. Can be @code{average} or @code{maximum}.
  763. @end table
  764. @section alimiter
  765. The limiter prevents an input signal from rising over a desired threshold.
  766. This limiter uses lookahead technology to prevent your signal from distorting.
  767. It means that there is a small delay after the signal is processed. Keep in mind
  768. that the delay it produces is the attack time you set.
  769. The filter accepts the following options:
  770. @table @option
  771. @item level_in
  772. Set input gain. Default is 1.
  773. @item level_out
  774. Set output gain. Default is 1.
  775. @item limit
  776. Don't let signals above this level pass the limiter. Default is 1.
  777. @item attack
  778. The limiter will reach its attenuation level in this amount of time in
  779. milliseconds. Default is 5 milliseconds.
  780. @item release
  781. Come back from limiting to attenuation 1.0 in this amount of milliseconds.
  782. Default is 50 milliseconds.
  783. @item asc
  784. When gain reduction is always needed ASC takes care of releasing to an
  785. average reduction level rather than reaching a reduction of 0 in the release
  786. time.
  787. @item asc_level
  788. Select how much the release time is affected by ASC, 0 means nearly no changes
  789. in release time while 1 produces higher release times.
  790. @item level
  791. Auto level output signal. Default is enabled.
  792. This normalizes audio back to 0dB if enabled.
  793. @end table
  794. Depending on picked setting it is recommended to upsample input 2x or 4x times
  795. with @ref{aresample} before applying this filter.
  796. @section allpass
  797. Apply a two-pole all-pass filter with central frequency (in Hz)
  798. @var{frequency}, and filter-width @var{width}.
  799. An all-pass filter changes the audio's frequency to phase relationship
  800. without changing its frequency to amplitude relationship.
  801. The filter accepts the following options:
  802. @table @option
  803. @item frequency, f
  804. Set frequency in Hz.
  805. @item width_type
  806. Set method to specify band-width of filter.
  807. @table @option
  808. @item h
  809. Hz
  810. @item q
  811. Q-Factor
  812. @item o
  813. octave
  814. @item s
  815. slope
  816. @end table
  817. @item width, w
  818. Specify the band-width of a filter in width_type units.
  819. @end table
  820. @section aloop
  821. Loop audio samples.
  822. The filter accepts the following options:
  823. @table @option
  824. @item loop
  825. Set the number of loops.
  826. @item size
  827. Set maximal number of samples.
  828. @item start
  829. Set first sample of loop.
  830. @end table
  831. @anchor{amerge}
  832. @section amerge
  833. Merge two or more audio streams into a single multi-channel stream.
  834. The filter accepts the following options:
  835. @table @option
  836. @item inputs
  837. Set the number of inputs. Default is 2.
  838. @end table
  839. If the channel layouts of the inputs are disjoint, and therefore compatible,
  840. the channel layout of the output will be set accordingly and the channels
  841. will be reordered as necessary. If the channel layouts of the inputs are not
  842. disjoint, the output will have all the channels of the first input then all
  843. the channels of the second input, in that order, and the channel layout of
  844. the output will be the default value corresponding to the total number of
  845. channels.
  846. For example, if the first input is in 2.1 (FL+FR+LF) and the second input
  847. is FC+BL+BR, then the output will be in 5.1, with the channels in the
  848. following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
  849. first input, b1 is the first channel of the second input).
  850. On the other hand, if both input are in stereo, the output channels will be
  851. in the default order: a1, a2, b1, b2, and the channel layout will be
  852. arbitrarily set to 4.0, which may or may not be the expected value.
  853. All inputs must have the same sample rate, and format.
  854. If inputs do not have the same duration, the output will stop with the
  855. shortest.
  856. @subsection Examples
  857. @itemize
  858. @item
  859. Merge two mono files into a stereo stream:
  860. @example
  861. amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
  862. @end example
  863. @item
  864. Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
  865. @example
  866. 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
  867. @end example
  868. @end itemize
  869. @section amix
  870. Mixes multiple audio inputs into a single output.
  871. Note that this filter only supports float samples (the @var{amerge}
  872. and @var{pan} audio filters support many formats). If the @var{amix}
  873. input has integer samples then @ref{aresample} will be automatically
  874. inserted to perform the conversion to float samples.
  875. For example
  876. @example
  877. ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
  878. @end example
  879. will mix 3 input audio streams to a single output with the same duration as the
  880. first input and a dropout transition time of 3 seconds.
  881. It accepts the following parameters:
  882. @table @option
  883. @item inputs
  884. The number of inputs. If unspecified, it defaults to 2.
  885. @item duration
  886. How to determine the end-of-stream.
  887. @table @option
  888. @item longest
  889. The duration of the longest input. (default)
  890. @item shortest
  891. The duration of the shortest input.
  892. @item first
  893. The duration of the first input.
  894. @end table
  895. @item dropout_transition
  896. The transition time, in seconds, for volume renormalization when an input
  897. stream ends. The default value is 2 seconds.
  898. @end table
  899. @section anequalizer
  900. High-order parametric multiband equalizer for each channel.
  901. It accepts the following parameters:
  902. @table @option
  903. @item params
  904. This option string is in format:
  905. "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
  906. Each equalizer band is separated by '|'.
  907. @table @option
  908. @item chn
  909. Set channel number to which equalization will be applied.
  910. If input doesn't have that channel the entry is ignored.
  911. @item f
  912. Set central frequency for band.
  913. If input doesn't have that frequency the entry is ignored.
  914. @item w
  915. Set band width in hertz.
  916. @item g
  917. Set band gain in dB.
  918. @item t
  919. Set filter type for band, optional, can be:
  920. @table @samp
  921. @item 0
  922. Butterworth, this is default.
  923. @item 1
  924. Chebyshev type 1.
  925. @item 2
  926. Chebyshev type 2.
  927. @end table
  928. @end table
  929. @item curves
  930. With this option activated frequency response of anequalizer is displayed
  931. in video stream.
  932. @item size
  933. Set video stream size. Only useful if curves option is activated.
  934. @item mgain
  935. Set max gain that will be displayed. Only useful if curves option is activated.
  936. Setting this to a reasonable value makes it possible to display gain which is derived from
  937. neighbour bands which are too close to each other and thus produce higher gain
  938. when both are activated.
  939. @item fscale
  940. Set frequency scale used to draw frequency response in video output.
  941. Can be linear or logarithmic. Default is logarithmic.
  942. @item colors
  943. Set color for each channel curve which is going to be displayed in video stream.
  944. This is list of color names separated by space or by '|'.
  945. Unrecognised or missing colors will be replaced by white color.
  946. @end table
  947. @subsection Examples
  948. @itemize
  949. @item
  950. Lower gain by 10 of central frequency 200Hz and width 100 Hz
  951. for first 2 channels using Chebyshev type 1 filter:
  952. @example
  953. anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
  954. @end example
  955. @end itemize
  956. @subsection Commands
  957. This filter supports the following commands:
  958. @table @option
  959. @item change
  960. Alter existing filter parameters.
  961. Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
  962. @var{fN} is existing filter number, starting from 0, if no such filter is available
  963. error is returned.
  964. @var{freq} set new frequency parameter.
  965. @var{width} set new width parameter in herz.
  966. @var{gain} set new gain parameter in dB.
  967. Full filter invocation with asendcmd may look like this:
  968. asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
  969. @end table
  970. @section anull
  971. Pass the audio source unchanged to the output.
  972. @section apad
  973. Pad the end of an audio stream with silence.
  974. This can be used together with @command{ffmpeg} @option{-shortest} to
  975. extend audio streams to the same length as the video stream.
  976. A description of the accepted options follows.
  977. @table @option
  978. @item packet_size
  979. Set silence packet size. Default value is 4096.
  980. @item pad_len
  981. Set the number of samples of silence to add to the end. After the
  982. value is reached, the stream is terminated. This option is mutually
  983. exclusive with @option{whole_len}.
  984. @item whole_len
  985. Set the minimum total number of samples in the output audio stream. If
  986. the value is longer than the input audio length, silence is added to
  987. the end, until the value is reached. This option is mutually exclusive
  988. with @option{pad_len}.
  989. @end table
  990. If neither the @option{pad_len} nor the @option{whole_len} option is
  991. set, the filter will add silence to the end of the input stream
  992. indefinitely.
  993. @subsection Examples
  994. @itemize
  995. @item
  996. Add 1024 samples of silence to the end of the input:
  997. @example
  998. apad=pad_len=1024
  999. @end example
  1000. @item
  1001. Make sure the audio output will contain at least 10000 samples, pad
  1002. the input with silence if required:
  1003. @example
  1004. apad=whole_len=10000
  1005. @end example
  1006. @item
  1007. Use @command{ffmpeg} to pad the audio input with silence, so that the
  1008. video stream will always result the shortest and will be converted
  1009. until the end in the output file when using the @option{shortest}
  1010. option:
  1011. @example
  1012. ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
  1013. @end example
  1014. @end itemize
  1015. @section aphaser
  1016. Add a phasing effect to the input audio.
  1017. A phaser filter creates series of peaks and troughs in the frequency spectrum.
  1018. The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
  1019. A description of the accepted parameters follows.
  1020. @table @option
  1021. @item in_gain
  1022. Set input gain. Default is 0.4.
  1023. @item out_gain
  1024. Set output gain. Default is 0.74
  1025. @item delay
  1026. Set delay in milliseconds. Default is 3.0.
  1027. @item decay
  1028. Set decay. Default is 0.4.
  1029. @item speed
  1030. Set modulation speed in Hz. Default is 0.5.
  1031. @item type
  1032. Set modulation type. Default is triangular.
  1033. It accepts the following values:
  1034. @table @samp
  1035. @item triangular, t
  1036. @item sinusoidal, s
  1037. @end table
  1038. @end table
  1039. @section apulsator
  1040. Audio pulsator is something between an autopanner and a tremolo.
  1041. But it can produce funny stereo effects as well. Pulsator changes the volume
  1042. of the left and right channel based on a LFO (low frequency oscillator) with
  1043. different waveforms and shifted phases.
  1044. This filter have the ability to define an offset between left and right
  1045. channel. An offset of 0 means that both LFO shapes match each other.
  1046. The left and right channel are altered equally - a conventional tremolo.
  1047. An offset of 50% means that the shape of the right channel is exactly shifted
  1048. in phase (or moved backwards about half of the frequency) - pulsator acts as
  1049. an autopanner. At 1 both curves match again. Every setting in between moves the
  1050. phase shift gapless between all stages and produces some "bypassing" sounds with
  1051. sine and triangle waveforms. The more you set the offset near 1 (starting from
  1052. the 0.5) the faster the signal passes from the left to the right speaker.
  1053. The filter accepts the following options:
  1054. @table @option
  1055. @item level_in
  1056. Set input gain. By default it is 1. Range is [0.015625 - 64].
  1057. @item level_out
  1058. Set output gain. By default it is 1. Range is [0.015625 - 64].
  1059. @item mode
  1060. Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
  1061. sawup or sawdown. Default is sine.
  1062. @item amount
  1063. Set modulation. Define how much of original signal is affected by the LFO.
  1064. @item offset_l
  1065. Set left channel offset. Default is 0. Allowed range is [0 - 1].
  1066. @item offset_r
  1067. Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
  1068. @item width
  1069. Set pulse width. Default is 1. Allowed range is [0 - 2].
  1070. @item timing
  1071. Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
  1072. @item bpm
  1073. Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
  1074. is set to bpm.
  1075. @item ms
  1076. Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
  1077. is set to ms.
  1078. @item hz
  1079. Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
  1080. if timing is set to hz.
  1081. @end table
  1082. @anchor{aresample}
  1083. @section aresample
  1084. Resample the input audio to the specified parameters, using the
  1085. libswresample library. If none are specified then the filter will
  1086. automatically convert between its input and output.
  1087. This filter is also able to stretch/squeeze the audio data to make it match
  1088. the timestamps or to inject silence / cut out audio to make it match the
  1089. timestamps, do a combination of both or do neither.
  1090. The filter accepts the syntax
  1091. [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
  1092. expresses a sample rate and @var{resampler_options} is a list of
  1093. @var{key}=@var{value} pairs, separated by ":". See the
  1094. ffmpeg-resampler manual for the complete list of supported options.
  1095. @subsection Examples
  1096. @itemize
  1097. @item
  1098. Resample the input audio to 44100Hz:
  1099. @example
  1100. aresample=44100
  1101. @end example
  1102. @item
  1103. Stretch/squeeze samples to the given timestamps, with a maximum of 1000
  1104. samples per second compensation:
  1105. @example
  1106. aresample=async=1000
  1107. @end example
  1108. @end itemize
  1109. @section areverse
  1110. Reverse an audio clip.
  1111. Warning: This filter requires memory to buffer the entire clip, so trimming
  1112. is suggested.
  1113. @subsection Examples
  1114. @itemize
  1115. @item
  1116. Take the first 5 seconds of a clip, and reverse it.
  1117. @example
  1118. atrim=end=5,areverse
  1119. @end example
  1120. @end itemize
  1121. @section asetnsamples
  1122. Set the number of samples per each output audio frame.
  1123. The last output packet may contain a different number of samples, as
  1124. the filter will flush all the remaining samples when the input audio
  1125. signals its end.
  1126. The filter accepts the following options:
  1127. @table @option
  1128. @item nb_out_samples, n
  1129. Set the number of frames per each output audio frame. The number is
  1130. intended as the number of samples @emph{per each channel}.
  1131. Default value is 1024.
  1132. @item pad, p
  1133. If set to 1, the filter will pad the last audio frame with zeroes, so
  1134. that the last frame will contain the same number of samples as the
  1135. previous ones. Default value is 1.
  1136. @end table
  1137. For example, to set the number of per-frame samples to 1234 and
  1138. disable padding for the last frame, use:
  1139. @example
  1140. asetnsamples=n=1234:p=0
  1141. @end example
  1142. @section asetrate
  1143. Set the sample rate without altering the PCM data.
  1144. This will result in a change of speed and pitch.
  1145. The filter accepts the following options:
  1146. @table @option
  1147. @item sample_rate, r
  1148. Set the output sample rate. Default is 44100 Hz.
  1149. @end table
  1150. @section ashowinfo
  1151. Show a line containing various information for each input audio frame.
  1152. The input audio is not modified.
  1153. The shown line contains a sequence of key/value pairs of the form
  1154. @var{key}:@var{value}.
  1155. The following values are shown in the output:
  1156. @table @option
  1157. @item n
  1158. The (sequential) number of the input frame, starting from 0.
  1159. @item pts
  1160. The presentation timestamp of the input frame, in time base units; the time base
  1161. depends on the filter input pad, and is usually 1/@var{sample_rate}.
  1162. @item pts_time
  1163. The presentation timestamp of the input frame in seconds.
  1164. @item pos
  1165. position of the frame in the input stream, -1 if this information in
  1166. unavailable and/or meaningless (for example in case of synthetic audio)
  1167. @item fmt
  1168. The sample format.
  1169. @item chlayout
  1170. The channel layout.
  1171. @item rate
  1172. The sample rate for the audio frame.
  1173. @item nb_samples
  1174. The number of samples (per channel) in the frame.
  1175. @item checksum
  1176. The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
  1177. audio, the data is treated as if all the planes were concatenated.
  1178. @item plane_checksums
  1179. A list of Adler-32 checksums for each data plane.
  1180. @end table
  1181. @anchor{astats}
  1182. @section astats
  1183. Display time domain statistical information about the audio channels.
  1184. Statistics are calculated and displayed for each audio channel and,
  1185. where applicable, an overall figure is also given.
  1186. It accepts the following option:
  1187. @table @option
  1188. @item length
  1189. Short window length in seconds, used for peak and trough RMS measurement.
  1190. Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.1 - 10]}.
  1191. @item metadata
  1192. Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
  1193. where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
  1194. disabled.
  1195. Available keys for each channel are:
  1196. DC_offset
  1197. Min_level
  1198. Max_level
  1199. Min_difference
  1200. Max_difference
  1201. Mean_difference
  1202. Peak_level
  1203. RMS_peak
  1204. RMS_trough
  1205. Crest_factor
  1206. Flat_factor
  1207. Peak_count
  1208. Bit_depth
  1209. and for Overall:
  1210. DC_offset
  1211. Min_level
  1212. Max_level
  1213. Min_difference
  1214. Max_difference
  1215. Mean_difference
  1216. Peak_level
  1217. RMS_level
  1218. RMS_peak
  1219. RMS_trough
  1220. Flat_factor
  1221. Peak_count
  1222. Bit_depth
  1223. Number_of_samples
  1224. For example full key look like this @code{lavfi.astats.1.DC_offset} or
  1225. this @code{lavfi.astats.Overall.Peak_count}.
  1226. For description what each key means read below.
  1227. @item reset
  1228. Set number of frame after which stats are going to be recalculated.
  1229. Default is disabled.
  1230. @end table
  1231. A description of each shown parameter follows:
  1232. @table @option
  1233. @item DC offset
  1234. Mean amplitude displacement from zero.
  1235. @item Min level
  1236. Minimal sample level.
  1237. @item Max level
  1238. Maximal sample level.
  1239. @item Min difference
  1240. Minimal difference between two consecutive samples.
  1241. @item Max difference
  1242. Maximal difference between two consecutive samples.
  1243. @item Mean difference
  1244. Mean difference between two consecutive samples.
  1245. The average of each difference between two consecutive samples.
  1246. @item Peak level dB
  1247. @item RMS level dB
  1248. Standard peak and RMS level measured in dBFS.
  1249. @item RMS peak dB
  1250. @item RMS trough dB
  1251. Peak and trough values for RMS level measured over a short window.
  1252. @item Crest factor
  1253. Standard ratio of peak to RMS level (note: not in dB).
  1254. @item Flat factor
  1255. Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
  1256. (i.e. either @var{Min level} or @var{Max level}).
  1257. @item Peak count
  1258. Number of occasions (not the number of samples) that the signal attained either
  1259. @var{Min level} or @var{Max level}.
  1260. @item Bit depth
  1261. Overall bit depth of audio. Number of bits used for each sample.
  1262. @end table
  1263. @section asyncts
  1264. Synchronize audio data with timestamps by squeezing/stretching it and/or
  1265. dropping samples/adding silence when needed.
  1266. This filter is not built by default, please use @ref{aresample} to do squeezing/stretching.
  1267. It accepts the following parameters:
  1268. @table @option
  1269. @item compensate
  1270. Enable stretching/squeezing the data to make it match the timestamps. Disabled
  1271. by default. When disabled, time gaps are covered with silence.
  1272. @item min_delta
  1273. The minimum difference between timestamps and audio data (in seconds) to trigger
  1274. adding/dropping samples. The default value is 0.1. If you get an imperfect
  1275. sync with this filter, try setting this parameter to 0.
  1276. @item max_comp
  1277. The maximum compensation in samples per second. Only relevant with compensate=1.
  1278. The default value is 500.
  1279. @item first_pts
  1280. Assume that the first PTS should be this value. The time base is 1 / sample
  1281. rate. This allows for padding/trimming at the start of the stream. By default,
  1282. no assumption is made about the first frame's expected PTS, so no padding or
  1283. trimming is done. For example, this could be set to 0 to pad the beginning with
  1284. silence if an audio stream starts after the video stream or to trim any samples
  1285. with a negative PTS due to encoder delay.
  1286. @end table
  1287. @section atempo
  1288. Adjust audio tempo.
  1289. The filter accepts exactly one parameter, the audio tempo. If not
  1290. specified then the filter will assume nominal 1.0 tempo. Tempo must
  1291. be in the [0.5, 2.0] range.
  1292. @subsection Examples
  1293. @itemize
  1294. @item
  1295. Slow down audio to 80% tempo:
  1296. @example
  1297. atempo=0.8
  1298. @end example
  1299. @item
  1300. To speed up audio to 125% tempo:
  1301. @example
  1302. atempo=1.25
  1303. @end example
  1304. @end itemize
  1305. @section atrim
  1306. Trim the input so that the output contains one continuous subpart of the input.
  1307. It accepts the following parameters:
  1308. @table @option
  1309. @item start
  1310. Timestamp (in seconds) of the start of the section to keep. I.e. the audio
  1311. sample with the timestamp @var{start} will be the first sample in the output.
  1312. @item end
  1313. Specify time of the first audio sample that will be dropped, i.e. the
  1314. audio sample immediately preceding the one with the timestamp @var{end} will be
  1315. the last sample in the output.
  1316. @item start_pts
  1317. Same as @var{start}, except this option sets the start timestamp in samples
  1318. instead of seconds.
  1319. @item end_pts
  1320. Same as @var{end}, except this option sets the end timestamp in samples instead
  1321. of seconds.
  1322. @item duration
  1323. The maximum duration of the output in seconds.
  1324. @item start_sample
  1325. The number of the first sample that should be output.
  1326. @item end_sample
  1327. The number of the first sample that should be dropped.
  1328. @end table
  1329. @option{start}, @option{end}, and @option{duration} are expressed as time
  1330. duration specifications; see
  1331. @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
  1332. Note that the first two sets of the start/end options and the @option{duration}
  1333. option look at the frame timestamp, while the _sample options simply count the
  1334. samples that pass through the filter. So start/end_pts and start/end_sample will
  1335. give different results when the timestamps are wrong, inexact or do not start at
  1336. zero. Also note that this filter does not modify the timestamps. If you wish
  1337. to have the output timestamps start at zero, insert the asetpts filter after the
  1338. atrim filter.
  1339. If multiple start or end options are set, this filter tries to be greedy and
  1340. keep all samples that match at least one of the specified constraints. To keep
  1341. only the part that matches all the constraints at once, chain multiple atrim
  1342. filters.
  1343. The defaults are such that all the input is kept. So it is possible to set e.g.
  1344. just the end values to keep everything before the specified time.
  1345. Examples:
  1346. @itemize
  1347. @item
  1348. Drop everything except the second minute of input:
  1349. @example
  1350. ffmpeg -i INPUT -af atrim=60:120
  1351. @end example
  1352. @item
  1353. Keep only the first 1000 samples:
  1354. @example
  1355. ffmpeg -i INPUT -af atrim=end_sample=1000
  1356. @end example
  1357. @end itemize
  1358. @section bandpass
  1359. Apply a two-pole Butterworth band-pass filter with central
  1360. frequency @var{frequency}, and (3dB-point) band-width width.
  1361. The @var{csg} option selects a constant skirt gain (peak gain = Q)
  1362. instead of the default: constant 0dB peak gain.
  1363. The filter roll off at 6dB per octave (20dB per decade).
  1364. The filter accepts the following options:
  1365. @table @option
  1366. @item frequency, f
  1367. Set the filter's central frequency. Default is @code{3000}.
  1368. @item csg
  1369. Constant skirt gain if set to 1. Defaults to 0.
  1370. @item width_type
  1371. Set method to specify band-width of filter.
  1372. @table @option
  1373. @item h
  1374. Hz
  1375. @item q
  1376. Q-Factor
  1377. @item o
  1378. octave
  1379. @item s
  1380. slope
  1381. @end table
  1382. @item width, w
  1383. Specify the band-width of a filter in width_type units.
  1384. @end table
  1385. @section bandreject
  1386. Apply a two-pole Butterworth band-reject filter with central
  1387. frequency @var{frequency}, and (3dB-point) band-width @var{width}.
  1388. The filter roll off at 6dB per octave (20dB per decade).
  1389. The filter accepts the following options:
  1390. @table @option
  1391. @item frequency, f
  1392. Set the filter's central frequency. Default is @code{3000}.
  1393. @item width_type
  1394. Set method to specify band-width of filter.
  1395. @table @option
  1396. @item h
  1397. Hz
  1398. @item q
  1399. Q-Factor
  1400. @item o
  1401. octave
  1402. @item s
  1403. slope
  1404. @end table
  1405. @item width, w
  1406. Specify the band-width of a filter in width_type units.
  1407. @end table
  1408. @section bass
  1409. Boost or cut the bass (lower) frequencies of the audio using a two-pole
  1410. shelving filter with a response similar to that of a standard
  1411. hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
  1412. The filter accepts the following options:
  1413. @table @option
  1414. @item gain, g
  1415. Give the gain at 0 Hz. Its useful range is about -20
  1416. (for a large cut) to +20 (for a large boost).
  1417. Beware of clipping when using a positive gain.
  1418. @item frequency, f
  1419. Set the filter's central frequency and so can be used
  1420. to extend or reduce the frequency range to be boosted or cut.
  1421. The default value is @code{100} Hz.
  1422. @item width_type
  1423. Set method to specify band-width of filter.
  1424. @table @option
  1425. @item h
  1426. Hz
  1427. @item q
  1428. Q-Factor
  1429. @item o
  1430. octave
  1431. @item s
  1432. slope
  1433. @end table
  1434. @item width, w
  1435. Determine how steep is the filter's shelf transition.
  1436. @end table
  1437. @section biquad
  1438. Apply a biquad IIR filter with the given coefficients.
  1439. Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
  1440. are the numerator and denominator coefficients respectively.
  1441. @section bs2b
  1442. Bauer stereo to binaural transformation, which improves headphone listening of
  1443. stereo audio records.
  1444. It accepts the following parameters:
  1445. @table @option
  1446. @item profile
  1447. Pre-defined crossfeed level.
  1448. @table @option
  1449. @item default
  1450. Default level (fcut=700, feed=50).
  1451. @item cmoy
  1452. Chu Moy circuit (fcut=700, feed=60).
  1453. @item jmeier
  1454. Jan Meier circuit (fcut=650, feed=95).
  1455. @end table
  1456. @item fcut
  1457. Cut frequency (in Hz).
  1458. @item feed
  1459. Feed level (in Hz).
  1460. @end table
  1461. @section channelmap
  1462. Remap input channels to new locations.
  1463. It accepts the following parameters:
  1464. @table @option
  1465. @item channel_layout
  1466. The channel layout of the output stream.
  1467. @item map
  1468. Map channels from input to output. The argument is a '|'-separated list of
  1469. mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
  1470. @var{in_channel} form. @var{in_channel} can be either the name of the input
  1471. channel (e.g. FL for front left) or its index in the input channel layout.
  1472. @var{out_channel} is the name of the output channel or its index in the output
  1473. channel layout. If @var{out_channel} is not given then it is implicitly an
  1474. index, starting with zero and increasing by one for each mapping.
  1475. @end table
  1476. If no mapping is present, the filter will implicitly map input channels to
  1477. output channels, preserving indices.
  1478. For example, assuming a 5.1+downmix input MOV file,
  1479. @example
  1480. ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
  1481. @end example
  1482. will create an output WAV file tagged as stereo from the downmix channels of
  1483. the input.
  1484. To fix a 5.1 WAV improperly encoded in AAC's native channel order
  1485. @example
  1486. ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
  1487. @end example
  1488. @section channelsplit
  1489. Split each channel from an input audio stream into a separate output stream.
  1490. It accepts the following parameters:
  1491. @table @option
  1492. @item channel_layout
  1493. The channel layout of the input stream. The default is "stereo".
  1494. @end table
  1495. For example, assuming a stereo input MP3 file,
  1496. @example
  1497. ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
  1498. @end example
  1499. will create an output Matroska file with two audio streams, one containing only
  1500. the left channel and the other the right channel.
  1501. Split a 5.1 WAV file into per-channel files:
  1502. @example
  1503. ffmpeg -i in.wav -filter_complex
  1504. 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
  1505. -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
  1506. front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
  1507. side_right.wav
  1508. @end example
  1509. @section chorus
  1510. Add a chorus effect to the audio.
  1511. Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
  1512. Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
  1513. constant, with chorus, it is varied using using sinusoidal or triangular modulation.
  1514. The modulation depth defines the range the modulated delay is played before or after
  1515. the delay. Hence the delayed sound will sound slower or faster, that is the delayed
  1516. sound tuned around the original one, like in a chorus where some vocals are slightly
  1517. off key.
  1518. It accepts the following parameters:
  1519. @table @option
  1520. @item in_gain
  1521. Set input gain. Default is 0.4.
  1522. @item out_gain
  1523. Set output gain. Default is 0.4.
  1524. @item delays
  1525. Set delays. A typical delay is around 40ms to 60ms.
  1526. @item decays
  1527. Set decays.
  1528. @item speeds
  1529. Set speeds.
  1530. @item depths
  1531. Set depths.
  1532. @end table
  1533. @subsection Examples
  1534. @itemize
  1535. @item
  1536. A single delay:
  1537. @example
  1538. chorus=0.7:0.9:55:0.4:0.25:2
  1539. @end example
  1540. @item
  1541. Two delays:
  1542. @example
  1543. chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
  1544. @end example
  1545. @item
  1546. Fuller sounding chorus with three delays:
  1547. @example
  1548. chorus=0.5:0.9:50|60|40:0.4|0.32|0.3:0.25|0.4|0.3:2|2.3|1.3
  1549. @end example
  1550. @end itemize
  1551. @section compand
  1552. Compress or expand the audio's dynamic range.
  1553. It accepts the following parameters:
  1554. @table @option
  1555. @item attacks
  1556. @item decays
  1557. A list of times in seconds for each channel over which the instantaneous level
  1558. of the input signal is averaged to determine its volume. @var{attacks} refers to
  1559. increase of volume and @var{decays} refers to decrease of volume. For most
  1560. situations, the attack time (response to the audio getting louder) should be
  1561. shorter than the decay time, because the human ear is more sensitive to sudden
  1562. loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
  1563. a typical value for decay is 0.8 seconds.
  1564. If specified number of attacks & decays is lower than number of channels, the last
  1565. set attack/decay will be used for all remaining channels.
  1566. @item points
  1567. A list of points for the transfer function, specified in dB relative to the
  1568. maximum possible signal amplitude. Each key points list must be defined using
  1569. the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
  1570. @code{x0/y0 x1/y1 x2/y2 ....}
  1571. The input values must be in strictly increasing order but the transfer function
  1572. does not have to be monotonically rising. The point @code{0/0} is assumed but
  1573. may be overridden (by @code{0/out-dBn}). Typical values for the transfer
  1574. function are @code{-70/-70|-60/-20}.
  1575. @item soft-knee
  1576. Set the curve radius in dB for all joints. It defaults to 0.01.
  1577. @item gain
  1578. Set the additional gain in dB to be applied at all points on the transfer
  1579. function. This allows for easy adjustment of the overall gain.
  1580. It defaults to 0.
  1581. @item volume
  1582. Set an initial volume, in dB, to be assumed for each channel when filtering
  1583. starts. This permits the user to supply a nominal level initially, so that, for
  1584. example, a very large gain is not applied to initial signal levels before the
  1585. companding has begun to operate. A typical value for audio which is initially
  1586. quiet is -90 dB. It defaults to 0.
  1587. @item delay
  1588. Set a delay, in seconds. The input audio is analyzed immediately, but audio is
  1589. delayed before being fed to the volume adjuster. Specifying a delay
  1590. approximately equal to the attack/decay times allows the filter to effectively
  1591. operate in predictive rather than reactive mode. It defaults to 0.
  1592. @end table
  1593. @subsection Examples
  1594. @itemize
  1595. @item
  1596. Make music with both quiet and loud passages suitable for listening to in a
  1597. noisy environment:
  1598. @example
  1599. compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
  1600. @end example
  1601. Another example for audio with whisper and explosion parts:
  1602. @example
  1603. compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
  1604. @end example
  1605. @item
  1606. A noise gate for when the noise is at a lower level than the signal:
  1607. @example
  1608. compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
  1609. @end example
  1610. @item
  1611. Here is another noise gate, this time for when the noise is at a higher level
  1612. than the signal (making it, in some ways, similar to squelch):
  1613. @example
  1614. compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
  1615. @end example
  1616. @item
  1617. 2:1 compression starting at -6dB:
  1618. @example
  1619. compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
  1620. @end example
  1621. @item
  1622. 2:1 compression starting at -9dB:
  1623. @example
  1624. compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
  1625. @end example
  1626. @item
  1627. 2:1 compression starting at -12dB:
  1628. @example
  1629. compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
  1630. @end example
  1631. @item
  1632. 2:1 compression starting at -18dB:
  1633. @example
  1634. compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
  1635. @end example
  1636. @item
  1637. 3:1 compression starting at -15dB:
  1638. @example
  1639. compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
  1640. @end example
  1641. @item
  1642. Compressor/Gate:
  1643. @example
  1644. compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
  1645. @end example
  1646. @item
  1647. Expander:
  1648. @example
  1649. compand=attacks=0:points=-80/-169|-54/-80|-49.5/-64.6|-41.1/-41.1|-25.8/-15|-10.8/-4.5|0/0|20/8.3
  1650. @end example
  1651. @item
  1652. Hard limiter at -6dB:
  1653. @example
  1654. compand=attacks=0:points=-80/-80|-6/-6|20/-6
  1655. @end example
  1656. @item
  1657. Hard limiter at -12dB:
  1658. @example
  1659. compand=attacks=0:points=-80/-80|-12/-12|20/-12
  1660. @end example
  1661. @item
  1662. Hard noise gate at -35 dB:
  1663. @example
  1664. compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
  1665. @end example
  1666. @item
  1667. Soft limiter:
  1668. @example
  1669. compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
  1670. @end example
  1671. @end itemize
  1672. @section compensationdelay
  1673. Compensation Delay Line is a metric based delay to compensate differing
  1674. positions of microphones or speakers.
  1675. For example, you have recorded guitar with two microphones placed in
  1676. different location. Because the front of sound wave has fixed speed in
  1677. normal conditions, the phasing of microphones can vary and depends on
  1678. their location and interposition. The best sound mix can be achieved when
  1679. these microphones are in phase (synchronized). Note that distance of
  1680. ~30 cm between microphones makes one microphone to capture signal in
  1681. antiphase to another microphone. That makes the final mix sounding moody.
  1682. This filter helps to solve phasing problems by adding different delays
  1683. to each microphone track and make them synchronized.
  1684. The best result can be reached when you take one track as base and
  1685. synchronize other tracks one by one with it.
  1686. Remember that synchronization/delay tolerance depends on sample rate, too.
  1687. Higher sample rates will give more tolerance.
  1688. It accepts the following parameters:
  1689. @table @option
  1690. @item mm
  1691. Set millimeters distance. This is compensation distance for fine tuning.
  1692. Default is 0.
  1693. @item cm
  1694. Set cm distance. This is compensation distance for tightening distance setup.
  1695. Default is 0.
  1696. @item m
  1697. Set meters distance. This is compensation distance for hard distance setup.
  1698. Default is 0.
  1699. @item dry
  1700. Set dry amount. Amount of unprocessed (dry) signal.
  1701. Default is 0.
  1702. @item wet
  1703. Set wet amount. Amount of processed (wet) signal.
  1704. Default is 1.
  1705. @item temp
  1706. Set temperature degree in Celsius. This is the temperature of the environment.
  1707. Default is 20.
  1708. @end table
  1709. @section crystalizer
  1710. Simple algorithm to expand audio dynamic range.
  1711. The filter accepts the following options:
  1712. @table @option
  1713. @item i
  1714. Sets the intensity of effect (default: 2.0). Must be in range between 0.0
  1715. (unchanged sound) to 10.0 (maximum effect).
  1716. @item c
  1717. Enable clipping. By default is enabled.
  1718. @end table
  1719. @section dcshift
  1720. Apply a DC shift to the audio.
  1721. This can be useful to remove a DC offset (caused perhaps by a hardware problem
  1722. in the recording chain) from the audio. The effect of a DC offset is reduced
  1723. headroom and hence volume. The @ref{astats} filter can be used to determine if
  1724. a signal has a DC offset.
  1725. @table @option
  1726. @item shift
  1727. Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
  1728. the audio.
  1729. @item limitergain
  1730. Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
  1731. used to prevent clipping.
  1732. @end table
  1733. @section dynaudnorm
  1734. Dynamic Audio Normalizer.
  1735. This filter applies a certain amount of gain to the input audio in order
  1736. to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
  1737. contrast to more "simple" normalization algorithms, the Dynamic Audio
  1738. Normalizer *dynamically* re-adjusts the gain factor to the input audio.
  1739. This allows for applying extra gain to the "quiet" sections of the audio
  1740. while avoiding distortions or clipping the "loud" sections. In other words:
  1741. The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
  1742. sections, in the sense that the volume of each section is brought to the
  1743. same target level. Note, however, that the Dynamic Audio Normalizer achieves
  1744. this goal *without* applying "dynamic range compressing". It will retain 100%
  1745. of the dynamic range *within* each section of the audio file.
  1746. @table @option
  1747. @item f
  1748. Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
  1749. Default is 500 milliseconds.
  1750. The Dynamic Audio Normalizer processes the input audio in small chunks,
  1751. referred to as frames. This is required, because a peak magnitude has no
  1752. meaning for just a single sample value. Instead, we need to determine the
  1753. peak magnitude for a contiguous sequence of sample values. While a "standard"
  1754. normalizer would simply use the peak magnitude of the complete file, the
  1755. Dynamic Audio Normalizer determines the peak magnitude individually for each
  1756. frame. The length of a frame is specified in milliseconds. By default, the
  1757. Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
  1758. been found to give good results with most files.
  1759. Note that the exact frame length, in number of samples, will be determined
  1760. automatically, based on the sampling rate of the individual input audio file.
  1761. @item g
  1762. Set the Gaussian filter window size. In range from 3 to 301, must be odd
  1763. number. Default is 31.
  1764. Probably the most important parameter of the Dynamic Audio Normalizer is the
  1765. @code{window size} of the Gaussian smoothing filter. The filter's window size
  1766. is specified in frames, centered around the current frame. For the sake of
  1767. simplicity, this must be an odd number. Consequently, the default value of 31
  1768. takes into account the current frame, as well as the 15 preceding frames and
  1769. the 15 subsequent frames. Using a larger window results in a stronger
  1770. smoothing effect and thus in less gain variation, i.e. slower gain
  1771. adaptation. Conversely, using a smaller window results in a weaker smoothing
  1772. effect and thus in more gain variation, i.e. faster gain adaptation.
  1773. In other words, the more you increase this value, the more the Dynamic Audio
  1774. Normalizer will behave like a "traditional" normalization filter. On the
  1775. contrary, the more you decrease this value, the more the Dynamic Audio
  1776. Normalizer will behave like a dynamic range compressor.
  1777. @item p
  1778. Set the target peak value. This specifies the highest permissible magnitude
  1779. level for the normalized audio input. This filter will try to approach the
  1780. target peak magnitude as closely as possible, but at the same time it also
  1781. makes sure that the normalized signal will never exceed the peak magnitude.
  1782. A frame's maximum local gain factor is imposed directly by the target peak
  1783. magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
  1784. It is not recommended to go above this value.
  1785. @item m
  1786. Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
  1787. The Dynamic Audio Normalizer determines the maximum possible (local) gain
  1788. factor for each input frame, i.e. the maximum gain factor that does not
  1789. result in clipping or distortion. The maximum gain factor is determined by
  1790. the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
  1791. additionally bounds the frame's maximum gain factor by a predetermined
  1792. (global) maximum gain factor. This is done in order to avoid excessive gain
  1793. factors in "silent" or almost silent frames. By default, the maximum gain
  1794. factor is 10.0, For most inputs the default value should be sufficient and
  1795. it usually is not recommended to increase this value. Though, for input
  1796. with an extremely low overall volume level, it may be necessary to allow even
  1797. higher gain factors. Note, however, that the Dynamic Audio Normalizer does
  1798. not simply apply a "hard" threshold (i.e. cut off values above the threshold).
  1799. Instead, a "sigmoid" threshold function will be applied. This way, the
  1800. gain factors will smoothly approach the threshold value, but never exceed that
  1801. value.
  1802. @item r
  1803. Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
  1804. By default, the Dynamic Audio Normalizer performs "peak" normalization.
  1805. This means that the maximum local gain factor for each frame is defined
  1806. (only) by the frame's highest magnitude sample. This way, the samples can
  1807. be amplified as much as possible without exceeding the maximum signal
  1808. level, i.e. without clipping. Optionally, however, the Dynamic Audio
  1809. Normalizer can also take into account the frame's root mean square,
  1810. abbreviated RMS. In electrical engineering, the RMS is commonly used to
  1811. determine the power of a time-varying signal. It is therefore considered
  1812. that the RMS is a better approximation of the "perceived loudness" than
  1813. just looking at the signal's peak magnitude. Consequently, by adjusting all
  1814. frames to a constant RMS value, a uniform "perceived loudness" can be
  1815. established. If a target RMS value has been specified, a frame's local gain
  1816. factor is defined as the factor that would result in exactly that RMS value.
  1817. Note, however, that the maximum local gain factor is still restricted by the
  1818. frame's highest magnitude sample, in order to prevent clipping.
  1819. @item n
  1820. Enable channels coupling. By default is enabled.
  1821. By default, the Dynamic Audio Normalizer will amplify all channels by the same
  1822. amount. This means the same gain factor will be applied to all channels, i.e.
  1823. the maximum possible gain factor is determined by the "loudest" channel.
  1824. However, in some recordings, it may happen that the volume of the different
  1825. channels is uneven, e.g. one channel may be "quieter" than the other one(s).
  1826. In this case, this option can be used to disable the channel coupling. This way,
  1827. the gain factor will be determined independently for each channel, depending
  1828. only on the individual channel's highest magnitude sample. This allows for
  1829. harmonizing the volume of the different channels.
  1830. @item c
  1831. Enable DC bias correction. By default is disabled.
  1832. An audio signal (in the time domain) is a sequence of sample values.
  1833. In the Dynamic Audio Normalizer these sample values are represented in the
  1834. -1.0 to 1.0 range, regardless of the original input format. Normally, the
  1835. audio signal, or "waveform", should be centered around the zero point.
  1836. That means if we calculate the mean value of all samples in a file, or in a
  1837. single frame, then the result should be 0.0 or at least very close to that
  1838. value. If, however, there is a significant deviation of the mean value from
  1839. 0.0, in either positive or negative direction, this is referred to as a
  1840. DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
  1841. Audio Normalizer provides optional DC bias correction.
  1842. With DC bias correction enabled, the Dynamic Audio Normalizer will determine
  1843. the mean value, or "DC correction" offset, of each input frame and subtract
  1844. that value from all of the frame's sample values which ensures those samples
  1845. are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
  1846. boundaries, the DC correction offset values will be interpolated smoothly
  1847. between neighbouring frames.
  1848. @item b
  1849. Enable alternative boundary mode. By default is disabled.
  1850. The Dynamic Audio Normalizer takes into account a certain neighbourhood
  1851. around each frame. This includes the preceding frames as well as the
  1852. subsequent frames. However, for the "boundary" frames, located at the very
  1853. beginning and at the very end of the audio file, not all neighbouring
  1854. frames are available. In particular, for the first few frames in the audio
  1855. file, the preceding frames are not known. And, similarly, for the last few
  1856. frames in the audio file, the subsequent frames are not known. Thus, the
  1857. question arises which gain factors should be assumed for the missing frames
  1858. in the "boundary" region. The Dynamic Audio Normalizer implements two modes
  1859. to deal with this situation. The default boundary mode assumes a gain factor
  1860. of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
  1861. "fade out" at the beginning and at the end of the input, respectively.
  1862. @item s
  1863. Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
  1864. By default, the Dynamic Audio Normalizer does not apply "traditional"
  1865. compression. This means that signal peaks will not be pruned and thus the
  1866. full dynamic range will be retained within each local neighbourhood. However,
  1867. in some cases it may be desirable to combine the Dynamic Audio Normalizer's
  1868. normalization algorithm with a more "traditional" compression.
  1869. For this purpose, the Dynamic Audio Normalizer provides an optional compression
  1870. (thresholding) function. If (and only if) the compression feature is enabled,
  1871. all input frames will be processed by a soft knee thresholding function prior
  1872. to the actual normalization process. Put simply, the thresholding function is
  1873. going to prune all samples whose magnitude exceeds a certain threshold value.
  1874. However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
  1875. value. Instead, the threshold value will be adjusted for each individual
  1876. frame.
  1877. In general, smaller parameters result in stronger compression, and vice versa.
  1878. Values below 3.0 are not recommended, because audible distortion may appear.
  1879. @end table
  1880. @section earwax
  1881. Make audio easier to listen to on headphones.
  1882. This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
  1883. so that when listened to on headphones the stereo image is moved from
  1884. inside your head (standard for headphones) to outside and in front of
  1885. the listener (standard for speakers).
  1886. Ported from SoX.
  1887. @section equalizer
  1888. Apply a two-pole peaking equalisation (EQ) filter. With this
  1889. filter, the signal-level at and around a selected frequency can
  1890. be increased or decreased, whilst (unlike bandpass and bandreject
  1891. filters) that at all other frequencies is unchanged.
  1892. In order to produce complex equalisation curves, this filter can
  1893. be given several times, each with a different central frequency.
  1894. The filter accepts the following options:
  1895. @table @option
  1896. @item frequency, f
  1897. Set the filter's central frequency in Hz.
  1898. @item width_type
  1899. Set method to specify band-width of filter.
  1900. @table @option
  1901. @item h
  1902. Hz
  1903. @item q
  1904. Q-Factor
  1905. @item o
  1906. octave
  1907. @item s
  1908. slope
  1909. @end table
  1910. @item width, w
  1911. Specify the band-width of a filter in width_type units.
  1912. @item gain, g
  1913. Set the required gain or attenuation in dB.
  1914. Beware of clipping when using a positive gain.
  1915. @end table
  1916. @subsection Examples
  1917. @itemize
  1918. @item
  1919. Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
  1920. @example
  1921. equalizer=f=1000:width_type=h:width=200:g=-10
  1922. @end example
  1923. @item
  1924. Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
  1925. @example
  1926. equalizer=f=1000:width_type=q:width=1:g=2,equalizer=f=100:width_type=q:width=2:g=-5
  1927. @end example
  1928. @end itemize
  1929. @section extrastereo
  1930. Linearly increases the difference between left and right channels which
  1931. adds some sort of "live" effect to playback.
  1932. The filter accepts the following options:
  1933. @table @option
  1934. @item m
  1935. Sets the difference coefficient (default: 2.5). 0.0 means mono sound
  1936. (average of both channels), with 1.0 sound will be unchanged, with
  1937. -1.0 left and right channels will be swapped.
  1938. @item c
  1939. Enable clipping. By default is enabled.
  1940. @end table
  1941. @section firequalizer
  1942. Apply FIR Equalization using arbitrary frequency response.
  1943. The filter accepts the following option:
  1944. @table @option
  1945. @item gain
  1946. Set gain curve equation (in dB). The expression can contain variables:
  1947. @table @option
  1948. @item f
  1949. the evaluated frequency
  1950. @item sr
  1951. sample rate
  1952. @item ch
  1953. channel number, set to 0 when multichannels evaluation is disabled
  1954. @item chid
  1955. channel id, see libavutil/channel_layout.h, set to the first channel id when
  1956. multichannels evaluation is disabled
  1957. @item chs
  1958. number of channels
  1959. @item chlayout
  1960. channel_layout, see libavutil/channel_layout.h
  1961. @end table
  1962. and functions:
  1963. @table @option
  1964. @item gain_interpolate(f)
  1965. interpolate gain on frequency f based on gain_entry
  1966. @item cubic_interpolate(f)
  1967. same as gain_interpolate, but smoother
  1968. @end table
  1969. This option is also available as command. Default is @code{gain_interpolate(f)}.
  1970. @item gain_entry
  1971. Set gain entry for gain_interpolate function. The expression can
  1972. contain functions:
  1973. @table @option
  1974. @item entry(f, g)
  1975. store gain entry at frequency f with value g
  1976. @end table
  1977. This option is also available as command.
  1978. @item delay
  1979. Set filter delay in seconds. Higher value means more accurate.
  1980. Default is @code{0.01}.
  1981. @item accuracy
  1982. Set filter accuracy in Hz. Lower value means more accurate.
  1983. Default is @code{5}.
  1984. @item wfunc
  1985. Set window function. Acceptable values are:
  1986. @table @option
  1987. @item rectangular
  1988. rectangular window, useful when gain curve is already smooth
  1989. @item hann
  1990. hann window (default)
  1991. @item hamming
  1992. hamming window
  1993. @item blackman
  1994. blackman window
  1995. @item nuttall3
  1996. 3-terms continuous 1st derivative nuttall window
  1997. @item mnuttall3
  1998. minimum 3-terms discontinuous nuttall window
  1999. @item nuttall
  2000. 4-terms continuous 1st derivative nuttall window
  2001. @item bnuttall
  2002. minimum 4-terms discontinuous nuttall (blackman-nuttall) window
  2003. @item bharris
  2004. blackman-harris window
  2005. @item tukey
  2006. tukey window
  2007. @end table
  2008. @item fixed
  2009. If enabled, use fixed number of audio samples. This improves speed when
  2010. filtering with large delay. Default is disabled.
  2011. @item multi
  2012. Enable multichannels evaluation on gain. Default is disabled.
  2013. @item zero_phase
  2014. Enable zero phase mode by subtracting timestamp to compensate delay.
  2015. Default is disabled.
  2016. @item scale
  2017. Set scale used by gain. Acceptable values are:
  2018. @table @option
  2019. @item linlin
  2020. linear frequency, linear gain
  2021. @item linlog
  2022. linear frequency, logarithmic (in dB) gain (default)
  2023. @item loglin
  2024. logarithmic (in octave scale where 20 Hz is 0) frequency, linear gain
  2025. @item loglog
  2026. logarithmic frequency, logarithmic gain
  2027. @end table
  2028. @item dumpfile
  2029. Set file for dumping, suitable for gnuplot.
  2030. @item dumpscale
  2031. Set scale for dumpfile. Acceptable values are same with scale option.
  2032. Default is linlog.
  2033. @item fft2
  2034. Enable 2-channel convolution using complex FFT. This improves speed significantly.
  2035. Default is disabled.
  2036. @end table
  2037. @subsection Examples
  2038. @itemize
  2039. @item
  2040. lowpass at 1000 Hz:
  2041. @example
  2042. firequalizer=gain='if(lt(f,1000), 0, -INF)'
  2043. @end example
  2044. @item
  2045. lowpass at 1000 Hz with gain_entry:
  2046. @example
  2047. firequalizer=gain_entry='entry(1000,0); entry(1001, -INF)'
  2048. @end example
  2049. @item
  2050. custom equalization:
  2051. @example
  2052. firequalizer=gain_entry='entry(100,0); entry(400, -4); entry(1000, -6); entry(2000, 0)'
  2053. @end example
  2054. @item
  2055. higher delay with zero phase to compensate delay:
  2056. @example
  2057. firequalizer=delay=0.1:fixed=on:zero_phase=on
  2058. @end example
  2059. @item
  2060. lowpass on left channel, highpass on right channel:
  2061. @example
  2062. firequalizer=gain='if(eq(chid,1), gain_interpolate(f), if(eq(chid,2), gain_interpolate(1e6+f), 0))'
  2063. :gain_entry='entry(1000, 0); entry(1001,-INF); entry(1e6+1000,0)':multi=on
  2064. @end example
  2065. @end itemize
  2066. @section flanger
  2067. Apply a flanging effect to the audio.
  2068. The filter accepts the following options:
  2069. @table @option
  2070. @item delay
  2071. Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
  2072. @item depth
  2073. Set added swep delay in milliseconds. Range from 0 to 10. Default value is 2.
  2074. @item regen
  2075. Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
  2076. Default value is 0.
  2077. @item width
  2078. Set percentage of delayed signal mixed with original. Range from 0 to 100.
  2079. Default value is 71.
  2080. @item speed
  2081. Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
  2082. @item shape
  2083. Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
  2084. Default value is @var{sinusoidal}.
  2085. @item phase
  2086. Set swept wave percentage-shift for multi channel. Range from 0 to 100.
  2087. Default value is 25.
  2088. @item interp
  2089. Set delay-line interpolation, @var{linear} or @var{quadratic}.
  2090. Default is @var{linear}.
  2091. @end table
  2092. @section hdcd
  2093. Decodes High Definition Compatible Digital (HDCD) data. A 16-bit PCM stream with
  2094. embedded HDCD codes is expanded into a 20-bit PCM stream.
  2095. The filter supports the Peak Extend and Low-level Gain Adjustment features
  2096. of HDCD, and detects the Transient Filter flag.
  2097. @example
  2098. ffmpeg -i HDCD16.flac -af hdcd OUT24.flac
  2099. @end example
  2100. When using the filter with wav, note the default encoding for wav is 16-bit,
  2101. so the resulting 20-bit stream will be truncated back to 16-bit. Use something
  2102. like @command{-acodec pcm_s24le} after the filter to get 24-bit PCM output.
  2103. @example
  2104. ffmpeg -i HDCD16.wav -af hdcd OUT16.wav
  2105. ffmpeg -i HDCD16.wav -af hdcd -acodec pcm_s24le OUT24.wav
  2106. @end example
  2107. The filter accepts the following options:
  2108. @table @option
  2109. @item disable_autoconvert
  2110. Disable any automatic format conversion or resampling in the filter graph.
  2111. @item process_stereo
  2112. Process the stereo channels together. If target_gain does not match between
  2113. channels, consider it invalid and use the last valid target_gain.
  2114. @item cdt_ms
  2115. Set the code detect timer period in ms.
  2116. @item force_pe
  2117. Always extend peaks above -3dBFS even if PE isn't signaled.
  2118. @item analyze_mode
  2119. Replace audio with a solid tone and adjust the amplitude to signal some
  2120. specific aspect of the decoding process. The output file can be loaded in
  2121. an audio editor alongside the original to aid analysis.
  2122. @code{analyze_mode=pe:force_pe=true} can be used to see all samples above the PE level.
  2123. Modes are:
  2124. @table @samp
  2125. @item 0, off
  2126. Disabled
  2127. @item 1, lle
  2128. Gain adjustment level at each sample
  2129. @item 2, pe
  2130. Samples where peak extend occurs
  2131. @item 3, cdt
  2132. Samples where the code detect timer is active
  2133. @item 4, tgm
  2134. Samples where the target gain does not match between channels
  2135. @end table
  2136. @end table
  2137. @section highpass
  2138. Apply a high-pass filter with 3dB point frequency.
  2139. The filter can be either single-pole, or double-pole (the default).
  2140. The filter roll off at 6dB per pole per octave (20dB per pole per decade).
  2141. The filter accepts the following options:
  2142. @table @option
  2143. @item frequency, f
  2144. Set frequency in Hz. Default is 3000.
  2145. @item poles, p
  2146. Set number of poles. Default is 2.
  2147. @item width_type
  2148. Set method to specify band-width of filter.
  2149. @table @option
  2150. @item h
  2151. Hz
  2152. @item q
  2153. Q-Factor
  2154. @item o
  2155. octave
  2156. @item s
  2157. slope
  2158. @end table
  2159. @item width, w
  2160. Specify the band-width of a filter in width_type units.
  2161. Applies only to double-pole filter.
  2162. The default is 0.707q and gives a Butterworth response.
  2163. @end table
  2164. @section join
  2165. Join multiple input streams into one multi-channel stream.
  2166. It accepts the following parameters:
  2167. @table @option
  2168. @item inputs
  2169. The number of input streams. It defaults to 2.
  2170. @item channel_layout
  2171. The desired output channel layout. It defaults to stereo.
  2172. @item map
  2173. Map channels from inputs to output. The argument is a '|'-separated list of
  2174. mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
  2175. form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
  2176. can be either the name of the input channel (e.g. FL for front left) or its
  2177. index in the specified input stream. @var{out_channel} is the name of the output
  2178. channel.
  2179. @end table
  2180. The filter will attempt to guess the mappings when they are not specified
  2181. explicitly. It does so by first trying to find an unused matching input channel
  2182. and if that fails it picks the first unused input channel.
  2183. Join 3 inputs (with properly set channel layouts):
  2184. @example
  2185. ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
  2186. @end example
  2187. Build a 5.1 output from 6 single-channel streams:
  2188. @example
  2189. ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
  2190. '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'
  2191. out
  2192. @end example
  2193. @section ladspa
  2194. Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
  2195. To enable compilation of this filter you need to configure FFmpeg with
  2196. @code{--enable-ladspa}.
  2197. @table @option
  2198. @item file, f
  2199. Specifies the name of LADSPA plugin library to load. If the environment
  2200. variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
  2201. each one of the directories specified by the colon separated list in
  2202. @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
  2203. this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
  2204. @file{/usr/lib/ladspa/}.
  2205. @item plugin, p
  2206. Specifies the plugin within the library. Some libraries contain only
  2207. one plugin, but others contain many of them. If this is not set filter
  2208. will list all available plugins within the specified library.
  2209. @item controls, c
  2210. Set the '|' separated list of controls which are zero or more floating point
  2211. values that determine the behavior of the loaded plugin (for example delay,
  2212. threshold or gain).
  2213. Controls need to be defined using the following syntax:
  2214. c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
  2215. @var{valuei} is the value set on the @var{i}-th control.
  2216. Alternatively they can be also defined using the following syntax:
  2217. @var{value0}|@var{value1}|@var{value2}|..., where
  2218. @var{valuei} is the value set on the @var{i}-th control.
  2219. If @option{controls} is set to @code{help}, all available controls and
  2220. their valid ranges are printed.
  2221. @item sample_rate, s
  2222. Specify the sample rate, default to 44100. Only used if plugin have
  2223. zero inputs.
  2224. @item nb_samples, n
  2225. Set the number of samples per channel per each output frame, default
  2226. is 1024. Only used if plugin have zero inputs.
  2227. @item duration, d
  2228. Set the minimum duration of the sourced audio. See
  2229. @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
  2230. for the accepted syntax.
  2231. Note that the resulting duration may be greater than the specified duration,
  2232. as the generated audio is always cut at the end of a complete frame.
  2233. If not specified, or the expressed duration is negative, the audio is
  2234. supposed to be generated forever.
  2235. Only used if plugin have zero inputs.
  2236. @end table
  2237. @subsection Examples
  2238. @itemize
  2239. @item
  2240. List all available plugins within amp (LADSPA example plugin) library:
  2241. @example
  2242. ladspa=file=amp
  2243. @end example
  2244. @item
  2245. List all available controls and their valid ranges for @code{vcf_notch}
  2246. plugin from @code{VCF} library:
  2247. @example
  2248. ladspa=f=vcf:p=vcf_notch:c=help
  2249. @end example
  2250. @item
  2251. Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
  2252. plugin library:
  2253. @example
  2254. ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
  2255. @end example
  2256. @item
  2257. Add reverberation to the audio using TAP-plugins
  2258. (Tom's Audio Processing plugins):
  2259. @example
  2260. ladspa=file=tap_reverb:tap_reverb
  2261. @end example
  2262. @item
  2263. Generate white noise, with 0.2 amplitude:
  2264. @example
  2265. ladspa=file=cmt:noise_source_white:c=c0=.2
  2266. @end example
  2267. @item
  2268. Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
  2269. @code{C* Audio Plugin Suite} (CAPS) library:
  2270. @example
  2271. ladspa=file=caps:Click:c=c1=20'
  2272. @end example
  2273. @item
  2274. Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
  2275. @example
  2276. ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
  2277. @end example
  2278. @item
  2279. Increase volume by 20dB using fast lookahead limiter from Steve Harris
  2280. @code{SWH Plugins} collection:
  2281. @example
  2282. ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
  2283. @end example
  2284. @item
  2285. Attenuate low frequencies using Multiband EQ from Steve Harris
  2286. @code{SWH Plugins} collection:
  2287. @example
  2288. ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
  2289. @end example
  2290. @end itemize
  2291. @subsection Commands
  2292. This filter supports the following commands:
  2293. @table @option
  2294. @item cN
  2295. Modify the @var{N}-th control value.
  2296. If the specified value is not valid, it is ignored and prior one is kept.
  2297. @end table
  2298. @section loudnorm
  2299. EBU R128 loudness normalization. Includes both dynamic and linear normalization modes.
  2300. Support for both single pass (livestreams, files) and double pass (files) modes.
  2301. This algorithm can target IL, LRA, and maximum true peak.
  2302. The filter accepts the following options:
  2303. @table @option
  2304. @item I, i
  2305. Set integrated loudness target.
  2306. Range is -70.0 - -5.0. Default value is -24.0.
  2307. @item LRA, lra
  2308. Set loudness range target.
  2309. Range is 1.0 - 20.0. Default value is 7.0.
  2310. @item TP, tp
  2311. Set maximum true peak.
  2312. Range is -9.0 - +0.0. Default value is -2.0.
  2313. @item measured_I, measured_i
  2314. Measured IL of input file.
  2315. Range is -99.0 - +0.0.
  2316. @item measured_LRA, measured_lra
  2317. Measured LRA of input file.
  2318. Range is 0.0 - 99.0.
  2319. @item measured_TP, measured_tp
  2320. Measured true peak of input file.
  2321. Range is -99.0 - +99.0.
  2322. @item measured_thresh
  2323. Measured threshold of input file.
  2324. Range is -99.0 - +0.0.
  2325. @item offset
  2326. Set offset gain. Gain is applied before the true-peak limiter.
  2327. Range is -99.0 - +99.0. Default is +0.0.
  2328. @item linear
  2329. Normalize linearly if possible.
  2330. measured_I, measured_LRA, measured_TP, and measured_thresh must also
  2331. to be specified in order to use this mode.
  2332. Options are true or false. Default is true.
  2333. @item dual_mono
  2334. Treat mono input files as "dual-mono". If a mono file is intended for playback
  2335. on a stereo system, its EBU R128 measurement will be perceptually incorrect.
  2336. If set to @code{true}, this option will compensate for this effect.
  2337. Multi-channel input files are not affected by this option.
  2338. Options are true or false. Default is false.
  2339. @item print_format
  2340. Set print format for stats. Options are summary, json, or none.
  2341. Default value is none.
  2342. @end table
  2343. @section lowpass
  2344. Apply a low-pass filter with 3dB point frequency.
  2345. The filter can be either single-pole or double-pole (the default).
  2346. The filter roll off at 6dB per pole per octave (20dB per pole per decade).
  2347. The filter accepts the following options:
  2348. @table @option
  2349. @item frequency, f
  2350. Set frequency in Hz. Default is 500.
  2351. @item poles, p
  2352. Set number of poles. Default is 2.
  2353. @item width_type
  2354. Set method to specify band-width of filter.
  2355. @table @option
  2356. @item h
  2357. Hz
  2358. @item q
  2359. Q-Factor
  2360. @item o
  2361. octave
  2362. @item s
  2363. slope
  2364. @end table
  2365. @item width, w
  2366. Specify the band-width of a filter in width_type units.
  2367. Applies only to double-pole filter.
  2368. The default is 0.707q and gives a Butterworth response.
  2369. @end table
  2370. @anchor{pan}
  2371. @section pan
  2372. Mix channels with specific gain levels. The filter accepts the output
  2373. channel layout followed by a set of channels definitions.
  2374. This filter is also designed to efficiently remap the channels of an audio
  2375. stream.
  2376. The filter accepts parameters of the form:
  2377. "@var{l}|@var{outdef}|@var{outdef}|..."
  2378. @table @option
  2379. @item l
  2380. output channel layout or number of channels
  2381. @item outdef
  2382. output channel specification, of the form:
  2383. "@var{out_name}=[@var{gain}*]@var{in_name}[(+-)[@var{gain}*]@var{in_name}...]"
  2384. @item out_name
  2385. output channel to define, either a channel name (FL, FR, etc.) or a channel
  2386. number (c0, c1, etc.)
  2387. @item gain
  2388. multiplicative coefficient for the channel, 1 leaving the volume unchanged
  2389. @item in_name
  2390. input channel to use, see out_name for details; it is not possible to mix
  2391. named and numbered input channels
  2392. @end table
  2393. If the `=' in a channel specification is replaced by `<', then the gains for
  2394. that specification will be renormalized so that the total is 1, thus
  2395. avoiding clipping noise.
  2396. @subsection Mixing examples
  2397. For example, if you want to down-mix from stereo to mono, but with a bigger
  2398. factor for the left channel:
  2399. @example
  2400. pan=1c|c0=0.9*c0+0.1*c1
  2401. @end example
  2402. A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
  2403. 7-channels surround:
  2404. @example
  2405. pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
  2406. @end example
  2407. Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
  2408. that should be preferred (see "-ac" option) unless you have very specific
  2409. needs.
  2410. @subsection Remapping examples
  2411. The channel remapping will be effective if, and only if:
  2412. @itemize
  2413. @item gain coefficients are zeroes or ones,
  2414. @item only one input per channel output,
  2415. @end itemize
  2416. If all these conditions are satisfied, the filter will notify the user ("Pure
  2417. channel mapping detected"), and use an optimized and lossless method to do the
  2418. remapping.
  2419. For example, if you have a 5.1 source and want a stereo audio stream by
  2420. dropping the extra channels:
  2421. @example
  2422. pan="stereo| c0=FL | c1=FR"
  2423. @end example
  2424. Given the same source, you can also switch front left and front right channels
  2425. and keep the input channel layout:
  2426. @example
  2427. pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
  2428. @end example
  2429. If the input is a stereo audio stream, you can mute the front left channel (and
  2430. still keep the stereo channel layout) with:
  2431. @example
  2432. pan="stereo|c1=c1"
  2433. @end example
  2434. Still with a stereo audio stream input, you can copy the right channel in both
  2435. front left and right:
  2436. @example
  2437. pan="stereo| c0=FR | c1=FR"
  2438. @end example
  2439. @section replaygain
  2440. ReplayGain scanner filter. This filter takes an audio stream as an input and
  2441. outputs it unchanged.
  2442. At end of filtering it displays @code{track_gain} and @code{track_peak}.
  2443. @section resample
  2444. Convert the audio sample format, sample rate and channel layout. It is
  2445. not meant to be used directly.
  2446. @section rubberband
  2447. Apply time-stretching and pitch-shifting with librubberband.
  2448. The filter accepts the following options:
  2449. @table @option
  2450. @item tempo
  2451. Set tempo scale factor.
  2452. @item pitch
  2453. Set pitch scale factor.
  2454. @item transients
  2455. Set transients detector.
  2456. Possible values are:
  2457. @table @var
  2458. @item crisp
  2459. @item mixed
  2460. @item smooth
  2461. @end table
  2462. @item detector
  2463. Set detector.
  2464. Possible values are:
  2465. @table @var
  2466. @item compound
  2467. @item percussive
  2468. @item soft
  2469. @end table
  2470. @item phase
  2471. Set phase.
  2472. Possible values are:
  2473. @table @var
  2474. @item laminar
  2475. @item independent
  2476. @end table
  2477. @item window
  2478. Set processing window size.
  2479. Possible values are:
  2480. @table @var
  2481. @item standard
  2482. @item short
  2483. @item long
  2484. @end table
  2485. @item smoothing
  2486. Set smoothing.
  2487. Possible values are:
  2488. @table @var
  2489. @item off
  2490. @item on
  2491. @end table
  2492. @item formant
  2493. Enable formant preservation when shift pitching.
  2494. Possible values are:
  2495. @table @var
  2496. @item shifted
  2497. @item preserved
  2498. @end table
  2499. @item pitchq
  2500. Set pitch quality.
  2501. Possible values are:
  2502. @table @var
  2503. @item quality
  2504. @item speed
  2505. @item consistency
  2506. @end table
  2507. @item channels
  2508. Set channels.
  2509. Possible values are:
  2510. @table @var
  2511. @item apart
  2512. @item together
  2513. @end table
  2514. @end table
  2515. @section sidechaincompress
  2516. This filter acts like normal compressor but has the ability to compress
  2517. detected signal using second input signal.
  2518. It needs two input streams and returns one output stream.
  2519. First input stream will be processed depending on second stream signal.
  2520. The filtered signal then can be filtered with other filters in later stages of
  2521. processing. See @ref{pan} and @ref{amerge} filter.
  2522. The filter accepts the following options:
  2523. @table @option
  2524. @item level_in
  2525. Set input gain. Default is 1. Range is between 0.015625 and 64.
  2526. @item threshold
  2527. If a signal of second stream raises above this level it will affect the gain
  2528. reduction of first stream.
  2529. By default is 0.125. Range is between 0.00097563 and 1.
  2530. @item ratio
  2531. Set a ratio about which the signal is reduced. 1:2 means that if the level
  2532. raised 4dB above the threshold, it will be only 2dB above after the reduction.
  2533. Default is 2. Range is between 1 and 20.
  2534. @item attack
  2535. Amount of milliseconds the signal has to rise above the threshold before gain
  2536. reduction starts. Default is 20. Range is between 0.01 and 2000.
  2537. @item release
  2538. Amount of milliseconds the signal has to fall below the threshold before
  2539. reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
  2540. @item makeup
  2541. Set the amount by how much signal will be amplified after processing.
  2542. Default is 2. Range is from 1 and 64.
  2543. @item knee
  2544. Curve the sharp knee around the threshold to enter gain reduction more softly.
  2545. Default is 2.82843. Range is between 1 and 8.
  2546. @item link
  2547. Choose if the @code{average} level between all channels of side-chain stream
  2548. or the louder(@code{maximum}) channel of side-chain stream affects the
  2549. reduction. Default is @code{average}.
  2550. @item detection
  2551. Should the exact signal be taken in case of @code{peak} or an RMS one in case
  2552. of @code{rms}. Default is @code{rms} which is mainly smoother.
  2553. @item level_sc
  2554. Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
  2555. @item mix
  2556. How much to use compressed signal in output. Default is 1.
  2557. Range is between 0 and 1.
  2558. @end table
  2559. @subsection Examples
  2560. @itemize
  2561. @item
  2562. Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
  2563. depending on the signal of 2nd input and later compressed signal to be
  2564. merged with 2nd input:
  2565. @example
  2566. ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
  2567. @end example
  2568. @end itemize
  2569. @section sidechaingate
  2570. A sidechain gate acts like a normal (wideband) gate but has the ability to
  2571. filter the detected signal before sending it to the gain reduction stage.
  2572. Normally a gate uses the full range signal to detect a level above the
  2573. threshold.
  2574. For example: If you cut all lower frequencies from your sidechain signal
  2575. the gate will decrease the volume of your track only if not enough highs
  2576. appear. With this technique you are able to reduce the resonation of a
  2577. natural drum or remove "rumbling" of muted strokes from a heavily distorted
  2578. guitar.
  2579. It needs two input streams and returns one output stream.
  2580. First input stream will be processed depending on second stream signal.
  2581. The filter accepts the following options:
  2582. @table @option
  2583. @item level_in
  2584. Set input level before filtering.
  2585. Default is 1. Allowed range is from 0.015625 to 64.
  2586. @item range
  2587. Set the level of gain reduction when the signal is below the threshold.
  2588. Default is 0.06125. Allowed range is from 0 to 1.
  2589. @item threshold
  2590. If a signal rises above this level the gain reduction is released.
  2591. Default is 0.125. Allowed range is from 0 to 1.
  2592. @item ratio
  2593. Set a ratio about which the signal is reduced.
  2594. Default is 2. Allowed range is from 1 to 9000.
  2595. @item attack
  2596. Amount of milliseconds the signal has to rise above the threshold before gain
  2597. reduction stops.
  2598. Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
  2599. @item release
  2600. Amount of milliseconds the signal has to fall below the threshold before the
  2601. reduction is increased again. Default is 250 milliseconds.
  2602. Allowed range is from 0.01 to 9000.
  2603. @item makeup
  2604. Set amount of amplification of signal after processing.
  2605. Default is 1. Allowed range is from 1 to 64.
  2606. @item knee
  2607. Curve the sharp knee around the threshold to enter gain reduction more softly.
  2608. Default is 2.828427125. Allowed range is from 1 to 8.
  2609. @item detection
  2610. Choose if exact signal should be taken for detection or an RMS like one.
  2611. Default is rms. Can be peak or rms.
  2612. @item link
  2613. Choose if the average level between all channels or the louder channel affects
  2614. the reduction.
  2615. Default is average. Can be average or maximum.
  2616. @item level_sc
  2617. Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
  2618. @end table
  2619. @section silencedetect
  2620. Detect silence in an audio stream.
  2621. This filter logs a message when it detects that the input audio volume is less
  2622. or equal to a noise tolerance value for a duration greater or equal to the
  2623. minimum detected noise duration.
  2624. The printed times and duration are expressed in seconds.
  2625. The filter accepts the following options:
  2626. @table @option
  2627. @item duration, d
  2628. Set silence duration until notification (default is 2 seconds).
  2629. @item noise, n
  2630. Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
  2631. specified value) or amplitude ratio. Default is -60dB, or 0.001.
  2632. @end table
  2633. @subsection Examples
  2634. @itemize
  2635. @item
  2636. Detect 5 seconds of silence with -50dB noise tolerance:
  2637. @example
  2638. silencedetect=n=-50dB:d=5
  2639. @end example
  2640. @item
  2641. Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
  2642. tolerance in @file{silence.mp3}:
  2643. @example
  2644. ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
  2645. @end example
  2646. @end itemize
  2647. @section silenceremove
  2648. Remove silence from the beginning, middle or end of the audio.
  2649. The filter accepts the following options:
  2650. @table @option
  2651. @item start_periods
  2652. This value is used to indicate if audio should be trimmed at beginning of
  2653. the audio. A value of zero indicates no silence should be trimmed from the
  2654. beginning. When specifying a non-zero value, it trims audio up until it
  2655. finds non-silence. Normally, when trimming silence from beginning of audio
  2656. the @var{start_periods} will be @code{1} but it can be increased to higher
  2657. values to trim all audio up to specific count of non-silence periods.
  2658. Default value is @code{0}.
  2659. @item start_duration
  2660. Specify the amount of time that non-silence must be detected before it stops
  2661. trimming audio. By increasing the duration, bursts of noises can be treated
  2662. as silence and trimmed off. Default value is @code{0}.
  2663. @item start_threshold
  2664. This indicates what sample value should be treated as silence. For digital
  2665. audio, a value of @code{0} may be fine but for audio recorded from analog,
  2666. you may wish to increase the value to account for background noise.
  2667. Can be specified in dB (in case "dB" is appended to the specified value)
  2668. or amplitude ratio. Default value is @code{0}.
  2669. @item stop_periods
  2670. Set the count for trimming silence from the end of audio.
  2671. To remove silence from the middle of a file, specify a @var{stop_periods}
  2672. that is negative. This value is then treated as a positive value and is
  2673. used to indicate the effect should restart processing as specified by
  2674. @var{start_periods}, making it suitable for removing periods of silence
  2675. in the middle of the audio.
  2676. Default value is @code{0}.
  2677. @item stop_duration
  2678. Specify a duration of silence that must exist before audio is not copied any
  2679. more. By specifying a higher duration, silence that is wanted can be left in
  2680. the audio.
  2681. Default value is @code{0}.
  2682. @item stop_threshold
  2683. This is the same as @option{start_threshold} but for trimming silence from
  2684. the end of audio.
  2685. Can be specified in dB (in case "dB" is appended to the specified value)
  2686. or amplitude ratio. Default value is @code{0}.
  2687. @item leave_silence
  2688. This indicates that @var{stop_duration} length of audio should be left intact
  2689. at the beginning of each period of silence.
  2690. For example, if you want to remove long pauses between words but do not want
  2691. to remove the pauses completely. Default value is @code{0}.
  2692. @item detection
  2693. Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
  2694. and works better with digital silence which is exactly 0.
  2695. Default value is @code{rms}.
  2696. @item window
  2697. Set ratio used to calculate size of window for detecting silence.
  2698. Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
  2699. @end table
  2700. @subsection Examples
  2701. @itemize
  2702. @item
  2703. The following example shows how this filter can be used to start a recording
  2704. that does not contain the delay at the start which usually occurs between
  2705. pressing the record button and the start of the performance:
  2706. @example
  2707. silenceremove=1:5:0.02
  2708. @end example
  2709. @item
  2710. Trim all silence encountered from beginning to end where there is more than 1
  2711. second of silence in audio:
  2712. @example
  2713. silenceremove=0:0:0:-1:1:-90dB
  2714. @end example
  2715. @end itemize
  2716. @section sofalizer
  2717. SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
  2718. loudspeakers around the user for binaural listening via headphones (audio
  2719. formats up to 9 channels supported).
  2720. The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
  2721. SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
  2722. Austrian Academy of Sciences.
  2723. To enable compilation of this filter you need to configure FFmpeg with
  2724. @code{--enable-netcdf}.
  2725. The filter accepts the following options:
  2726. @table @option
  2727. @item sofa
  2728. Set the SOFA file used for rendering.
  2729. @item gain
  2730. Set gain applied to audio. Value is in dB. Default is 0.
  2731. @item rotation
  2732. Set rotation of virtual loudspeakers in deg. Default is 0.
  2733. @item elevation
  2734. Set elevation of virtual speakers in deg. Default is 0.
  2735. @item radius
  2736. Set distance in meters between loudspeakers and the listener with near-field
  2737. HRTFs. Default is 1.
  2738. @item type
  2739. Set processing type. Can be @var{time} or @var{freq}. @var{time} is
  2740. processing audio in time domain which is slow.
  2741. @var{freq} is processing audio in frequency domain which is fast.
  2742. Default is @var{freq}.
  2743. @item speakers
  2744. Set custom positions of virtual loudspeakers. Syntax for this option is:
  2745. <CH> <AZIM> <ELEV>[|<CH> <AZIM> <ELEV>|...].
  2746. Each virtual loudspeaker is described with short channel name following with
  2747. azimuth and elevation in degreees.
  2748. Each virtual loudspeaker description is separated by '|'.
  2749. For example to override front left and front right channel positions use:
  2750. 'speakers=FL 45 15|FR 345 15'.
  2751. Descriptions with unrecognised channel names are ignored.
  2752. @end table
  2753. @subsection Examples
  2754. @itemize
  2755. @item
  2756. Using ClubFritz6 sofa file:
  2757. @example
  2758. sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=1
  2759. @end example
  2760. @item
  2761. Using ClubFritz12 sofa file and bigger radius with small rotation:
  2762. @example
  2763. sofalizer=sofa=/path/to/ClubFritz12.sofa:type=freq:radius=2:rotation=5
  2764. @end example
  2765. @item
  2766. Similar as above but with custom speaker positions for front left, front right, back left and back right
  2767. and also with custom gain:
  2768. @example
  2769. "sofalizer=sofa=/path/to/ClubFritz6.sofa:type=freq:radius=2:speakers=FL 45|FR 315|BL 135|BR 225:gain=28"
  2770. @end example
  2771. @end itemize
  2772. @section stereotools
  2773. This filter has some handy utilities to manage stereo signals, for converting
  2774. M/S stereo recordings to L/R signal while having control over the parameters
  2775. or spreading the stereo image of master track.
  2776. The filter accepts the following options:
  2777. @table @option
  2778. @item level_in
  2779. Set input level before filtering for both channels. Defaults is 1.
  2780. Allowed range is from 0.015625 to 64.
  2781. @item level_out
  2782. Set output level after filtering for both channels. Defaults is 1.
  2783. Allowed range is from 0.015625 to 64.
  2784. @item balance_in
  2785. Set input balance between both channels. Default is 0.
  2786. Allowed range is from -1 to 1.
  2787. @item balance_out
  2788. Set output balance between both channels. Default is 0.
  2789. Allowed range is from -1 to 1.
  2790. @item softclip
  2791. Enable softclipping. Results in analog distortion instead of harsh digital 0dB
  2792. clipping. Disabled by default.
  2793. @item mutel
  2794. Mute the left channel. Disabled by default.
  2795. @item muter
  2796. Mute the right channel. Disabled by default.
  2797. @item phasel
  2798. Change the phase of the left channel. Disabled by default.
  2799. @item phaser
  2800. Change the phase of the right channel. Disabled by default.
  2801. @item mode
  2802. Set stereo mode. Available values are:
  2803. @table @samp
  2804. @item lr>lr
  2805. Left/Right to Left/Right, this is default.
  2806. @item lr>ms
  2807. Left/Right to Mid/Side.
  2808. @item ms>lr
  2809. Mid/Side to Left/Right.
  2810. @item lr>ll
  2811. Left/Right to Left/Left.
  2812. @item lr>rr
  2813. Left/Right to Right/Right.
  2814. @item lr>l+r
  2815. Left/Right to Left + Right.
  2816. @item lr>rl
  2817. Left/Right to Right/Left.
  2818. @end table
  2819. @item slev
  2820. Set level of side signal. Default is 1.
  2821. Allowed range is from 0.015625 to 64.
  2822. @item sbal
  2823. Set balance of side signal. Default is 0.
  2824. Allowed range is from -1 to 1.
  2825. @item mlev
  2826. Set level of the middle signal. Default is 1.
  2827. Allowed range is from 0.015625 to 64.
  2828. @item mpan
  2829. Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
  2830. @item base
  2831. Set stereo base between mono and inversed channels. Default is 0.
  2832. Allowed range is from -1 to 1.
  2833. @item delay
  2834. Set delay in milliseconds how much to delay left from right channel and
  2835. vice versa. Default is 0. Allowed range is from -20 to 20.
  2836. @item sclevel
  2837. Set S/C level. Default is 1. Allowed range is from 1 to 100.
  2838. @item phase
  2839. Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
  2840. @end table
  2841. @subsection Examples
  2842. @itemize
  2843. @item
  2844. Apply karaoke like effect:
  2845. @example
  2846. stereotools=mlev=0.015625
  2847. @end example
  2848. @item
  2849. Convert M/S signal to L/R:
  2850. @example
  2851. "stereotools=mode=ms>lr"
  2852. @end example
  2853. @end itemize
  2854. @section stereowiden
  2855. This filter enhance the stereo effect by suppressing signal common to both
  2856. channels and by delaying the signal of left into right and vice versa,
  2857. thereby widening the stereo effect.
  2858. The filter accepts the following options:
  2859. @table @option
  2860. @item delay
  2861. Time in milliseconds of the delay of left signal into right and vice versa.
  2862. Default is 20 milliseconds.
  2863. @item feedback
  2864. Amount of gain in delayed signal into right and vice versa. Gives a delay
  2865. effect of left signal in right output and vice versa which gives widening
  2866. effect. Default is 0.3.
  2867. @item crossfeed
  2868. Cross feed of left into right with inverted phase. This helps in suppressing
  2869. the mono. If the value is 1 it will cancel all the signal common to both
  2870. channels. Default is 0.3.
  2871. @item drymix
  2872. Set level of input signal of original channel. Default is 0.8.
  2873. @end table
  2874. @section treble
  2875. Boost or cut treble (upper) frequencies of the audio using a two-pole
  2876. shelving filter with a response similar to that of a standard
  2877. hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
  2878. The filter accepts the following options:
  2879. @table @option
  2880. @item gain, g
  2881. Give the gain at whichever is the lower of ~22 kHz and the
  2882. Nyquist frequency. Its useful range is about -20 (for a large cut)
  2883. to +20 (for a large boost). Beware of clipping when using a positive gain.
  2884. @item frequency, f
  2885. Set the filter's central frequency and so can be used
  2886. to extend or reduce the frequency range to be boosted or cut.
  2887. The default value is @code{3000} Hz.
  2888. @item width_type
  2889. Set method to specify band-width of filter.
  2890. @table @option
  2891. @item h
  2892. Hz
  2893. @item q
  2894. Q-Factor
  2895. @item o
  2896. octave
  2897. @item s
  2898. slope
  2899. @end table
  2900. @item width, w
  2901. Determine how steep is the filter's shelf transition.
  2902. @end table
  2903. @section tremolo
  2904. Sinusoidal amplitude modulation.
  2905. The filter accepts the following options:
  2906. @table @option
  2907. @item f
  2908. Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
  2909. (20 Hz or lower) will result in a tremolo effect.
  2910. This filter may also be used as a ring modulator by specifying
  2911. a modulation frequency higher than 20 Hz.
  2912. Range is 0.1 - 20000.0. Default value is 5.0 Hz.
  2913. @item d
  2914. Depth of modulation as a percentage. Range is 0.0 - 1.0.
  2915. Default value is 0.5.
  2916. @end table
  2917. @section vibrato
  2918. Sinusoidal phase modulation.
  2919. The filter accepts the following options:
  2920. @table @option
  2921. @item f
  2922. Modulation frequency in Hertz.
  2923. Range is 0.1 - 20000.0. Default value is 5.0 Hz.
  2924. @item d
  2925. Depth of modulation as a percentage. Range is 0.0 - 1.0.
  2926. Default value is 0.5.
  2927. @end table
  2928. @section volume
  2929. Adjust the input audio volume.
  2930. It accepts the following parameters:
  2931. @table @option
  2932. @item volume
  2933. Set audio volume expression.
  2934. Output values are clipped to the maximum value.
  2935. The output audio volume is given by the relation:
  2936. @example
  2937. @var{output_volume} = @var{volume} * @var{input_volume}
  2938. @end example
  2939. The default value for @var{volume} is "1.0".
  2940. @item precision
  2941. This parameter represents the mathematical precision.
  2942. It determines which input sample formats will be allowed, which affects the
  2943. precision of the volume scaling.
  2944. @table @option
  2945. @item fixed
  2946. 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
  2947. @item float
  2948. 32-bit floating-point; this limits input sample format to FLT. (default)
  2949. @item double
  2950. 64-bit floating-point; this limits input sample format to DBL.
  2951. @end table
  2952. @item replaygain
  2953. Choose the behaviour on encountering ReplayGain side data in input frames.
  2954. @table @option
  2955. @item drop
  2956. Remove ReplayGain side data, ignoring its contents (the default).
  2957. @item ignore
  2958. Ignore ReplayGain side data, but leave it in the frame.
  2959. @item track
  2960. Prefer the track gain, if present.
  2961. @item album
  2962. Prefer the album gain, if present.
  2963. @end table
  2964. @item replaygain_preamp
  2965. Pre-amplification gain in dB to apply to the selected replaygain gain.
  2966. Default value for @var{replaygain_preamp} is 0.0.
  2967. @item eval
  2968. Set when the volume expression is evaluated.
  2969. It accepts the following values:
  2970. @table @samp
  2971. @item once
  2972. only evaluate expression once during the filter initialization, or
  2973. when the @samp{volume} command is sent
  2974. @item frame
  2975. evaluate expression for each incoming frame
  2976. @end table
  2977. Default value is @samp{once}.
  2978. @end table
  2979. The volume expression can contain the following parameters.
  2980. @table @option
  2981. @item n
  2982. frame number (starting at zero)
  2983. @item nb_channels
  2984. number of channels
  2985. @item nb_consumed_samples
  2986. number of samples consumed by the filter
  2987. @item nb_samples
  2988. number of samples in the current frame
  2989. @item pos
  2990. original frame position in the file
  2991. @item pts
  2992. frame PTS
  2993. @item sample_rate
  2994. sample rate
  2995. @item startpts
  2996. PTS at start of stream
  2997. @item startt
  2998. time at start of stream
  2999. @item t
  3000. frame time
  3001. @item tb
  3002. timestamp timebase
  3003. @item volume
  3004. last set volume value
  3005. @end table
  3006. Note that when @option{eval} is set to @samp{once} only the
  3007. @var{sample_rate} and @var{tb} variables are available, all other
  3008. variables will evaluate to NAN.
  3009. @subsection Commands
  3010. This filter supports the following commands:
  3011. @table @option
  3012. @item volume
  3013. Modify the volume expression.
  3014. The command accepts the same syntax of the corresponding option.
  3015. If the specified expression is not valid, it is kept at its current
  3016. value.
  3017. @item replaygain_noclip
  3018. Prevent clipping by limiting the gain applied.
  3019. Default value for @var{replaygain_noclip} is 1.
  3020. @end table
  3021. @subsection Examples
  3022. @itemize
  3023. @item
  3024. Halve the input audio volume:
  3025. @example
  3026. volume=volume=0.5
  3027. volume=volume=1/2
  3028. volume=volume=-6.0206dB
  3029. @end example
  3030. In all the above example the named key for @option{volume} can be
  3031. omitted, for example like in:
  3032. @example
  3033. volume=0.5
  3034. @end example
  3035. @item
  3036. Increase input audio power by 6 decibels using fixed-point precision:
  3037. @example
  3038. volume=volume=6dB:precision=fixed
  3039. @end example
  3040. @item
  3041. Fade volume after time 10 with an annihilation period of 5 seconds:
  3042. @example
  3043. volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
  3044. @end example
  3045. @end itemize
  3046. @section volumedetect
  3047. Detect the volume of the input video.
  3048. The filter has no parameters. The input is not modified. Statistics about
  3049. the volume will be printed in the log when the input stream end is reached.
  3050. In particular it will show the mean volume (root mean square), maximum
  3051. volume (on a per-sample basis), and the beginning of a histogram of the
  3052. registered volume values (from the maximum value to a cumulated 1/1000 of
  3053. the samples).
  3054. All volumes are in decibels relative to the maximum PCM value.
  3055. @subsection Examples
  3056. Here is an excerpt of the output:
  3057. @example
  3058. [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
  3059. [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
  3060. [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
  3061. [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
  3062. [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
  3063. [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
  3064. [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
  3065. [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
  3066. [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
  3067. @end example
  3068. It means that:
  3069. @itemize
  3070. @item
  3071. The mean square energy is approximately -27 dB, or 10^-2.7.
  3072. @item
  3073. The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
  3074. @item
  3075. There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
  3076. @end itemize
  3077. In other words, raising the volume by +4 dB does not cause any clipping,
  3078. raising it by +5 dB causes clipping for 6 samples, etc.
  3079. @c man end AUDIO FILTERS
  3080. @chapter Audio Sources
  3081. @c man begin AUDIO SOURCES
  3082. Below is a description of the currently available audio sources.
  3083. @section abuffer
  3084. Buffer audio frames, and make them available to the filter chain.
  3085. This source is mainly intended for a programmatic use, in particular
  3086. through the interface defined in @file{libavfilter/asrc_abuffer.h}.
  3087. It accepts the following parameters:
  3088. @table @option
  3089. @item time_base
  3090. The timebase which will be used for timestamps of submitted frames. It must be
  3091. either a floating-point number or in @var{numerator}/@var{denominator} form.
  3092. @item sample_rate
  3093. The sample rate of the incoming audio buffers.
  3094. @item sample_fmt
  3095. The sample format of the incoming audio buffers.
  3096. Either a sample format name or its corresponding integer representation from
  3097. the enum AVSampleFormat in @file{libavutil/samplefmt.h}
  3098. @item channel_layout
  3099. The channel layout of the incoming audio buffers.
  3100. Either a channel layout name from channel_layout_map in
  3101. @file{libavutil/channel_layout.c} or its corresponding integer representation
  3102. from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
  3103. @item channels
  3104. The number of channels of the incoming audio buffers.
  3105. If both @var{channels} and @var{channel_layout} are specified, then they
  3106. must be consistent.
  3107. @end table
  3108. @subsection Examples
  3109. @example
  3110. abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
  3111. @end example
  3112. will instruct the source to accept planar 16bit signed stereo at 44100Hz.
  3113. Since the sample format with name "s16p" corresponds to the number
  3114. 6 and the "stereo" channel layout corresponds to the value 0x3, this is
  3115. equivalent to:
  3116. @example
  3117. abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
  3118. @end example
  3119. @section aevalsrc
  3120. Generate an audio signal specified by an expression.
  3121. This source accepts in input one or more expressions (one for each
  3122. channel), which are evaluated and used to generate a corresponding
  3123. audio signal.
  3124. This source accepts the following options:
  3125. @table @option
  3126. @item exprs
  3127. Set the '|'-separated expressions list for each separate channel. In case the
  3128. @option{channel_layout} option is not specified, the selected channel layout
  3129. depends on the number of provided expressions. Otherwise the last
  3130. specified expression is applied to the remaining output channels.
  3131. @item channel_layout, c
  3132. Set the channel layout. The number of channels in the specified layout
  3133. must be equal to the number of specified expressions.
  3134. @item duration, d
  3135. Set the minimum duration of the sourced audio. See
  3136. @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
  3137. for the accepted syntax.
  3138. Note that the resulting duration may be greater than the specified
  3139. duration, as the generated audio is always cut at the end of a
  3140. complete frame.
  3141. If not specified, or the expressed duration is negative, the audio is
  3142. supposed to be generated forever.
  3143. @item nb_samples, n
  3144. Set the number of samples per channel per each output frame,
  3145. default to 1024.
  3146. @item sample_rate, s
  3147. Specify the sample rate, default to 44100.
  3148. @end table
  3149. Each expression in @var{exprs} can contain the following constants:
  3150. @table @option
  3151. @item n
  3152. number of the evaluated sample, starting from 0
  3153. @item t
  3154. time of the evaluated sample expressed in seconds, starting from 0
  3155. @item s
  3156. sample rate
  3157. @end table
  3158. @subsection Examples
  3159. @itemize
  3160. @item
  3161. Generate silence:
  3162. @example
  3163. aevalsrc=0
  3164. @end example
  3165. @item
  3166. Generate a sin signal with frequency of 440 Hz, set sample rate to
  3167. 8000 Hz:
  3168. @example
  3169. aevalsrc="sin(440*2*PI*t):s=8000"
  3170. @end example
  3171. @item
  3172. Generate a two channels signal, specify the channel layout (Front
  3173. Center + Back Center) explicitly:
  3174. @example
  3175. aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
  3176. @end example
  3177. @item
  3178. Generate white noise:
  3179. @example
  3180. aevalsrc="-2+random(0)"
  3181. @end example
  3182. @item
  3183. Generate an amplitude modulated signal:
  3184. @example
  3185. aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
  3186. @end example
  3187. @item
  3188. Generate 2.5 Hz binaural beats on a 360 Hz carrier:
  3189. @example
  3190. aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
  3191. @end example
  3192. @end itemize
  3193. @section anullsrc
  3194. The null audio source, return unprocessed audio frames. It is mainly useful
  3195. as a template and to be employed in analysis / debugging tools, or as
  3196. the source for filters which ignore the input data (for example the sox
  3197. synth filter).
  3198. This source accepts the following options:
  3199. @table @option
  3200. @item channel_layout, cl
  3201. Specifies the channel layout, and can be either an integer or a string
  3202. representing a channel layout. The default value of @var{channel_layout}
  3203. is "stereo".
  3204. Check the channel_layout_map definition in
  3205. @file{libavutil/channel_layout.c} for the mapping between strings and
  3206. channel layout values.
  3207. @item sample_rate, r
  3208. Specifies the sample rate, and defaults to 44100.
  3209. @item nb_samples, n
  3210. Set the number of samples per requested frames.
  3211. @end table
  3212. @subsection Examples
  3213. @itemize
  3214. @item
  3215. Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
  3216. @example
  3217. anullsrc=r=48000:cl=4
  3218. @end example
  3219. @item
  3220. Do the same operation with a more obvious syntax:
  3221. @example
  3222. anullsrc=r=48000:cl=mono
  3223. @end example
  3224. @end itemize
  3225. All the parameters need to be explicitly defined.
  3226. @section flite
  3227. Synthesize a voice utterance using the libflite library.
  3228. To enable compilation of this filter you need to configure FFmpeg with
  3229. @code{--enable-libflite}.
  3230. Note that the flite library is not thread-safe.
  3231. The filter accepts the following options:
  3232. @table @option
  3233. @item list_voices
  3234. If set to 1, list the names of the available voices and exit
  3235. immediately. Default value is 0.
  3236. @item nb_samples, n
  3237. Set the maximum number of samples per frame. Default value is 512.
  3238. @item textfile
  3239. Set the filename containing the text to speak.
  3240. @item text
  3241. Set the text to speak.
  3242. @item voice, v
  3243. Set the voice to use for the speech synthesis. Default value is
  3244. @code{kal}. See also the @var{list_voices} option.
  3245. @end table
  3246. @subsection Examples
  3247. @itemize
  3248. @item
  3249. Read from file @file{speech.txt}, and synthesize the text using the
  3250. standard flite voice:
  3251. @example
  3252. flite=textfile=speech.txt
  3253. @end example
  3254. @item
  3255. Read the specified text selecting the @code{slt} voice:
  3256. @example
  3257. flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
  3258. @end example
  3259. @item
  3260. Input text to ffmpeg:
  3261. @example
  3262. ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
  3263. @end example
  3264. @item
  3265. Make @file{ffplay} speak the specified text, using @code{flite} and
  3266. the @code{lavfi} device:
  3267. @example
  3268. ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
  3269. @end example
  3270. @end itemize
  3271. For more information about libflite, check:
  3272. @url{http://www.speech.cs.cmu.edu/flite/}
  3273. @section anoisesrc
  3274. Generate a noise audio signal.
  3275. The filter accepts the following options:
  3276. @table @option
  3277. @item sample_rate, r
  3278. Specify the sample rate. Default value is 48000 Hz.
  3279. @item amplitude, a
  3280. Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
  3281. is 1.0.
  3282. @item duration, d
  3283. Specify the duration of the generated audio stream. Not specifying this option
  3284. results in noise with an infinite length.
  3285. @item color, colour, c
  3286. Specify the color of noise. Available noise colors are white, pink, and brown.
  3287. Default color is white.
  3288. @item seed, s
  3289. Specify a value used to seed the PRNG.
  3290. @item nb_samples, n
  3291. Set the number of samples per each output frame, default is 1024.
  3292. @end table
  3293. @subsection Examples
  3294. @itemize
  3295. @item
  3296. Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
  3297. @example
  3298. anoisesrc=d=60:c=pink:r=44100:a=0.5
  3299. @end example
  3300. @end itemize
  3301. @section sine
  3302. Generate an audio signal made of a sine wave with amplitude 1/8.
  3303. The audio signal is bit-exact.
  3304. The filter accepts the following options:
  3305. @table @option
  3306. @item frequency, f
  3307. Set the carrier frequency. Default is 440 Hz.
  3308. @item beep_factor, b
  3309. Enable a periodic beep every second with frequency @var{beep_factor} times
  3310. the carrier frequency. Default is 0, meaning the beep is disabled.
  3311. @item sample_rate, r
  3312. Specify the sample rate, default is 44100.
  3313. @item duration, d
  3314. Specify the duration of the generated audio stream.
  3315. @item samples_per_frame
  3316. Set the number of samples per output frame.
  3317. The expression can contain the following constants:
  3318. @table @option
  3319. @item n
  3320. The (sequential) number of the output audio frame, starting from 0.
  3321. @item pts
  3322. The PTS (Presentation TimeStamp) of the output audio frame,
  3323. expressed in @var{TB} units.
  3324. @item t
  3325. The PTS of the output audio frame, expressed in seconds.
  3326. @item TB
  3327. The timebase of the output audio frames.
  3328. @end table
  3329. Default is @code{1024}.
  3330. @end table
  3331. @subsection Examples
  3332. @itemize
  3333. @item
  3334. Generate a simple 440 Hz sine wave:
  3335. @example
  3336. sine
  3337. @end example
  3338. @item
  3339. Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
  3340. @example
  3341. sine=220:4:d=5
  3342. sine=f=220:b=4:d=5
  3343. sine=frequency=220:beep_factor=4:duration=5
  3344. @end example
  3345. @item
  3346. Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
  3347. pattern:
  3348. @example
  3349. sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
  3350. @end example
  3351. @end itemize
  3352. @c man end AUDIO SOURCES
  3353. @chapter Audio Sinks
  3354. @c man begin AUDIO SINKS
  3355. Below is a description of the currently available audio sinks.
  3356. @section abuffersink
  3357. Buffer audio frames, and make them available to the end of filter chain.
  3358. This sink is mainly intended for programmatic use, in particular
  3359. through the interface defined in @file{libavfilter/buffersink.h}
  3360. or the options system.
  3361. It accepts a pointer to an AVABufferSinkContext structure, which
  3362. defines the incoming buffers' formats, to be passed as the opaque
  3363. parameter to @code{avfilter_init_filter} for initialization.
  3364. @section anullsink
  3365. Null audio sink; do absolutely nothing with the input audio. It is
  3366. mainly useful as a template and for use in analysis / debugging
  3367. tools.
  3368. @c man end AUDIO SINKS
  3369. @chapter Video Filters
  3370. @c man begin VIDEO FILTERS
  3371. When you configure your FFmpeg build, you can disable any of the
  3372. existing filters using @code{--disable-filters}.
  3373. The configure output will show the video filters included in your
  3374. build.
  3375. Below is a description of the currently available video filters.
  3376. @section alphaextract
  3377. Extract the alpha component from the input as a grayscale video. This
  3378. is especially useful with the @var{alphamerge} filter.
  3379. @section alphamerge
  3380. Add or replace the alpha component of the primary input with the
  3381. grayscale value of a second input. This is intended for use with
  3382. @var{alphaextract} to allow the transmission or storage of frame
  3383. sequences that have alpha in a format that doesn't support an alpha
  3384. channel.
  3385. For example, to reconstruct full frames from a normal YUV-encoded video
  3386. and a separate video created with @var{alphaextract}, you might use:
  3387. @example
  3388. movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
  3389. @end example
  3390. Since this filter is designed for reconstruction, it operates on frame
  3391. sequences without considering timestamps, and terminates when either
  3392. input reaches end of stream. This will cause problems if your encoding
  3393. pipeline drops frames. If you're trying to apply an image as an
  3394. overlay to a video stream, consider the @var{overlay} filter instead.
  3395. @section ass
  3396. Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
  3397. and libavformat to work. On the other hand, it is limited to ASS (Advanced
  3398. Substation Alpha) subtitles files.
  3399. This filter accepts the following option in addition to the common options from
  3400. the @ref{subtitles} filter:
  3401. @table @option
  3402. @item shaping
  3403. Set the shaping engine
  3404. Available values are:
  3405. @table @samp
  3406. @item auto
  3407. The default libass shaping engine, which is the best available.
  3408. @item simple
  3409. Fast, font-agnostic shaper that can do only substitutions
  3410. @item complex
  3411. Slower shaper using OpenType for substitutions and positioning
  3412. @end table
  3413. The default is @code{auto}.
  3414. @end table
  3415. @section atadenoise
  3416. Apply an Adaptive Temporal Averaging Denoiser to the video input.
  3417. The filter accepts the following options:
  3418. @table @option
  3419. @item 0a
  3420. Set threshold A for 1st plane. Default is 0.02.
  3421. Valid range is 0 to 0.3.
  3422. @item 0b
  3423. Set threshold B for 1st plane. Default is 0.04.
  3424. Valid range is 0 to 5.
  3425. @item 1a
  3426. Set threshold A for 2nd plane. Default is 0.02.
  3427. Valid range is 0 to 0.3.
  3428. @item 1b
  3429. Set threshold B for 2nd plane. Default is 0.04.
  3430. Valid range is 0 to 5.
  3431. @item 2a
  3432. Set threshold A for 3rd plane. Default is 0.02.
  3433. Valid range is 0 to 0.3.
  3434. @item 2b
  3435. Set threshold B for 3rd plane. Default is 0.04.
  3436. Valid range is 0 to 5.
  3437. Threshold A is designed to react on abrupt changes in the input signal and
  3438. threshold B is designed to react on continuous changes in the input signal.
  3439. @item s
  3440. Set number of frames filter will use for averaging. Default is 33. Must be odd
  3441. number in range [5, 129].
  3442. @item p
  3443. Set what planes of frame filter will use for averaging. Default is all.
  3444. @end table
  3445. @section avgblur
  3446. Apply average blur filter.
  3447. The filter accepts the following options:
  3448. @table @option
  3449. @item sizeX
  3450. Set horizontal kernel size.
  3451. @item planes
  3452. Set which planes to filter. By default all planes are filtered.
  3453. @item sizeY
  3454. Set vertical kernel size, if zero it will be same as @code{sizeX}.
  3455. Default is @code{0}.
  3456. @end table
  3457. @section bbox
  3458. Compute the bounding box for the non-black pixels in the input frame
  3459. luminance plane.
  3460. This filter computes the bounding box containing all the pixels with a
  3461. luminance value greater than the minimum allowed value.
  3462. The parameters describing the bounding box are printed on the filter
  3463. log.
  3464. The filter accepts the following option:
  3465. @table @option
  3466. @item min_val
  3467. Set the minimal luminance value. Default is @code{16}.
  3468. @end table
  3469. @section bitplanenoise
  3470. Show and measure bit plane noise.
  3471. The filter accepts the following options:
  3472. @table @option
  3473. @item bitplane
  3474. Set which plane to analyze. Default is @code{1}.
  3475. @item filter
  3476. Filter out noisy pixels from @code{bitplane} set above.
  3477. Default is disabled.
  3478. @end table
  3479. @section blackdetect
  3480. Detect video intervals that are (almost) completely black. Can be
  3481. useful to detect chapter transitions, commercials, or invalid
  3482. recordings. Output lines contains the time for the start, end and
  3483. duration of the detected black interval expressed in seconds.
  3484. In order to display the output lines, you need to set the loglevel at
  3485. least to the AV_LOG_INFO value.
  3486. The filter accepts the following options:
  3487. @table @option
  3488. @item black_min_duration, d
  3489. Set the minimum detected black duration expressed in seconds. It must
  3490. be a non-negative floating point number.
  3491. Default value is 2.0.
  3492. @item picture_black_ratio_th, pic_th
  3493. Set the threshold for considering a picture "black".
  3494. Express the minimum value for the ratio:
  3495. @example
  3496. @var{nb_black_pixels} / @var{nb_pixels}
  3497. @end example
  3498. for which a picture is considered black.
  3499. Default value is 0.98.
  3500. @item pixel_black_th, pix_th
  3501. Set the threshold for considering a pixel "black".
  3502. The threshold expresses the maximum pixel luminance value for which a
  3503. pixel is considered "black". The provided value is scaled according to
  3504. the following equation:
  3505. @example
  3506. @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
  3507. @end example
  3508. @var{luminance_range_size} and @var{luminance_minimum_value} depend on
  3509. the input video format, the range is [0-255] for YUV full-range
  3510. formats and [16-235] for YUV non full-range formats.
  3511. Default value is 0.10.
  3512. @end table
  3513. The following example sets the maximum pixel threshold to the minimum
  3514. value, and detects only black intervals of 2 or more seconds:
  3515. @example
  3516. blackdetect=d=2:pix_th=0.00
  3517. @end example
  3518. @section blackframe
  3519. Detect frames that are (almost) completely black. Can be useful to
  3520. detect chapter transitions or commercials. Output lines consist of
  3521. the frame number of the detected frame, the percentage of blackness,
  3522. the position in the file if known or -1 and the timestamp in seconds.
  3523. In order to display the output lines, you need to set the loglevel at
  3524. least to the AV_LOG_INFO value.
  3525. This filter exports frame metadata @code{lavfi.blackframe.pblack}.
  3526. The value represents the percentage of pixels in the picture that
  3527. are below the threshold value.
  3528. It accepts the following parameters:
  3529. @table @option
  3530. @item amount
  3531. The percentage of the pixels that have to be below the threshold; it defaults to
  3532. @code{98}.
  3533. @item threshold, thresh
  3534. The threshold below which a pixel value is considered black; it defaults to
  3535. @code{32}.
  3536. @end table
  3537. @section blend, tblend
  3538. Blend two video frames into each other.
  3539. The @code{blend} filter takes two input streams and outputs one
  3540. stream, the first input is the "top" layer and second input is
  3541. "bottom" layer. By default, the output terminates when the longest input terminates.
  3542. The @code{tblend} (time blend) filter takes two consecutive frames
  3543. from one single stream, and outputs the result obtained by blending
  3544. the new frame on top of the old frame.
  3545. A description of the accepted options follows.
  3546. @table @option
  3547. @item c0_mode
  3548. @item c1_mode
  3549. @item c2_mode
  3550. @item c3_mode
  3551. @item all_mode
  3552. Set blend mode for specific pixel component or all pixel components in case
  3553. of @var{all_mode}. Default value is @code{normal}.
  3554. Available values for component modes are:
  3555. @table @samp
  3556. @item addition
  3557. @item addition128
  3558. @item and
  3559. @item average
  3560. @item burn
  3561. @item darken
  3562. @item difference
  3563. @item difference128
  3564. @item divide
  3565. @item dodge
  3566. @item freeze
  3567. @item exclusion
  3568. @item glow
  3569. @item hardlight
  3570. @item hardmix
  3571. @item heat
  3572. @item lighten
  3573. @item linearlight
  3574. @item multiply
  3575. @item multiply128
  3576. @item negation
  3577. @item normal
  3578. @item or
  3579. @item overlay
  3580. @item phoenix
  3581. @item pinlight
  3582. @item reflect
  3583. @item screen
  3584. @item softlight
  3585. @item subtract
  3586. @item vividlight
  3587. @item xor
  3588. @end table
  3589. @item c0_opacity
  3590. @item c1_opacity
  3591. @item c2_opacity
  3592. @item c3_opacity
  3593. @item all_opacity
  3594. Set blend opacity for specific pixel component or all pixel components in case
  3595. of @var{all_opacity}. Only used in combination with pixel component blend modes.
  3596. @item c0_expr
  3597. @item c1_expr
  3598. @item c2_expr
  3599. @item c3_expr
  3600. @item all_expr
  3601. Set blend expression for specific pixel component or all pixel components in case
  3602. of @var{all_expr}. Note that related mode options will be ignored if those are set.
  3603. The expressions can use the following variables:
  3604. @table @option
  3605. @item N
  3606. The sequential number of the filtered frame, starting from @code{0}.
  3607. @item X
  3608. @item Y
  3609. the coordinates of the current sample
  3610. @item W
  3611. @item H
  3612. the width and height of currently filtered plane
  3613. @item SW
  3614. @item SH
  3615. Width and height scale depending on the currently filtered plane. It is the
  3616. ratio between the corresponding luma plane number of pixels and the current
  3617. plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
  3618. @code{0.5,0.5} for chroma planes.
  3619. @item T
  3620. Time of the current frame, expressed in seconds.
  3621. @item TOP, A
  3622. Value of pixel component at current location for first video frame (top layer).
  3623. @item BOTTOM, B
  3624. Value of pixel component at current location for second video frame (bottom layer).
  3625. @end table
  3626. @item shortest
  3627. Force termination when the shortest input terminates. Default is
  3628. @code{0}. This option is only defined for the @code{blend} filter.
  3629. @item repeatlast
  3630. Continue applying the last bottom frame after the end of the stream. A value of
  3631. @code{0} disable the filter after the last frame of the bottom layer is reached.
  3632. Default is @code{1}. This option is only defined for the @code{blend} filter.
  3633. @end table
  3634. @subsection Examples
  3635. @itemize
  3636. @item
  3637. Apply transition from bottom layer to top layer in first 10 seconds:
  3638. @example
  3639. blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
  3640. @end example
  3641. @item
  3642. Apply 1x1 checkerboard effect:
  3643. @example
  3644. blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
  3645. @end example
  3646. @item
  3647. Apply uncover left effect:
  3648. @example
  3649. blend=all_expr='if(gte(N*SW+X,W),A,B)'
  3650. @end example
  3651. @item
  3652. Apply uncover down effect:
  3653. @example
  3654. blend=all_expr='if(gte(Y-N*SH,0),A,B)'
  3655. @end example
  3656. @item
  3657. Apply uncover up-left effect:
  3658. @example
  3659. blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
  3660. @end example
  3661. @item
  3662. Split diagonally video and shows top and bottom layer on each side:
  3663. @example
  3664. blend=all_expr=if(gt(X,Y*(W/H)),A,B)
  3665. @end example
  3666. @item
  3667. Display differences between the current and the previous frame:
  3668. @example
  3669. tblend=all_mode=difference128
  3670. @end example
  3671. @end itemize
  3672. @section boxblur
  3673. Apply a boxblur algorithm to the input video.
  3674. It accepts the following parameters:
  3675. @table @option
  3676. @item luma_radius, lr
  3677. @item luma_power, lp
  3678. @item chroma_radius, cr
  3679. @item chroma_power, cp
  3680. @item alpha_radius, ar
  3681. @item alpha_power, ap
  3682. @end table
  3683. A description of the accepted options follows.
  3684. @table @option
  3685. @item luma_radius, lr
  3686. @item chroma_radius, cr
  3687. @item alpha_radius, ar
  3688. Set an expression for the box radius in pixels used for blurring the
  3689. corresponding input plane.
  3690. The radius value must be a non-negative number, and must not be
  3691. greater than the value of the expression @code{min(w,h)/2} for the
  3692. luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
  3693. planes.
  3694. Default value for @option{luma_radius} is "2". If not specified,
  3695. @option{chroma_radius} and @option{alpha_radius} default to the
  3696. corresponding value set for @option{luma_radius}.
  3697. The expressions can contain the following constants:
  3698. @table @option
  3699. @item w
  3700. @item h
  3701. The input width and height in pixels.
  3702. @item cw
  3703. @item ch
  3704. The input chroma image width and height in pixels.
  3705. @item hsub
  3706. @item vsub
  3707. The horizontal and vertical chroma subsample values. For example, for the
  3708. pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
  3709. @end table
  3710. @item luma_power, lp
  3711. @item chroma_power, cp
  3712. @item alpha_power, ap
  3713. Specify how many times the boxblur filter is applied to the
  3714. corresponding plane.
  3715. Default value for @option{luma_power} is 2. If not specified,
  3716. @option{chroma_power} and @option{alpha_power} default to the
  3717. corresponding value set for @option{luma_power}.
  3718. A value of 0 will disable the effect.
  3719. @end table
  3720. @subsection Examples
  3721. @itemize
  3722. @item
  3723. Apply a boxblur filter with the luma, chroma, and alpha radii
  3724. set to 2:
  3725. @example
  3726. boxblur=luma_radius=2:luma_power=1
  3727. boxblur=2:1
  3728. @end example
  3729. @item
  3730. Set the luma radius to 2, and alpha and chroma radius to 0:
  3731. @example
  3732. boxblur=2:1:cr=0:ar=0
  3733. @end example
  3734. @item
  3735. Set the luma and chroma radii to a fraction of the video dimension:
  3736. @example
  3737. boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
  3738. @end example
  3739. @end itemize
  3740. @section bwdif
  3741. Deinterlace the input video ("bwdif" stands for "Bob Weaver
  3742. Deinterlacing Filter").
  3743. Motion adaptive deinterlacing based on yadif with the use of w3fdif and cubic
  3744. interpolation algorithms.
  3745. It accepts the following parameters:
  3746. @table @option
  3747. @item mode
  3748. The interlacing mode to adopt. It accepts one of the following values:
  3749. @table @option
  3750. @item 0, send_frame
  3751. Output one frame for each frame.
  3752. @item 1, send_field
  3753. Output one frame for each field.
  3754. @end table
  3755. The default value is @code{send_field}.
  3756. @item parity
  3757. The picture field parity assumed for the input interlaced video. It accepts one
  3758. of the following values:
  3759. @table @option
  3760. @item 0, tff
  3761. Assume the top field is first.
  3762. @item 1, bff
  3763. Assume the bottom field is first.
  3764. @item -1, auto
  3765. Enable automatic detection of field parity.
  3766. @end table
  3767. The default value is @code{auto}.
  3768. If the interlacing is unknown or the decoder does not export this information,
  3769. top field first will be assumed.
  3770. @item deint
  3771. Specify which frames to deinterlace. Accept one of the following
  3772. values:
  3773. @table @option
  3774. @item 0, all
  3775. Deinterlace all frames.
  3776. @item 1, interlaced
  3777. Only deinterlace frames marked as interlaced.
  3778. @end table
  3779. The default value is @code{all}.
  3780. @end table
  3781. @section chromakey
  3782. YUV colorspace color/chroma keying.
  3783. The filter accepts the following options:
  3784. @table @option
  3785. @item color
  3786. The color which will be replaced with transparency.
  3787. @item similarity
  3788. Similarity percentage with the key color.
  3789. 0.01 matches only the exact key color, while 1.0 matches everything.
  3790. @item blend
  3791. Blend percentage.
  3792. 0.0 makes pixels either fully transparent, or not transparent at all.
  3793. Higher values result in semi-transparent pixels, with a higher transparency
  3794. the more similar the pixels color is to the key color.
  3795. @item yuv
  3796. Signals that the color passed is already in YUV instead of RGB.
  3797. Litteral colors like "green" or "red" don't make sense with this enabled anymore.
  3798. This can be used to pass exact YUV values as hexadecimal numbers.
  3799. @end table
  3800. @subsection Examples
  3801. @itemize
  3802. @item
  3803. Make every green pixel in the input image transparent:
  3804. @example
  3805. ffmpeg -i input.png -vf chromakey=green out.png
  3806. @end example
  3807. @item
  3808. Overlay a greenscreen-video on top of a static black background.
  3809. @example
  3810. ffmpeg -f lavfi -i color=c=black:s=1280x720 -i video.mp4 -shortest -filter_complex "[1:v]chromakey=0x70de77:0.1:0.2[ckout];[0:v][ckout]overlay[out]" -map "[out]" output.mkv
  3811. @end example
  3812. @end itemize
  3813. @section ciescope
  3814. Display CIE color diagram with pixels overlaid onto it.
  3815. The filter accepts the following options:
  3816. @table @option
  3817. @item system
  3818. Set color system.
  3819. @table @samp
  3820. @item ntsc, 470m
  3821. @item ebu, 470bg
  3822. @item smpte
  3823. @item 240m
  3824. @item apple
  3825. @item widergb
  3826. @item cie1931
  3827. @item rec709, hdtv
  3828. @item uhdtv, rec2020
  3829. @end table
  3830. @item cie
  3831. Set CIE system.
  3832. @table @samp
  3833. @item xyy
  3834. @item ucs
  3835. @item luv
  3836. @end table
  3837. @item gamuts
  3838. Set what gamuts to draw.
  3839. See @code{system} option for available values.
  3840. @item size, s
  3841. Set ciescope size, by default set to 512.
  3842. @item intensity, i
  3843. Set intensity used to map input pixel values to CIE diagram.
  3844. @item contrast
  3845. Set contrast used to draw tongue colors that are out of active color system gamut.
  3846. @item corrgamma
  3847. Correct gamma displayed on scope, by default enabled.
  3848. @item showwhite
  3849. Show white point on CIE diagram, by default disabled.
  3850. @item gamma
  3851. Set input gamma. Used only with XYZ input color space.
  3852. @end table
  3853. @section codecview
  3854. Visualize information exported by some codecs.
  3855. Some codecs can export information through frames using side-data or other
  3856. means. For example, some MPEG based codecs export motion vectors through the
  3857. @var{export_mvs} flag in the codec @option{flags2} option.
  3858. The filter accepts the following option:
  3859. @table @option
  3860. @item mv
  3861. Set motion vectors to visualize.
  3862. Available flags for @var{mv} are:
  3863. @table @samp
  3864. @item pf
  3865. forward predicted MVs of P-frames
  3866. @item bf
  3867. forward predicted MVs of B-frames
  3868. @item bb
  3869. backward predicted MVs of B-frames
  3870. @end table
  3871. @item qp
  3872. Display quantization parameters using the chroma planes.
  3873. @item mv_type, mvt
  3874. Set motion vectors type to visualize. Includes MVs from all frames unless specified by @var{frame_type} option.
  3875. Available flags for @var{mv_type} are:
  3876. @table @samp
  3877. @item fp
  3878. forward predicted MVs
  3879. @item bp
  3880. backward predicted MVs
  3881. @end table
  3882. @item frame_type, ft
  3883. Set frame type to visualize motion vectors of.
  3884. Available flags for @var{frame_type} are:
  3885. @table @samp
  3886. @item if
  3887. intra-coded frames (I-frames)
  3888. @item pf
  3889. predicted frames (P-frames)
  3890. @item bf
  3891. bi-directionally predicted frames (B-frames)
  3892. @end table
  3893. @end table
  3894. @subsection Examples
  3895. @itemize
  3896. @item
  3897. Visualize forward predicted MVs of all frames using @command{ffplay}:
  3898. @example
  3899. ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv_type=fp
  3900. @end example
  3901. @item
  3902. Visualize multi-directionals MVs of P and B-Frames using @command{ffplay}:
  3903. @example
  3904. ffplay -flags2 +export_mvs input.mp4 -vf codecview=mv=pf+bf+bb
  3905. @end example
  3906. @end itemize
  3907. @section colorbalance
  3908. Modify intensity of primary colors (red, green and blue) of input frames.
  3909. The filter allows an input frame to be adjusted in the shadows, midtones or highlights
  3910. regions for the red-cyan, green-magenta or blue-yellow balance.
  3911. A positive adjustment value shifts the balance towards the primary color, a negative
  3912. value towards the complementary color.
  3913. The filter accepts the following options:
  3914. @table @option
  3915. @item rs
  3916. @item gs
  3917. @item bs
  3918. Adjust red, green and blue shadows (darkest pixels).
  3919. @item rm
  3920. @item gm
  3921. @item bm
  3922. Adjust red, green and blue midtones (medium pixels).
  3923. @item rh
  3924. @item gh
  3925. @item bh
  3926. Adjust red, green and blue highlights (brightest pixels).
  3927. Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
  3928. @end table
  3929. @subsection Examples
  3930. @itemize
  3931. @item
  3932. Add red color cast to shadows:
  3933. @example
  3934. colorbalance=rs=.3
  3935. @end example
  3936. @end itemize
  3937. @section colorkey
  3938. RGB colorspace color keying.
  3939. The filter accepts the following options:
  3940. @table @option
  3941. @item color
  3942. The color which will be replaced with transparency.
  3943. @item similarity
  3944. Similarity percentage with the key color.
  3945. 0.01 matches only the exact key color, while 1.0 matches everything.
  3946. @item blend
  3947. Blend percentage.
  3948. 0.0 makes pixels either fully transparent, or not transparent at all.
  3949. Higher values result in semi-transparent pixels, with a higher transparency
  3950. the more similar the pixels color is to the key color.
  3951. @end table
  3952. @subsection Examples
  3953. @itemize
  3954. @item
  3955. Make every green pixel in the input image transparent:
  3956. @example
  3957. ffmpeg -i input.png -vf colorkey=green out.png
  3958. @end example
  3959. @item
  3960. Overlay a greenscreen-video on top of a static background image.
  3961. @example
  3962. ffmpeg -i background.png -i video.mp4 -filter_complex "[1:v]colorkey=0x3BBD1E:0.3:0.2[ckout];[0:v][ckout]overlay[out]" -map "[out]" output.flv
  3963. @end example
  3964. @end itemize
  3965. @section colorlevels
  3966. Adjust video input frames using levels.
  3967. The filter accepts the following options:
  3968. @table @option
  3969. @item rimin
  3970. @item gimin
  3971. @item bimin
  3972. @item aimin
  3973. Adjust red, green, blue and alpha input black point.
  3974. Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
  3975. @item rimax
  3976. @item gimax
  3977. @item bimax
  3978. @item aimax
  3979. Adjust red, green, blue and alpha input white point.
  3980. Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
  3981. Input levels are used to lighten highlights (bright tones), darken shadows
  3982. (dark tones), change the balance of bright and dark tones.
  3983. @item romin
  3984. @item gomin
  3985. @item bomin
  3986. @item aomin
  3987. Adjust red, green, blue and alpha output black point.
  3988. Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
  3989. @item romax
  3990. @item gomax
  3991. @item bomax
  3992. @item aomax
  3993. Adjust red, green, blue and alpha output white point.
  3994. Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
  3995. Output levels allows manual selection of a constrained output level range.
  3996. @end table
  3997. @subsection Examples
  3998. @itemize
  3999. @item
  4000. Make video output darker:
  4001. @example
  4002. colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
  4003. @end example
  4004. @item
  4005. Increase contrast:
  4006. @example
  4007. colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
  4008. @end example
  4009. @item
  4010. Make video output lighter:
  4011. @example
  4012. colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
  4013. @end example
  4014. @item
  4015. Increase brightness:
  4016. @example
  4017. colorlevels=romin=0.5:gomin=0.5:bomin=0.5
  4018. @end example
  4019. @end itemize
  4020. @section colorchannelmixer
  4021. Adjust video input frames by re-mixing color channels.
  4022. This filter modifies a color channel by adding the values associated to
  4023. the other channels of the same pixels. For example if the value to
  4024. modify is red, the output value will be:
  4025. @example
  4026. @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
  4027. @end example
  4028. The filter accepts the following options:
  4029. @table @option
  4030. @item rr
  4031. @item rg
  4032. @item rb
  4033. @item ra
  4034. Adjust contribution of input red, green, blue and alpha channels for output red channel.
  4035. Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
  4036. @item gr
  4037. @item gg
  4038. @item gb
  4039. @item ga
  4040. Adjust contribution of input red, green, blue and alpha channels for output green channel.
  4041. Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
  4042. @item br
  4043. @item bg
  4044. @item bb
  4045. @item ba
  4046. Adjust contribution of input red, green, blue and alpha channels for output blue channel.
  4047. Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
  4048. @item ar
  4049. @item ag
  4050. @item ab
  4051. @item aa
  4052. Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
  4053. Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
  4054. Allowed ranges for options are @code{[-2.0, 2.0]}.
  4055. @end table
  4056. @subsection Examples
  4057. @itemize
  4058. @item
  4059. Convert source to grayscale:
  4060. @example
  4061. colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
  4062. @end example
  4063. @item
  4064. Simulate sepia tones:
  4065. @example
  4066. colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
  4067. @end example
  4068. @end itemize
  4069. @section colormatrix
  4070. Convert color matrix.
  4071. The filter accepts the following options:
  4072. @table @option
  4073. @item src
  4074. @item dst
  4075. Specify the source and destination color matrix. Both values must be
  4076. specified.
  4077. The accepted values are:
  4078. @table @samp
  4079. @item bt709
  4080. BT.709
  4081. @item bt601
  4082. BT.601
  4083. @item smpte240m
  4084. SMPTE-240M
  4085. @item fcc
  4086. FCC
  4087. @item bt2020
  4088. BT.2020
  4089. @end table
  4090. @end table
  4091. For example to convert from BT.601 to SMPTE-240M, use the command:
  4092. @example
  4093. colormatrix=bt601:smpte240m
  4094. @end example
  4095. @section colorspace
  4096. Convert colorspace, transfer characteristics or color primaries.
  4097. Input video needs to have an even size.
  4098. The filter accepts the following options:
  4099. @table @option
  4100. @anchor{all}
  4101. @item all
  4102. Specify all color properties at once.
  4103. The accepted values are:
  4104. @table @samp
  4105. @item bt470m
  4106. BT.470M
  4107. @item bt470bg
  4108. BT.470BG
  4109. @item bt601-6-525
  4110. BT.601-6 525
  4111. @item bt601-6-625
  4112. BT.601-6 625
  4113. @item bt709
  4114. BT.709
  4115. @item smpte170m
  4116. SMPTE-170M
  4117. @item smpte240m
  4118. SMPTE-240M
  4119. @item bt2020
  4120. BT.2020
  4121. @end table
  4122. @anchor{space}
  4123. @item space
  4124. Specify output colorspace.
  4125. The accepted values are:
  4126. @table @samp
  4127. @item bt709
  4128. BT.709
  4129. @item fcc
  4130. FCC
  4131. @item bt470bg
  4132. BT.470BG or BT.601-6 625
  4133. @item smpte170m
  4134. SMPTE-170M or BT.601-6 525
  4135. @item smpte240m
  4136. SMPTE-240M
  4137. @item ycgco
  4138. YCgCo
  4139. @item bt2020ncl
  4140. BT.2020 with non-constant luminance
  4141. @end table
  4142. @anchor{trc}
  4143. @item trc
  4144. Specify output transfer characteristics.
  4145. The accepted values are:
  4146. @table @samp
  4147. @item bt709
  4148. BT.709
  4149. @item bt470m
  4150. BT.470M
  4151. @item bt470bg
  4152. BT.470BG
  4153. @item gamma22
  4154. Constant gamma of 2.2
  4155. @item gamma28
  4156. Constant gamma of 2.8
  4157. @item smpte170m
  4158. SMPTE-170M, BT.601-6 625 or BT.601-6 525
  4159. @item smpte240m
  4160. SMPTE-240M
  4161. @item srgb
  4162. SRGB
  4163. @item iec61966-2-1
  4164. iec61966-2-1
  4165. @item iec61966-2-4
  4166. iec61966-2-4
  4167. @item xvycc
  4168. xvycc
  4169. @item bt2020-10
  4170. BT.2020 for 10-bits content
  4171. @item bt2020-12
  4172. BT.2020 for 12-bits content
  4173. @end table
  4174. @anchor{primaries}
  4175. @item primaries
  4176. Specify output color primaries.
  4177. The accepted values are:
  4178. @table @samp
  4179. @item bt709
  4180. BT.709
  4181. @item bt470m
  4182. BT.470M
  4183. @item bt470bg
  4184. BT.470BG or BT.601-6 625
  4185. @item smpte170m
  4186. SMPTE-170M or BT.601-6 525
  4187. @item smpte240m
  4188. SMPTE-240M
  4189. @item film
  4190. film
  4191. @item smpte431
  4192. SMPTE-431
  4193. @item smpte432
  4194. SMPTE-432
  4195. @item bt2020
  4196. BT.2020
  4197. @end table
  4198. @anchor{range}
  4199. @item range
  4200. Specify output color range.
  4201. The accepted values are:
  4202. @table @samp
  4203. @item tv
  4204. TV (restricted) range
  4205. @item mpeg
  4206. MPEG (restricted) range
  4207. @item pc
  4208. PC (full) range
  4209. @item jpeg
  4210. JPEG (full) range
  4211. @end table
  4212. @item format
  4213. Specify output color format.
  4214. The accepted values are:
  4215. @table @samp
  4216. @item yuv420p
  4217. YUV 4:2:0 planar 8-bits
  4218. @item yuv420p10
  4219. YUV 4:2:0 planar 10-bits
  4220. @item yuv420p12
  4221. YUV 4:2:0 planar 12-bits
  4222. @item yuv422p
  4223. YUV 4:2:2 planar 8-bits
  4224. @item yuv422p10
  4225. YUV 4:2:2 planar 10-bits
  4226. @item yuv422p12
  4227. YUV 4:2:2 planar 12-bits
  4228. @item yuv444p
  4229. YUV 4:4:4 planar 8-bits
  4230. @item yuv444p10
  4231. YUV 4:4:4 planar 10-bits
  4232. @item yuv444p12
  4233. YUV 4:4:4 planar 12-bits
  4234. @end table
  4235. @item fast
  4236. Do a fast conversion, which skips gamma/primary correction. This will take
  4237. significantly less CPU, but will be mathematically incorrect. To get output
  4238. compatible with that produced by the colormatrix filter, use fast=1.
  4239. @item dither
  4240. Specify dithering mode.
  4241. The accepted values are:
  4242. @table @samp
  4243. @item none
  4244. No dithering
  4245. @item fsb
  4246. Floyd-Steinberg dithering
  4247. @end table
  4248. @item wpadapt
  4249. Whitepoint adaptation mode.
  4250. The accepted values are:
  4251. @table @samp
  4252. @item bradford
  4253. Bradford whitepoint adaptation
  4254. @item vonkries
  4255. von Kries whitepoint adaptation
  4256. @item identity
  4257. identity whitepoint adaptation (i.e. no whitepoint adaptation)
  4258. @end table
  4259. @item iall
  4260. Override all input properties at once. Same accepted values as @ref{all}.
  4261. @item ispace
  4262. Override input colorspace. Same accepted values as @ref{space}.
  4263. @item iprimaries
  4264. Override input color primaries. Same accepted values as @ref{primaries}.
  4265. @item itrc
  4266. Override input transfer characteristics. Same accepted values as @ref{trc}.
  4267. @item irange
  4268. Override input color range. Same accepted values as @ref{range}.
  4269. @end table
  4270. The filter converts the transfer characteristics, color space and color
  4271. primaries to the specified user values. The output value, if not specified,
  4272. is set to a default value based on the "all" property. If that property is
  4273. also not specified, the filter will log an error. The output color range and
  4274. format default to the same value as the input color range and format. The
  4275. input transfer characteristics, color space, color primaries and color range
  4276. should be set on the input data. If any of these are missing, the filter will
  4277. log an error and no conversion will take place.
  4278. For example to convert the input to SMPTE-240M, use the command:
  4279. @example
  4280. colorspace=smpte240m
  4281. @end example
  4282. @section convolution
  4283. Apply convolution 3x3 or 5x5 filter.
  4284. The filter accepts the following options:
  4285. @table @option
  4286. @item 0m
  4287. @item 1m
  4288. @item 2m
  4289. @item 3m
  4290. Set matrix for each plane.
  4291. Matrix is sequence of 9 or 25 signed integers.
  4292. @item 0rdiv
  4293. @item 1rdiv
  4294. @item 2rdiv
  4295. @item 3rdiv
  4296. Set multiplier for calculated value for each plane.
  4297. @item 0bias
  4298. @item 1bias
  4299. @item 2bias
  4300. @item 3bias
  4301. Set bias for each plane. This value is added to the result of the multiplication.
  4302. Useful for making the overall image brighter or darker. Default is 0.0.
  4303. @end table
  4304. @subsection Examples
  4305. @itemize
  4306. @item
  4307. Apply sharpen:
  4308. @example
  4309. convolution="0 -1 0 -1 5 -1 0 -1 0:0 -1 0 -1 5 -1 0 -1 0:0 -1 0 -1 5 -1 0 -1 0:0 -1 0 -1 5 -1 0 -1 0"
  4310. @end example
  4311. @item
  4312. Apply blur:
  4313. @example
  4314. convolution="1 1 1 1 1 1 1 1 1:1 1 1 1 1 1 1 1 1:1 1 1 1 1 1 1 1 1:1 1 1 1 1 1 1 1 1:1/9:1/9:1/9:1/9"
  4315. @end example
  4316. @item
  4317. Apply edge enhance:
  4318. @example
  4319. convolution="0 0 0 -1 1 0 0 0 0:0 0 0 -1 1 0 0 0 0:0 0 0 -1 1 0 0 0 0:0 0 0 -1 1 0 0 0 0:5:1:1:1:0:128:128:128"
  4320. @end example
  4321. @item
  4322. Apply edge detect:
  4323. @example
  4324. convolution="0 1 0 1 -4 1 0 1 0:0 1 0 1 -4 1 0 1 0:0 1 0 1 -4 1 0 1 0:0 1 0 1 -4 1 0 1 0:5:5:5:1:0:128:128:128"
  4325. @end example
  4326. @item
  4327. Apply emboss:
  4328. @example
  4329. convolution="-2 -1 0 -1 1 1 0 1 2:-2 -1 0 -1 1 1 0 1 2:-2 -1 0 -1 1 1 0 1 2:-2 -1 0 -1 1 1 0 1 2"
  4330. @end example
  4331. @end itemize
  4332. @section copy
  4333. Copy the input source unchanged to the output. This is mainly useful for
  4334. testing purposes.
  4335. @anchor{coreimage}
  4336. @section coreimage
  4337. Video filtering on GPU using Apple's CoreImage API on OSX.
  4338. Hardware acceleration is based on an OpenGL context. Usually, this means it is
  4339. processed by video hardware. However, software-based OpenGL implementations
  4340. exist which means there is no guarantee for hardware processing. It depends on
  4341. the respective OSX.
  4342. There are many filters and image generators provided by Apple that come with a
  4343. large variety of options. The filter has to be referenced by its name along
  4344. with its options.
  4345. The coreimage filter accepts the following options:
  4346. @table @option
  4347. @item list_filters
  4348. List all available filters and generators along with all their respective
  4349. options as well as possible minimum and maximum values along with the default
  4350. values.
  4351. @example
  4352. list_filters=true
  4353. @end example
  4354. @item filter
  4355. Specify all filters by their respective name and options.
  4356. Use @var{list_filters} to determine all valid filter names and options.
  4357. Numerical options are specified by a float value and are automatically clamped
  4358. to their respective value range. Vector and color options have to be specified
  4359. by a list of space separated float values. Character escaping has to be done.
  4360. A special option name @code{default} is available to use default options for a
  4361. filter.
  4362. It is required to specify either @code{default} or at least one of the filter options.
  4363. All omitted options are used with their default values.
  4364. The syntax of the filter string is as follows:
  4365. @example
  4366. filter=<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...][#<NAME>@@<OPTION>=<VALUE>[@@<OPTION>=<VALUE>][@@...]][#...]
  4367. @end example
  4368. @item output_rect
  4369. Specify a rectangle where the output of the filter chain is copied into the
  4370. input image. It is given by a list of space separated float values:
  4371. @example
  4372. output_rect=x\ y\ width\ height
  4373. @end example
  4374. If not given, the output rectangle equals the dimensions of the input image.
  4375. The output rectangle is automatically cropped at the borders of the input
  4376. image. Negative values are valid for each component.
  4377. @example
  4378. output_rect=25\ 25\ 100\ 100
  4379. @end example
  4380. @end table
  4381. Several filters can be chained for successive processing without GPU-HOST
  4382. transfers allowing for fast processing of complex filter chains.
  4383. Currently, only filters with zero (generators) or exactly one (filters) input
  4384. image and one output image are supported. Also, transition filters are not yet
  4385. usable as intended.
  4386. Some filters generate output images with additional padding depending on the
  4387. respective filter kernel. The padding is automatically removed to ensure the
  4388. filter output has the same size as the input image.
  4389. For image generators, the size of the output image is determined by the
  4390. previous output image of the filter chain or the input image of the whole
  4391. filterchain, respectively. The generators do not use the pixel information of
  4392. this image to generate their output. However, the generated output is
  4393. blended onto this image, resulting in partial or complete coverage of the
  4394. output image.
  4395. The @ref{coreimagesrc} video source can be used for generating input images
  4396. which are directly fed into the filter chain. By using it, providing input
  4397. images by another video source or an input video is not required.
  4398. @subsection Examples
  4399. @itemize
  4400. @item
  4401. List all filters available:
  4402. @example
  4403. coreimage=list_filters=true
  4404. @end example
  4405. @item
  4406. Use the CIBoxBlur filter with default options to blur an image:
  4407. @example
  4408. coreimage=filter=CIBoxBlur@@default
  4409. @end example
  4410. @item
  4411. Use a filter chain with CISepiaTone at default values and CIVignetteEffect with
  4412. its center at 100x100 and a radius of 50 pixels:
  4413. @example
  4414. coreimage=filter=CIBoxBlur@@default#CIVignetteEffect@@inputCenter=100\ 100@@inputRadius=50
  4415. @end example
  4416. @item
  4417. Use nullsrc and CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
  4418. given as complete and escaped command-line for Apple's standard bash shell:
  4419. @example
  4420. ffmpeg -f lavfi -i nullsrc=s=100x100,coreimage=filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
  4421. @end example
  4422. @end itemize
  4423. @section crop
  4424. Crop the input video to given dimensions.
  4425. It accepts the following parameters:
  4426. @table @option
  4427. @item w, out_w
  4428. The width of the output video. It defaults to @code{iw}.
  4429. This expression is evaluated only once during the filter
  4430. configuration, or when the @samp{w} or @samp{out_w} command is sent.
  4431. @item h, out_h
  4432. The height of the output video. It defaults to @code{ih}.
  4433. This expression is evaluated only once during the filter
  4434. configuration, or when the @samp{h} or @samp{out_h} command is sent.
  4435. @item x
  4436. The horizontal position, in the input video, of the left edge of the output
  4437. video. It defaults to @code{(in_w-out_w)/2}.
  4438. This expression is evaluated per-frame.
  4439. @item y
  4440. The vertical position, in the input video, of the top edge of the output video.
  4441. It defaults to @code{(in_h-out_h)/2}.
  4442. This expression is evaluated per-frame.
  4443. @item keep_aspect
  4444. If set to 1 will force the output display aspect ratio
  4445. to be the same of the input, by changing the output sample aspect
  4446. ratio. It defaults to 0.
  4447. @item exact
  4448. Enable exact cropping. If enabled, subsampled videos will be cropped at exact
  4449. width/height/x/y as specified and will not be rounded to nearest smaller value.
  4450. It defaults to 0.
  4451. @end table
  4452. The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
  4453. expressions containing the following constants:
  4454. @table @option
  4455. @item x
  4456. @item y
  4457. The computed values for @var{x} and @var{y}. They are evaluated for
  4458. each new frame.
  4459. @item in_w
  4460. @item in_h
  4461. The input width and height.
  4462. @item iw
  4463. @item ih
  4464. These are the same as @var{in_w} and @var{in_h}.
  4465. @item out_w
  4466. @item out_h
  4467. The output (cropped) width and height.
  4468. @item ow
  4469. @item oh
  4470. These are the same as @var{out_w} and @var{out_h}.
  4471. @item a
  4472. same as @var{iw} / @var{ih}
  4473. @item sar
  4474. input sample aspect ratio
  4475. @item dar
  4476. input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
  4477. @item hsub
  4478. @item vsub
  4479. horizontal and vertical chroma subsample values. For example for the
  4480. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  4481. @item n
  4482. The number of the input frame, starting from 0.
  4483. @item pos
  4484. the position in the file of the input frame, NAN if unknown
  4485. @item t
  4486. The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
  4487. @end table
  4488. The expression for @var{out_w} may depend on the value of @var{out_h},
  4489. and the expression for @var{out_h} may depend on @var{out_w}, but they
  4490. cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
  4491. evaluated after @var{out_w} and @var{out_h}.
  4492. The @var{x} and @var{y} parameters specify the expressions for the
  4493. position of the top-left corner of the output (non-cropped) area. They
  4494. are evaluated for each frame. If the evaluated value is not valid, it
  4495. is approximated to the nearest valid value.
  4496. The expression for @var{x} may depend on @var{y}, and the expression
  4497. for @var{y} may depend on @var{x}.
  4498. @subsection Examples
  4499. @itemize
  4500. @item
  4501. Crop area with size 100x100 at position (12,34).
  4502. @example
  4503. crop=100:100:12:34
  4504. @end example
  4505. Using named options, the example above becomes:
  4506. @example
  4507. crop=w=100:h=100:x=12:y=34
  4508. @end example
  4509. @item
  4510. Crop the central input area with size 100x100:
  4511. @example
  4512. crop=100:100
  4513. @end example
  4514. @item
  4515. Crop the central input area with size 2/3 of the input video:
  4516. @example
  4517. crop=2/3*in_w:2/3*in_h
  4518. @end example
  4519. @item
  4520. Crop the input video central square:
  4521. @example
  4522. crop=out_w=in_h
  4523. crop=in_h
  4524. @end example
  4525. @item
  4526. Delimit the rectangle with the top-left corner placed at position
  4527. 100:100 and the right-bottom corner corresponding to the right-bottom
  4528. corner of the input image.
  4529. @example
  4530. crop=in_w-100:in_h-100:100:100
  4531. @end example
  4532. @item
  4533. Crop 10 pixels from the left and right borders, and 20 pixels from
  4534. the top and bottom borders
  4535. @example
  4536. crop=in_w-2*10:in_h-2*20
  4537. @end example
  4538. @item
  4539. Keep only the bottom right quarter of the input image:
  4540. @example
  4541. crop=in_w/2:in_h/2:in_w/2:in_h/2
  4542. @end example
  4543. @item
  4544. Crop height for getting Greek harmony:
  4545. @example
  4546. crop=in_w:1/PHI*in_w
  4547. @end example
  4548. @item
  4549. Apply trembling effect:
  4550. @example
  4551. 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)
  4552. @end example
  4553. @item
  4554. Apply erratic camera effect depending on timestamp:
  4555. @example
  4556. 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)"
  4557. @end example
  4558. @item
  4559. Set x depending on the value of y:
  4560. @example
  4561. crop=in_w/2:in_h/2:y:10+10*sin(n/10)
  4562. @end example
  4563. @end itemize
  4564. @subsection Commands
  4565. This filter supports the following commands:
  4566. @table @option
  4567. @item w, out_w
  4568. @item h, out_h
  4569. @item x
  4570. @item y
  4571. Set width/height of the output video and the horizontal/vertical position
  4572. in the input video.
  4573. The command accepts the same syntax of the corresponding option.
  4574. If the specified expression is not valid, it is kept at its current
  4575. value.
  4576. @end table
  4577. @section cropdetect
  4578. Auto-detect the crop size.
  4579. It calculates the necessary cropping parameters and prints the
  4580. recommended parameters via the logging system. The detected dimensions
  4581. correspond to the non-black area of the input video.
  4582. It accepts the following parameters:
  4583. @table @option
  4584. @item limit
  4585. Set higher black value threshold, which can be optionally specified
  4586. from nothing (0) to everything (255 for 8-bit based formats). An intensity
  4587. value greater to the set value is considered non-black. It defaults to 24.
  4588. You can also specify a value between 0.0 and 1.0 which will be scaled depending
  4589. on the bitdepth of the pixel format.
  4590. @item round
  4591. The value which the width/height should be divisible by. It defaults to
  4592. 16. The offset is automatically adjusted to center the video. Use 2 to
  4593. get only even dimensions (needed for 4:2:2 video). 16 is best when
  4594. encoding to most video codecs.
  4595. @item reset_count, reset
  4596. Set the counter that determines after how many frames cropdetect will
  4597. reset the previously detected largest video area and start over to
  4598. detect the current optimal crop area. Default value is 0.
  4599. This can be useful when channel logos distort the video area. 0
  4600. indicates 'never reset', and returns the largest area encountered during
  4601. playback.
  4602. @end table
  4603. @anchor{curves}
  4604. @section curves
  4605. Apply color adjustments using curves.
  4606. This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
  4607. component (red, green and blue) has its values defined by @var{N} key points
  4608. tied from each other using a smooth curve. The x-axis represents the pixel
  4609. values from the input frame, and the y-axis the new pixel values to be set for
  4610. the output frame.
  4611. By default, a component curve is defined by the two points @var{(0;0)} and
  4612. @var{(1;1)}. This creates a straight line where each original pixel value is
  4613. "adjusted" to its own value, which means no change to the image.
  4614. The filter allows you to redefine these two points and add some more. A new
  4615. curve (using a natural cubic spline interpolation) will be define to pass
  4616. smoothly through all these new coordinates. The new defined points needs to be
  4617. strictly increasing over the x-axis, and their @var{x} and @var{y} values must
  4618. be in the @var{[0;1]} interval. If the computed curves happened to go outside
  4619. the vector spaces, the values will be clipped accordingly.
  4620. The filter accepts the following options:
  4621. @table @option
  4622. @item preset
  4623. Select one of the available color presets. This option can be used in addition
  4624. to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
  4625. options takes priority on the preset values.
  4626. Available presets are:
  4627. @table @samp
  4628. @item none
  4629. @item color_negative
  4630. @item cross_process
  4631. @item darker
  4632. @item increase_contrast
  4633. @item lighter
  4634. @item linear_contrast
  4635. @item medium_contrast
  4636. @item negative
  4637. @item strong_contrast
  4638. @item vintage
  4639. @end table
  4640. Default is @code{none}.
  4641. @item master, m
  4642. Set the master key points. These points will define a second pass mapping. It
  4643. is sometimes called a "luminance" or "value" mapping. It can be used with
  4644. @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
  4645. post-processing LUT.
  4646. @item red, r
  4647. Set the key points for the red component.
  4648. @item green, g
  4649. Set the key points for the green component.
  4650. @item blue, b
  4651. Set the key points for the blue component.
  4652. @item all
  4653. Set the key points for all components (not including master).
  4654. Can be used in addition to the other key points component
  4655. options. In this case, the unset component(s) will fallback on this
  4656. @option{all} setting.
  4657. @item psfile
  4658. Specify a Photoshop curves file (@code{.acv}) to import the settings from.
  4659. @item plot
  4660. Save Gnuplot script of the curves in specified file.
  4661. @end table
  4662. To avoid some filtergraph syntax conflicts, each key points list need to be
  4663. defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
  4664. @subsection Examples
  4665. @itemize
  4666. @item
  4667. Increase slightly the middle level of blue:
  4668. @example
  4669. curves=blue='0/0 0.5/0.58 1/1'
  4670. @end example
  4671. @item
  4672. Vintage effect:
  4673. @example
  4674. curves=r='0/0.11 .42/.51 1/0.95':g='0/0 0.50/0.48 1/1':b='0/0.22 .49/.44 1/0.8'
  4675. @end example
  4676. Here we obtain the following coordinates for each components:
  4677. @table @var
  4678. @item red
  4679. @code{(0;0.11) (0.42;0.51) (1;0.95)}
  4680. @item green
  4681. @code{(0;0) (0.50;0.48) (1;1)}
  4682. @item blue
  4683. @code{(0;0.22) (0.49;0.44) (1;0.80)}
  4684. @end table
  4685. @item
  4686. The previous example can also be achieved with the associated built-in preset:
  4687. @example
  4688. curves=preset=vintage
  4689. @end example
  4690. @item
  4691. Or simply:
  4692. @example
  4693. curves=vintage
  4694. @end example
  4695. @item
  4696. Use a Photoshop preset and redefine the points of the green component:
  4697. @example
  4698. curves=psfile='MyCurvesPresets/purple.acv':green='0/0 0.45/0.53 1/1'
  4699. @end example
  4700. @item
  4701. Check out the curves of the @code{cross_process} profile using @command{ffmpeg}
  4702. and @command{gnuplot}:
  4703. @example
  4704. ffmpeg -f lavfi -i color -vf curves=cross_process:plot=/tmp/curves.plt -frames:v 1 -f null -
  4705. gnuplot -p /tmp/curves.plt
  4706. @end example
  4707. @end itemize
  4708. @section datascope
  4709. Video data analysis filter.
  4710. This filter shows hexadecimal pixel values of part of video.
  4711. The filter accepts the following options:
  4712. @table @option
  4713. @item size, s
  4714. Set output video size.
  4715. @item x
  4716. Set x offset from where to pick pixels.
  4717. @item y
  4718. Set y offset from where to pick pixels.
  4719. @item mode
  4720. Set scope mode, can be one of the following:
  4721. @table @samp
  4722. @item mono
  4723. Draw hexadecimal pixel values with white color on black background.
  4724. @item color
  4725. Draw hexadecimal pixel values with input video pixel color on black
  4726. background.
  4727. @item color2
  4728. Draw hexadecimal pixel values on color background picked from input video,
  4729. the text color is picked in such way so its always visible.
  4730. @end table
  4731. @item axis
  4732. Draw rows and columns numbers on left and top of video.
  4733. @item opacity
  4734. Set background opacity.
  4735. @end table
  4736. @section dctdnoiz
  4737. Denoise frames using 2D DCT (frequency domain filtering).
  4738. This filter is not designed for real time.
  4739. The filter accepts the following options:
  4740. @table @option
  4741. @item sigma, s
  4742. Set the noise sigma constant.
  4743. This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
  4744. coefficient (absolute value) below this threshold with be dropped.
  4745. If you need a more advanced filtering, see @option{expr}.
  4746. Default is @code{0}.
  4747. @item overlap
  4748. Set number overlapping pixels for each block. Since the filter can be slow, you
  4749. may want to reduce this value, at the cost of a less effective filter and the
  4750. risk of various artefacts.
  4751. If the overlapping value doesn't permit processing the whole input width or
  4752. height, a warning will be displayed and according borders won't be denoised.
  4753. Default value is @var{blocksize}-1, which is the best possible setting.
  4754. @item expr, e
  4755. Set the coefficient factor expression.
  4756. For each coefficient of a DCT block, this expression will be evaluated as a
  4757. multiplier value for the coefficient.
  4758. If this is option is set, the @option{sigma} option will be ignored.
  4759. The absolute value of the coefficient can be accessed through the @var{c}
  4760. variable.
  4761. @item n
  4762. Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
  4763. @var{blocksize}, which is the width and height of the processed blocks.
  4764. The default value is @var{3} (8x8) and can be raised to @var{4} for a
  4765. @var{blocksize} of 16x16. Note that changing this setting has huge consequences
  4766. on the speed processing. Also, a larger block size does not necessarily means a
  4767. better de-noising.
  4768. @end table
  4769. @subsection Examples
  4770. Apply a denoise with a @option{sigma} of @code{4.5}:
  4771. @example
  4772. dctdnoiz=4.5
  4773. @end example
  4774. The same operation can be achieved using the expression system:
  4775. @example
  4776. dctdnoiz=e='gte(c, 4.5*3)'
  4777. @end example
  4778. Violent denoise using a block size of @code{16x16}:
  4779. @example
  4780. dctdnoiz=15:n=4
  4781. @end example
  4782. @section deband
  4783. Remove banding artifacts from input video.
  4784. It works by replacing banded pixels with average value of referenced pixels.
  4785. The filter accepts the following options:
  4786. @table @option
  4787. @item 1thr
  4788. @item 2thr
  4789. @item 3thr
  4790. @item 4thr
  4791. Set banding detection threshold for each plane. Default is 0.02.
  4792. Valid range is 0.00003 to 0.5.
  4793. If difference between current pixel and reference pixel is less than threshold,
  4794. it will be considered as banded.
  4795. @item range, r
  4796. Banding detection range in pixels. Default is 16. If positive, random number
  4797. in range 0 to set value will be used. If negative, exact absolute value
  4798. will be used.
  4799. The range defines square of four pixels around current pixel.
  4800. @item direction, d
  4801. Set direction in radians from which four pixel will be compared. If positive,
  4802. random direction from 0 to set direction will be picked. If negative, exact of
  4803. absolute value will be picked. For example direction 0, -PI or -2*PI radians
  4804. will pick only pixels on same row and -PI/2 will pick only pixels on same
  4805. column.
  4806. @item blur, b
  4807. If enabled, current pixel is compared with average value of all four
  4808. surrounding pixels. The default is enabled. If disabled current pixel is
  4809. compared with all four surrounding pixels. The pixel is considered banded
  4810. if only all four differences with surrounding pixels are less than threshold.
  4811. @item coupling, c
  4812. If enabled, current pixel is changed if and only if all pixel components are banded,
  4813. e.g. banding detection threshold is triggered for all color components.
  4814. The default is disabled.
  4815. @end table
  4816. @anchor{decimate}
  4817. @section decimate
  4818. Drop duplicated frames at regular intervals.
  4819. The filter accepts the following options:
  4820. @table @option
  4821. @item cycle
  4822. Set the number of frames from which one will be dropped. Setting this to
  4823. @var{N} means one frame in every batch of @var{N} frames will be dropped.
  4824. Default is @code{5}.
  4825. @item dupthresh
  4826. Set the threshold for duplicate detection. If the difference metric for a frame
  4827. is less than or equal to this value, then it is declared as duplicate. Default
  4828. is @code{1.1}
  4829. @item scthresh
  4830. Set scene change threshold. Default is @code{15}.
  4831. @item blockx
  4832. @item blocky
  4833. Set the size of the x and y-axis blocks used during metric calculations.
  4834. Larger blocks give better noise suppression, but also give worse detection of
  4835. small movements. Must be a power of two. Default is @code{32}.
  4836. @item ppsrc
  4837. Mark main input as a pre-processed input and activate clean source input
  4838. stream. This allows the input to be pre-processed with various filters to help
  4839. the metrics calculation while keeping the frame selection lossless. When set to
  4840. @code{1}, the first stream is for the pre-processed input, and the second
  4841. stream is the clean source from where the kept frames are chosen. Default is
  4842. @code{0}.
  4843. @item chroma
  4844. Set whether or not chroma is considered in the metric calculations. Default is
  4845. @code{1}.
  4846. @end table
  4847. @section deflate
  4848. Apply deflate effect to the video.
  4849. This filter replaces the pixel by the local(3x3) average by taking into account
  4850. only values lower than the pixel.
  4851. It accepts the following options:
  4852. @table @option
  4853. @item threshold0
  4854. @item threshold1
  4855. @item threshold2
  4856. @item threshold3
  4857. Limit the maximum change for each plane, default is 65535.
  4858. If 0, plane will remain unchanged.
  4859. @end table
  4860. @section dejudder
  4861. Remove judder produced by partially interlaced telecined content.
  4862. Judder can be introduced, for instance, by @ref{pullup} filter. If the original
  4863. source was partially telecined content then the output of @code{pullup,dejudder}
  4864. will have a variable frame rate. May change the recorded frame rate of the
  4865. container. Aside from that change, this filter will not affect constant frame
  4866. rate video.
  4867. The option available in this filter is:
  4868. @table @option
  4869. @item cycle
  4870. Specify the length of the window over which the judder repeats.
  4871. Accepts any integer greater than 1. Useful values are:
  4872. @table @samp
  4873. @item 4
  4874. If the original was telecined from 24 to 30 fps (Film to NTSC).
  4875. @item 5
  4876. If the original was telecined from 25 to 30 fps (PAL to NTSC).
  4877. @item 20
  4878. If a mixture of the two.
  4879. @end table
  4880. The default is @samp{4}.
  4881. @end table
  4882. @section delogo
  4883. Suppress a TV station logo by a simple interpolation of the surrounding
  4884. pixels. Just set a rectangle covering the logo and watch it disappear
  4885. (and sometimes something even uglier appear - your mileage may vary).
  4886. It accepts the following parameters:
  4887. @table @option
  4888. @item x
  4889. @item y
  4890. Specify the top left corner coordinates of the logo. They must be
  4891. specified.
  4892. @item w
  4893. @item h
  4894. Specify the width and height of the logo to clear. They must be
  4895. specified.
  4896. @item band, t
  4897. Specify the thickness of the fuzzy edge of the rectangle (added to
  4898. @var{w} and @var{h}). The default value is 1. This option is
  4899. deprecated, setting higher values should no longer be necessary and
  4900. is not recommended.
  4901. @item show
  4902. When set to 1, a green rectangle is drawn on the screen to simplify
  4903. finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
  4904. The default value is 0.
  4905. The rectangle is drawn on the outermost pixels which will be (partly)
  4906. replaced with interpolated values. The values of the next pixels
  4907. immediately outside this rectangle in each direction will be used to
  4908. compute the interpolated pixel values inside the rectangle.
  4909. @end table
  4910. @subsection Examples
  4911. @itemize
  4912. @item
  4913. Set a rectangle covering the area with top left corner coordinates 0,0
  4914. and size 100x77, and a band of size 10:
  4915. @example
  4916. delogo=x=0:y=0:w=100:h=77:band=10
  4917. @end example
  4918. @end itemize
  4919. @section deshake
  4920. Attempt to fix small changes in horizontal and/or vertical shift. This
  4921. filter helps remove camera shake from hand-holding a camera, bumping a
  4922. tripod, moving on a vehicle, etc.
  4923. The filter accepts the following options:
  4924. @table @option
  4925. @item x
  4926. @item y
  4927. @item w
  4928. @item h
  4929. Specify a rectangular area where to limit the search for motion
  4930. vectors.
  4931. If desired the search for motion vectors can be limited to a
  4932. rectangular area of the frame defined by its top left corner, width
  4933. and height. These parameters have the same meaning as the drawbox
  4934. filter which can be used to visualise the position of the bounding
  4935. box.
  4936. This is useful when simultaneous movement of subjects within the frame
  4937. might be confused for camera motion by the motion vector search.
  4938. If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
  4939. then the full frame is used. This allows later options to be set
  4940. without specifying the bounding box for the motion vector search.
  4941. Default - search the whole frame.
  4942. @item rx
  4943. @item ry
  4944. Specify the maximum extent of movement in x and y directions in the
  4945. range 0-64 pixels. Default 16.
  4946. @item edge
  4947. Specify how to generate pixels to fill blanks at the edge of the
  4948. frame. Available values are:
  4949. @table @samp
  4950. @item blank, 0
  4951. Fill zeroes at blank locations
  4952. @item original, 1
  4953. Original image at blank locations
  4954. @item clamp, 2
  4955. Extruded edge value at blank locations
  4956. @item mirror, 3
  4957. Mirrored edge at blank locations
  4958. @end table
  4959. Default value is @samp{mirror}.
  4960. @item blocksize
  4961. Specify the blocksize to use for motion search. Range 4-128 pixels,
  4962. default 8.
  4963. @item contrast
  4964. Specify the contrast threshold for blocks. Only blocks with more than
  4965. the specified contrast (difference between darkest and lightest
  4966. pixels) will be considered. Range 1-255, default 125.
  4967. @item search
  4968. Specify the search strategy. Available values are:
  4969. @table @samp
  4970. @item exhaustive, 0
  4971. Set exhaustive search
  4972. @item less, 1
  4973. Set less exhaustive search.
  4974. @end table
  4975. Default value is @samp{exhaustive}.
  4976. @item filename
  4977. If set then a detailed log of the motion search is written to the
  4978. specified file.
  4979. @item opencl
  4980. If set to 1, specify using OpenCL capabilities, only available if
  4981. FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
  4982. @end table
  4983. @section detelecine
  4984. Apply an exact inverse of the telecine operation. It requires a predefined
  4985. pattern specified using the pattern option which must be the same as that passed
  4986. to the telecine filter.
  4987. This filter accepts the following options:
  4988. @table @option
  4989. @item first_field
  4990. @table @samp
  4991. @item top, t
  4992. top field first
  4993. @item bottom, b
  4994. bottom field first
  4995. The default value is @code{top}.
  4996. @end table
  4997. @item pattern
  4998. A string of numbers representing the pulldown pattern you wish to apply.
  4999. The default value is @code{23}.
  5000. @item start_frame
  5001. A number representing position of the first frame with respect to the telecine
  5002. pattern. This is to be used if the stream is cut. The default value is @code{0}.
  5003. @end table
  5004. @section dilation
  5005. Apply dilation effect to the video.
  5006. This filter replaces the pixel by the local(3x3) maximum.
  5007. It accepts the following options:
  5008. @table @option
  5009. @item threshold0
  5010. @item threshold1
  5011. @item threshold2
  5012. @item threshold3
  5013. Limit the maximum change for each plane, default is 65535.
  5014. If 0, plane will remain unchanged.
  5015. @item coordinates
  5016. Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
  5017. pixels are used.
  5018. Flags to local 3x3 coordinates maps like this:
  5019. 1 2 3
  5020. 4 5
  5021. 6 7 8
  5022. @end table
  5023. @section displace
  5024. Displace pixels as indicated by second and third input stream.
  5025. It takes three input streams and outputs one stream, the first input is the
  5026. source, and second and third input are displacement maps.
  5027. The second input specifies how much to displace pixels along the
  5028. x-axis, while the third input specifies how much to displace pixels
  5029. along the y-axis.
  5030. If one of displacement map streams terminates, last frame from that
  5031. displacement map will be used.
  5032. Note that once generated, displacements maps can be reused over and over again.
  5033. A description of the accepted options follows.
  5034. @table @option
  5035. @item edge
  5036. Set displace behavior for pixels that are out of range.
  5037. Available values are:
  5038. @table @samp
  5039. @item blank
  5040. Missing pixels are replaced by black pixels.
  5041. @item smear
  5042. Adjacent pixels will spread out to replace missing pixels.
  5043. @item wrap
  5044. Out of range pixels are wrapped so they point to pixels of other side.
  5045. @end table
  5046. Default is @samp{smear}.
  5047. @end table
  5048. @subsection Examples
  5049. @itemize
  5050. @item
  5051. Add ripple effect to rgb input of video size hd720:
  5052. @example
  5053. ffmpeg -i INPUT -f lavfi -i nullsrc=s=hd720,lutrgb=128:128:128 -f lavfi -i nullsrc=s=hd720,geq='r=128+30*sin(2*PI*X/400+T):g=128+30*sin(2*PI*X/400+T):b=128+30*sin(2*PI*X/400+T)' -lavfi '[0][1][2]displace' OUTPUT
  5054. @end example
  5055. @item
  5056. Add wave effect to rgb input of video size hd720:
  5057. @example
  5058. ffmpeg -i INPUT -f lavfi -i nullsrc=hd720,geq='r=128+80*(sin(sqrt((X-W/2)*(X-W/2)+(Y-H/2)*(Y-H/2))/220*2*PI+T)):g=128+80*(sin(sqrt((X-W/2)*(X-W/2)+(Y-H/2)*(Y-H/2))/220*2*PI+T)):b=128+80*(sin(sqrt((X-W/2)*(X-W/2)+(Y-H/2)*(Y-H/2))/220*2*PI+T))' -lavfi '[1]split[x][y],[0][x][y]displace' OUTPUT
  5059. @end example
  5060. @end itemize
  5061. @section drawbox
  5062. Draw a colored box on the input image.
  5063. It accepts the following parameters:
  5064. @table @option
  5065. @item x
  5066. @item y
  5067. The expressions which specify the top left corner coordinates of the box. It defaults to 0.
  5068. @item width, w
  5069. @item height, h
  5070. The expressions which specify the width and height of the box; if 0 they are interpreted as
  5071. the input width and height. It defaults to 0.
  5072. @item color, c
  5073. Specify the color of the box to write. For the general syntax of this option,
  5074. check the "Color" section in the ffmpeg-utils manual. If the special
  5075. value @code{invert} is used, the box edge color is the same as the
  5076. video with inverted luma.
  5077. @item thickness, t
  5078. The expression which sets the thickness of the box edge. Default value is @code{3}.
  5079. See below for the list of accepted constants.
  5080. @end table
  5081. The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
  5082. following constants:
  5083. @table @option
  5084. @item dar
  5085. The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
  5086. @item hsub
  5087. @item vsub
  5088. horizontal and vertical chroma subsample values. For example for the
  5089. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  5090. @item in_h, ih
  5091. @item in_w, iw
  5092. The input width and height.
  5093. @item sar
  5094. The input sample aspect ratio.
  5095. @item x
  5096. @item y
  5097. The x and y offset coordinates where the box is drawn.
  5098. @item w
  5099. @item h
  5100. The width and height of the drawn box.
  5101. @item t
  5102. The thickness of the drawn box.
  5103. These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
  5104. each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
  5105. @end table
  5106. @subsection Examples
  5107. @itemize
  5108. @item
  5109. Draw a black box around the edge of the input image:
  5110. @example
  5111. drawbox
  5112. @end example
  5113. @item
  5114. Draw a box with color red and an opacity of 50%:
  5115. @example
  5116. drawbox=10:20:200:60:red@@0.5
  5117. @end example
  5118. The previous example can be specified as:
  5119. @example
  5120. drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
  5121. @end example
  5122. @item
  5123. Fill the box with pink color:
  5124. @example
  5125. drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=max
  5126. @end example
  5127. @item
  5128. Draw a 2-pixel red 2.40:1 mask:
  5129. @example
  5130. 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
  5131. @end example
  5132. @end itemize
  5133. @section drawgrid
  5134. Draw a grid on the input image.
  5135. It accepts the following parameters:
  5136. @table @option
  5137. @item x
  5138. @item y
  5139. The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
  5140. @item width, w
  5141. @item height, h
  5142. The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
  5143. input width and height, respectively, minus @code{thickness}, so image gets
  5144. framed. Default to 0.
  5145. @item color, c
  5146. Specify the color of the grid. For the general syntax of this option,
  5147. check the "Color" section in the ffmpeg-utils manual. If the special
  5148. value @code{invert} is used, the grid color is the same as the
  5149. video with inverted luma.
  5150. @item thickness, t
  5151. The expression which sets the thickness of the grid line. Default value is @code{1}.
  5152. See below for the list of accepted constants.
  5153. @end table
  5154. The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
  5155. following constants:
  5156. @table @option
  5157. @item dar
  5158. The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
  5159. @item hsub
  5160. @item vsub
  5161. horizontal and vertical chroma subsample values. For example for the
  5162. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  5163. @item in_h, ih
  5164. @item in_w, iw
  5165. The input grid cell width and height.
  5166. @item sar
  5167. The input sample aspect ratio.
  5168. @item x
  5169. @item y
  5170. The x and y coordinates of some point of grid intersection (meant to configure offset).
  5171. @item w
  5172. @item h
  5173. The width and height of the drawn cell.
  5174. @item t
  5175. The thickness of the drawn cell.
  5176. These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
  5177. each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
  5178. @end table
  5179. @subsection Examples
  5180. @itemize
  5181. @item
  5182. Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
  5183. @example
  5184. drawgrid=width=100:height=100:thickness=2:color=red@@0.5
  5185. @end example
  5186. @item
  5187. Draw a white 3x3 grid with an opacity of 50%:
  5188. @example
  5189. drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
  5190. @end example
  5191. @end itemize
  5192. @anchor{drawtext}
  5193. @section drawtext
  5194. Draw a text string or text from a specified file on top of a video, using the
  5195. libfreetype library.
  5196. To enable compilation of this filter, you need to configure FFmpeg with
  5197. @code{--enable-libfreetype}.
  5198. To enable default font fallback and the @var{font} option you need to
  5199. configure FFmpeg with @code{--enable-libfontconfig}.
  5200. To enable the @var{text_shaping} option, you need to configure FFmpeg with
  5201. @code{--enable-libfribidi}.
  5202. @subsection Syntax
  5203. It accepts the following parameters:
  5204. @table @option
  5205. @item box
  5206. Used to draw a box around text using the background color.
  5207. The value must be either 1 (enable) or 0 (disable).
  5208. The default value of @var{box} is 0.
  5209. @item boxborderw
  5210. Set the width of the border to be drawn around the box using @var{boxcolor}.
  5211. The default value of @var{boxborderw} is 0.
  5212. @item boxcolor
  5213. The color to be used for drawing box around text. For the syntax of this
  5214. option, check the "Color" section in the ffmpeg-utils manual.
  5215. The default value of @var{boxcolor} is "white".
  5216. @item line_spacing
  5217. Set the line spacing in pixels of the border to be drawn around the box using @var{box}.
  5218. The default value of @var{line_spacing} is 0.
  5219. @item borderw
  5220. Set the width of the border to be drawn around the text using @var{bordercolor}.
  5221. The default value of @var{borderw} is 0.
  5222. @item bordercolor
  5223. Set the color to be used for drawing border around text. For the syntax of this
  5224. option, check the "Color" section in the ffmpeg-utils manual.
  5225. The default value of @var{bordercolor} is "black".
  5226. @item expansion
  5227. Select how the @var{text} is expanded. Can be either @code{none},
  5228. @code{strftime} (deprecated) or
  5229. @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
  5230. below for details.
  5231. @item fix_bounds
  5232. If true, check and fix text coords to avoid clipping.
  5233. @item fontcolor
  5234. The color to be used for drawing fonts. For the syntax of this option, check
  5235. the "Color" section in the ffmpeg-utils manual.
  5236. The default value of @var{fontcolor} is "black".
  5237. @item fontcolor_expr
  5238. String which is expanded the same way as @var{text} to obtain dynamic
  5239. @var{fontcolor} value. By default this option has empty value and is not
  5240. processed. When this option is set, it overrides @var{fontcolor} option.
  5241. @item font
  5242. The font family to be used for drawing text. By default Sans.
  5243. @item fontfile
  5244. The font file to be used for drawing text. The path must be included.
  5245. This parameter is mandatory if the fontconfig support is disabled.
  5246. @item draw
  5247. This option does not exist, please see the timeline system
  5248. @item alpha
  5249. Draw the text applying alpha blending. The value can
  5250. be a number between 0.0 and 1.0.
  5251. The expression accepts the same variables @var{x, y} as well.
  5252. The default value is 1.
  5253. Please see @var{fontcolor_expr}.
  5254. @item fontsize
  5255. The font size to be used for drawing text.
  5256. The default value of @var{fontsize} is 16.
  5257. @item text_shaping
  5258. If set to 1, attempt to shape the text (for example, reverse the order of
  5259. right-to-left text and join Arabic characters) before drawing it.
  5260. Otherwise, just draw the text exactly as given.
  5261. By default 1 (if supported).
  5262. @item ft_load_flags
  5263. The flags to be used for loading the fonts.
  5264. The flags map the corresponding flags supported by libfreetype, and are
  5265. a combination of the following values:
  5266. @table @var
  5267. @item default
  5268. @item no_scale
  5269. @item no_hinting
  5270. @item render
  5271. @item no_bitmap
  5272. @item vertical_layout
  5273. @item force_autohint
  5274. @item crop_bitmap
  5275. @item pedantic
  5276. @item ignore_global_advance_width
  5277. @item no_recurse
  5278. @item ignore_transform
  5279. @item monochrome
  5280. @item linear_design
  5281. @item no_autohint
  5282. @end table
  5283. Default value is "default".
  5284. For more information consult the documentation for the FT_LOAD_*
  5285. libfreetype flags.
  5286. @item shadowcolor
  5287. The color to be used for drawing a shadow behind the drawn text. For the
  5288. syntax of this option, check the "Color" section in the ffmpeg-utils manual.
  5289. The default value of @var{shadowcolor} is "black".
  5290. @item shadowx
  5291. @item shadowy
  5292. The x and y offsets for the text shadow position with respect to the
  5293. position of the text. They can be either positive or negative
  5294. values. The default value for both is "0".
  5295. @item start_number
  5296. The starting frame number for the n/frame_num variable. The default value
  5297. is "0".
  5298. @item tabsize
  5299. The size in number of spaces to use for rendering the tab.
  5300. Default value is 4.
  5301. @item timecode
  5302. Set the initial timecode representation in "hh:mm:ss[:;.]ff"
  5303. format. It can be used with or without text parameter. @var{timecode_rate}
  5304. option must be specified.
  5305. @item timecode_rate, rate, r
  5306. Set the timecode frame rate (timecode only).
  5307. @item text
  5308. The text string to be drawn. The text must be a sequence of UTF-8
  5309. encoded characters.
  5310. This parameter is mandatory if no file is specified with the parameter
  5311. @var{textfile}.
  5312. @item textfile
  5313. A text file containing text to be drawn. The text must be a sequence
  5314. of UTF-8 encoded characters.
  5315. This parameter is mandatory if no text string is specified with the
  5316. parameter @var{text}.
  5317. If both @var{text} and @var{textfile} are specified, an error is thrown.
  5318. @item reload
  5319. If set to 1, the @var{textfile} will be reloaded before each frame.
  5320. Be sure to update it atomically, or it may be read partially, or even fail.
  5321. @item x
  5322. @item y
  5323. The expressions which specify the offsets where text will be drawn
  5324. within the video frame. They are relative to the top/left border of the
  5325. output image.
  5326. The default value of @var{x} and @var{y} is "0".
  5327. See below for the list of accepted constants and functions.
  5328. @end table
  5329. The parameters for @var{x} and @var{y} are expressions containing the
  5330. following constants and functions:
  5331. @table @option
  5332. @item dar
  5333. input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
  5334. @item hsub
  5335. @item vsub
  5336. horizontal and vertical chroma subsample values. For example for the
  5337. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  5338. @item line_h, lh
  5339. the height of each text line
  5340. @item main_h, h, H
  5341. the input height
  5342. @item main_w, w, W
  5343. the input width
  5344. @item max_glyph_a, ascent
  5345. the maximum distance from the baseline to the highest/upper grid
  5346. coordinate used to place a glyph outline point, for all the rendered
  5347. glyphs.
  5348. It is a positive value, due to the grid's orientation with the Y axis
  5349. upwards.
  5350. @item max_glyph_d, descent
  5351. the maximum distance from the baseline to the lowest grid coordinate
  5352. used to place a glyph outline point, for all the rendered glyphs.
  5353. This is a negative value, due to the grid's orientation, with the Y axis
  5354. upwards.
  5355. @item max_glyph_h
  5356. maximum glyph height, that is the maximum height for all the glyphs
  5357. contained in the rendered text, it is equivalent to @var{ascent} -
  5358. @var{descent}.
  5359. @item max_glyph_w
  5360. maximum glyph width, that is the maximum width for all the glyphs
  5361. contained in the rendered text
  5362. @item n
  5363. the number of input frame, starting from 0
  5364. @item rand(min, max)
  5365. return a random number included between @var{min} and @var{max}
  5366. @item sar
  5367. The input sample aspect ratio.
  5368. @item t
  5369. timestamp expressed in seconds, NAN if the input timestamp is unknown
  5370. @item text_h, th
  5371. the height of the rendered text
  5372. @item text_w, tw
  5373. the width of the rendered text
  5374. @item x
  5375. @item y
  5376. the x and y offset coordinates where the text is drawn.
  5377. These parameters allow the @var{x} and @var{y} expressions to refer
  5378. each other, so you can for example specify @code{y=x/dar}.
  5379. @end table
  5380. @anchor{drawtext_expansion}
  5381. @subsection Text expansion
  5382. If @option{expansion} is set to @code{strftime},
  5383. the filter recognizes strftime() sequences in the provided text and
  5384. expands them accordingly. Check the documentation of strftime(). This
  5385. feature is deprecated.
  5386. If @option{expansion} is set to @code{none}, the text is printed verbatim.
  5387. If @option{expansion} is set to @code{normal} (which is the default),
  5388. the following expansion mechanism is used.
  5389. The backslash character @samp{\}, followed by any character, always expands to
  5390. the second character.
  5391. Sequences of the form @code{%@{...@}} are expanded. The text between the
  5392. braces is a function name, possibly followed by arguments separated by ':'.
  5393. If the arguments contain special characters or delimiters (':' or '@}'),
  5394. they should be escaped.
  5395. Note that they probably must also be escaped as the value for the
  5396. @option{text} option in the filter argument string and as the filter
  5397. argument in the filtergraph description, and possibly also for the shell,
  5398. that makes up to four levels of escaping; using a text file avoids these
  5399. problems.
  5400. The following functions are available:
  5401. @table @command
  5402. @item expr, e
  5403. The expression evaluation result.
  5404. It must take one argument specifying the expression to be evaluated,
  5405. which accepts the same constants and functions as the @var{x} and
  5406. @var{y} values. Note that not all constants should be used, for
  5407. example the text size is not known when evaluating the expression, so
  5408. the constants @var{text_w} and @var{text_h} will have an undefined
  5409. value.
  5410. @item expr_int_format, eif
  5411. Evaluate the expression's value and output as formatted integer.
  5412. The first argument is the expression to be evaluated, just as for the @var{expr} function.
  5413. The second argument specifies the output format. Allowed values are @samp{x},
  5414. @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
  5415. @code{printf} function.
  5416. The third parameter is optional and sets the number of positions taken by the output.
  5417. It can be used to add padding with zeros from the left.
  5418. @item gmtime
  5419. The time at which the filter is running, expressed in UTC.
  5420. It can accept an argument: a strftime() format string.
  5421. @item localtime
  5422. The time at which the filter is running, expressed in the local time zone.
  5423. It can accept an argument: a strftime() format string.
  5424. @item metadata
  5425. Frame metadata. Takes one or two arguments.
  5426. The first argument is mandatory and specifies the metadata key.
  5427. The second argument is optional and specifies a default value, used when the
  5428. metadata key is not found or empty.
  5429. @item n, frame_num
  5430. The frame number, starting from 0.
  5431. @item pict_type
  5432. A 1 character description of the current picture type.
  5433. @item pts
  5434. The timestamp of the current frame.
  5435. It can take up to three arguments.
  5436. The first argument is the format of the timestamp; it defaults to @code{flt}
  5437. for seconds as a decimal number with microsecond accuracy; @code{hms} stands
  5438. for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
  5439. @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
  5440. @code{localtime} stands for the timestamp of the frame formatted as
  5441. local time zone time.
  5442. The second argument is an offset added to the timestamp.
  5443. If the format is set to @code{localtime} or @code{gmtime},
  5444. a third argument may be supplied: a strftime() format string.
  5445. By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
  5446. @end table
  5447. @subsection Examples
  5448. @itemize
  5449. @item
  5450. Draw "Test Text" with font FreeSerif, using the default values for the
  5451. optional parameters.
  5452. @example
  5453. drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
  5454. @end example
  5455. @item
  5456. Draw 'Test Text' with font FreeSerif of size 24 at position x=100
  5457. and y=50 (counting from the top-left corner of the screen), text is
  5458. yellow with a red box around it. Both the text and the box have an
  5459. opacity of 20%.
  5460. @example
  5461. drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
  5462. x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
  5463. @end example
  5464. Note that the double quotes are not necessary if spaces are not used
  5465. within the parameter list.
  5466. @item
  5467. Show the text at the center of the video frame:
  5468. @example
  5469. drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
  5470. @end example
  5471. @item
  5472. Show the text at a random position, switching to a new position every 30 seconds:
  5473. @example
  5474. drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=if(eq(mod(t\,30)\,0)\,rand(0\,(w-text_w))\,x):y=if(eq(mod(t\,30)\,0)\,rand(0\,(h-text_h))\,y)"
  5475. @end example
  5476. @item
  5477. Show a text line sliding from right to left in the last row of the video
  5478. frame. The file @file{LONG_LINE} is assumed to contain a single line
  5479. with no newlines.
  5480. @example
  5481. drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
  5482. @end example
  5483. @item
  5484. Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
  5485. @example
  5486. drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
  5487. @end example
  5488. @item
  5489. Draw a single green letter "g", at the center of the input video.
  5490. The glyph baseline is placed at half screen height.
  5491. @example
  5492. drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
  5493. @end example
  5494. @item
  5495. Show text for 1 second every 3 seconds:
  5496. @example
  5497. drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
  5498. @end example
  5499. @item
  5500. Use fontconfig to set the font. Note that the colons need to be escaped.
  5501. @example
  5502. drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
  5503. @end example
  5504. @item
  5505. Print the date of a real-time encoding (see strftime(3)):
  5506. @example
  5507. drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
  5508. @end example
  5509. @item
  5510. Show text fading in and out (appearing/disappearing):
  5511. @example
  5512. #!/bin/sh
  5513. DS=1.0 # display start
  5514. DE=10.0 # display end
  5515. FID=1.5 # fade in duration
  5516. FOD=5 # fade out duration
  5517. 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 @}"
  5518. @end example
  5519. @item
  5520. Horizontally align multiple separate texts. Note that @option{max_glyph_a}
  5521. and the @option{fontsize} value are included in the @option{y} offset.
  5522. @example
  5523. drawtext=fontfile=FreeSans.ttf:text=DOG:fontsize=24:x=10:y=20+24-max_glyph_a,
  5524. drawtext=fontfile=FreeSans.ttf:text=cow:fontsize=24:x=80:y=20+24-max_glyph_a
  5525. @end example
  5526. @end itemize
  5527. For more information about libfreetype, check:
  5528. @url{http://www.freetype.org/}.
  5529. For more information about fontconfig, check:
  5530. @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
  5531. For more information about libfribidi, check:
  5532. @url{http://fribidi.org/}.
  5533. @section edgedetect
  5534. Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
  5535. The filter accepts the following options:
  5536. @table @option
  5537. @item low
  5538. @item high
  5539. Set low and high threshold values used by the Canny thresholding
  5540. algorithm.
  5541. The high threshold selects the "strong" edge pixels, which are then
  5542. connected through 8-connectivity with the "weak" edge pixels selected
  5543. by the low threshold.
  5544. @var{low} and @var{high} threshold values must be chosen in the range
  5545. [0,1], and @var{low} should be lesser or equal to @var{high}.
  5546. Default value for @var{low} is @code{20/255}, and default value for @var{high}
  5547. is @code{50/255}.
  5548. @item mode
  5549. Define the drawing mode.
  5550. @table @samp
  5551. @item wires
  5552. Draw white/gray wires on black background.
  5553. @item colormix
  5554. Mix the colors to create a paint/cartoon effect.
  5555. @end table
  5556. Default value is @var{wires}.
  5557. @end table
  5558. @subsection Examples
  5559. @itemize
  5560. @item
  5561. Standard edge detection with custom values for the hysteresis thresholding:
  5562. @example
  5563. edgedetect=low=0.1:high=0.4
  5564. @end example
  5565. @item
  5566. Painting effect without thresholding:
  5567. @example
  5568. edgedetect=mode=colormix:high=0
  5569. @end example
  5570. @end itemize
  5571. @section eq
  5572. Set brightness, contrast, saturation and approximate gamma adjustment.
  5573. The filter accepts the following options:
  5574. @table @option
  5575. @item contrast
  5576. Set the contrast expression. The value must be a float value in range
  5577. @code{-2.0} to @code{2.0}. The default value is "1".
  5578. @item brightness
  5579. Set the brightness expression. The value must be a float value in
  5580. range @code{-1.0} to @code{1.0}. The default value is "0".
  5581. @item saturation
  5582. Set the saturation expression. The value must be a float in
  5583. range @code{0.0} to @code{3.0}. The default value is "1".
  5584. @item gamma
  5585. Set the gamma expression. The value must be a float in range
  5586. @code{0.1} to @code{10.0}. The default value is "1".
  5587. @item gamma_r
  5588. Set the gamma expression for red. The value must be a float in
  5589. range @code{0.1} to @code{10.0}. The default value is "1".
  5590. @item gamma_g
  5591. Set the gamma expression for green. The value must be a float in range
  5592. @code{0.1} to @code{10.0}. The default value is "1".
  5593. @item gamma_b
  5594. Set the gamma expression for blue. The value must be a float in range
  5595. @code{0.1} to @code{10.0}. The default value is "1".
  5596. @item gamma_weight
  5597. Set the gamma weight expression. It can be used to reduce the effect
  5598. of a high gamma value on bright image areas, e.g. keep them from
  5599. getting overamplified and just plain white. The value must be a float
  5600. in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
  5601. gamma correction all the way down while @code{1.0} leaves it at its
  5602. full strength. Default is "1".
  5603. @item eval
  5604. Set when the expressions for brightness, contrast, saturation and
  5605. gamma expressions are evaluated.
  5606. It accepts the following values:
  5607. @table @samp
  5608. @item init
  5609. only evaluate expressions once during the filter initialization or
  5610. when a command is processed
  5611. @item frame
  5612. evaluate expressions for each incoming frame
  5613. @end table
  5614. Default value is @samp{init}.
  5615. @end table
  5616. The expressions accept the following parameters:
  5617. @table @option
  5618. @item n
  5619. frame count of the input frame starting from 0
  5620. @item pos
  5621. byte position of the corresponding packet in the input file, NAN if
  5622. unspecified
  5623. @item r
  5624. frame rate of the input video, NAN if the input frame rate is unknown
  5625. @item t
  5626. timestamp expressed in seconds, NAN if the input timestamp is unknown
  5627. @end table
  5628. @subsection Commands
  5629. The filter supports the following commands:
  5630. @table @option
  5631. @item contrast
  5632. Set the contrast expression.
  5633. @item brightness
  5634. Set the brightness expression.
  5635. @item saturation
  5636. Set the saturation expression.
  5637. @item gamma
  5638. Set the gamma expression.
  5639. @item gamma_r
  5640. Set the gamma_r expression.
  5641. @item gamma_g
  5642. Set gamma_g expression.
  5643. @item gamma_b
  5644. Set gamma_b expression.
  5645. @item gamma_weight
  5646. Set gamma_weight expression.
  5647. The command accepts the same syntax of the corresponding option.
  5648. If the specified expression is not valid, it is kept at its current
  5649. value.
  5650. @end table
  5651. @section erosion
  5652. Apply erosion effect to the video.
  5653. This filter replaces the pixel by the local(3x3) minimum.
  5654. It accepts the following options:
  5655. @table @option
  5656. @item threshold0
  5657. @item threshold1
  5658. @item threshold2
  5659. @item threshold3
  5660. Limit the maximum change for each plane, default is 65535.
  5661. If 0, plane will remain unchanged.
  5662. @item coordinates
  5663. Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
  5664. pixels are used.
  5665. Flags to local 3x3 coordinates maps like this:
  5666. 1 2 3
  5667. 4 5
  5668. 6 7 8
  5669. @end table
  5670. @section extractplanes
  5671. Extract color channel components from input video stream into
  5672. separate grayscale video streams.
  5673. The filter accepts the following option:
  5674. @table @option
  5675. @item planes
  5676. Set plane(s) to extract.
  5677. Available values for planes are:
  5678. @table @samp
  5679. @item y
  5680. @item u
  5681. @item v
  5682. @item a
  5683. @item r
  5684. @item g
  5685. @item b
  5686. @end table
  5687. Choosing planes not available in the input will result in an error.
  5688. That means you cannot select @code{r}, @code{g}, @code{b} planes
  5689. with @code{y}, @code{u}, @code{v} planes at same time.
  5690. @end table
  5691. @subsection Examples
  5692. @itemize
  5693. @item
  5694. Extract luma, u and v color channel component from input video frame
  5695. into 3 grayscale outputs:
  5696. @example
  5697. 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
  5698. @end example
  5699. @end itemize
  5700. @section elbg
  5701. Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
  5702. For each input image, the filter will compute the optimal mapping from
  5703. the input to the output given the codebook length, that is the number
  5704. of distinct output colors.
  5705. This filter accepts the following options.
  5706. @table @option
  5707. @item codebook_length, l
  5708. Set codebook length. The value must be a positive integer, and
  5709. represents the number of distinct output colors. Default value is 256.
  5710. @item nb_steps, n
  5711. Set the maximum number of iterations to apply for computing the optimal
  5712. mapping. The higher the value the better the result and the higher the
  5713. computation time. Default value is 1.
  5714. @item seed, s
  5715. Set a random seed, must be an integer included between 0 and
  5716. UINT32_MAX. If not specified, or if explicitly set to -1, the filter
  5717. will try to use a good random seed on a best effort basis.
  5718. @item pal8
  5719. Set pal8 output pixel format. This option does not work with codebook
  5720. length greater than 256.
  5721. @end table
  5722. @section fade
  5723. Apply a fade-in/out effect to the input video.
  5724. It accepts the following parameters:
  5725. @table @option
  5726. @item type, t
  5727. The effect type can be either "in" for a fade-in, or "out" for a fade-out
  5728. effect.
  5729. Default is @code{in}.
  5730. @item start_frame, s
  5731. Specify the number of the frame to start applying the fade
  5732. effect at. Default is 0.
  5733. @item nb_frames, n
  5734. The number of frames that the fade effect lasts. At the end of the
  5735. fade-in effect, the output video will have the same intensity as the input video.
  5736. At the end of the fade-out transition, the output video will be filled with the
  5737. selected @option{color}.
  5738. Default is 25.
  5739. @item alpha
  5740. If set to 1, fade only alpha channel, if one exists on the input.
  5741. Default value is 0.
  5742. @item start_time, st
  5743. Specify the timestamp (in seconds) of the frame to start to apply the fade
  5744. effect. If both start_frame and start_time are specified, the fade will start at
  5745. whichever comes last. Default is 0.
  5746. @item duration, d
  5747. The number of seconds for which the fade effect has to last. At the end of the
  5748. fade-in effect the output video will have the same intensity as the input video,
  5749. at the end of the fade-out transition the output video will be filled with the
  5750. selected @option{color}.
  5751. If both duration and nb_frames are specified, duration is used. Default is 0
  5752. (nb_frames is used by default).
  5753. @item color, c
  5754. Specify the color of the fade. Default is "black".
  5755. @end table
  5756. @subsection Examples
  5757. @itemize
  5758. @item
  5759. Fade in the first 30 frames of video:
  5760. @example
  5761. fade=in:0:30
  5762. @end example
  5763. The command above is equivalent to:
  5764. @example
  5765. fade=t=in:s=0:n=30
  5766. @end example
  5767. @item
  5768. Fade out the last 45 frames of a 200-frame video:
  5769. @example
  5770. fade=out:155:45
  5771. fade=type=out:start_frame=155:nb_frames=45
  5772. @end example
  5773. @item
  5774. Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
  5775. @example
  5776. fade=in:0:25, fade=out:975:25
  5777. @end example
  5778. @item
  5779. Make the first 5 frames yellow, then fade in from frame 5-24:
  5780. @example
  5781. fade=in:5:20:color=yellow
  5782. @end example
  5783. @item
  5784. Fade in alpha over first 25 frames of video:
  5785. @example
  5786. fade=in:0:25:alpha=1
  5787. @end example
  5788. @item
  5789. Make the first 5.5 seconds black, then fade in for 0.5 seconds:
  5790. @example
  5791. fade=t=in:st=5.5:d=0.5
  5792. @end example
  5793. @end itemize
  5794. @section fftfilt
  5795. Apply arbitrary expressions to samples in frequency domain
  5796. @table @option
  5797. @item dc_Y
  5798. Adjust the dc value (gain) of the luma plane of the image. The filter
  5799. accepts an integer value in range @code{0} to @code{1000}. The default
  5800. value is set to @code{0}.
  5801. @item dc_U
  5802. Adjust the dc value (gain) of the 1st chroma plane of the image. The
  5803. filter accepts an integer value in range @code{0} to @code{1000}. The
  5804. default value is set to @code{0}.
  5805. @item dc_V
  5806. Adjust the dc value (gain) of the 2nd chroma plane of the image. The
  5807. filter accepts an integer value in range @code{0} to @code{1000}. The
  5808. default value is set to @code{0}.
  5809. @item weight_Y
  5810. Set the frequency domain weight expression for the luma plane.
  5811. @item weight_U
  5812. Set the frequency domain weight expression for the 1st chroma plane.
  5813. @item weight_V
  5814. Set the frequency domain weight expression for the 2nd chroma plane.
  5815. The filter accepts the following variables:
  5816. @item X
  5817. @item Y
  5818. The coordinates of the current sample.
  5819. @item W
  5820. @item H
  5821. The width and height of the image.
  5822. @end table
  5823. @subsection Examples
  5824. @itemize
  5825. @item
  5826. High-pass:
  5827. @example
  5828. fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
  5829. @end example
  5830. @item
  5831. Low-pass:
  5832. @example
  5833. fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
  5834. @end example
  5835. @item
  5836. Sharpen:
  5837. @example
  5838. fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
  5839. @end example
  5840. @item
  5841. Blur:
  5842. @example
  5843. fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
  5844. @end example
  5845. @end itemize
  5846. @section field
  5847. Extract a single field from an interlaced image using stride
  5848. arithmetic to avoid wasting CPU time. The output frames are marked as
  5849. non-interlaced.
  5850. The filter accepts the following options:
  5851. @table @option
  5852. @item type
  5853. Specify whether to extract the top (if the value is @code{0} or
  5854. @code{top}) or the bottom field (if the value is @code{1} or
  5855. @code{bottom}).
  5856. @end table
  5857. @section fieldhint
  5858. Create new frames by copying the top and bottom fields from surrounding frames
  5859. supplied as numbers by the hint file.
  5860. @table @option
  5861. @item hint
  5862. Set file containing hints: absolute/relative frame numbers.
  5863. There must be one line for each frame in a clip. Each line must contain two
  5864. numbers separated by the comma, optionally followed by @code{-} or @code{+}.
  5865. Numbers supplied on each line of file can not be out of [N-1,N+1] where N
  5866. is current frame number for @code{absolute} mode or out of [-1, 1] range
  5867. for @code{relative} mode. First number tells from which frame to pick up top
  5868. field and second number tells from which frame to pick up bottom field.
  5869. If optionally followed by @code{+} output frame will be marked as interlaced,
  5870. else if followed by @code{-} output frame will be marked as progressive, else
  5871. it will be marked same as input frame.
  5872. If line starts with @code{#} or @code{;} that line is skipped.
  5873. @item mode
  5874. Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
  5875. @end table
  5876. Example of first several lines of @code{hint} file for @code{relative} mode:
  5877. @example
  5878. 0,0 - # first frame
  5879. 1,0 - # second frame, use third's frame top field and second's frame bottom field
  5880. 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
  5881. 1,0 -
  5882. 0,0 -
  5883. 0,0 -
  5884. 1,0 -
  5885. 1,0 -
  5886. 1,0 -
  5887. 0,0 -
  5888. 0,0 -
  5889. 1,0 -
  5890. 1,0 -
  5891. 1,0 -
  5892. 0,0 -
  5893. @end example
  5894. @section fieldmatch
  5895. Field matching filter for inverse telecine. It is meant to reconstruct the
  5896. progressive frames from a telecined stream. The filter does not drop duplicated
  5897. frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
  5898. followed by a decimation filter such as @ref{decimate} in the filtergraph.
  5899. The separation of the field matching and the decimation is notably motivated by
  5900. the possibility of inserting a de-interlacing filter fallback between the two.
  5901. If the source has mixed telecined and real interlaced content,
  5902. @code{fieldmatch} will not be able to match fields for the interlaced parts.
  5903. But these remaining combed frames will be marked as interlaced, and thus can be
  5904. de-interlaced by a later filter such as @ref{yadif} before decimation.
  5905. In addition to the various configuration options, @code{fieldmatch} can take an
  5906. optional second stream, activated through the @option{ppsrc} option. If
  5907. enabled, the frames reconstruction will be based on the fields and frames from
  5908. this second stream. This allows the first input to be pre-processed in order to
  5909. help the various algorithms of the filter, while keeping the output lossless
  5910. (assuming the fields are matched properly). Typically, a field-aware denoiser,
  5911. or brightness/contrast adjustments can help.
  5912. Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
  5913. and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
  5914. which @code{fieldmatch} is based on. While the semantic and usage are very
  5915. close, some behaviour and options names can differ.
  5916. The @ref{decimate} filter currently only works for constant frame rate input.
  5917. If your input has mixed telecined (30fps) and progressive content with a lower
  5918. framerate like 24fps use the following filterchain to produce the necessary cfr
  5919. stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
  5920. The filter accepts the following options:
  5921. @table @option
  5922. @item order
  5923. Specify the assumed field order of the input stream. Available values are:
  5924. @table @samp
  5925. @item auto
  5926. Auto detect parity (use FFmpeg's internal parity value).
  5927. @item bff
  5928. Assume bottom field first.
  5929. @item tff
  5930. Assume top field first.
  5931. @end table
  5932. Note that it is sometimes recommended not to trust the parity announced by the
  5933. stream.
  5934. Default value is @var{auto}.
  5935. @item mode
  5936. Set the matching mode or strategy to use. @option{pc} mode is the safest in the
  5937. sense that it won't risk creating jerkiness due to duplicate frames when
  5938. possible, but if there are bad edits or blended fields it will end up
  5939. outputting combed frames when a good match might actually exist. On the other
  5940. hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
  5941. but will almost always find a good frame if there is one. The other values are
  5942. all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
  5943. jerkiness and creating duplicate frames versus finding good matches in sections
  5944. with bad edits, orphaned fields, blended fields, etc.
  5945. More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
  5946. Available values are:
  5947. @table @samp
  5948. @item pc
  5949. 2-way matching (p/c)
  5950. @item pc_n
  5951. 2-way matching, and trying 3rd match if still combed (p/c + n)
  5952. @item pc_u
  5953. 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
  5954. @item pc_n_ub
  5955. 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
  5956. still combed (p/c + n + u/b)
  5957. @item pcn
  5958. 3-way matching (p/c/n)
  5959. @item pcn_ub
  5960. 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
  5961. detected as combed (p/c/n + u/b)
  5962. @end table
  5963. The parenthesis at the end indicate the matches that would be used for that
  5964. mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
  5965. @var{top}).
  5966. In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
  5967. the slowest.
  5968. Default value is @var{pc_n}.
  5969. @item ppsrc
  5970. Mark the main input stream as a pre-processed input, and enable the secondary
  5971. input stream as the clean source to pick the fields from. See the filter
  5972. introduction for more details. It is similar to the @option{clip2} feature from
  5973. VFM/TFM.
  5974. Default value is @code{0} (disabled).
  5975. @item field
  5976. Set the field to match from. It is recommended to set this to the same value as
  5977. @option{order} unless you experience matching failures with that setting. In
  5978. certain circumstances changing the field that is used to match from can have a
  5979. large impact on matching performance. Available values are:
  5980. @table @samp
  5981. @item auto
  5982. Automatic (same value as @option{order}).
  5983. @item bottom
  5984. Match from the bottom field.
  5985. @item top
  5986. Match from the top field.
  5987. @end table
  5988. Default value is @var{auto}.
  5989. @item mchroma
  5990. Set whether or not chroma is included during the match comparisons. In most
  5991. cases it is recommended to leave this enabled. You should set this to @code{0}
  5992. only if your clip has bad chroma problems such as heavy rainbowing or other
  5993. artifacts. Setting this to @code{0} could also be used to speed things up at
  5994. the cost of some accuracy.
  5995. Default value is @code{1}.
  5996. @item y0
  5997. @item y1
  5998. These define an exclusion band which excludes the lines between @option{y0} and
  5999. @option{y1} from being included in the field matching decision. An exclusion
  6000. band can be used to ignore subtitles, a logo, or other things that may
  6001. interfere with the matching. @option{y0} sets the starting scan line and
  6002. @option{y1} sets the ending line; all lines in between @option{y0} and
  6003. @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
  6004. @option{y0} and @option{y1} to the same value will disable the feature.
  6005. @option{y0} and @option{y1} defaults to @code{0}.
  6006. @item scthresh
  6007. Set the scene change detection threshold as a percentage of maximum change on
  6008. the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
  6009. detection is only relevant in case @option{combmatch}=@var{sc}. The range for
  6010. @option{scthresh} is @code{[0.0, 100.0]}.
  6011. Default value is @code{12.0}.
  6012. @item combmatch
  6013. When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
  6014. account the combed scores of matches when deciding what match to use as the
  6015. final match. Available values are:
  6016. @table @samp
  6017. @item none
  6018. No final matching based on combed scores.
  6019. @item sc
  6020. Combed scores are only used when a scene change is detected.
  6021. @item full
  6022. Use combed scores all the time.
  6023. @end table
  6024. Default is @var{sc}.
  6025. @item combdbg
  6026. Force @code{fieldmatch} to calculate the combed metrics for certain matches and
  6027. print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
  6028. Available values are:
  6029. @table @samp
  6030. @item none
  6031. No forced calculation.
  6032. @item pcn
  6033. Force p/c/n calculations.
  6034. @item pcnub
  6035. Force p/c/n/u/b calculations.
  6036. @end table
  6037. Default value is @var{none}.
  6038. @item cthresh
  6039. This is the area combing threshold used for combed frame detection. This
  6040. essentially controls how "strong" or "visible" combing must be to be detected.
  6041. Larger values mean combing must be more visible and smaller values mean combing
  6042. can be less visible or strong and still be detected. Valid settings are from
  6043. @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
  6044. be detected as combed). This is basically a pixel difference value. A good
  6045. range is @code{[8, 12]}.
  6046. Default value is @code{9}.
  6047. @item chroma
  6048. Sets whether or not chroma is considered in the combed frame decision. Only
  6049. disable this if your source has chroma problems (rainbowing, etc.) that are
  6050. causing problems for the combed frame detection with chroma enabled. Actually,
  6051. using @option{chroma}=@var{0} is usually more reliable, except for the case
  6052. where there is chroma only combing in the source.
  6053. Default value is @code{0}.
  6054. @item blockx
  6055. @item blocky
  6056. Respectively set the x-axis and y-axis size of the window used during combed
  6057. frame detection. This has to do with the size of the area in which
  6058. @option{combpel} pixels are required to be detected as combed for a frame to be
  6059. declared combed. See the @option{combpel} parameter description for more info.
  6060. Possible values are any number that is a power of 2 starting at 4 and going up
  6061. to 512.
  6062. Default value is @code{16}.
  6063. @item combpel
  6064. The number of combed pixels inside any of the @option{blocky} by
  6065. @option{blockx} size blocks on the frame for the frame to be detected as
  6066. combed. While @option{cthresh} controls how "visible" the combing must be, this
  6067. setting controls "how much" combing there must be in any localized area (a
  6068. window defined by the @option{blockx} and @option{blocky} settings) on the
  6069. frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
  6070. which point no frames will ever be detected as combed). This setting is known
  6071. as @option{MI} in TFM/VFM vocabulary.
  6072. Default value is @code{80}.
  6073. @end table
  6074. @anchor{p/c/n/u/b meaning}
  6075. @subsection p/c/n/u/b meaning
  6076. @subsubsection p/c/n
  6077. We assume the following telecined stream:
  6078. @example
  6079. Top fields: 1 2 2 3 4
  6080. Bottom fields: 1 2 3 4 4
  6081. @end example
  6082. The numbers correspond to the progressive frame the fields relate to. Here, the
  6083. first two frames are progressive, the 3rd and 4th are combed, and so on.
  6084. When @code{fieldmatch} is configured to run a matching from bottom
  6085. (@option{field}=@var{bottom}) this is how this input stream get transformed:
  6086. @example
  6087. Input stream:
  6088. T 1 2 2 3 4
  6089. B 1 2 3 4 4 <-- matching reference
  6090. Matches: c c n n c
  6091. Output stream:
  6092. T 1 2 3 4 4
  6093. B 1 2 3 4 4
  6094. @end example
  6095. As a result of the field matching, we can see that some frames get duplicated.
  6096. To perform a complete inverse telecine, you need to rely on a decimation filter
  6097. after this operation. See for instance the @ref{decimate} filter.
  6098. The same operation now matching from top fields (@option{field}=@var{top})
  6099. looks like this:
  6100. @example
  6101. Input stream:
  6102. T 1 2 2 3 4 <-- matching reference
  6103. B 1 2 3 4 4
  6104. Matches: c c p p c
  6105. Output stream:
  6106. T 1 2 2 3 4
  6107. B 1 2 2 3 4
  6108. @end example
  6109. In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
  6110. basically, they refer to the frame and field of the opposite parity:
  6111. @itemize
  6112. @item @var{p} matches the field of the opposite parity in the previous frame
  6113. @item @var{c} matches the field of the opposite parity in the current frame
  6114. @item @var{n} matches the field of the opposite parity in the next frame
  6115. @end itemize
  6116. @subsubsection u/b
  6117. The @var{u} and @var{b} matching are a bit special in the sense that they match
  6118. from the opposite parity flag. In the following examples, we assume that we are
  6119. currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
  6120. 'x' is placed above and below each matched fields.
  6121. With bottom matching (@option{field}=@var{bottom}):
  6122. @example
  6123. Match: c p n b u
  6124. x x x x x
  6125. Top 1 2 2 1 2 2 1 2 2 1 2 2 1 2 2
  6126. Bottom 1 2 3 1 2 3 1 2 3 1 2 3 1 2 3
  6127. x x x x x
  6128. Output frames:
  6129. 2 1 2 2 2
  6130. 2 2 2 1 3
  6131. @end example
  6132. With top matching (@option{field}=@var{top}):
  6133. @example
  6134. Match: c p n b u
  6135. x x x x x
  6136. Top 1 2 2 1 2 2 1 2 2 1 2 2 1 2 2
  6137. Bottom 1 2 3 1 2 3 1 2 3 1 2 3 1 2 3
  6138. x x x x x
  6139. Output frames:
  6140. 2 2 2 1 2
  6141. 2 1 3 2 2
  6142. @end example
  6143. @subsection Examples
  6144. Simple IVTC of a top field first telecined stream:
  6145. @example
  6146. fieldmatch=order=tff:combmatch=none, decimate
  6147. @end example
  6148. Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
  6149. @example
  6150. fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
  6151. @end example
  6152. @section fieldorder
  6153. Transform the field order of the input video.
  6154. It accepts the following parameters:
  6155. @table @option
  6156. @item order
  6157. The output field order. Valid values are @var{tff} for top field first or @var{bff}
  6158. for bottom field first.
  6159. @end table
  6160. The default value is @samp{tff}.
  6161. The transformation is done by shifting the picture content up or down
  6162. by one line, and filling the remaining line with appropriate picture content.
  6163. This method is consistent with most broadcast field order converters.
  6164. If the input video is not flagged as being interlaced, or it is already
  6165. flagged as being of the required output field order, then this filter does
  6166. not alter the incoming video.
  6167. It is very useful when converting to or from PAL DV material,
  6168. which is bottom field first.
  6169. For example:
  6170. @example
  6171. ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
  6172. @end example
  6173. @section fifo, afifo
  6174. Buffer input images and send them when they are requested.
  6175. It is mainly useful when auto-inserted by the libavfilter
  6176. framework.
  6177. It does not take parameters.
  6178. @section find_rect
  6179. Find a rectangular object
  6180. It accepts the following options:
  6181. @table @option
  6182. @item object
  6183. Filepath of the object image, needs to be in gray8.
  6184. @item threshold
  6185. Detection threshold, default is 0.5.
  6186. @item mipmaps
  6187. Number of mipmaps, default is 3.
  6188. @item xmin, ymin, xmax, ymax
  6189. Specifies the rectangle in which to search.
  6190. @end table
  6191. @subsection Examples
  6192. @itemize
  6193. @item
  6194. Generate a representative palette of a given video using @command{ffmpeg}:
  6195. @example
  6196. ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
  6197. @end example
  6198. @end itemize
  6199. @section cover_rect
  6200. Cover a rectangular object
  6201. It accepts the following options:
  6202. @table @option
  6203. @item cover
  6204. Filepath of the optional cover image, needs to be in yuv420.
  6205. @item mode
  6206. Set covering mode.
  6207. It accepts the following values:
  6208. @table @samp
  6209. @item cover
  6210. cover it by the supplied image
  6211. @item blur
  6212. cover it by interpolating the surrounding pixels
  6213. @end table
  6214. Default value is @var{blur}.
  6215. @end table
  6216. @subsection Examples
  6217. @itemize
  6218. @item
  6219. Generate a representative palette of a given video using @command{ffmpeg}:
  6220. @example
  6221. ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
  6222. @end example
  6223. @end itemize
  6224. @anchor{format}
  6225. @section format
  6226. Convert the input video to one of the specified pixel formats.
  6227. Libavfilter will try to pick one that is suitable as input to
  6228. the next filter.
  6229. It accepts the following parameters:
  6230. @table @option
  6231. @item pix_fmts
  6232. A '|'-separated list of pixel format names, such as
  6233. "pix_fmts=yuv420p|monow|rgb24".
  6234. @end table
  6235. @subsection Examples
  6236. @itemize
  6237. @item
  6238. Convert the input video to the @var{yuv420p} format
  6239. @example
  6240. format=pix_fmts=yuv420p
  6241. @end example
  6242. Convert the input video to any of the formats in the list
  6243. @example
  6244. format=pix_fmts=yuv420p|yuv444p|yuv410p
  6245. @end example
  6246. @end itemize
  6247. @anchor{fps}
  6248. @section fps
  6249. Convert the video to specified constant frame rate by duplicating or dropping
  6250. frames as necessary.
  6251. It accepts the following parameters:
  6252. @table @option
  6253. @item fps
  6254. The desired output frame rate. The default is @code{25}.
  6255. @item round
  6256. Rounding method.
  6257. Possible values are:
  6258. @table @option
  6259. @item zero
  6260. zero round towards 0
  6261. @item inf
  6262. round away from 0
  6263. @item down
  6264. round towards -infinity
  6265. @item up
  6266. round towards +infinity
  6267. @item near
  6268. round to nearest
  6269. @end table
  6270. The default is @code{near}.
  6271. @item start_time
  6272. Assume the first PTS should be the given value, in seconds. This allows for
  6273. padding/trimming at the start of stream. By default, no assumption is made
  6274. about the first frame's expected PTS, so no padding or trimming is done.
  6275. For example, this could be set to 0 to pad the beginning with duplicates of
  6276. the first frame if a video stream starts after the audio stream or to trim any
  6277. frames with a negative PTS.
  6278. @end table
  6279. Alternatively, the options can be specified as a flat string:
  6280. @var{fps}[:@var{round}].
  6281. See also the @ref{setpts} filter.
  6282. @subsection Examples
  6283. @itemize
  6284. @item
  6285. A typical usage in order to set the fps to 25:
  6286. @example
  6287. fps=fps=25
  6288. @end example
  6289. @item
  6290. Sets the fps to 24, using abbreviation and rounding method to round to nearest:
  6291. @example
  6292. fps=fps=film:round=near
  6293. @end example
  6294. @end itemize
  6295. @section framepack
  6296. Pack two different video streams into a stereoscopic video, setting proper
  6297. metadata on supported codecs. The two views should have the same size and
  6298. framerate and processing will stop when the shorter video ends. Please note
  6299. that you may conveniently adjust view properties with the @ref{scale} and
  6300. @ref{fps} filters.
  6301. It accepts the following parameters:
  6302. @table @option
  6303. @item format
  6304. The desired packing format. Supported values are:
  6305. @table @option
  6306. @item sbs
  6307. The views are next to each other (default).
  6308. @item tab
  6309. The views are on top of each other.
  6310. @item lines
  6311. The views are packed by line.
  6312. @item columns
  6313. The views are packed by column.
  6314. @item frameseq
  6315. The views are temporally interleaved.
  6316. @end table
  6317. @end table
  6318. Some examples:
  6319. @example
  6320. # Convert left and right views into a frame-sequential video
  6321. ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
  6322. # Convert views into a side-by-side video with the same output resolution as the input
  6323. 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
  6324. @end example
  6325. @section framerate
  6326. Change the frame rate by interpolating new video output frames from the source
  6327. frames.
  6328. This filter is not designed to function correctly with interlaced media. If
  6329. you wish to change the frame rate of interlaced media then you are required
  6330. to deinterlace before this filter and re-interlace after this filter.
  6331. A description of the accepted options follows.
  6332. @table @option
  6333. @item fps
  6334. Specify the output frames per second. This option can also be specified
  6335. as a value alone. The default is @code{50}.
  6336. @item interp_start
  6337. Specify the start of a range where the output frame will be created as a
  6338. linear interpolation of two frames. The range is [@code{0}-@code{255}],
  6339. the default is @code{15}.
  6340. @item interp_end
  6341. Specify the end of a range where the output frame will be created as a
  6342. linear interpolation of two frames. The range is [@code{0}-@code{255}],
  6343. the default is @code{240}.
  6344. @item scene
  6345. Specify the level at which a scene change is detected as a value between
  6346. 0 and 100 to indicate a new scene; a low value reflects a low
  6347. probability for the current frame to introduce a new scene, while a higher
  6348. value means the current frame is more likely to be one.
  6349. The default is @code{7}.
  6350. @item flags
  6351. Specify flags influencing the filter process.
  6352. Available value for @var{flags} is:
  6353. @table @option
  6354. @item scene_change_detect, scd
  6355. Enable scene change detection using the value of the option @var{scene}.
  6356. This flag is enabled by default.
  6357. @end table
  6358. @end table
  6359. @section framestep
  6360. Select one frame every N-th frame.
  6361. This filter accepts the following option:
  6362. @table @option
  6363. @item step
  6364. Select frame after every @code{step} frames.
  6365. Allowed values are positive integers higher than 0. Default value is @code{1}.
  6366. @end table
  6367. @anchor{frei0r}
  6368. @section frei0r
  6369. Apply a frei0r effect to the input video.
  6370. To enable the compilation of this filter, you need to install the frei0r
  6371. header and configure FFmpeg with @code{--enable-frei0r}.
  6372. It accepts the following parameters:
  6373. @table @option
  6374. @item filter_name
  6375. The name of the frei0r effect to load. If the environment variable
  6376. @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
  6377. directories specified by the colon-separated list in @env{FREIOR_PATH}.
  6378. Otherwise, the standard frei0r paths are searched, in this order:
  6379. @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
  6380. @file{/usr/lib/frei0r-1/}.
  6381. @item filter_params
  6382. A '|'-separated list of parameters to pass to the frei0r effect.
  6383. @end table
  6384. A frei0r effect parameter can be a boolean (its value is either
  6385. "y" or "n"), a double, a color (specified as
  6386. @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
  6387. numbers between 0.0 and 1.0, inclusive) or by a color description specified in the "Color"
  6388. section in the ffmpeg-utils manual), a position (specified as @var{X}/@var{Y}, where
  6389. @var{X} and @var{Y} are floating point numbers) and/or a string.
  6390. The number and types of parameters depend on the loaded effect. If an
  6391. effect parameter is not specified, the default value is set.
  6392. @subsection Examples
  6393. @itemize
  6394. @item
  6395. Apply the distort0r effect, setting the first two double parameters:
  6396. @example
  6397. frei0r=filter_name=distort0r:filter_params=0.5|0.01
  6398. @end example
  6399. @item
  6400. Apply the colordistance effect, taking a color as the first parameter:
  6401. @example
  6402. frei0r=colordistance:0.2/0.3/0.4
  6403. frei0r=colordistance:violet
  6404. frei0r=colordistance:0x112233
  6405. @end example
  6406. @item
  6407. Apply the perspective effect, specifying the top left and top right image
  6408. positions:
  6409. @example
  6410. frei0r=perspective:0.2/0.2|0.8/0.2
  6411. @end example
  6412. @end itemize
  6413. For more information, see
  6414. @url{http://frei0r.dyne.org}
  6415. @section fspp
  6416. Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
  6417. It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
  6418. processing filter, one of them is performed once per block, not per pixel.
  6419. This allows for much higher speed.
  6420. The filter accepts the following options:
  6421. @table @option
  6422. @item quality
  6423. Set quality. This option defines the number of levels for averaging. It accepts
  6424. an integer in the range 4-5. Default value is @code{4}.
  6425. @item qp
  6426. Force a constant quantization parameter. It accepts an integer in range 0-63.
  6427. If not set, the filter will use the QP from the video stream (if available).
  6428. @item strength
  6429. Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
  6430. more details but also more artifacts, while higher values make the image smoother
  6431. but also blurrier. Default value is @code{0} − PSNR optimal.
  6432. @item use_bframe_qp
  6433. Enable the use of the QP from the B-Frames if set to @code{1}. Using this
  6434. option may cause flicker since the B-Frames have often larger QP. Default is
  6435. @code{0} (not enabled).
  6436. @end table
  6437. @section gblur
  6438. Apply Gaussian blur filter.
  6439. The filter accepts the following options:
  6440. @table @option
  6441. @item sigma
  6442. Set horizontal sigma, standard deviation of Gaussian blur. Default is @code{0.5}.
  6443. @item steps
  6444. Set number of steps for Gaussian approximation. Defauls is @code{1}.
  6445. @item planes
  6446. Set which planes to filter. By default all planes are filtered.
  6447. @item sigmaV
  6448. Set vertical sigma, if negative it will be same as @code{sigma}.
  6449. Default is @code{-1}.
  6450. @end table
  6451. @section geq
  6452. The filter accepts the following options:
  6453. @table @option
  6454. @item lum_expr, lum
  6455. Set the luminance expression.
  6456. @item cb_expr, cb
  6457. Set the chrominance blue expression.
  6458. @item cr_expr, cr
  6459. Set the chrominance red expression.
  6460. @item alpha_expr, a
  6461. Set the alpha expression.
  6462. @item red_expr, r
  6463. Set the red expression.
  6464. @item green_expr, g
  6465. Set the green expression.
  6466. @item blue_expr, b
  6467. Set the blue expression.
  6468. @end table
  6469. The colorspace is selected according to the specified options. If one
  6470. of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
  6471. options is specified, the filter will automatically select a YCbCr
  6472. colorspace. If one of the @option{red_expr}, @option{green_expr}, or
  6473. @option{blue_expr} options is specified, it will select an RGB
  6474. colorspace.
  6475. If one of the chrominance expression is not defined, it falls back on the other
  6476. one. If no alpha expression is specified it will evaluate to opaque value.
  6477. If none of chrominance expressions are specified, they will evaluate
  6478. to the luminance expression.
  6479. The expressions can use the following variables and functions:
  6480. @table @option
  6481. @item N
  6482. The sequential number of the filtered frame, starting from @code{0}.
  6483. @item X
  6484. @item Y
  6485. The coordinates of the current sample.
  6486. @item W
  6487. @item H
  6488. The width and height of the image.
  6489. @item SW
  6490. @item SH
  6491. Width and height scale depending on the currently filtered plane. It is the
  6492. ratio between the corresponding luma plane number of pixels and the current
  6493. plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
  6494. @code{0.5,0.5} for chroma planes.
  6495. @item T
  6496. Time of the current frame, expressed in seconds.
  6497. @item p(x, y)
  6498. Return the value of the pixel at location (@var{x},@var{y}) of the current
  6499. plane.
  6500. @item lum(x, y)
  6501. Return the value of the pixel at location (@var{x},@var{y}) of the luminance
  6502. plane.
  6503. @item cb(x, y)
  6504. Return the value of the pixel at location (@var{x},@var{y}) of the
  6505. blue-difference chroma plane. Return 0 if there is no such plane.
  6506. @item cr(x, y)
  6507. Return the value of the pixel at location (@var{x},@var{y}) of the
  6508. red-difference chroma plane. Return 0 if there is no such plane.
  6509. @item r(x, y)
  6510. @item g(x, y)
  6511. @item b(x, y)
  6512. Return the value of the pixel at location (@var{x},@var{y}) of the
  6513. red/green/blue component. Return 0 if there is no such component.
  6514. @item alpha(x, y)
  6515. Return the value of the pixel at location (@var{x},@var{y}) of the alpha
  6516. plane. Return 0 if there is no such plane.
  6517. @end table
  6518. For functions, if @var{x} and @var{y} are outside the area, the value will be
  6519. automatically clipped to the closer edge.
  6520. @subsection Examples
  6521. @itemize
  6522. @item
  6523. Flip the image horizontally:
  6524. @example
  6525. geq=p(W-X\,Y)
  6526. @end example
  6527. @item
  6528. Generate a bidimensional sine wave, with angle @code{PI/3} and a
  6529. wavelength of 100 pixels:
  6530. @example
  6531. geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
  6532. @end example
  6533. @item
  6534. Generate a fancy enigmatic moving light:
  6535. @example
  6536. 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
  6537. @end example
  6538. @item
  6539. Generate a quick emboss effect:
  6540. @example
  6541. format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
  6542. @end example
  6543. @item
  6544. Modify RGB components depending on pixel position:
  6545. @example
  6546. geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
  6547. @end example
  6548. @item
  6549. Create a radial gradient that is the same size as the input (also see
  6550. the @ref{vignette} filter):
  6551. @example
  6552. geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
  6553. @end example
  6554. @end itemize
  6555. @section gradfun
  6556. Fix the banding artifacts that are sometimes introduced into nearly flat
  6557. regions by truncation to 8-bit color depth.
  6558. Interpolate the gradients that should go where the bands are, and
  6559. dither them.
  6560. It is designed for playback only. Do not use it prior to
  6561. lossy compression, because compression tends to lose the dither and
  6562. bring back the bands.
  6563. It accepts the following parameters:
  6564. @table @option
  6565. @item strength
  6566. The maximum amount by which the filter will change any one pixel. This is also
  6567. the threshold for detecting nearly flat regions. Acceptable values range from
  6568. .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
  6569. valid range.
  6570. @item radius
  6571. The neighborhood to fit the gradient to. A larger radius makes for smoother
  6572. gradients, but also prevents the filter from modifying the pixels near detailed
  6573. regions. Acceptable values are 8-32; the default value is 16. Out-of-range
  6574. values will be clipped to the valid range.
  6575. @end table
  6576. Alternatively, the options can be specified as a flat string:
  6577. @var{strength}[:@var{radius}]
  6578. @subsection Examples
  6579. @itemize
  6580. @item
  6581. Apply the filter with a @code{3.5} strength and radius of @code{8}:
  6582. @example
  6583. gradfun=3.5:8
  6584. @end example
  6585. @item
  6586. Specify radius, omitting the strength (which will fall-back to the default
  6587. value):
  6588. @example
  6589. gradfun=radius=8
  6590. @end example
  6591. @end itemize
  6592. @anchor{haldclut}
  6593. @section haldclut
  6594. Apply a Hald CLUT to a video stream.
  6595. First input is the video stream to process, and second one is the Hald CLUT.
  6596. The Hald CLUT input can be a simple picture or a complete video stream.
  6597. The filter accepts the following options:
  6598. @table @option
  6599. @item shortest
  6600. Force termination when the shortest input terminates. Default is @code{0}.
  6601. @item repeatlast
  6602. Continue applying the last CLUT after the end of the stream. A value of
  6603. @code{0} disable the filter after the last frame of the CLUT is reached.
  6604. Default is @code{1}.
  6605. @end table
  6606. @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
  6607. filters share the same internals).
  6608. More information about the Hald CLUT can be found on Eskil Steenberg's website
  6609. (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
  6610. @subsection Workflow examples
  6611. @subsubsection Hald CLUT video stream
  6612. Generate an identity Hald CLUT stream altered with various effects:
  6613. @example
  6614. 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
  6615. @end example
  6616. Note: make sure you use a lossless codec.
  6617. Then use it with @code{haldclut} to apply it on some random stream:
  6618. @example
  6619. ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
  6620. @end example
  6621. The Hald CLUT will be applied to the 10 first seconds (duration of
  6622. @file{clut.nut}), then the latest picture of that CLUT stream will be applied
  6623. to the remaining frames of the @code{mandelbrot} stream.
  6624. @subsubsection Hald CLUT with preview
  6625. A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
  6626. @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
  6627. biggest possible square starting at the top left of the picture. The remaining
  6628. padding pixels (bottom or right) will be ignored. This area can be used to add
  6629. a preview of the Hald CLUT.
  6630. Typically, the following generated Hald CLUT will be supported by the
  6631. @code{haldclut} filter:
  6632. @example
  6633. ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
  6634. pad=iw+320 [padded_clut];
  6635. smptebars=s=320x256, split [a][b];
  6636. [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
  6637. [main][b] overlay=W-320" -frames:v 1 clut.png
  6638. @end example
  6639. It contains the original and a preview of the effect of the CLUT: SMPTE color
  6640. bars are displayed on the right-top, and below the same color bars processed by
  6641. the color changes.
  6642. Then, the effect of this Hald CLUT can be visualized with:
  6643. @example
  6644. ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
  6645. @end example
  6646. @section hflip
  6647. Flip the input video horizontally.
  6648. For example, to horizontally flip the input video with @command{ffmpeg}:
  6649. @example
  6650. ffmpeg -i in.avi -vf "hflip" out.avi
  6651. @end example
  6652. @section histeq
  6653. This filter applies a global color histogram equalization on a
  6654. per-frame basis.
  6655. It can be used to correct video that has a compressed range of pixel
  6656. intensities. The filter redistributes the pixel intensities to
  6657. equalize their distribution across the intensity range. It may be
  6658. viewed as an "automatically adjusting contrast filter". This filter is
  6659. useful only for correcting degraded or poorly captured source
  6660. video.
  6661. The filter accepts the following options:
  6662. @table @option
  6663. @item strength
  6664. Determine the amount of equalization to be applied. As the strength
  6665. is reduced, the distribution of pixel intensities more-and-more
  6666. approaches that of the input frame. The value must be a float number
  6667. in the range [0,1] and defaults to 0.200.
  6668. @item intensity
  6669. Set the maximum intensity that can generated and scale the output
  6670. values appropriately. The strength should be set as desired and then
  6671. the intensity can be limited if needed to avoid washing-out. The value
  6672. must be a float number in the range [0,1] and defaults to 0.210.
  6673. @item antibanding
  6674. Set the antibanding level. If enabled the filter will randomly vary
  6675. the luminance of output pixels by a small amount to avoid banding of
  6676. the histogram. Possible values are @code{none}, @code{weak} or
  6677. @code{strong}. It defaults to @code{none}.
  6678. @end table
  6679. @section histogram
  6680. Compute and draw a color distribution histogram for the input video.
  6681. The computed histogram is a representation of the color component
  6682. distribution in an image.
  6683. Standard histogram displays the color components distribution in an image.
  6684. Displays color graph for each color component. Shows distribution of
  6685. the Y, U, V, A or R, G, B components, depending on input format, in the
  6686. current frame. Below each graph a color component scale meter is shown.
  6687. The filter accepts the following options:
  6688. @table @option
  6689. @item level_height
  6690. Set height of level. Default value is @code{200}.
  6691. Allowed range is [50, 2048].
  6692. @item scale_height
  6693. Set height of color scale. Default value is @code{12}.
  6694. Allowed range is [0, 40].
  6695. @item display_mode
  6696. Set display mode.
  6697. It accepts the following values:
  6698. @table @samp
  6699. @item parade
  6700. Per color component graphs are placed below each other.
  6701. @item overlay
  6702. Presents information identical to that in the @code{parade}, except
  6703. that the graphs representing color components are superimposed directly
  6704. over one another.
  6705. @end table
  6706. Default is @code{parade}.
  6707. @item levels_mode
  6708. Set mode. Can be either @code{linear}, or @code{logarithmic}.
  6709. Default is @code{linear}.
  6710. @item components
  6711. Set what color components to display.
  6712. Default is @code{7}.
  6713. @item fgopacity
  6714. Set foreground opacity. Default is @code{0.7}.
  6715. @item bgopacity
  6716. Set background opacity. Default is @code{0.5}.
  6717. @end table
  6718. @subsection Examples
  6719. @itemize
  6720. @item
  6721. Calculate and draw histogram:
  6722. @example
  6723. ffplay -i input -vf histogram
  6724. @end example
  6725. @end itemize
  6726. @anchor{hqdn3d}
  6727. @section hqdn3d
  6728. This is a high precision/quality 3d denoise filter. It aims to reduce
  6729. image noise, producing smooth images and making still images really
  6730. still. It should enhance compressibility.
  6731. It accepts the following optional parameters:
  6732. @table @option
  6733. @item luma_spatial
  6734. A non-negative floating point number which specifies spatial luma strength.
  6735. It defaults to 4.0.
  6736. @item chroma_spatial
  6737. A non-negative floating point number which specifies spatial chroma strength.
  6738. It defaults to 3.0*@var{luma_spatial}/4.0.
  6739. @item luma_tmp
  6740. A floating point number which specifies luma temporal strength. It defaults to
  6741. 6.0*@var{luma_spatial}/4.0.
  6742. @item chroma_tmp
  6743. A floating point number which specifies chroma temporal strength. It defaults to
  6744. @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
  6745. @end table
  6746. @anchor{hwupload_cuda}
  6747. @section hwupload_cuda
  6748. Upload system memory frames to a CUDA device.
  6749. It accepts the following optional parameters:
  6750. @table @option
  6751. @item device
  6752. The number of the CUDA device to use
  6753. @end table
  6754. @section hqx
  6755. Apply a high-quality magnification filter designed for pixel art. This filter
  6756. was originally created by Maxim Stepin.
  6757. It accepts the following option:
  6758. @table @option
  6759. @item n
  6760. Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
  6761. @code{hq3x} and @code{4} for @code{hq4x}.
  6762. Default is @code{3}.
  6763. @end table
  6764. @section hstack
  6765. Stack input videos horizontally.
  6766. All streams must be of same pixel format and of same height.
  6767. Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
  6768. to create same output.
  6769. The filter accept the following option:
  6770. @table @option
  6771. @item inputs
  6772. Set number of input streams. Default is 2.
  6773. @item shortest
  6774. If set to 1, force the output to terminate when the shortest input
  6775. terminates. Default value is 0.
  6776. @end table
  6777. @section hue
  6778. Modify the hue and/or the saturation of the input.
  6779. It accepts the following parameters:
  6780. @table @option
  6781. @item h
  6782. Specify the hue angle as a number of degrees. It accepts an expression,
  6783. and defaults to "0".
  6784. @item s
  6785. Specify the saturation in the [-10,10] range. It accepts an expression and
  6786. defaults to "1".
  6787. @item H
  6788. Specify the hue angle as a number of radians. It accepts an
  6789. expression, and defaults to "0".
  6790. @item b
  6791. Specify the brightness in the [-10,10] range. It accepts an expression and
  6792. defaults to "0".
  6793. @end table
  6794. @option{h} and @option{H} are mutually exclusive, and can't be
  6795. specified at the same time.
  6796. The @option{b}, @option{h}, @option{H} and @option{s} option values are
  6797. expressions containing the following constants:
  6798. @table @option
  6799. @item n
  6800. frame count of the input frame starting from 0
  6801. @item pts
  6802. presentation timestamp of the input frame expressed in time base units
  6803. @item r
  6804. frame rate of the input video, NAN if the input frame rate is unknown
  6805. @item t
  6806. timestamp expressed in seconds, NAN if the input timestamp is unknown
  6807. @item tb
  6808. time base of the input video
  6809. @end table
  6810. @subsection Examples
  6811. @itemize
  6812. @item
  6813. Set the hue to 90 degrees and the saturation to 1.0:
  6814. @example
  6815. hue=h=90:s=1
  6816. @end example
  6817. @item
  6818. Same command but expressing the hue in radians:
  6819. @example
  6820. hue=H=PI/2:s=1
  6821. @end example
  6822. @item
  6823. Rotate hue and make the saturation swing between 0
  6824. and 2 over a period of 1 second:
  6825. @example
  6826. hue="H=2*PI*t: s=sin(2*PI*t)+1"
  6827. @end example
  6828. @item
  6829. Apply a 3 seconds saturation fade-in effect starting at 0:
  6830. @example
  6831. hue="s=min(t/3\,1)"
  6832. @end example
  6833. The general fade-in expression can be written as:
  6834. @example
  6835. hue="s=min(0\, max((t-START)/DURATION\, 1))"
  6836. @end example
  6837. @item
  6838. Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
  6839. @example
  6840. hue="s=max(0\, min(1\, (8-t)/3))"
  6841. @end example
  6842. The general fade-out expression can be written as:
  6843. @example
  6844. hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
  6845. @end example
  6846. @end itemize
  6847. @subsection Commands
  6848. This filter supports the following commands:
  6849. @table @option
  6850. @item b
  6851. @item s
  6852. @item h
  6853. @item H
  6854. Modify the hue and/or the saturation and/or brightness of the input video.
  6855. The command accepts the same syntax of the corresponding option.
  6856. If the specified expression is not valid, it is kept at its current
  6857. value.
  6858. @end table
  6859. @section hysteresis
  6860. Grow first stream into second stream by connecting components.
  6861. This makes it possible to build more robust edge masks.
  6862. This filter accepts the following options:
  6863. @table @option
  6864. @item planes
  6865. Set which planes will be processed as bitmap, unprocessed planes will be
  6866. copied from first stream.
  6867. By default value 0xf, all planes will be processed.
  6868. @item threshold
  6869. Set threshold which is used in filtering. If pixel component value is higher than
  6870. this value filter algorithm for connecting components is activated.
  6871. By default value is 0.
  6872. @end table
  6873. @section idet
  6874. Detect video interlacing type.
  6875. This filter tries to detect if the input frames are interlaced, progressive,
  6876. top or bottom field first. It will also try to detect fields that are
  6877. repeated between adjacent frames (a sign of telecine).
  6878. Single frame detection considers only immediately adjacent frames when classifying each frame.
  6879. Multiple frame detection incorporates the classification history of previous frames.
  6880. The filter will log these metadata values:
  6881. @table @option
  6882. @item single.current_frame
  6883. Detected type of current frame using single-frame detection. One of:
  6884. ``tff'' (top field first), ``bff'' (bottom field first),
  6885. ``progressive'', or ``undetermined''
  6886. @item single.tff
  6887. Cumulative number of frames detected as top field first using single-frame detection.
  6888. @item multiple.tff
  6889. Cumulative number of frames detected as top field first using multiple-frame detection.
  6890. @item single.bff
  6891. Cumulative number of frames detected as bottom field first using single-frame detection.
  6892. @item multiple.current_frame
  6893. Detected type of current frame using multiple-frame detection. One of:
  6894. ``tff'' (top field first), ``bff'' (bottom field first),
  6895. ``progressive'', or ``undetermined''
  6896. @item multiple.bff
  6897. Cumulative number of frames detected as bottom field first using multiple-frame detection.
  6898. @item single.progressive
  6899. Cumulative number of frames detected as progressive using single-frame detection.
  6900. @item multiple.progressive
  6901. Cumulative number of frames detected as progressive using multiple-frame detection.
  6902. @item single.undetermined
  6903. Cumulative number of frames that could not be classified using single-frame detection.
  6904. @item multiple.undetermined
  6905. Cumulative number of frames that could not be classified using multiple-frame detection.
  6906. @item repeated.current_frame
  6907. Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
  6908. @item repeated.neither
  6909. Cumulative number of frames with no repeated field.
  6910. @item repeated.top
  6911. Cumulative number of frames with the top field repeated from the previous frame's top field.
  6912. @item repeated.bottom
  6913. Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
  6914. @end table
  6915. The filter accepts the following options:
  6916. @table @option
  6917. @item intl_thres
  6918. Set interlacing threshold.
  6919. @item prog_thres
  6920. Set progressive threshold.
  6921. @item rep_thres
  6922. Threshold for repeated field detection.
  6923. @item half_life
  6924. Number of frames after which a given frame's contribution to the
  6925. statistics is halved (i.e., it contributes only 0.5 to its
  6926. classification). The default of 0 means that all frames seen are given
  6927. full weight of 1.0 forever.
  6928. @item analyze_interlaced_flag
  6929. When this is not 0 then idet will use the specified number of frames to determine
  6930. if the interlaced flag is accurate, it will not count undetermined frames.
  6931. If the flag is found to be accurate it will be used without any further
  6932. computations, if it is found to be inaccurate it will be cleared without any
  6933. further computations. This allows inserting the idet filter as a low computational
  6934. method to clean up the interlaced flag
  6935. @end table
  6936. @section il
  6937. Deinterleave or interleave fields.
  6938. This filter allows one to process interlaced images fields without
  6939. deinterlacing them. Deinterleaving splits the input frame into 2
  6940. fields (so called half pictures). Odd lines are moved to the top
  6941. half of the output image, even lines to the bottom half.
  6942. You can process (filter) them independently and then re-interleave them.
  6943. The filter accepts the following options:
  6944. @table @option
  6945. @item luma_mode, l
  6946. @item chroma_mode, c
  6947. @item alpha_mode, a
  6948. Available values for @var{luma_mode}, @var{chroma_mode} and
  6949. @var{alpha_mode} are:
  6950. @table @samp
  6951. @item none
  6952. Do nothing.
  6953. @item deinterleave, d
  6954. Deinterleave fields, placing one above the other.
  6955. @item interleave, i
  6956. Interleave fields. Reverse the effect of deinterleaving.
  6957. @end table
  6958. Default value is @code{none}.
  6959. @item luma_swap, ls
  6960. @item chroma_swap, cs
  6961. @item alpha_swap, as
  6962. Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
  6963. @end table
  6964. @section inflate
  6965. Apply inflate effect to the video.
  6966. This filter replaces the pixel by the local(3x3) average by taking into account
  6967. only values higher than the pixel.
  6968. It accepts the following options:
  6969. @table @option
  6970. @item threshold0
  6971. @item threshold1
  6972. @item threshold2
  6973. @item threshold3
  6974. Limit the maximum change for each plane, default is 65535.
  6975. If 0, plane will remain unchanged.
  6976. @end table
  6977. @section interlace
  6978. Simple interlacing filter from progressive contents. This interleaves upper (or
  6979. lower) lines from odd frames with lower (or upper) lines from even frames,
  6980. halving the frame rate and preserving image height.
  6981. @example
  6982. Original Original New Frame
  6983. Frame 'j' Frame 'j+1' (tff)
  6984. ========== =========== ==================
  6985. Line 0 --------------------> Frame 'j' Line 0
  6986. Line 1 Line 1 ----> Frame 'j+1' Line 1
  6987. Line 2 ---------------------> Frame 'j' Line 2
  6988. Line 3 Line 3 ----> Frame 'j+1' Line 3
  6989. ... ... ...
  6990. New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
  6991. @end example
  6992. It accepts the following optional parameters:
  6993. @table @option
  6994. @item scan
  6995. This determines whether the interlaced frame is taken from the even
  6996. (tff - default) or odd (bff) lines of the progressive frame.
  6997. @item lowpass
  6998. Enable (default) or disable the vertical lowpass filter to avoid twitter
  6999. interlacing and reduce moire patterns.
  7000. @end table
  7001. @section kerndeint
  7002. Deinterlace input video by applying Donald Graft's adaptive kernel
  7003. deinterling. Work on interlaced parts of a video to produce
  7004. progressive frames.
  7005. The description of the accepted parameters follows.
  7006. @table @option
  7007. @item thresh
  7008. Set the threshold which affects the filter's tolerance when
  7009. determining if a pixel line must be processed. It must be an integer
  7010. in the range [0,255] and defaults to 10. A value of 0 will result in
  7011. applying the process on every pixels.
  7012. @item map
  7013. Paint pixels exceeding the threshold value to white if set to 1.
  7014. Default is 0.
  7015. @item order
  7016. Set the fields order. Swap fields if set to 1, leave fields alone if
  7017. 0. Default is 0.
  7018. @item sharp
  7019. Enable additional sharpening if set to 1. Default is 0.
  7020. @item twoway
  7021. Enable twoway sharpening if set to 1. Default is 0.
  7022. @end table
  7023. @subsection Examples
  7024. @itemize
  7025. @item
  7026. Apply default values:
  7027. @example
  7028. kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
  7029. @end example
  7030. @item
  7031. Enable additional sharpening:
  7032. @example
  7033. kerndeint=sharp=1
  7034. @end example
  7035. @item
  7036. Paint processed pixels in white:
  7037. @example
  7038. kerndeint=map=1
  7039. @end example
  7040. @end itemize
  7041. @section lenscorrection
  7042. Correct radial lens distortion
  7043. This filter can be used to correct for radial distortion as can result from the use
  7044. of wide angle lenses, and thereby re-rectify the image. To find the right parameters
  7045. one can use tools available for example as part of opencv or simply trial-and-error.
  7046. To use opencv use the calibration sample (under samples/cpp) from the opencv sources
  7047. and extract the k1 and k2 coefficients from the resulting matrix.
  7048. Note that effectively the same filter is available in the open-source tools Krita and
  7049. Digikam from the KDE project.
  7050. In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
  7051. this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
  7052. brightness distribution, so you may want to use both filters together in certain
  7053. cases, though you will have to take care of ordering, i.e. whether vignetting should
  7054. be applied before or after lens correction.
  7055. @subsection Options
  7056. The filter accepts the following options:
  7057. @table @option
  7058. @item cx
  7059. Relative x-coordinate of the focal point of the image, and thereby the center of the
  7060. distortion. This value has a range [0,1] and is expressed as fractions of the image
  7061. width.
  7062. @item cy
  7063. Relative y-coordinate of the focal point of the image, and thereby the center of the
  7064. distortion. This value has a range [0,1] and is expressed as fractions of the image
  7065. height.
  7066. @item k1
  7067. Coefficient of the quadratic correction term. 0.5 means no correction.
  7068. @item k2
  7069. Coefficient of the double quadratic correction term. 0.5 means no correction.
  7070. @end table
  7071. The formula that generates the correction is:
  7072. @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)
  7073. where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
  7074. distances from the focal point in the source and target images, respectively.
  7075. @section loop
  7076. Loop video frames.
  7077. The filter accepts the following options:
  7078. @table @option
  7079. @item loop
  7080. Set the number of loops.
  7081. @item size
  7082. Set maximal size in number of frames.
  7083. @item start
  7084. Set first frame of loop.
  7085. @end table
  7086. @anchor{lut3d}
  7087. @section lut3d
  7088. Apply a 3D LUT to an input video.
  7089. The filter accepts the following options:
  7090. @table @option
  7091. @item file
  7092. Set the 3D LUT file name.
  7093. Currently supported formats:
  7094. @table @samp
  7095. @item 3dl
  7096. AfterEffects
  7097. @item cube
  7098. Iridas
  7099. @item dat
  7100. DaVinci
  7101. @item m3d
  7102. Pandora
  7103. @end table
  7104. @item interp
  7105. Select interpolation mode.
  7106. Available values are:
  7107. @table @samp
  7108. @item nearest
  7109. Use values from the nearest defined point.
  7110. @item trilinear
  7111. Interpolate values using the 8 points defining a cube.
  7112. @item tetrahedral
  7113. Interpolate values using a tetrahedron.
  7114. @end table
  7115. @end table
  7116. @section lut, lutrgb, lutyuv
  7117. Compute a look-up table for binding each pixel component input value
  7118. to an output value, and apply it to the input video.
  7119. @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
  7120. to an RGB input video.
  7121. These filters accept the following parameters:
  7122. @table @option
  7123. @item c0
  7124. set first pixel component expression
  7125. @item c1
  7126. set second pixel component expression
  7127. @item c2
  7128. set third pixel component expression
  7129. @item c3
  7130. set fourth pixel component expression, corresponds to the alpha component
  7131. @item r
  7132. set red component expression
  7133. @item g
  7134. set green component expression
  7135. @item b
  7136. set blue component expression
  7137. @item a
  7138. alpha component expression
  7139. @item y
  7140. set Y/luminance component expression
  7141. @item u
  7142. set U/Cb component expression
  7143. @item v
  7144. set V/Cr component expression
  7145. @end table
  7146. Each of them specifies the expression to use for computing the lookup table for
  7147. the corresponding pixel component values.
  7148. The exact component associated to each of the @var{c*} options depends on the
  7149. format in input.
  7150. The @var{lut} filter requires either YUV or RGB pixel formats in input,
  7151. @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
  7152. The expressions can contain the following constants and functions:
  7153. @table @option
  7154. @item w
  7155. @item h
  7156. The input width and height.
  7157. @item val
  7158. The input value for the pixel component.
  7159. @item clipval
  7160. The input value, clipped to the @var{minval}-@var{maxval} range.
  7161. @item maxval
  7162. The maximum value for the pixel component.
  7163. @item minval
  7164. The minimum value for the pixel component.
  7165. @item negval
  7166. The negated value for the pixel component value, clipped to the
  7167. @var{minval}-@var{maxval} range; it corresponds to the expression
  7168. "maxval-clipval+minval".
  7169. @item clip(val)
  7170. The computed value in @var{val}, clipped to the
  7171. @var{minval}-@var{maxval} range.
  7172. @item gammaval(gamma)
  7173. The computed gamma correction value of the pixel component value,
  7174. clipped to the @var{minval}-@var{maxval} range. It corresponds to the
  7175. expression
  7176. "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
  7177. @end table
  7178. All expressions default to "val".
  7179. @subsection Examples
  7180. @itemize
  7181. @item
  7182. Negate input video:
  7183. @example
  7184. lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
  7185. lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
  7186. @end example
  7187. The above is the same as:
  7188. @example
  7189. lutrgb="r=negval:g=negval:b=negval"
  7190. lutyuv="y=negval:u=negval:v=negval"
  7191. @end example
  7192. @item
  7193. Negate luminance:
  7194. @example
  7195. lutyuv=y=negval
  7196. @end example
  7197. @item
  7198. Remove chroma components, turning the video into a graytone image:
  7199. @example
  7200. lutyuv="u=128:v=128"
  7201. @end example
  7202. @item
  7203. Apply a luma burning effect:
  7204. @example
  7205. lutyuv="y=2*val"
  7206. @end example
  7207. @item
  7208. Remove green and blue components:
  7209. @example
  7210. lutrgb="g=0:b=0"
  7211. @end example
  7212. @item
  7213. Set a constant alpha channel value on input:
  7214. @example
  7215. format=rgba,lutrgb=a="maxval-minval/2"
  7216. @end example
  7217. @item
  7218. Correct luminance gamma by a factor of 0.5:
  7219. @example
  7220. lutyuv=y=gammaval(0.5)
  7221. @end example
  7222. @item
  7223. Discard least significant bits of luma:
  7224. @example
  7225. lutyuv=y='bitand(val, 128+64+32)'
  7226. @end example
  7227. @item
  7228. Technicolor like effect:
  7229. @example
  7230. lutyuv=u='(val-maxval/2)*2+maxval/2':v='(val-maxval/2)*2+maxval/2'
  7231. @end example
  7232. @end itemize
  7233. @section lut2
  7234. Compute and apply a lookup table from two video inputs.
  7235. This filter accepts the following parameters:
  7236. @table @option
  7237. @item c0
  7238. set first pixel component expression
  7239. @item c1
  7240. set second pixel component expression
  7241. @item c2
  7242. set third pixel component expression
  7243. @item c3
  7244. set fourth pixel component expression, corresponds to the alpha component
  7245. @end table
  7246. Each of them specifies the expression to use for computing the lookup table for
  7247. the corresponding pixel component values.
  7248. The exact component associated to each of the @var{c*} options depends on the
  7249. format in inputs.
  7250. The expressions can contain the following constants:
  7251. @table @option
  7252. @item w
  7253. @item h
  7254. The input width and height.
  7255. @item x
  7256. The first input value for the pixel component.
  7257. @item y
  7258. The second input value for the pixel component.
  7259. @item bdx
  7260. The first input video bit depth.
  7261. @item bdy
  7262. The second input video bit depth.
  7263. @end table
  7264. All expressions default to "x".
  7265. @subsection Examples
  7266. @itemize
  7267. @item
  7268. Highlight differences between two RGB video streams:
  7269. @example
  7270. lut2='ifnot(x-y,0,pow(2,bdx)-1):ifnot(x-y,0,pow(2,bdx)-1):ifnot(x-y,0,pow(2,bdx)-1)'
  7271. @end example
  7272. @item
  7273. Highlight differences between two YUV video streams:
  7274. @example
  7275. lut2='ifnot(x-y,0,pow(2,bdx)-1):ifnot(x-y,pow(2,bdx-1),pow(2,bdx)-1):ifnot(x-y,pow(2,bdx-1),pow(2,bdx)-1)'
  7276. @end example
  7277. @end itemize
  7278. @section maskedclamp
  7279. Clamp the first input stream with the second input and third input stream.
  7280. Returns the value of first stream to be between second input
  7281. stream - @code{undershoot} and third input stream + @code{overshoot}.
  7282. This filter accepts the following options:
  7283. @table @option
  7284. @item undershoot
  7285. Default value is @code{0}.
  7286. @item overshoot
  7287. Default value is @code{0}.
  7288. @item planes
  7289. Set which planes will be processed as bitmap, unprocessed planes will be
  7290. copied from first stream.
  7291. By default value 0xf, all planes will be processed.
  7292. @end table
  7293. @section maskedmerge
  7294. Merge the first input stream with the second input stream using per pixel
  7295. weights in the third input stream.
  7296. A value of 0 in the third stream pixel component means that pixel component
  7297. from first stream is returned unchanged, while maximum value (eg. 255 for
  7298. 8-bit videos) means that pixel component from second stream is returned
  7299. unchanged. Intermediate values define the amount of merging between both
  7300. input stream's pixel components.
  7301. This filter accepts the following options:
  7302. @table @option
  7303. @item planes
  7304. Set which planes will be processed as bitmap, unprocessed planes will be
  7305. copied from first stream.
  7306. By default value 0xf, all planes will be processed.
  7307. @end table
  7308. @section mcdeint
  7309. Apply motion-compensation deinterlacing.
  7310. It needs one field per frame as input and must thus be used together
  7311. with yadif=1/3 or equivalent.
  7312. This filter accepts the following options:
  7313. @table @option
  7314. @item mode
  7315. Set the deinterlacing mode.
  7316. It accepts one of the following values:
  7317. @table @samp
  7318. @item fast
  7319. @item medium
  7320. @item slow
  7321. use iterative motion estimation
  7322. @item extra_slow
  7323. like @samp{slow}, but use multiple reference frames.
  7324. @end table
  7325. Default value is @samp{fast}.
  7326. @item parity
  7327. Set the picture field parity assumed for the input video. It must be
  7328. one of the following values:
  7329. @table @samp
  7330. @item 0, tff
  7331. assume top field first
  7332. @item 1, bff
  7333. assume bottom field first
  7334. @end table
  7335. Default value is @samp{bff}.
  7336. @item qp
  7337. Set per-block quantization parameter (QP) used by the internal
  7338. encoder.
  7339. Higher values should result in a smoother motion vector field but less
  7340. optimal individual vectors. Default value is 1.
  7341. @end table
  7342. @section mergeplanes
  7343. Merge color channel components from several video streams.
  7344. The filter accepts up to 4 input streams, and merge selected input
  7345. planes to the output video.
  7346. This filter accepts the following options:
  7347. @table @option
  7348. @item mapping
  7349. Set input to output plane mapping. Default is @code{0}.
  7350. The mappings is specified as a bitmap. It should be specified as a
  7351. hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
  7352. mapping for the first plane of the output stream. 'A' sets the number of
  7353. the input stream to use (from 0 to 3), and 'a' the plane number of the
  7354. corresponding input to use (from 0 to 3). The rest of the mappings is
  7355. similar, 'Bb' describes the mapping for the output stream second
  7356. plane, 'Cc' describes the mapping for the output stream third plane and
  7357. 'Dd' describes the mapping for the output stream fourth plane.
  7358. @item format
  7359. Set output pixel format. Default is @code{yuva444p}.
  7360. @end table
  7361. @subsection Examples
  7362. @itemize
  7363. @item
  7364. Merge three gray video streams of same width and height into single video stream:
  7365. @example
  7366. [a0][a1][a2]mergeplanes=0x001020:yuv444p
  7367. @end example
  7368. @item
  7369. Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
  7370. @example
  7371. [a0][a1]mergeplanes=0x00010210:yuva444p
  7372. @end example
  7373. @item
  7374. Swap Y and A plane in yuva444p stream:
  7375. @example
  7376. format=yuva444p,mergeplanes=0x03010200:yuva444p
  7377. @end example
  7378. @item
  7379. Swap U and V plane in yuv420p stream:
  7380. @example
  7381. format=yuv420p,mergeplanes=0x000201:yuv420p
  7382. @end example
  7383. @item
  7384. Cast a rgb24 clip to yuv444p:
  7385. @example
  7386. format=rgb24,mergeplanes=0x000102:yuv444p
  7387. @end example
  7388. @end itemize
  7389. @section mestimate
  7390. Estimate and export motion vectors using block matching algorithms.
  7391. Motion vectors are stored in frame side data to be used by other filters.
  7392. This filter accepts the following options:
  7393. @table @option
  7394. @item method
  7395. Specify the motion estimation method. Accepts one of the following values:
  7396. @table @samp
  7397. @item esa
  7398. Exhaustive search algorithm.
  7399. @item tss
  7400. Three step search algorithm.
  7401. @item tdls
  7402. Two dimensional logarithmic search algorithm.
  7403. @item ntss
  7404. New three step search algorithm.
  7405. @item fss
  7406. Four step search algorithm.
  7407. @item ds
  7408. Diamond search algorithm.
  7409. @item hexbs
  7410. Hexagon-based search algorithm.
  7411. @item epzs
  7412. Enhanced predictive zonal search algorithm.
  7413. @item umh
  7414. Uneven multi-hexagon search algorithm.
  7415. @end table
  7416. Default value is @samp{esa}.
  7417. @item mb_size
  7418. Macroblock size. Default @code{16}.
  7419. @item search_param
  7420. Search parameter. Default @code{7}.
  7421. @end table
  7422. @section midequalizer
  7423. Apply Midway Image Equalization effect using two video streams.
  7424. Midway Image Equalization adjusts a pair of images to have the same
  7425. histogram, while maintaining their dynamics as much as possible. It's
  7426. useful for e.g. matching exposures from a pair of stereo cameras.
  7427. This filter has two inputs and one output, which must be of same pixel format, but
  7428. may be of different sizes. The output of filter is first input adjusted with
  7429. midway histogram of both inputs.
  7430. This filter accepts the following option:
  7431. @table @option
  7432. @item planes
  7433. Set which planes to process. Default is @code{15}, which is all available planes.
  7434. @end table
  7435. @section minterpolate
  7436. Convert the video to specified frame rate using motion interpolation.
  7437. This filter accepts the following options:
  7438. @table @option
  7439. @item fps
  7440. Specify the output frame rate. This can be rational e.g. @code{60000/1001}. Frames are dropped if @var{fps} is lower than source fps. Default @code{60}.
  7441. @item mi_mode
  7442. Motion interpolation mode. Following values are accepted:
  7443. @table @samp
  7444. @item dup
  7445. Duplicate previous or next frame for interpolating new ones.
  7446. @item blend
  7447. Blend source frames. Interpolated frame is mean of previous and next frames.
  7448. @item mci
  7449. Motion compensated interpolation. Following options are effective when this mode is selected:
  7450. @table @samp
  7451. @item mc_mode
  7452. Motion compensation mode. Following values are accepted:
  7453. @table @samp
  7454. @item obmc
  7455. Overlapped block motion compensation.
  7456. @item aobmc
  7457. Adaptive overlapped block motion compensation. Window weighting coefficients are controlled adaptively according to the reliabilities of the neighboring motion vectors to reduce oversmoothing.
  7458. @end table
  7459. Default mode is @samp{obmc}.
  7460. @item me_mode
  7461. Motion estimation mode. Following values are accepted:
  7462. @table @samp
  7463. @item bidir
  7464. Bidirectional motion estimation. Motion vectors are estimated for each source frame in both forward and backward directions.
  7465. @item bilat
  7466. Bilateral motion estimation. Motion vectors are estimated directly for interpolated frame.
  7467. @end table
  7468. Default mode is @samp{bilat}.
  7469. @item me
  7470. The algorithm to be used for motion estimation. Following values are accepted:
  7471. @table @samp
  7472. @item esa
  7473. Exhaustive search algorithm.
  7474. @item tss
  7475. Three step search algorithm.
  7476. @item tdls
  7477. Two dimensional logarithmic search algorithm.
  7478. @item ntss
  7479. New three step search algorithm.
  7480. @item fss
  7481. Four step search algorithm.
  7482. @item ds
  7483. Diamond search algorithm.
  7484. @item hexbs
  7485. Hexagon-based search algorithm.
  7486. @item epzs
  7487. Enhanced predictive zonal search algorithm.
  7488. @item umh
  7489. Uneven multi-hexagon search algorithm.
  7490. @end table
  7491. Default algorithm is @samp{epzs}.
  7492. @item mb_size
  7493. Macroblock size. Default @code{16}.
  7494. @item search_param
  7495. Motion estimation search parameter. Default @code{32}.
  7496. @item vsbmc
  7497. Enable variable-size block motion compensation. Motion estimation is applied with smaller block sizes at object boundaries in order to make the them less blur. Default is @code{0} (disabled).
  7498. @end table
  7499. @end table
  7500. @item scd
  7501. Scene change detection method. Scene change leads motion vectors to be in random direction. Scene change detection replace interpolated frames by duplicate ones. May not be needed for other modes. Following values are accepted:
  7502. @table @samp
  7503. @item none
  7504. Disable scene change detection.
  7505. @item fdiff
  7506. Frame difference. Corresponding pixel values are compared and if it satisfies @var{scd_threshold} scene change is detected.
  7507. @end table
  7508. Default method is @samp{fdiff}.
  7509. @item scd_threshold
  7510. Scene change detection threshold. Default is @code{5.0}.
  7511. @end table
  7512. @section mpdecimate
  7513. Drop frames that do not differ greatly from the previous frame in
  7514. order to reduce frame rate.
  7515. The main use of this filter is for very-low-bitrate encoding
  7516. (e.g. streaming over dialup modem), but it could in theory be used for
  7517. fixing movies that were inverse-telecined incorrectly.
  7518. A description of the accepted options follows.
  7519. @table @option
  7520. @item max
  7521. Set the maximum number of consecutive frames which can be dropped (if
  7522. positive), or the minimum interval between dropped frames (if
  7523. negative). If the value is 0, the frame is dropped unregarding the
  7524. number of previous sequentially dropped frames.
  7525. Default value is 0.
  7526. @item hi
  7527. @item lo
  7528. @item frac
  7529. Set the dropping threshold values.
  7530. Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
  7531. represent actual pixel value differences, so a threshold of 64
  7532. corresponds to 1 unit of difference for each pixel, or the same spread
  7533. out differently over the block.
  7534. A frame is a candidate for dropping if no 8x8 blocks differ by more
  7535. than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
  7536. meaning the whole image) differ by more than a threshold of @option{lo}.
  7537. Default value for @option{hi} is 64*12, default value for @option{lo} is
  7538. 64*5, and default value for @option{frac} is 0.33.
  7539. @end table
  7540. @section negate
  7541. Negate input video.
  7542. It accepts an integer in input; if non-zero it negates the
  7543. alpha component (if available). The default value in input is 0.
  7544. @section nlmeans
  7545. Denoise frames using Non-Local Means algorithm.
  7546. Each pixel is adjusted by looking for other pixels with similar contexts. This
  7547. context similarity is defined by comparing their surrounding patches of size
  7548. @option{p}x@option{p}. Patches are searched in an area of @option{r}x@option{r}
  7549. around the pixel.
  7550. Note that the research area defines centers for patches, which means some
  7551. patches will be made of pixels outside that research area.
  7552. The filter accepts the following options.
  7553. @table @option
  7554. @item s
  7555. Set denoising strength.
  7556. @item p
  7557. Set patch size.
  7558. @item pc
  7559. Same as @option{p} but for chroma planes.
  7560. The default value is @var{0} and means automatic.
  7561. @item r
  7562. Set research size.
  7563. @item rc
  7564. Same as @option{r} but for chroma planes.
  7565. The default value is @var{0} and means automatic.
  7566. @end table
  7567. @section nnedi
  7568. Deinterlace video using neural network edge directed interpolation.
  7569. This filter accepts the following options:
  7570. @table @option
  7571. @item weights
  7572. Mandatory option, without binary file filter can not work.
  7573. Currently file can be found here:
  7574. https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
  7575. @item deint
  7576. Set which frames to deinterlace, by default it is @code{all}.
  7577. Can be @code{all} or @code{interlaced}.
  7578. @item field
  7579. Set mode of operation.
  7580. Can be one of the following:
  7581. @table @samp
  7582. @item af
  7583. Use frame flags, both fields.
  7584. @item a
  7585. Use frame flags, single field.
  7586. @item t
  7587. Use top field only.
  7588. @item b
  7589. Use bottom field only.
  7590. @item tf
  7591. Use both fields, top first.
  7592. @item bf
  7593. Use both fields, bottom first.
  7594. @end table
  7595. @item planes
  7596. Set which planes to process, by default filter process all frames.
  7597. @item nsize
  7598. Set size of local neighborhood around each pixel, used by the predictor neural
  7599. network.
  7600. Can be one of the following:
  7601. @table @samp
  7602. @item s8x6
  7603. @item s16x6
  7604. @item s32x6
  7605. @item s48x6
  7606. @item s8x4
  7607. @item s16x4
  7608. @item s32x4
  7609. @end table
  7610. @item nns
  7611. Set the number of neurons in predicctor neural network.
  7612. Can be one of the following:
  7613. @table @samp
  7614. @item n16
  7615. @item n32
  7616. @item n64
  7617. @item n128
  7618. @item n256
  7619. @end table
  7620. @item qual
  7621. Controls the number of different neural network predictions that are blended
  7622. together to compute the final output value. Can be @code{fast}, default or
  7623. @code{slow}.
  7624. @item etype
  7625. Set which set of weights to use in the predictor.
  7626. Can be one of the following:
  7627. @table @samp
  7628. @item a
  7629. weights trained to minimize absolute error
  7630. @item s
  7631. weights trained to minimize squared error
  7632. @end table
  7633. @item pscrn
  7634. Controls whether or not the prescreener neural network is used to decide
  7635. which pixels should be processed by the predictor neural network and which
  7636. can be handled by simple cubic interpolation.
  7637. The prescreener is trained to know whether cubic interpolation will be
  7638. sufficient for a pixel or whether it should be predicted by the predictor nn.
  7639. The computational complexity of the prescreener nn is much less than that of
  7640. the predictor nn. Since most pixels can be handled by cubic interpolation,
  7641. using the prescreener generally results in much faster processing.
  7642. The prescreener is pretty accurate, so the difference between using it and not
  7643. using it is almost always unnoticeable.
  7644. Can be one of the following:
  7645. @table @samp
  7646. @item none
  7647. @item original
  7648. @item new
  7649. @end table
  7650. Default is @code{new}.
  7651. @item fapprox
  7652. Set various debugging flags.
  7653. @end table
  7654. @section noformat
  7655. Force libavfilter not to use any of the specified pixel formats for the
  7656. input to the next filter.
  7657. It accepts the following parameters:
  7658. @table @option
  7659. @item pix_fmts
  7660. A '|'-separated list of pixel format names, such as
  7661. apix_fmts=yuv420p|monow|rgb24".
  7662. @end table
  7663. @subsection Examples
  7664. @itemize
  7665. @item
  7666. Force libavfilter to use a format different from @var{yuv420p} for the
  7667. input to the vflip filter:
  7668. @example
  7669. noformat=pix_fmts=yuv420p,vflip
  7670. @end example
  7671. @item
  7672. Convert the input video to any of the formats not contained in the list:
  7673. @example
  7674. noformat=yuv420p|yuv444p|yuv410p
  7675. @end example
  7676. @end itemize
  7677. @section noise
  7678. Add noise on video input frame.
  7679. The filter accepts the following options:
  7680. @table @option
  7681. @item all_seed
  7682. @item c0_seed
  7683. @item c1_seed
  7684. @item c2_seed
  7685. @item c3_seed
  7686. Set noise seed for specific pixel component or all pixel components in case
  7687. of @var{all_seed}. Default value is @code{123457}.
  7688. @item all_strength, alls
  7689. @item c0_strength, c0s
  7690. @item c1_strength, c1s
  7691. @item c2_strength, c2s
  7692. @item c3_strength, c3s
  7693. Set noise strength for specific pixel component or all pixel components in case
  7694. @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
  7695. @item all_flags, allf
  7696. @item c0_flags, c0f
  7697. @item c1_flags, c1f
  7698. @item c2_flags, c2f
  7699. @item c3_flags, c3f
  7700. Set pixel component flags or set flags for all components if @var{all_flags}.
  7701. Available values for component flags are:
  7702. @table @samp
  7703. @item a
  7704. averaged temporal noise (smoother)
  7705. @item p
  7706. mix random noise with a (semi)regular pattern
  7707. @item t
  7708. temporal noise (noise pattern changes between frames)
  7709. @item u
  7710. uniform noise (gaussian otherwise)
  7711. @end table
  7712. @end table
  7713. @subsection Examples
  7714. Add temporal and uniform noise to input video:
  7715. @example
  7716. noise=alls=20:allf=t+u
  7717. @end example
  7718. @section null
  7719. Pass the video source unchanged to the output.
  7720. @section ocr
  7721. Optical Character Recognition
  7722. This filter uses Tesseract for optical character recognition.
  7723. It accepts the following options:
  7724. @table @option
  7725. @item datapath
  7726. Set datapath to tesseract data. Default is to use whatever was
  7727. set at installation.
  7728. @item language
  7729. Set language, default is "eng".
  7730. @item whitelist
  7731. Set character whitelist.
  7732. @item blacklist
  7733. Set character blacklist.
  7734. @end table
  7735. The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
  7736. @section ocv
  7737. Apply a video transform using libopencv.
  7738. To enable this filter, install the libopencv library and headers and
  7739. configure FFmpeg with @code{--enable-libopencv}.
  7740. It accepts the following parameters:
  7741. @table @option
  7742. @item filter_name
  7743. The name of the libopencv filter to apply.
  7744. @item filter_params
  7745. The parameters to pass to the libopencv filter. If not specified, the default
  7746. values are assumed.
  7747. @end table
  7748. Refer to the official libopencv documentation for more precise
  7749. information:
  7750. @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
  7751. Several libopencv filters are supported; see the following subsections.
  7752. @anchor{dilate}
  7753. @subsection dilate
  7754. Dilate an image by using a specific structuring element.
  7755. It corresponds to the libopencv function @code{cvDilate}.
  7756. It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
  7757. @var{struct_el} represents a structuring element, and has the syntax:
  7758. @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
  7759. @var{cols} and @var{rows} represent the number of columns and rows of
  7760. the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
  7761. point, and @var{shape} the shape for the structuring element. @var{shape}
  7762. must be "rect", "cross", "ellipse", or "custom".
  7763. If the value for @var{shape} is "custom", it must be followed by a
  7764. string of the form "=@var{filename}". The file with name
  7765. @var{filename} is assumed to represent a binary image, with each
  7766. printable character corresponding to a bright pixel. When a custom
  7767. @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
  7768. or columns and rows of the read file are assumed instead.
  7769. The default value for @var{struct_el} is "3x3+0x0/rect".
  7770. @var{nb_iterations} specifies the number of times the transform is
  7771. applied to the image, and defaults to 1.
  7772. Some examples:
  7773. @example
  7774. # Use the default values
  7775. ocv=dilate
  7776. # Dilate using a structuring element with a 5x5 cross, iterating two times
  7777. ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
  7778. # Read the shape from the file diamond.shape, iterating two times.
  7779. # The file diamond.shape may contain a pattern of characters like this
  7780. # *
  7781. # ***
  7782. # *****
  7783. # ***
  7784. # *
  7785. # The specified columns and rows are ignored
  7786. # but the anchor point coordinates are not
  7787. ocv=dilate:0x0+2x2/custom=diamond.shape|2
  7788. @end example
  7789. @subsection erode
  7790. Erode an image by using a specific structuring element.
  7791. It corresponds to the libopencv function @code{cvErode}.
  7792. It accepts the parameters: @var{struct_el}:@var{nb_iterations},
  7793. with the same syntax and semantics as the @ref{dilate} filter.
  7794. @subsection smooth
  7795. Smooth the input video.
  7796. The filter takes the following parameters:
  7797. @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
  7798. @var{type} is the type of smooth filter to apply, and must be one of
  7799. the following values: "blur", "blur_no_scale", "median", "gaussian",
  7800. or "bilateral". The default value is "gaussian".
  7801. The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
  7802. depend on the smooth type. @var{param1} and
  7803. @var{param2} accept integer positive values or 0. @var{param3} and
  7804. @var{param4} accept floating point values.
  7805. The default value for @var{param1} is 3. The default value for the
  7806. other parameters is 0.
  7807. These parameters correspond to the parameters assigned to the
  7808. libopencv function @code{cvSmooth}.
  7809. @anchor{overlay}
  7810. @section overlay
  7811. Overlay one video on top of another.
  7812. It takes two inputs and has one output. The first input is the "main"
  7813. video on which the second input is overlaid.
  7814. It accepts the following parameters:
  7815. A description of the accepted options follows.
  7816. @table @option
  7817. @item x
  7818. @item y
  7819. Set the expression for the x and y coordinates of the overlaid video
  7820. on the main video. Default value is "0" for both expressions. In case
  7821. the expression is invalid, it is set to a huge value (meaning that the
  7822. overlay will not be displayed within the output visible area).
  7823. @item eof_action
  7824. The action to take when EOF is encountered on the secondary input; it accepts
  7825. one of the following values:
  7826. @table @option
  7827. @item repeat
  7828. Repeat the last frame (the default).
  7829. @item endall
  7830. End both streams.
  7831. @item pass
  7832. Pass the main input through.
  7833. @end table
  7834. @item eval
  7835. Set when the expressions for @option{x}, and @option{y} are evaluated.
  7836. It accepts the following values:
  7837. @table @samp
  7838. @item init
  7839. only evaluate expressions once during the filter initialization or
  7840. when a command is processed
  7841. @item frame
  7842. evaluate expressions for each incoming frame
  7843. @end table
  7844. Default value is @samp{frame}.
  7845. @item shortest
  7846. If set to 1, force the output to terminate when the shortest input
  7847. terminates. Default value is 0.
  7848. @item format
  7849. Set the format for the output video.
  7850. It accepts the following values:
  7851. @table @samp
  7852. @item yuv420
  7853. force YUV420 output
  7854. @item yuv422
  7855. force YUV422 output
  7856. @item yuv444
  7857. force YUV444 output
  7858. @item rgb
  7859. force packed RGB output
  7860. @item gbrp
  7861. force planar RGB output
  7862. @end table
  7863. Default value is @samp{yuv420}.
  7864. @item rgb @emph{(deprecated)}
  7865. If set to 1, force the filter to accept inputs in the RGB
  7866. color space. Default value is 0. This option is deprecated, use
  7867. @option{format} instead.
  7868. @item repeatlast
  7869. If set to 1, force the filter to draw the last overlay frame over the
  7870. main input until the end of the stream. A value of 0 disables this
  7871. behavior. Default value is 1.
  7872. @end table
  7873. The @option{x}, and @option{y} expressions can contain the following
  7874. parameters.
  7875. @table @option
  7876. @item main_w, W
  7877. @item main_h, H
  7878. The main input width and height.
  7879. @item overlay_w, w
  7880. @item overlay_h, h
  7881. The overlay input width and height.
  7882. @item x
  7883. @item y
  7884. The computed values for @var{x} and @var{y}. They are evaluated for
  7885. each new frame.
  7886. @item hsub
  7887. @item vsub
  7888. horizontal and vertical chroma subsample values of the output
  7889. format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
  7890. @var{vsub} is 1.
  7891. @item n
  7892. the number of input frame, starting from 0
  7893. @item pos
  7894. the position in the file of the input frame, NAN if unknown
  7895. @item t
  7896. The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
  7897. @end table
  7898. Note that the @var{n}, @var{pos}, @var{t} variables are available only
  7899. when evaluation is done @emph{per frame}, and will evaluate to NAN
  7900. when @option{eval} is set to @samp{init}.
  7901. Be aware that frames are taken from each input video in timestamp
  7902. order, hence, if their initial timestamps differ, it is a good idea
  7903. to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
  7904. have them begin in the same zero timestamp, as the example for
  7905. the @var{movie} filter does.
  7906. You can chain together more overlays but you should test the
  7907. efficiency of such approach.
  7908. @subsection Commands
  7909. This filter supports the following commands:
  7910. @table @option
  7911. @item x
  7912. @item y
  7913. Modify the x and y of the overlay input.
  7914. The command accepts the same syntax of the corresponding option.
  7915. If the specified expression is not valid, it is kept at its current
  7916. value.
  7917. @end table
  7918. @subsection Examples
  7919. @itemize
  7920. @item
  7921. Draw the overlay at 10 pixels from the bottom right corner of the main
  7922. video:
  7923. @example
  7924. overlay=main_w-overlay_w-10:main_h-overlay_h-10
  7925. @end example
  7926. Using named options the example above becomes:
  7927. @example
  7928. overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
  7929. @end example
  7930. @item
  7931. Insert a transparent PNG logo in the bottom left corner of the input,
  7932. using the @command{ffmpeg} tool with the @code{-filter_complex} option:
  7933. @example
  7934. ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
  7935. @end example
  7936. @item
  7937. Insert 2 different transparent PNG logos (second logo on bottom
  7938. right corner) using the @command{ffmpeg} tool:
  7939. @example
  7940. 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
  7941. @end example
  7942. @item
  7943. Add a transparent color layer on top of the main video; @code{WxH}
  7944. must specify the size of the main input to the overlay filter:
  7945. @example
  7946. color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
  7947. @end example
  7948. @item
  7949. Play an original video and a filtered version (here with the deshake
  7950. filter) side by side using the @command{ffplay} tool:
  7951. @example
  7952. ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
  7953. @end example
  7954. The above command is the same as:
  7955. @example
  7956. ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
  7957. @end example
  7958. @item
  7959. Make a sliding overlay appearing from the left to the right top part of the
  7960. screen starting since time 2:
  7961. @example
  7962. overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
  7963. @end example
  7964. @item
  7965. Compose output by putting two input videos side to side:
  7966. @example
  7967. ffmpeg -i left.avi -i right.avi -filter_complex "
  7968. nullsrc=size=200x100 [background];
  7969. [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
  7970. [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
  7971. [background][left] overlay=shortest=1 [background+left];
  7972. [background+left][right] overlay=shortest=1:x=100 [left+right]
  7973. "
  7974. @end example
  7975. @item
  7976. Mask 10-20 seconds of a video by applying the delogo filter to a section
  7977. @example
  7978. ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
  7979. -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]'
  7980. masked.avi
  7981. @end example
  7982. @item
  7983. Chain several overlays in cascade:
  7984. @example
  7985. nullsrc=s=200x200 [bg];
  7986. testsrc=s=100x100, split=4 [in0][in1][in2][in3];
  7987. [in0] lutrgb=r=0, [bg] overlay=0:0 [mid0];
  7988. [in1] lutrgb=g=0, [mid0] overlay=100:0 [mid1];
  7989. [in2] lutrgb=b=0, [mid1] overlay=0:100 [mid2];
  7990. [in3] null, [mid2] overlay=100:100 [out0]
  7991. @end example
  7992. @end itemize
  7993. @section owdenoise
  7994. Apply Overcomplete Wavelet denoiser.
  7995. The filter accepts the following options:
  7996. @table @option
  7997. @item depth
  7998. Set depth.
  7999. Larger depth values will denoise lower frequency components more, but
  8000. slow down filtering.
  8001. Must be an int in the range 8-16, default is @code{8}.
  8002. @item luma_strength, ls
  8003. Set luma strength.
  8004. Must be a double value in the range 0-1000, default is @code{1.0}.
  8005. @item chroma_strength, cs
  8006. Set chroma strength.
  8007. Must be a double value in the range 0-1000, default is @code{1.0}.
  8008. @end table
  8009. @anchor{pad}
  8010. @section pad
  8011. Add paddings to the input image, and place the original input at the
  8012. provided @var{x}, @var{y} coordinates.
  8013. It accepts the following parameters:
  8014. @table @option
  8015. @item width, w
  8016. @item height, h
  8017. Specify an expression for the size of the output image with the
  8018. paddings added. If the value for @var{width} or @var{height} is 0, the
  8019. corresponding input size is used for the output.
  8020. The @var{width} expression can reference the value set by the
  8021. @var{height} expression, and vice versa.
  8022. The default value of @var{width} and @var{height} is 0.
  8023. @item x
  8024. @item y
  8025. Specify the offsets to place the input image at within the padded area,
  8026. with respect to the top/left border of the output image.
  8027. The @var{x} expression can reference the value set by the @var{y}
  8028. expression, and vice versa.
  8029. The default value of @var{x} and @var{y} is 0.
  8030. @item color
  8031. Specify the color of the padded area. For the syntax of this option,
  8032. check the "Color" section in the ffmpeg-utils manual.
  8033. The default value of @var{color} is "black".
  8034. @item eval
  8035. Specify when to evaluate @var{width}, @var{height}, @var{x} and @var{y} expression.
  8036. It accepts the following values:
  8037. @table @samp
  8038. @item init
  8039. Only evaluate expressions once during the filter initialization or when
  8040. a command is processed.
  8041. @item frame
  8042. Evaluate expressions for each incoming frame.
  8043. @end table
  8044. Default value is @samp{init}.
  8045. @end table
  8046. The value for the @var{width}, @var{height}, @var{x}, and @var{y}
  8047. options are expressions containing the following constants:
  8048. @table @option
  8049. @item in_w
  8050. @item in_h
  8051. The input video width and height.
  8052. @item iw
  8053. @item ih
  8054. These are the same as @var{in_w} and @var{in_h}.
  8055. @item out_w
  8056. @item out_h
  8057. The output width and height (the size of the padded area), as
  8058. specified by the @var{width} and @var{height} expressions.
  8059. @item ow
  8060. @item oh
  8061. These are the same as @var{out_w} and @var{out_h}.
  8062. @item x
  8063. @item y
  8064. The x and y offsets as specified by the @var{x} and @var{y}
  8065. expressions, or NAN if not yet specified.
  8066. @item a
  8067. same as @var{iw} / @var{ih}
  8068. @item sar
  8069. input sample aspect ratio
  8070. @item dar
  8071. input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
  8072. @item hsub
  8073. @item vsub
  8074. The horizontal and vertical chroma subsample values. For example for the
  8075. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  8076. @end table
  8077. @subsection Examples
  8078. @itemize
  8079. @item
  8080. Add paddings with the color "violet" to the input video. The output video
  8081. size is 640x480, and the top-left corner of the input video is placed at
  8082. column 0, row 40
  8083. @example
  8084. pad=640:480:0:40:violet
  8085. @end example
  8086. The example above is equivalent to the following command:
  8087. @example
  8088. pad=width=640:height=480:x=0:y=40:color=violet
  8089. @end example
  8090. @item
  8091. Pad the input to get an output with dimensions increased by 3/2,
  8092. and put the input video at the center of the padded area:
  8093. @example
  8094. pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
  8095. @end example
  8096. @item
  8097. Pad the input to get a squared output with size equal to the maximum
  8098. value between the input width and height, and put the input video at
  8099. the center of the padded area:
  8100. @example
  8101. pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
  8102. @end example
  8103. @item
  8104. Pad the input to get a final w/h ratio of 16:9:
  8105. @example
  8106. pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
  8107. @end example
  8108. @item
  8109. In case of anamorphic video, in order to set the output display aspect
  8110. correctly, it is necessary to use @var{sar} in the expression,
  8111. according to the relation:
  8112. @example
  8113. (ih * X / ih) * sar = output_dar
  8114. X = output_dar / sar
  8115. @end example
  8116. Thus the previous example needs to be modified to:
  8117. @example
  8118. pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
  8119. @end example
  8120. @item
  8121. Double the output size and put the input video in the bottom-right
  8122. corner of the output padded area:
  8123. @example
  8124. pad="2*iw:2*ih:ow-iw:oh-ih"
  8125. @end example
  8126. @end itemize
  8127. @anchor{palettegen}
  8128. @section palettegen
  8129. Generate one palette for a whole video stream.
  8130. It accepts the following options:
  8131. @table @option
  8132. @item max_colors
  8133. Set the maximum number of colors to quantize in the palette.
  8134. Note: the palette will still contain 256 colors; the unused palette entries
  8135. will be black.
  8136. @item reserve_transparent
  8137. Create a palette of 255 colors maximum and reserve the last one for
  8138. transparency. Reserving the transparency color is useful for GIF optimization.
  8139. If not set, the maximum of colors in the palette will be 256. You probably want
  8140. to disable this option for a standalone image.
  8141. Set by default.
  8142. @item stats_mode
  8143. Set statistics mode.
  8144. It accepts the following values:
  8145. @table @samp
  8146. @item full
  8147. Compute full frame histograms.
  8148. @item diff
  8149. Compute histograms only for the part that differs from previous frame. This
  8150. might be relevant to give more importance to the moving part of your input if
  8151. the background is static.
  8152. @item single
  8153. Compute new histogram for each frame.
  8154. @end table
  8155. Default value is @var{full}.
  8156. @end table
  8157. The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
  8158. (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
  8159. color quantization of the palette. This information is also visible at
  8160. @var{info} logging level.
  8161. @subsection Examples
  8162. @itemize
  8163. @item
  8164. Generate a representative palette of a given video using @command{ffmpeg}:
  8165. @example
  8166. ffmpeg -i input.mkv -vf palettegen palette.png
  8167. @end example
  8168. @end itemize
  8169. @section paletteuse
  8170. Use a palette to downsample an input video stream.
  8171. The filter takes two inputs: one video stream and a palette. The palette must
  8172. be a 256 pixels image.
  8173. It accepts the following options:
  8174. @table @option
  8175. @item dither
  8176. Select dithering mode. Available algorithms are:
  8177. @table @samp
  8178. @item bayer
  8179. Ordered 8x8 bayer dithering (deterministic)
  8180. @item heckbert
  8181. Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
  8182. Note: this dithering is sometimes considered "wrong" and is included as a
  8183. reference.
  8184. @item floyd_steinberg
  8185. Floyd and Steingberg dithering (error diffusion)
  8186. @item sierra2
  8187. Frankie Sierra dithering v2 (error diffusion)
  8188. @item sierra2_4a
  8189. Frankie Sierra dithering v2 "Lite" (error diffusion)
  8190. @end table
  8191. Default is @var{sierra2_4a}.
  8192. @item bayer_scale
  8193. When @var{bayer} dithering is selected, this option defines the scale of the
  8194. pattern (how much the crosshatch pattern is visible). A low value means more
  8195. visible pattern for less banding, and higher value means less visible pattern
  8196. at the cost of more banding.
  8197. The option must be an integer value in the range [0,5]. Default is @var{2}.
  8198. @item diff_mode
  8199. If set, define the zone to process
  8200. @table @samp
  8201. @item rectangle
  8202. Only the changing rectangle will be reprocessed. This is similar to GIF
  8203. cropping/offsetting compression mechanism. This option can be useful for speed
  8204. if only a part of the image is changing, and has use cases such as limiting the
  8205. scope of the error diffusal @option{dither} to the rectangle that bounds the
  8206. moving scene (it leads to more deterministic output if the scene doesn't change
  8207. much, and as a result less moving noise and better GIF compression).
  8208. @end table
  8209. Default is @var{none}.
  8210. @item new
  8211. Take new palette for each output frame.
  8212. @end table
  8213. @subsection Examples
  8214. @itemize
  8215. @item
  8216. Use a palette (generated for example with @ref{palettegen}) to encode a GIF
  8217. using @command{ffmpeg}:
  8218. @example
  8219. ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
  8220. @end example
  8221. @end itemize
  8222. @section perspective
  8223. Correct perspective of video not recorded perpendicular to the screen.
  8224. A description of the accepted parameters follows.
  8225. @table @option
  8226. @item x0
  8227. @item y0
  8228. @item x1
  8229. @item y1
  8230. @item x2
  8231. @item y2
  8232. @item x3
  8233. @item y3
  8234. Set coordinates expression for top left, top right, bottom left and bottom right corners.
  8235. Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
  8236. If the @code{sense} option is set to @code{source}, then the specified points will be sent
  8237. to the corners of the destination. If the @code{sense} option is set to @code{destination},
  8238. then the corners of the source will be sent to the specified coordinates.
  8239. The expressions can use the following variables:
  8240. @table @option
  8241. @item W
  8242. @item H
  8243. the width and height of video frame.
  8244. @item in
  8245. Input frame count.
  8246. @item on
  8247. Output frame count.
  8248. @end table
  8249. @item interpolation
  8250. Set interpolation for perspective correction.
  8251. It accepts the following values:
  8252. @table @samp
  8253. @item linear
  8254. @item cubic
  8255. @end table
  8256. Default value is @samp{linear}.
  8257. @item sense
  8258. Set interpretation of coordinate options.
  8259. It accepts the following values:
  8260. @table @samp
  8261. @item 0, source
  8262. Send point in the source specified by the given coordinates to
  8263. the corners of the destination.
  8264. @item 1, destination
  8265. Send the corners of the source to the point in the destination specified
  8266. by the given coordinates.
  8267. Default value is @samp{source}.
  8268. @end table
  8269. @item eval
  8270. Set when the expressions for coordinates @option{x0,y0,...x3,y3} are evaluated.
  8271. It accepts the following values:
  8272. @table @samp
  8273. @item init
  8274. only evaluate expressions once during the filter initialization or
  8275. when a command is processed
  8276. @item frame
  8277. evaluate expressions for each incoming frame
  8278. @end table
  8279. Default value is @samp{init}.
  8280. @end table
  8281. @section phase
  8282. Delay interlaced video by one field time so that the field order changes.
  8283. The intended use is to fix PAL movies that have been captured with the
  8284. opposite field order to the film-to-video transfer.
  8285. A description of the accepted parameters follows.
  8286. @table @option
  8287. @item mode
  8288. Set phase mode.
  8289. It accepts the following values:
  8290. @table @samp
  8291. @item t
  8292. Capture field order top-first, transfer bottom-first.
  8293. Filter will delay the bottom field.
  8294. @item b
  8295. Capture field order bottom-first, transfer top-first.
  8296. Filter will delay the top field.
  8297. @item p
  8298. Capture and transfer with the same field order. This mode only exists
  8299. for the documentation of the other options to refer to, but if you
  8300. actually select it, the filter will faithfully do nothing.
  8301. @item a
  8302. Capture field order determined automatically by field flags, transfer
  8303. opposite.
  8304. Filter selects among @samp{t} and @samp{b} modes on a frame by frame
  8305. basis using field flags. If no field information is available,
  8306. then this works just like @samp{u}.
  8307. @item u
  8308. Capture unknown or varying, transfer opposite.
  8309. Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
  8310. analyzing the images and selecting the alternative that produces best
  8311. match between the fields.
  8312. @item T
  8313. Capture top-first, transfer unknown or varying.
  8314. Filter selects among @samp{t} and @samp{p} using image analysis.
  8315. @item B
  8316. Capture bottom-first, transfer unknown or varying.
  8317. Filter selects among @samp{b} and @samp{p} using image analysis.
  8318. @item A
  8319. Capture determined by field flags, transfer unknown or varying.
  8320. Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
  8321. image analysis. If no field information is available, then this works just
  8322. like @samp{U}. This is the default mode.
  8323. @item U
  8324. Both capture and transfer unknown or varying.
  8325. Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
  8326. @end table
  8327. @end table
  8328. @section pixdesctest
  8329. Pixel format descriptor test filter, mainly useful for internal
  8330. testing. The output video should be equal to the input video.
  8331. For example:
  8332. @example
  8333. format=monow, pixdesctest
  8334. @end example
  8335. can be used to test the monowhite pixel format descriptor definition.
  8336. @section pp
  8337. Enable the specified chain of postprocessing subfilters using libpostproc. This
  8338. library should be automatically selected with a GPL build (@code{--enable-gpl}).
  8339. Subfilters must be separated by '/' and can be disabled by prepending a '-'.
  8340. Each subfilter and some options have a short and a long name that can be used
  8341. interchangeably, i.e. dr/dering are the same.
  8342. The filters accept the following options:
  8343. @table @option
  8344. @item subfilters
  8345. Set postprocessing subfilters string.
  8346. @end table
  8347. All subfilters share common options to determine their scope:
  8348. @table @option
  8349. @item a/autoq
  8350. Honor the quality commands for this subfilter.
  8351. @item c/chrom
  8352. Do chrominance filtering, too (default).
  8353. @item y/nochrom
  8354. Do luminance filtering only (no chrominance).
  8355. @item n/noluma
  8356. Do chrominance filtering only (no luminance).
  8357. @end table
  8358. These options can be appended after the subfilter name, separated by a '|'.
  8359. Available subfilters are:
  8360. @table @option
  8361. @item hb/hdeblock[|difference[|flatness]]
  8362. Horizontal deblocking filter
  8363. @table @option
  8364. @item difference
  8365. Difference factor where higher values mean more deblocking (default: @code{32}).
  8366. @item flatness
  8367. Flatness threshold where lower values mean more deblocking (default: @code{39}).
  8368. @end table
  8369. @item vb/vdeblock[|difference[|flatness]]
  8370. Vertical deblocking filter
  8371. @table @option
  8372. @item difference
  8373. Difference factor where higher values mean more deblocking (default: @code{32}).
  8374. @item flatness
  8375. Flatness threshold where lower values mean more deblocking (default: @code{39}).
  8376. @end table
  8377. @item ha/hadeblock[|difference[|flatness]]
  8378. Accurate horizontal deblocking filter
  8379. @table @option
  8380. @item difference
  8381. Difference factor where higher values mean more deblocking (default: @code{32}).
  8382. @item flatness
  8383. Flatness threshold where lower values mean more deblocking (default: @code{39}).
  8384. @end table
  8385. @item va/vadeblock[|difference[|flatness]]
  8386. Accurate vertical deblocking filter
  8387. @table @option
  8388. @item difference
  8389. Difference factor where higher values mean more deblocking (default: @code{32}).
  8390. @item flatness
  8391. Flatness threshold where lower values mean more deblocking (default: @code{39}).
  8392. @end table
  8393. @end table
  8394. The horizontal and vertical deblocking filters share the difference and
  8395. flatness values so you cannot set different horizontal and vertical
  8396. thresholds.
  8397. @table @option
  8398. @item h1/x1hdeblock
  8399. Experimental horizontal deblocking filter
  8400. @item v1/x1vdeblock
  8401. Experimental vertical deblocking filter
  8402. @item dr/dering
  8403. Deringing filter
  8404. @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
  8405. @table @option
  8406. @item threshold1
  8407. larger -> stronger filtering
  8408. @item threshold2
  8409. larger -> stronger filtering
  8410. @item threshold3
  8411. larger -> stronger filtering
  8412. @end table
  8413. @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
  8414. @table @option
  8415. @item f/fullyrange
  8416. Stretch luminance to @code{0-255}.
  8417. @end table
  8418. @item lb/linblenddeint
  8419. Linear blend deinterlacing filter that deinterlaces the given block by
  8420. filtering all lines with a @code{(1 2 1)} filter.
  8421. @item li/linipoldeint
  8422. Linear interpolating deinterlacing filter that deinterlaces the given block by
  8423. linearly interpolating every second line.
  8424. @item ci/cubicipoldeint
  8425. Cubic interpolating deinterlacing filter deinterlaces the given block by
  8426. cubically interpolating every second line.
  8427. @item md/mediandeint
  8428. Median deinterlacing filter that deinterlaces the given block by applying a
  8429. median filter to every second line.
  8430. @item fd/ffmpegdeint
  8431. FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
  8432. second line with a @code{(-1 4 2 4 -1)} filter.
  8433. @item l5/lowpass5
  8434. Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
  8435. block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
  8436. @item fq/forceQuant[|quantizer]
  8437. Overrides the quantizer table from the input with the constant quantizer you
  8438. specify.
  8439. @table @option
  8440. @item quantizer
  8441. Quantizer to use
  8442. @end table
  8443. @item de/default
  8444. Default pp filter combination (@code{hb|a,vb|a,dr|a})
  8445. @item fa/fast
  8446. Fast pp filter combination (@code{h1|a,v1|a,dr|a})
  8447. @item ac
  8448. High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
  8449. @end table
  8450. @subsection Examples
  8451. @itemize
  8452. @item
  8453. Apply horizontal and vertical deblocking, deringing and automatic
  8454. brightness/contrast:
  8455. @example
  8456. pp=hb/vb/dr/al
  8457. @end example
  8458. @item
  8459. Apply default filters without brightness/contrast correction:
  8460. @example
  8461. pp=de/-al
  8462. @end example
  8463. @item
  8464. Apply default filters and temporal denoiser:
  8465. @example
  8466. pp=default/tmpnoise|1|2|3
  8467. @end example
  8468. @item
  8469. Apply deblocking on luminance only, and switch vertical deblocking on or off
  8470. automatically depending on available CPU time:
  8471. @example
  8472. pp=hb|y/vb|a
  8473. @end example
  8474. @end itemize
  8475. @section pp7
  8476. Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
  8477. similar to spp = 6 with 7 point DCT, where only the center sample is
  8478. used after IDCT.
  8479. The filter accepts the following options:
  8480. @table @option
  8481. @item qp
  8482. Force a constant quantization parameter. It accepts an integer in range
  8483. 0 to 63. If not set, the filter will use the QP from the video stream
  8484. (if available).
  8485. @item mode
  8486. Set thresholding mode. Available modes are:
  8487. @table @samp
  8488. @item hard
  8489. Set hard thresholding.
  8490. @item soft
  8491. Set soft thresholding (better de-ringing effect, but likely blurrier).
  8492. @item medium
  8493. Set medium thresholding (good results, default).
  8494. @end table
  8495. @end table
  8496. @section premultiply
  8497. Apply alpha premultiply effect to input video stream using first plane
  8498. of second stream as alpha.
  8499. Both streams must have same dimensions and same pixel format.
  8500. @section prewitt
  8501. Apply prewitt operator to input video stream.
  8502. The filter accepts the following option:
  8503. @table @option
  8504. @item planes
  8505. Set which planes will be processed, unprocessed planes will be copied.
  8506. By default value 0xf, all planes will be processed.
  8507. @item scale
  8508. Set value which will be multiplied with filtered result.
  8509. @item delta
  8510. Set value which will be added to filtered result.
  8511. @end table
  8512. @section psnr
  8513. Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
  8514. Ratio) between two input videos.
  8515. This filter takes in input two input videos, the first input is
  8516. considered the "main" source and is passed unchanged to the
  8517. output. The second input is used as a "reference" video for computing
  8518. the PSNR.
  8519. Both video inputs must have the same resolution and pixel format for
  8520. this filter to work correctly. Also it assumes that both inputs
  8521. have the same number of frames, which are compared one by one.
  8522. The obtained average PSNR is printed through the logging system.
  8523. The filter stores the accumulated MSE (mean squared error) of each
  8524. frame, and at the end of the processing it is averaged across all frames
  8525. equally, and the following formula is applied to obtain the PSNR:
  8526. @example
  8527. PSNR = 10*log10(MAX^2/MSE)
  8528. @end example
  8529. Where MAX is the average of the maximum values of each component of the
  8530. image.
  8531. The description of the accepted parameters follows.
  8532. @table @option
  8533. @item stats_file, f
  8534. If specified the filter will use the named file to save the PSNR of
  8535. each individual frame. When filename equals "-" the data is sent to
  8536. standard output.
  8537. @item stats_version
  8538. Specifies which version of the stats file format to use. Details of
  8539. each format are written below.
  8540. Default value is 1.
  8541. @item stats_add_max
  8542. Determines whether the max value is output to the stats log.
  8543. Default value is 0.
  8544. Requires stats_version >= 2. If this is set and stats_version < 2,
  8545. the filter will return an error.
  8546. @end table
  8547. The file printed if @var{stats_file} is selected, contains a sequence of
  8548. key/value pairs of the form @var{key}:@var{value} for each compared
  8549. couple of frames.
  8550. If a @var{stats_version} greater than 1 is specified, a header line precedes
  8551. the list of per-frame-pair stats, with key value pairs following the frame
  8552. format with the following parameters:
  8553. @table @option
  8554. @item psnr_log_version
  8555. The version of the log file format. Will match @var{stats_version}.
  8556. @item fields
  8557. A comma separated list of the per-frame-pair parameters included in
  8558. the log.
  8559. @end table
  8560. A description of each shown per-frame-pair parameter follows:
  8561. @table @option
  8562. @item n
  8563. sequential number of the input frame, starting from 1
  8564. @item mse_avg
  8565. Mean Square Error pixel-by-pixel average difference of the compared
  8566. frames, averaged over all the image components.
  8567. @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_g, mse_a
  8568. Mean Square Error pixel-by-pixel average difference of the compared
  8569. frames for the component specified by the suffix.
  8570. @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
  8571. Peak Signal to Noise ratio of the compared frames for the component
  8572. specified by the suffix.
  8573. @item max_avg, max_y, max_u, max_v
  8574. Maximum allowed value for each channel, and average over all
  8575. channels.
  8576. @end table
  8577. For example:
  8578. @example
  8579. movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
  8580. [main][ref] psnr="stats_file=stats.log" [out]
  8581. @end example
  8582. On this example the input file being processed is compared with the
  8583. reference file @file{ref_movie.mpg}. The PSNR of each individual frame
  8584. is stored in @file{stats.log}.
  8585. @anchor{pullup}
  8586. @section pullup
  8587. Pulldown reversal (inverse telecine) filter, capable of handling mixed
  8588. hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
  8589. content.
  8590. The pullup filter is designed to take advantage of future context in making
  8591. its decisions. This filter is stateless in the sense that it does not lock
  8592. onto a pattern to follow, but it instead looks forward to the following
  8593. fields in order to identify matches and rebuild progressive frames.
  8594. To produce content with an even framerate, insert the fps filter after
  8595. pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
  8596. @code{fps=24} for 30fps and the (rare) telecined 25fps input.
  8597. The filter accepts the following options:
  8598. @table @option
  8599. @item jl
  8600. @item jr
  8601. @item jt
  8602. @item jb
  8603. These options set the amount of "junk" to ignore at the left, right, top, and
  8604. bottom of the image, respectively. Left and right are in units of 8 pixels,
  8605. while top and bottom are in units of 2 lines.
  8606. The default is 8 pixels on each side.
  8607. @item sb
  8608. Set the strict breaks. Setting this option to 1 will reduce the chances of
  8609. filter generating an occasional mismatched frame, but it may also cause an
  8610. excessive number of frames to be dropped during high motion sequences.
  8611. Conversely, setting it to -1 will make filter match fields more easily.
  8612. This may help processing of video where there is slight blurring between
  8613. the fields, but may also cause there to be interlaced frames in the output.
  8614. Default value is @code{0}.
  8615. @item mp
  8616. Set the metric plane to use. It accepts the following values:
  8617. @table @samp
  8618. @item l
  8619. Use luma plane.
  8620. @item u
  8621. Use chroma blue plane.
  8622. @item v
  8623. Use chroma red plane.
  8624. @end table
  8625. This option may be set to use chroma plane instead of the default luma plane
  8626. for doing filter's computations. This may improve accuracy on very clean
  8627. source material, but more likely will decrease accuracy, especially if there
  8628. is chroma noise (rainbow effect) or any grayscale video.
  8629. The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
  8630. load and make pullup usable in realtime on slow machines.
  8631. @end table
  8632. For best results (without duplicated frames in the output file) it is
  8633. necessary to change the output frame rate. For example, to inverse
  8634. telecine NTSC input:
  8635. @example
  8636. ffmpeg -i input -vf pullup -r 24000/1001 ...
  8637. @end example
  8638. @section qp
  8639. Change video quantization parameters (QP).
  8640. The filter accepts the following option:
  8641. @table @option
  8642. @item qp
  8643. Set expression for quantization parameter.
  8644. @end table
  8645. The expression is evaluated through the eval API and can contain, among others,
  8646. the following constants:
  8647. @table @var
  8648. @item known
  8649. 1 if index is not 129, 0 otherwise.
  8650. @item qp
  8651. Sequentional index starting from -129 to 128.
  8652. @end table
  8653. @subsection Examples
  8654. @itemize
  8655. @item
  8656. Some equation like:
  8657. @example
  8658. qp=2+2*sin(PI*qp)
  8659. @end example
  8660. @end itemize
  8661. @section random
  8662. Flush video frames from internal cache of frames into a random order.
  8663. No frame is discarded.
  8664. Inspired by @ref{frei0r} nervous filter.
  8665. @table @option
  8666. @item frames
  8667. Set size in number of frames of internal cache, in range from @code{2} to
  8668. @code{512}. Default is @code{30}.
  8669. @item seed
  8670. Set seed for random number generator, must be an integer included between
  8671. @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
  8672. less than @code{0}, the filter will try to use a good random seed on a
  8673. best effort basis.
  8674. @end table
  8675. @section readeia608
  8676. Read closed captioning (EIA-608) information from the top lines of a video frame.
  8677. This filter adds frame metadata for @code{lavfi.readeia608.X.cc} and
  8678. @code{lavfi.readeia608.X.line}, where @code{X} is the number of the identified line
  8679. with EIA-608 data (starting from 0). A description of each metadata value follows:
  8680. @table @option
  8681. @item lavfi.readeia608.X.cc
  8682. The two bytes stored as EIA-608 data (printed in hexadecimal).
  8683. @item lavfi.readeia608.X.line
  8684. The number of the line on which the EIA-608 data was identified and read.
  8685. @end table
  8686. This filter accepts the following options:
  8687. @table @option
  8688. @item scan_min
  8689. Set the line to start scanning for EIA-608 data. Default is @code{0}.
  8690. @item scan_max
  8691. Set the line to end scanning for EIA-608 data. Default is @code{29}.
  8692. @item mac
  8693. Set minimal acceptable amplitude change for sync codes detection.
  8694. Default is @code{0.2}. Allowed range is @code{[0.001 - 1]}.
  8695. @item spw
  8696. Set the ratio of width reserved for sync code detection.
  8697. Default is @code{0.27}. Allowed range is @code{[0.01 - 0.7]}.
  8698. @item mhd
  8699. Set the max peaks height difference for sync code detection.
  8700. Default is @code{0.1}. Allowed range is @code{[0.0 - 0.5]}.
  8701. @item mpd
  8702. Set max peaks period difference for sync code detection.
  8703. Default is @code{0.1}. Allowed range is @code{[0.0 - 0.5]}.
  8704. @item msd
  8705. Set the first two max start code bits differences.
  8706. Default is @code{0.02}. Allowed range is @code{[0.0 - 0.5]}.
  8707. @item bhd
  8708. Set the minimum ratio of bits height compared to 3rd start code bit.
  8709. Default is @code{0.75}. Allowed range is @code{[0.01 - 1]}.
  8710. @item th_w
  8711. Set the white color threshold. Default is @code{0.35}. Allowed range is @code{[0.1 - 1]}.
  8712. @item th_b
  8713. Set the black color threshold. Default is @code{0.15}. Allowed range is @code{[0.0 - 0.5]}.
  8714. @item chp
  8715. Enable checking the parity bit. In the event of a parity error, the filter will output
  8716. @code{0x00} for that character. Default is false.
  8717. @end table
  8718. @subsection Examples
  8719. @itemize
  8720. @item
  8721. Output a csv with presentation time and the first two lines of identified EIA-608 captioning data.
  8722. @example
  8723. ffprobe -f lavfi -i movie=captioned_video.mov,readeia608 -show_entries frame=pkt_pts_time:frame_tags=lavfi.readeia608.0.cc,lavfi.readeia608.1.cc -of csv
  8724. @end example
  8725. @end itemize
  8726. @section readvitc
  8727. Read vertical interval timecode (VITC) information from the top lines of a
  8728. video frame.
  8729. The filter adds frame metadata key @code{lavfi.readvitc.tc_str} with the
  8730. timecode value, if a valid timecode has been detected. Further metadata key
  8731. @code{lavfi.readvitc.found} is set to 0/1 depending on whether
  8732. timecode data has been found or not.
  8733. This filter accepts the following options:
  8734. @table @option
  8735. @item scan_max
  8736. Set the maximum number of lines to scan for VITC data. If the value is set to
  8737. @code{-1} the full video frame is scanned. Default is @code{45}.
  8738. @item thr_b
  8739. Set the luma threshold for black. Accepts float numbers in the range [0.0,1.0],
  8740. default value is @code{0.2}. The value must be equal or less than @code{thr_w}.
  8741. @item thr_w
  8742. Set the luma threshold for white. Accepts float numbers in the range [0.0,1.0],
  8743. default value is @code{0.6}. The value must be equal or greater than @code{thr_b}.
  8744. @end table
  8745. @subsection Examples
  8746. @itemize
  8747. @item
  8748. Detect and draw VITC data onto the video frame; if no valid VITC is detected,
  8749. draw @code{--:--:--:--} as a placeholder:
  8750. @example
  8751. ffmpeg -i input.avi -filter:v 'readvitc,drawtext=fontfile=FreeMono.ttf:text=%@{metadata\\:lavfi.readvitc.tc_str\\:--\\\\\\:--\\\\\\:--\\\\\\:--@}:x=(w-tw)/2:y=400-ascent'
  8752. @end example
  8753. @end itemize
  8754. @section remap
  8755. Remap pixels using 2nd: Xmap and 3rd: Ymap input video stream.
  8756. Destination pixel at position (X, Y) will be picked from source (x, y) position
  8757. where x = Xmap(X, Y) and y = Ymap(X, Y). If mapping values are out of range, zero
  8758. value for pixel will be used for destination pixel.
  8759. Xmap and Ymap input video streams must be of same dimensions. Output video stream
  8760. will have Xmap/Ymap video stream dimensions.
  8761. Xmap and Ymap input video streams are 16bit depth, single channel.
  8762. @section removegrain
  8763. The removegrain filter is a spatial denoiser for progressive video.
  8764. @table @option
  8765. @item m0
  8766. Set mode for the first plane.
  8767. @item m1
  8768. Set mode for the second plane.
  8769. @item m2
  8770. Set mode for the third plane.
  8771. @item m3
  8772. Set mode for the fourth plane.
  8773. @end table
  8774. Range of mode is from 0 to 24. Description of each mode follows:
  8775. @table @var
  8776. @item 0
  8777. Leave input plane unchanged. Default.
  8778. @item 1
  8779. Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
  8780. @item 2
  8781. Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
  8782. @item 3
  8783. Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
  8784. @item 4
  8785. Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
  8786. This is equivalent to a median filter.
  8787. @item 5
  8788. Line-sensitive clipping giving the minimal change.
  8789. @item 6
  8790. Line-sensitive clipping, intermediate.
  8791. @item 7
  8792. Line-sensitive clipping, intermediate.
  8793. @item 8
  8794. Line-sensitive clipping, intermediate.
  8795. @item 9
  8796. Line-sensitive clipping on a line where the neighbours pixels are the closest.
  8797. @item 10
  8798. Replaces the target pixel with the closest neighbour.
  8799. @item 11
  8800. [1 2 1] horizontal and vertical kernel blur.
  8801. @item 12
  8802. Same as mode 11.
  8803. @item 13
  8804. Bob mode, interpolates top field from the line where the neighbours
  8805. pixels are the closest.
  8806. @item 14
  8807. Bob mode, interpolates bottom field from the line where the neighbours
  8808. pixels are the closest.
  8809. @item 15
  8810. Bob mode, interpolates top field. Same as 13 but with a more complicated
  8811. interpolation formula.
  8812. @item 16
  8813. Bob mode, interpolates bottom field. Same as 14 but with a more complicated
  8814. interpolation formula.
  8815. @item 17
  8816. Clips the pixel with the minimum and maximum of respectively the maximum and
  8817. minimum of each pair of opposite neighbour pixels.
  8818. @item 18
  8819. Line-sensitive clipping using opposite neighbours whose greatest distance from
  8820. the current pixel is minimal.
  8821. @item 19
  8822. Replaces the pixel with the average of its 8 neighbours.
  8823. @item 20
  8824. Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
  8825. @item 21
  8826. Clips pixels using the averages of opposite neighbour.
  8827. @item 22
  8828. Same as mode 21 but simpler and faster.
  8829. @item 23
  8830. Small edge and halo removal, but reputed useless.
  8831. @item 24
  8832. Similar as 23.
  8833. @end table
  8834. @section removelogo
  8835. Suppress a TV station logo, using an image file to determine which
  8836. pixels comprise the logo. It works by filling in the pixels that
  8837. comprise the logo with neighboring pixels.
  8838. The filter accepts the following options:
  8839. @table @option
  8840. @item filename, f
  8841. Set the filter bitmap file, which can be any image format supported by
  8842. libavformat. The width and height of the image file must match those of the
  8843. video stream being processed.
  8844. @end table
  8845. Pixels in the provided bitmap image with a value of zero are not
  8846. considered part of the logo, non-zero pixels are considered part of
  8847. the logo. If you use white (255) for the logo and black (0) for the
  8848. rest, you will be safe. For making the filter bitmap, it is
  8849. recommended to take a screen capture of a black frame with the logo
  8850. visible, and then using a threshold filter followed by the erode
  8851. filter once or twice.
  8852. If needed, little splotches can be fixed manually. Remember that if
  8853. logo pixels are not covered, the filter quality will be much
  8854. reduced. Marking too many pixels as part of the logo does not hurt as
  8855. much, but it will increase the amount of blurring needed to cover over
  8856. the image and will destroy more information than necessary, and extra
  8857. pixels will slow things down on a large logo.
  8858. @section repeatfields
  8859. This filter uses the repeat_field flag from the Video ES headers and hard repeats
  8860. fields based on its value.
  8861. @section reverse
  8862. Reverse a video clip.
  8863. Warning: This filter requires memory to buffer the entire clip, so trimming
  8864. is suggested.
  8865. @subsection Examples
  8866. @itemize
  8867. @item
  8868. Take the first 5 seconds of a clip, and reverse it.
  8869. @example
  8870. trim=end=5,reverse
  8871. @end example
  8872. @end itemize
  8873. @section rotate
  8874. Rotate video by an arbitrary angle expressed in radians.
  8875. The filter accepts the following options:
  8876. A description of the optional parameters follows.
  8877. @table @option
  8878. @item angle, a
  8879. Set an expression for the angle by which to rotate the input video
  8880. clockwise, expressed as a number of radians. A negative value will
  8881. result in a counter-clockwise rotation. By default it is set to "0".
  8882. This expression is evaluated for each frame.
  8883. @item out_w, ow
  8884. Set the output width expression, default value is "iw".
  8885. This expression is evaluated just once during configuration.
  8886. @item out_h, oh
  8887. Set the output height expression, default value is "ih".
  8888. This expression is evaluated just once during configuration.
  8889. @item bilinear
  8890. Enable bilinear interpolation if set to 1, a value of 0 disables
  8891. it. Default value is 1.
  8892. @item fillcolor, c
  8893. Set the color used to fill the output area not covered by the rotated
  8894. image. For the general syntax of this option, check the "Color" section in the
  8895. ffmpeg-utils manual. If the special value "none" is selected then no
  8896. background is printed (useful for example if the background is never shown).
  8897. Default value is "black".
  8898. @end table
  8899. The expressions for the angle and the output size can contain the
  8900. following constants and functions:
  8901. @table @option
  8902. @item n
  8903. sequential number of the input frame, starting from 0. It is always NAN
  8904. before the first frame is filtered.
  8905. @item t
  8906. time in seconds of the input frame, it is set to 0 when the filter is
  8907. configured. It is always NAN before the first frame is filtered.
  8908. @item hsub
  8909. @item vsub
  8910. horizontal and vertical chroma subsample values. For example for the
  8911. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  8912. @item in_w, iw
  8913. @item in_h, ih
  8914. the input video width and height
  8915. @item out_w, ow
  8916. @item out_h, oh
  8917. the output width and height, that is the size of the padded area as
  8918. specified by the @var{width} and @var{height} expressions
  8919. @item rotw(a)
  8920. @item roth(a)
  8921. the minimal width/height required for completely containing the input
  8922. video rotated by @var{a} radians.
  8923. These are only available when computing the @option{out_w} and
  8924. @option{out_h} expressions.
  8925. @end table
  8926. @subsection Examples
  8927. @itemize
  8928. @item
  8929. Rotate the input by PI/6 radians clockwise:
  8930. @example
  8931. rotate=PI/6
  8932. @end example
  8933. @item
  8934. Rotate the input by PI/6 radians counter-clockwise:
  8935. @example
  8936. rotate=-PI/6
  8937. @end example
  8938. @item
  8939. Rotate the input by 45 degrees clockwise:
  8940. @example
  8941. rotate=45*PI/180
  8942. @end example
  8943. @item
  8944. Apply a constant rotation with period T, starting from an angle of PI/3:
  8945. @example
  8946. rotate=PI/3+2*PI*t/T
  8947. @end example
  8948. @item
  8949. Make the input video rotation oscillating with a period of T
  8950. seconds and an amplitude of A radians:
  8951. @example
  8952. rotate=A*sin(2*PI/T*t)
  8953. @end example
  8954. @item
  8955. Rotate the video, output size is chosen so that the whole rotating
  8956. input video is always completely contained in the output:
  8957. @example
  8958. rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
  8959. @end example
  8960. @item
  8961. Rotate the video, reduce the output size so that no background is ever
  8962. shown:
  8963. @example
  8964. rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
  8965. @end example
  8966. @end itemize
  8967. @subsection Commands
  8968. The filter supports the following commands:
  8969. @table @option
  8970. @item a, angle
  8971. Set the angle expression.
  8972. The command accepts the same syntax of the corresponding option.
  8973. If the specified expression is not valid, it is kept at its current
  8974. value.
  8975. @end table
  8976. @section sab
  8977. Apply Shape Adaptive Blur.
  8978. The filter accepts the following options:
  8979. @table @option
  8980. @item luma_radius, lr
  8981. Set luma blur filter strength, must be a value in range 0.1-4.0, default
  8982. value is 1.0. A greater value will result in a more blurred image, and
  8983. in slower processing.
  8984. @item luma_pre_filter_radius, lpfr
  8985. Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
  8986. value is 1.0.
  8987. @item luma_strength, ls
  8988. Set luma maximum difference between pixels to still be considered, must
  8989. be a value in the 0.1-100.0 range, default value is 1.0.
  8990. @item chroma_radius, cr
  8991. Set chroma blur filter strength, must be a value in range -0.9-4.0. A
  8992. greater value will result in a more blurred image, and in slower
  8993. processing.
  8994. @item chroma_pre_filter_radius, cpfr
  8995. Set chroma pre-filter radius, must be a value in the -0.9-2.0 range.
  8996. @item chroma_strength, cs
  8997. Set chroma maximum difference between pixels to still be considered,
  8998. must be a value in the -0.9-100.0 range.
  8999. @end table
  9000. Each chroma option value, if not explicitly specified, is set to the
  9001. corresponding luma option value.
  9002. @anchor{scale}
  9003. @section scale
  9004. Scale (resize) the input video, using the libswscale library.
  9005. The scale filter forces the output display aspect ratio to be the same
  9006. of the input, by changing the output sample aspect ratio.
  9007. If the input image format is different from the format requested by
  9008. the next filter, the scale filter will convert the input to the
  9009. requested format.
  9010. @subsection Options
  9011. The filter accepts the following options, or any of the options
  9012. supported by the libswscale scaler.
  9013. See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
  9014. the complete list of scaler options.
  9015. @table @option
  9016. @item width, w
  9017. @item height, h
  9018. Set the output video dimension expression. Default value is the input
  9019. dimension.
  9020. If the value is 0, the input width is used for the output.
  9021. If one of the values is -1, the scale filter will use a value that
  9022. maintains the aspect ratio of the input image, calculated from the
  9023. other specified dimension. If both of them are -1, the input size is
  9024. used
  9025. If one of the values is -n with n > 1, the scale filter will also use a value
  9026. that maintains the aspect ratio of the input image, calculated from the other
  9027. specified dimension. After that it will, however, make sure that the calculated
  9028. dimension is divisible by n and adjust the value if necessary.
  9029. See below for the list of accepted constants for use in the dimension
  9030. expression.
  9031. @item eval
  9032. Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
  9033. @table @samp
  9034. @item init
  9035. Only evaluate expressions once during the filter initialization or when a command is processed.
  9036. @item frame
  9037. Evaluate expressions for each incoming frame.
  9038. @end table
  9039. Default value is @samp{init}.
  9040. @item interl
  9041. Set the interlacing mode. It accepts the following values:
  9042. @table @samp
  9043. @item 1
  9044. Force interlaced aware scaling.
  9045. @item 0
  9046. Do not apply interlaced scaling.
  9047. @item -1
  9048. Select interlaced aware scaling depending on whether the source frames
  9049. are flagged as interlaced or not.
  9050. @end table
  9051. Default value is @samp{0}.
  9052. @item flags
  9053. Set libswscale scaling flags. See
  9054. @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
  9055. complete list of values. If not explicitly specified the filter applies
  9056. the default flags.
  9057. @item param0, param1
  9058. Set libswscale input parameters for scaling algorithms that need them. See
  9059. @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
  9060. complete documentation. If not explicitly specified the filter applies
  9061. empty parameters.
  9062. @item size, s
  9063. Set the video size. For the syntax of this option, check the
  9064. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  9065. @item in_color_matrix
  9066. @item out_color_matrix
  9067. Set in/output YCbCr color space type.
  9068. This allows the autodetected value to be overridden as well as allows forcing
  9069. a specific value used for the output and encoder.
  9070. If not specified, the color space type depends on the pixel format.
  9071. Possible values:
  9072. @table @samp
  9073. @item auto
  9074. Choose automatically.
  9075. @item bt709
  9076. Format conforming to International Telecommunication Union (ITU)
  9077. Recommendation BT.709.
  9078. @item fcc
  9079. Set color space conforming to the United States Federal Communications
  9080. Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
  9081. @item bt601
  9082. Set color space conforming to:
  9083. @itemize
  9084. @item
  9085. ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
  9086. @item
  9087. ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
  9088. @item
  9089. Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
  9090. @end itemize
  9091. @item smpte240m
  9092. Set color space conforming to SMPTE ST 240:1999.
  9093. @end table
  9094. @item in_range
  9095. @item out_range
  9096. Set in/output YCbCr sample range.
  9097. This allows the autodetected value to be overridden as well as allows forcing
  9098. a specific value used for the output and encoder. If not specified, the
  9099. range depends on the pixel format. Possible values:
  9100. @table @samp
  9101. @item auto
  9102. Choose automatically.
  9103. @item jpeg/full/pc
  9104. Set full range (0-255 in case of 8-bit luma).
  9105. @item mpeg/tv
  9106. Set "MPEG" range (16-235 in case of 8-bit luma).
  9107. @end table
  9108. @item force_original_aspect_ratio
  9109. Enable decreasing or increasing output video width or height if necessary to
  9110. keep the original aspect ratio. Possible values:
  9111. @table @samp
  9112. @item disable
  9113. Scale the video as specified and disable this feature.
  9114. @item decrease
  9115. The output video dimensions will automatically be decreased if needed.
  9116. @item increase
  9117. The output video dimensions will automatically be increased if needed.
  9118. @end table
  9119. One useful instance of this option is that when you know a specific device's
  9120. maximum allowed resolution, you can use this to limit the output video to
  9121. that, while retaining the aspect ratio. For example, device A allows
  9122. 1280x720 playback, and your video is 1920x800. Using this option (set it to
  9123. decrease) and specifying 1280x720 to the command line makes the output
  9124. 1280x533.
  9125. Please note that this is a different thing than specifying -1 for @option{w}
  9126. or @option{h}, you still need to specify the output resolution for this option
  9127. to work.
  9128. @end table
  9129. The values of the @option{w} and @option{h} options are expressions
  9130. containing the following constants:
  9131. @table @var
  9132. @item in_w
  9133. @item in_h
  9134. The input width and height
  9135. @item iw
  9136. @item ih
  9137. These are the same as @var{in_w} and @var{in_h}.
  9138. @item out_w
  9139. @item out_h
  9140. The output (scaled) width and height
  9141. @item ow
  9142. @item oh
  9143. These are the same as @var{out_w} and @var{out_h}
  9144. @item a
  9145. The same as @var{iw} / @var{ih}
  9146. @item sar
  9147. input sample aspect ratio
  9148. @item dar
  9149. The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
  9150. @item hsub
  9151. @item vsub
  9152. horizontal and vertical input chroma subsample values. For example for the
  9153. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  9154. @item ohsub
  9155. @item ovsub
  9156. horizontal and vertical output chroma subsample values. For example for the
  9157. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  9158. @end table
  9159. @subsection Examples
  9160. @itemize
  9161. @item
  9162. Scale the input video to a size of 200x100
  9163. @example
  9164. scale=w=200:h=100
  9165. @end example
  9166. This is equivalent to:
  9167. @example
  9168. scale=200:100
  9169. @end example
  9170. or:
  9171. @example
  9172. scale=200x100
  9173. @end example
  9174. @item
  9175. Specify a size abbreviation for the output size:
  9176. @example
  9177. scale=qcif
  9178. @end example
  9179. which can also be written as:
  9180. @example
  9181. scale=size=qcif
  9182. @end example
  9183. @item
  9184. Scale the input to 2x:
  9185. @example
  9186. scale=w=2*iw:h=2*ih
  9187. @end example
  9188. @item
  9189. The above is the same as:
  9190. @example
  9191. scale=2*in_w:2*in_h
  9192. @end example
  9193. @item
  9194. Scale the input to 2x with forced interlaced scaling:
  9195. @example
  9196. scale=2*iw:2*ih:interl=1
  9197. @end example
  9198. @item
  9199. Scale the input to half size:
  9200. @example
  9201. scale=w=iw/2:h=ih/2
  9202. @end example
  9203. @item
  9204. Increase the width, and set the height to the same size:
  9205. @example
  9206. scale=3/2*iw:ow
  9207. @end example
  9208. @item
  9209. Seek Greek harmony:
  9210. @example
  9211. scale=iw:1/PHI*iw
  9212. scale=ih*PHI:ih
  9213. @end example
  9214. @item
  9215. Increase the height, and set the width to 3/2 of the height:
  9216. @example
  9217. scale=w=3/2*oh:h=3/5*ih
  9218. @end example
  9219. @item
  9220. Increase the size, making the size a multiple of the chroma
  9221. subsample values:
  9222. @example
  9223. scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
  9224. @end example
  9225. @item
  9226. Increase the width to a maximum of 500 pixels,
  9227. keeping the same aspect ratio as the input:
  9228. @example
  9229. scale=w='min(500\, iw*3/2):h=-1'
  9230. @end example
  9231. @end itemize
  9232. @subsection Commands
  9233. This filter supports the following commands:
  9234. @table @option
  9235. @item width, w
  9236. @item height, h
  9237. Set the output video dimension expression.
  9238. The command accepts the same syntax of the corresponding option.
  9239. If the specified expression is not valid, it is kept at its current
  9240. value.
  9241. @end table
  9242. @section scale_npp
  9243. Use the NVIDIA Performance Primitives (libnpp) to perform scaling and/or pixel
  9244. format conversion on CUDA video frames. Setting the output width and height
  9245. works in the same way as for the @var{scale} filter.
  9246. The following additional options are accepted:
  9247. @table @option
  9248. @item format
  9249. The pixel format of the output CUDA frames. If set to the string "same" (the
  9250. default), the input format will be kept. Note that automatic format negotiation
  9251. and conversion is not yet supported for hardware frames
  9252. @item interp_algo
  9253. The interpolation algorithm used for resizing. One of the following:
  9254. @table @option
  9255. @item nn
  9256. Nearest neighbour.
  9257. @item linear
  9258. @item cubic
  9259. @item cubic2p_bspline
  9260. 2-parameter cubic (B=1, C=0)
  9261. @item cubic2p_catmullrom
  9262. 2-parameter cubic (B=0, C=1/2)
  9263. @item cubic2p_b05c03
  9264. 2-parameter cubic (B=1/2, C=3/10)
  9265. @item super
  9266. Supersampling
  9267. @item lanczos
  9268. @end table
  9269. @end table
  9270. @section scale2ref
  9271. Scale (resize) the input video, based on a reference video.
  9272. See the scale filter for available options, scale2ref supports the same but
  9273. uses the reference video instead of the main input as basis.
  9274. @subsection Examples
  9275. @itemize
  9276. @item
  9277. Scale a subtitle stream to match the main video in size before overlaying
  9278. @example
  9279. 'scale2ref[b][a];[a][b]overlay'
  9280. @end example
  9281. @end itemize
  9282. @anchor{selectivecolor}
  9283. @section selectivecolor
  9284. Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
  9285. as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
  9286. by the "purity" of the color (that is, how saturated it already is).
  9287. This filter is similar to the Adobe Photoshop Selective Color tool.
  9288. The filter accepts the following options:
  9289. @table @option
  9290. @item correction_method
  9291. Select color correction method.
  9292. Available values are:
  9293. @table @samp
  9294. @item absolute
  9295. Specified adjustments are applied "as-is" (added/subtracted to original pixel
  9296. component value).
  9297. @item relative
  9298. Specified adjustments are relative to the original component value.
  9299. @end table
  9300. Default is @code{absolute}.
  9301. @item reds
  9302. Adjustments for red pixels (pixels where the red component is the maximum)
  9303. @item yellows
  9304. Adjustments for yellow pixels (pixels where the blue component is the minimum)
  9305. @item greens
  9306. Adjustments for green pixels (pixels where the green component is the maximum)
  9307. @item cyans
  9308. Adjustments for cyan pixels (pixels where the red component is the minimum)
  9309. @item blues
  9310. Adjustments for blue pixels (pixels where the blue component is the maximum)
  9311. @item magentas
  9312. Adjustments for magenta pixels (pixels where the green component is the minimum)
  9313. @item whites
  9314. Adjustments for white pixels (pixels where all components are greater than 128)
  9315. @item neutrals
  9316. Adjustments for all pixels except pure black and pure white
  9317. @item blacks
  9318. Adjustments for black pixels (pixels where all components are lesser than 128)
  9319. @item psfile
  9320. Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
  9321. @end table
  9322. All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
  9323. 4 space separated floating point adjustment values in the [-1,1] range,
  9324. respectively to adjust the amount of cyan, magenta, yellow and black for the
  9325. pixels of its range.
  9326. @subsection Examples
  9327. @itemize
  9328. @item
  9329. Increase cyan by 50% and reduce yellow by 33% in every green areas, and
  9330. increase magenta by 27% in blue areas:
  9331. @example
  9332. selectivecolor=greens=.5 0 -.33 0:blues=0 .27
  9333. @end example
  9334. @item
  9335. Use a Photoshop selective color preset:
  9336. @example
  9337. selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
  9338. @end example
  9339. @end itemize
  9340. @anchor{separatefields}
  9341. @section separatefields
  9342. The @code{separatefields} takes a frame-based video input and splits
  9343. each frame into its components fields, producing a new half height clip
  9344. with twice the frame rate and twice the frame count.
  9345. This filter use field-dominance information in frame to decide which
  9346. of each pair of fields to place first in the output.
  9347. If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
  9348. @section setdar, setsar
  9349. The @code{setdar} filter sets the Display Aspect Ratio for the filter
  9350. output video.
  9351. This is done by changing the specified Sample (aka Pixel) Aspect
  9352. Ratio, according to the following equation:
  9353. @example
  9354. @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
  9355. @end example
  9356. Keep in mind that the @code{setdar} filter does not modify the pixel
  9357. dimensions of the video frame. Also, the display aspect ratio set by
  9358. this filter may be changed by later filters in the filterchain,
  9359. e.g. in case of scaling or if another "setdar" or a "setsar" filter is
  9360. applied.
  9361. The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
  9362. the filter output video.
  9363. Note that as a consequence of the application of this filter, the
  9364. output display aspect ratio will change according to the equation
  9365. above.
  9366. Keep in mind that the sample aspect ratio set by the @code{setsar}
  9367. filter may be changed by later filters in the filterchain, e.g. if
  9368. another "setsar" or a "setdar" filter is applied.
  9369. It accepts the following parameters:
  9370. @table @option
  9371. @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
  9372. Set the aspect ratio used by the filter.
  9373. The parameter can be a floating point number string, an expression, or
  9374. a string of the form @var{num}:@var{den}, where @var{num} and
  9375. @var{den} are the numerator and denominator of the aspect ratio. If
  9376. the parameter is not specified, it is assumed the value "0".
  9377. In case the form "@var{num}:@var{den}" is used, the @code{:} character
  9378. should be escaped.
  9379. @item max
  9380. Set the maximum integer value to use for expressing numerator and
  9381. denominator when reducing the expressed aspect ratio to a rational.
  9382. Default value is @code{100}.
  9383. @end table
  9384. The parameter @var{sar} is an expression containing
  9385. the following constants:
  9386. @table @option
  9387. @item E, PI, PHI
  9388. These are approximated values for the mathematical constants e
  9389. (Euler's number), pi (Greek pi), and phi (the golden ratio).
  9390. @item w, h
  9391. The input width and height.
  9392. @item a
  9393. These are the same as @var{w} / @var{h}.
  9394. @item sar
  9395. The input sample aspect ratio.
  9396. @item dar
  9397. The input display aspect ratio. It is the same as
  9398. (@var{w} / @var{h}) * @var{sar}.
  9399. @item hsub, vsub
  9400. Horizontal and vertical chroma subsample values. For example, for the
  9401. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  9402. @end table
  9403. @subsection Examples
  9404. @itemize
  9405. @item
  9406. To change the display aspect ratio to 16:9, specify one of the following:
  9407. @example
  9408. setdar=dar=1.77777
  9409. setdar=dar=16/9
  9410. @end example
  9411. @item
  9412. To change the sample aspect ratio to 10:11, specify:
  9413. @example
  9414. setsar=sar=10/11
  9415. @end example
  9416. @item
  9417. To set a display aspect ratio of 16:9, and specify a maximum integer value of
  9418. 1000 in the aspect ratio reduction, use the command:
  9419. @example
  9420. setdar=ratio=16/9:max=1000
  9421. @end example
  9422. @end itemize
  9423. @anchor{setfield}
  9424. @section setfield
  9425. Force field for the output video frame.
  9426. The @code{setfield} filter marks the interlace type field for the
  9427. output frames. It does not change the input frame, but only sets the
  9428. corresponding property, which affects how the frame is treated by
  9429. following filters (e.g. @code{fieldorder} or @code{yadif}).
  9430. The filter accepts the following options:
  9431. @table @option
  9432. @item mode
  9433. Available values are:
  9434. @table @samp
  9435. @item auto
  9436. Keep the same field property.
  9437. @item bff
  9438. Mark the frame as bottom-field-first.
  9439. @item tff
  9440. Mark the frame as top-field-first.
  9441. @item prog
  9442. Mark the frame as progressive.
  9443. @end table
  9444. @end table
  9445. @section showinfo
  9446. Show a line containing various information for each input video frame.
  9447. The input video is not modified.
  9448. The shown line contains a sequence of key/value pairs of the form
  9449. @var{key}:@var{value}.
  9450. The following values are shown in the output:
  9451. @table @option
  9452. @item n
  9453. The (sequential) number of the input frame, starting from 0.
  9454. @item pts
  9455. The Presentation TimeStamp of the input frame, expressed as a number of
  9456. time base units. The time base unit depends on the filter input pad.
  9457. @item pts_time
  9458. The Presentation TimeStamp of the input frame, expressed as a number of
  9459. seconds.
  9460. @item pos
  9461. The position of the frame in the input stream, or -1 if this information is
  9462. unavailable and/or meaningless (for example in case of synthetic video).
  9463. @item fmt
  9464. The pixel format name.
  9465. @item sar
  9466. The sample aspect ratio of the input frame, expressed in the form
  9467. @var{num}/@var{den}.
  9468. @item s
  9469. The size of the input frame. For the syntax of this option, check the
  9470. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  9471. @item i
  9472. The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
  9473. for bottom field first).
  9474. @item iskey
  9475. This is 1 if the frame is a key frame, 0 otherwise.
  9476. @item type
  9477. The picture type of the input frame ("I" for an I-frame, "P" for a
  9478. P-frame, "B" for a B-frame, or "?" for an unknown type).
  9479. Also refer to the documentation of the @code{AVPictureType} enum and of
  9480. the @code{av_get_picture_type_char} function defined in
  9481. @file{libavutil/avutil.h}.
  9482. @item checksum
  9483. The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
  9484. @item plane_checksum
  9485. The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
  9486. expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
  9487. @end table
  9488. @section showpalette
  9489. Displays the 256 colors palette of each frame. This filter is only relevant for
  9490. @var{pal8} pixel format frames.
  9491. It accepts the following option:
  9492. @table @option
  9493. @item s
  9494. Set the size of the box used to represent one palette color entry. Default is
  9495. @code{30} (for a @code{30x30} pixel box).
  9496. @end table
  9497. @section shuffleframes
  9498. Reorder and/or duplicate and/or drop video frames.
  9499. It accepts the following parameters:
  9500. @table @option
  9501. @item mapping
  9502. Set the destination indexes of input frames.
  9503. This is space or '|' separated list of indexes that maps input frames to output
  9504. frames. Number of indexes also sets maximal value that each index may have.
  9505. '-1' index have special meaning and that is to drop frame.
  9506. @end table
  9507. The first frame has the index 0. The default is to keep the input unchanged.
  9508. @subsection Examples
  9509. @itemize
  9510. @item
  9511. Swap second and third frame of every three frames of the input:
  9512. @example
  9513. ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
  9514. @end example
  9515. @item
  9516. Swap 10th and 1st frame of every ten frames of the input:
  9517. @example
  9518. ffmpeg -i INPUT -vf "shuffleframes=9 1 2 3 4 5 6 7 8 0" OUTPUT
  9519. @end example
  9520. @end itemize
  9521. @section shuffleplanes
  9522. Reorder and/or duplicate video planes.
  9523. It accepts the following parameters:
  9524. @table @option
  9525. @item map0
  9526. The index of the input plane to be used as the first output plane.
  9527. @item map1
  9528. The index of the input plane to be used as the second output plane.
  9529. @item map2
  9530. The index of the input plane to be used as the third output plane.
  9531. @item map3
  9532. The index of the input plane to be used as the fourth output plane.
  9533. @end table
  9534. The first plane has the index 0. The default is to keep the input unchanged.
  9535. @subsection Examples
  9536. @itemize
  9537. @item
  9538. Swap the second and third planes of the input:
  9539. @example
  9540. ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
  9541. @end example
  9542. @end itemize
  9543. @anchor{signalstats}
  9544. @section signalstats
  9545. Evaluate various visual metrics that assist in determining issues associated
  9546. with the digitization of analog video media.
  9547. By default the filter will log these metadata values:
  9548. @table @option
  9549. @item YMIN
  9550. Display the minimal Y value contained within the input frame. Expressed in
  9551. range of [0-255].
  9552. @item YLOW
  9553. Display the Y value at the 10% percentile within the input frame. Expressed in
  9554. range of [0-255].
  9555. @item YAVG
  9556. Display the average Y value within the input frame. Expressed in range of
  9557. [0-255].
  9558. @item YHIGH
  9559. Display the Y value at the 90% percentile within the input frame. Expressed in
  9560. range of [0-255].
  9561. @item YMAX
  9562. Display the maximum Y value contained within the input frame. Expressed in
  9563. range of [0-255].
  9564. @item UMIN
  9565. Display the minimal U value contained within the input frame. Expressed in
  9566. range of [0-255].
  9567. @item ULOW
  9568. Display the U value at the 10% percentile within the input frame. Expressed in
  9569. range of [0-255].
  9570. @item UAVG
  9571. Display the average U value within the input frame. Expressed in range of
  9572. [0-255].
  9573. @item UHIGH
  9574. Display the U value at the 90% percentile within the input frame. Expressed in
  9575. range of [0-255].
  9576. @item UMAX
  9577. Display the maximum U value contained within the input frame. Expressed in
  9578. range of [0-255].
  9579. @item VMIN
  9580. Display the minimal V value contained within the input frame. Expressed in
  9581. range of [0-255].
  9582. @item VLOW
  9583. Display the V value at the 10% percentile within the input frame. Expressed in
  9584. range of [0-255].
  9585. @item VAVG
  9586. Display the average V value within the input frame. Expressed in range of
  9587. [0-255].
  9588. @item VHIGH
  9589. Display the V value at the 90% percentile within the input frame. Expressed in
  9590. range of [0-255].
  9591. @item VMAX
  9592. Display the maximum V value contained within the input frame. Expressed in
  9593. range of [0-255].
  9594. @item SATMIN
  9595. Display the minimal saturation value contained within the input frame.
  9596. Expressed in range of [0-~181.02].
  9597. @item SATLOW
  9598. Display the saturation value at the 10% percentile within the input frame.
  9599. Expressed in range of [0-~181.02].
  9600. @item SATAVG
  9601. Display the average saturation value within the input frame. Expressed in range
  9602. of [0-~181.02].
  9603. @item SATHIGH
  9604. Display the saturation value at the 90% percentile within the input frame.
  9605. Expressed in range of [0-~181.02].
  9606. @item SATMAX
  9607. Display the maximum saturation value contained within the input frame.
  9608. Expressed in range of [0-~181.02].
  9609. @item HUEMED
  9610. Display the median value for hue within the input frame. Expressed in range of
  9611. [0-360].
  9612. @item HUEAVG
  9613. Display the average value for hue within the input frame. Expressed in range of
  9614. [0-360].
  9615. @item YDIF
  9616. Display the average of sample value difference between all values of the Y
  9617. plane in the current frame and corresponding values of the previous input frame.
  9618. Expressed in range of [0-255].
  9619. @item UDIF
  9620. Display the average of sample value difference between all values of the U
  9621. plane in the current frame and corresponding values of the previous input frame.
  9622. Expressed in range of [0-255].
  9623. @item VDIF
  9624. Display the average of sample value difference between all values of the V
  9625. plane in the current frame and corresponding values of the previous input frame.
  9626. Expressed in range of [0-255].
  9627. @item YBITDEPTH
  9628. Display bit depth of Y plane in current frame.
  9629. Expressed in range of [0-16].
  9630. @item UBITDEPTH
  9631. Display bit depth of U plane in current frame.
  9632. Expressed in range of [0-16].
  9633. @item VBITDEPTH
  9634. Display bit depth of V plane in current frame.
  9635. Expressed in range of [0-16].
  9636. @end table
  9637. The filter accepts the following options:
  9638. @table @option
  9639. @item stat
  9640. @item out
  9641. @option{stat} specify an additional form of image analysis.
  9642. @option{out} output video with the specified type of pixel highlighted.
  9643. Both options accept the following values:
  9644. @table @samp
  9645. @item tout
  9646. Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
  9647. unlike the neighboring pixels of the same field. Examples of temporal outliers
  9648. include the results of video dropouts, head clogs, or tape tracking issues.
  9649. @item vrep
  9650. Identify @var{vertical line repetition}. Vertical line repetition includes
  9651. similar rows of pixels within a frame. In born-digital video vertical line
  9652. repetition is common, but this pattern is uncommon in video digitized from an
  9653. analog source. When it occurs in video that results from the digitization of an
  9654. analog source it can indicate concealment from a dropout compensator.
  9655. @item brng
  9656. Identify pixels that fall outside of legal broadcast range.
  9657. @end table
  9658. @item color, c
  9659. Set the highlight color for the @option{out} option. The default color is
  9660. yellow.
  9661. @end table
  9662. @subsection Examples
  9663. @itemize
  9664. @item
  9665. Output data of various video metrics:
  9666. @example
  9667. ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
  9668. @end example
  9669. @item
  9670. Output specific data about the minimum and maximum values of the Y plane per frame:
  9671. @example
  9672. ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
  9673. @end example
  9674. @item
  9675. Playback video while highlighting pixels that are outside of broadcast range in red.
  9676. @example
  9677. ffplay example.mov -vf signalstats="out=brng:color=red"
  9678. @end example
  9679. @item
  9680. Playback video with signalstats metadata drawn over the frame.
  9681. @example
  9682. ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
  9683. @end example
  9684. The contents of signalstat_drawtext.txt used in the command are:
  9685. @example
  9686. time %@{pts:hms@}
  9687. Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
  9688. U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
  9689. V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
  9690. saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
  9691. @end example
  9692. @end itemize
  9693. @anchor{smartblur}
  9694. @section smartblur
  9695. Blur the input video without impacting the outlines.
  9696. It accepts the following options:
  9697. @table @option
  9698. @item luma_radius, lr
  9699. Set the luma radius. The option value must be a float number in
  9700. the range [0.1,5.0] that specifies the variance of the gaussian filter
  9701. used to blur the image (slower if larger). Default value is 1.0.
  9702. @item luma_strength, ls
  9703. Set the luma strength. The option value must be a float number
  9704. in the range [-1.0,1.0] that configures the blurring. A value included
  9705. in [0.0,1.0] will blur the image whereas a value included in
  9706. [-1.0,0.0] will sharpen the image. Default value is 1.0.
  9707. @item luma_threshold, lt
  9708. Set the luma threshold used as a coefficient to determine
  9709. whether a pixel should be blurred or not. The option value must be an
  9710. integer in the range [-30,30]. A value of 0 will filter all the image,
  9711. a value included in [0,30] will filter flat areas and a value included
  9712. in [-30,0] will filter edges. Default value is 0.
  9713. @item chroma_radius, cr
  9714. Set the chroma radius. The option value must be a float number in
  9715. the range [0.1,5.0] that specifies the variance of the gaussian filter
  9716. used to blur the image (slower if larger). Default value is @option{luma_radius}.
  9717. @item chroma_strength, cs
  9718. Set the chroma strength. The option value must be a float number
  9719. in the range [-1.0,1.0] that configures the blurring. A value included
  9720. in [0.0,1.0] will blur the image whereas a value included in
  9721. [-1.0,0.0] will sharpen the image. Default value is @option{luma_strength}.
  9722. @item chroma_threshold, ct
  9723. Set the chroma threshold used as a coefficient to determine
  9724. whether a pixel should be blurred or not. The option value must be an
  9725. integer in the range [-30,30]. A value of 0 will filter all the image,
  9726. a value included in [0,30] will filter flat areas and a value included
  9727. in [-30,0] will filter edges. Default value is @option{luma_threshold}.
  9728. @end table
  9729. If a chroma option is not explicitly set, the corresponding luma value
  9730. is set.
  9731. @section ssim
  9732. Obtain the SSIM (Structural SImilarity Metric) between two input videos.
  9733. This filter takes in input two input videos, the first input is
  9734. considered the "main" source and is passed unchanged to the
  9735. output. The second input is used as a "reference" video for computing
  9736. the SSIM.
  9737. Both video inputs must have the same resolution and pixel format for
  9738. this filter to work correctly. Also it assumes that both inputs
  9739. have the same number of frames, which are compared one by one.
  9740. The filter stores the calculated SSIM of each frame.
  9741. The description of the accepted parameters follows.
  9742. @table @option
  9743. @item stats_file, f
  9744. If specified the filter will use the named file to save the SSIM of
  9745. each individual frame. When filename equals "-" the data is sent to
  9746. standard output.
  9747. @end table
  9748. The file printed if @var{stats_file} is selected, contains a sequence of
  9749. key/value pairs of the form @var{key}:@var{value} for each compared
  9750. couple of frames.
  9751. A description of each shown parameter follows:
  9752. @table @option
  9753. @item n
  9754. sequential number of the input frame, starting from 1
  9755. @item Y, U, V, R, G, B
  9756. SSIM of the compared frames for the component specified by the suffix.
  9757. @item All
  9758. SSIM of the compared frames for the whole frame.
  9759. @item dB
  9760. Same as above but in dB representation.
  9761. @end table
  9762. For example:
  9763. @example
  9764. movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
  9765. [main][ref] ssim="stats_file=stats.log" [out]
  9766. @end example
  9767. On this example the input file being processed is compared with the
  9768. reference file @file{ref_movie.mpg}. The SSIM of each individual frame
  9769. is stored in @file{stats.log}.
  9770. Another example with both psnr and ssim at same time:
  9771. @example
  9772. ffmpeg -i main.mpg -i ref.mpg -lavfi "ssim;[0:v][1:v]psnr" -f null -
  9773. @end example
  9774. @section stereo3d
  9775. Convert between different stereoscopic image formats.
  9776. The filters accept the following options:
  9777. @table @option
  9778. @item in
  9779. Set stereoscopic image format of input.
  9780. Available values for input image formats are:
  9781. @table @samp
  9782. @item sbsl
  9783. side by side parallel (left eye left, right eye right)
  9784. @item sbsr
  9785. side by side crosseye (right eye left, left eye right)
  9786. @item sbs2l
  9787. side by side parallel with half width resolution
  9788. (left eye left, right eye right)
  9789. @item sbs2r
  9790. side by side crosseye with half width resolution
  9791. (right eye left, left eye right)
  9792. @item abl
  9793. above-below (left eye above, right eye below)
  9794. @item abr
  9795. above-below (right eye above, left eye below)
  9796. @item ab2l
  9797. above-below with half height resolution
  9798. (left eye above, right eye below)
  9799. @item ab2r
  9800. above-below with half height resolution
  9801. (right eye above, left eye below)
  9802. @item al
  9803. alternating frames (left eye first, right eye second)
  9804. @item ar
  9805. alternating frames (right eye first, left eye second)
  9806. @item irl
  9807. interleaved rows (left eye has top row, right eye starts on next row)
  9808. @item irr
  9809. interleaved rows (right eye has top row, left eye starts on next row)
  9810. @item icl
  9811. interleaved columns, left eye first
  9812. @item icr
  9813. interleaved columns, right eye first
  9814. Default value is @samp{sbsl}.
  9815. @end table
  9816. @item out
  9817. Set stereoscopic image format of output.
  9818. @table @samp
  9819. @item sbsl
  9820. side by side parallel (left eye left, right eye right)
  9821. @item sbsr
  9822. side by side crosseye (right eye left, left eye right)
  9823. @item sbs2l
  9824. side by side parallel with half width resolution
  9825. (left eye left, right eye right)
  9826. @item sbs2r
  9827. side by side crosseye with half width resolution
  9828. (right eye left, left eye right)
  9829. @item abl
  9830. above-below (left eye above, right eye below)
  9831. @item abr
  9832. above-below (right eye above, left eye below)
  9833. @item ab2l
  9834. above-below with half height resolution
  9835. (left eye above, right eye below)
  9836. @item ab2r
  9837. above-below with half height resolution
  9838. (right eye above, left eye below)
  9839. @item al
  9840. alternating frames (left eye first, right eye second)
  9841. @item ar
  9842. alternating frames (right eye first, left eye second)
  9843. @item irl
  9844. interleaved rows (left eye has top row, right eye starts on next row)
  9845. @item irr
  9846. interleaved rows (right eye has top row, left eye starts on next row)
  9847. @item arbg
  9848. anaglyph red/blue gray
  9849. (red filter on left eye, blue filter on right eye)
  9850. @item argg
  9851. anaglyph red/green gray
  9852. (red filter on left eye, green filter on right eye)
  9853. @item arcg
  9854. anaglyph red/cyan gray
  9855. (red filter on left eye, cyan filter on right eye)
  9856. @item arch
  9857. anaglyph red/cyan half colored
  9858. (red filter on left eye, cyan filter on right eye)
  9859. @item arcc
  9860. anaglyph red/cyan color
  9861. (red filter on left eye, cyan filter on right eye)
  9862. @item arcd
  9863. anaglyph red/cyan color optimized with the least squares projection of dubois
  9864. (red filter on left eye, cyan filter on right eye)
  9865. @item agmg
  9866. anaglyph green/magenta gray
  9867. (green filter on left eye, magenta filter on right eye)
  9868. @item agmh
  9869. anaglyph green/magenta half colored
  9870. (green filter on left eye, magenta filter on right eye)
  9871. @item agmc
  9872. anaglyph green/magenta colored
  9873. (green filter on left eye, magenta filter on right eye)
  9874. @item agmd
  9875. anaglyph green/magenta color optimized with the least squares projection of dubois
  9876. (green filter on left eye, magenta filter on right eye)
  9877. @item aybg
  9878. anaglyph yellow/blue gray
  9879. (yellow filter on left eye, blue filter on right eye)
  9880. @item aybh
  9881. anaglyph yellow/blue half colored
  9882. (yellow filter on left eye, blue filter on right eye)
  9883. @item aybc
  9884. anaglyph yellow/blue colored
  9885. (yellow filter on left eye, blue filter on right eye)
  9886. @item aybd
  9887. anaglyph yellow/blue color optimized with the least squares projection of dubois
  9888. (yellow filter on left eye, blue filter on right eye)
  9889. @item ml
  9890. mono output (left eye only)
  9891. @item mr
  9892. mono output (right eye only)
  9893. @item chl
  9894. checkerboard, left eye first
  9895. @item chr
  9896. checkerboard, right eye first
  9897. @item icl
  9898. interleaved columns, left eye first
  9899. @item icr
  9900. interleaved columns, right eye first
  9901. @item hdmi
  9902. HDMI frame pack
  9903. @end table
  9904. Default value is @samp{arcd}.
  9905. @end table
  9906. @subsection Examples
  9907. @itemize
  9908. @item
  9909. Convert input video from side by side parallel to anaglyph yellow/blue dubois:
  9910. @example
  9911. stereo3d=sbsl:aybd
  9912. @end example
  9913. @item
  9914. Convert input video from above below (left eye above, right eye below) to side by side crosseye.
  9915. @example
  9916. stereo3d=abl:sbsr
  9917. @end example
  9918. @end itemize
  9919. @section streamselect, astreamselect
  9920. Select video or audio streams.
  9921. The filter accepts the following options:
  9922. @table @option
  9923. @item inputs
  9924. Set number of inputs. Default is 2.
  9925. @item map
  9926. Set input indexes to remap to outputs.
  9927. @end table
  9928. @subsection Commands
  9929. The @code{streamselect} and @code{astreamselect} filter supports the following
  9930. commands:
  9931. @table @option
  9932. @item map
  9933. Set input indexes to remap to outputs.
  9934. @end table
  9935. @subsection Examples
  9936. @itemize
  9937. @item
  9938. Select first 5 seconds 1st stream and rest of time 2nd stream:
  9939. @example
  9940. sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
  9941. @end example
  9942. @item
  9943. Same as above, but for audio:
  9944. @example
  9945. asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
  9946. @end example
  9947. @end itemize
  9948. @section sobel
  9949. Apply sobel operator to input video stream.
  9950. The filter accepts the following option:
  9951. @table @option
  9952. @item planes
  9953. Set which planes will be processed, unprocessed planes will be copied.
  9954. By default value 0xf, all planes will be processed.
  9955. @item scale
  9956. Set value which will be multiplied with filtered result.
  9957. @item delta
  9958. Set value which will be added to filtered result.
  9959. @end table
  9960. @anchor{spp}
  9961. @section spp
  9962. Apply a simple postprocessing filter that compresses and decompresses the image
  9963. at several (or - in the case of @option{quality} level @code{6} - all) shifts
  9964. and average the results.
  9965. The filter accepts the following options:
  9966. @table @option
  9967. @item quality
  9968. Set quality. This option defines the number of levels for averaging. It accepts
  9969. an integer in the range 0-6. If set to @code{0}, the filter will have no
  9970. effect. A value of @code{6} means the higher quality. For each increment of
  9971. that value the speed drops by a factor of approximately 2. Default value is
  9972. @code{3}.
  9973. @item qp
  9974. Force a constant quantization parameter. If not set, the filter will use the QP
  9975. from the video stream (if available).
  9976. @item mode
  9977. Set thresholding mode. Available modes are:
  9978. @table @samp
  9979. @item hard
  9980. Set hard thresholding (default).
  9981. @item soft
  9982. Set soft thresholding (better de-ringing effect, but likely blurrier).
  9983. @end table
  9984. @item use_bframe_qp
  9985. Enable the use of the QP from the B-Frames if set to @code{1}. Using this
  9986. option may cause flicker since the B-Frames have often larger QP. Default is
  9987. @code{0} (not enabled).
  9988. @end table
  9989. @anchor{subtitles}
  9990. @section subtitles
  9991. Draw subtitles on top of input video using the libass library.
  9992. To enable compilation of this filter you need to configure FFmpeg with
  9993. @code{--enable-libass}. This filter also requires a build with libavcodec and
  9994. libavformat to convert the passed subtitles file to ASS (Advanced Substation
  9995. Alpha) subtitles format.
  9996. The filter accepts the following options:
  9997. @table @option
  9998. @item filename, f
  9999. Set the filename of the subtitle file to read. It must be specified.
  10000. @item original_size
  10001. Specify the size of the original video, the video for which the ASS file
  10002. was composed. For the syntax of this option, check the
  10003. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  10004. Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
  10005. correctly scale the fonts if the aspect ratio has been changed.
  10006. @item fontsdir
  10007. Set a directory path containing fonts that can be used by the filter.
  10008. These fonts will be used in addition to whatever the font provider uses.
  10009. @item charenc
  10010. Set subtitles input character encoding. @code{subtitles} filter only. Only
  10011. useful if not UTF-8.
  10012. @item stream_index, si
  10013. Set subtitles stream index. @code{subtitles} filter only.
  10014. @item force_style
  10015. Override default style or script info parameters of the subtitles. It accepts a
  10016. string containing ASS style format @code{KEY=VALUE} couples separated by ",".
  10017. @end table
  10018. If the first key is not specified, it is assumed that the first value
  10019. specifies the @option{filename}.
  10020. For example, to render the file @file{sub.srt} on top of the input
  10021. video, use the command:
  10022. @example
  10023. subtitles=sub.srt
  10024. @end example
  10025. which is equivalent to:
  10026. @example
  10027. subtitles=filename=sub.srt
  10028. @end example
  10029. To render the default subtitles stream from file @file{video.mkv}, use:
  10030. @example
  10031. subtitles=video.mkv
  10032. @end example
  10033. To render the second subtitles stream from that file, use:
  10034. @example
  10035. subtitles=video.mkv:si=1
  10036. @end example
  10037. To make the subtitles stream from @file{sub.srt} appear in transparent green
  10038. @code{DejaVu Serif}, use:
  10039. @example
  10040. subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HAA00FF00'
  10041. @end example
  10042. @section super2xsai
  10043. Scale the input by 2x and smooth using the Super2xSaI (Scale and
  10044. Interpolate) pixel art scaling algorithm.
  10045. Useful for enlarging pixel art images without reducing sharpness.
  10046. @section swaprect
  10047. Swap two rectangular objects in video.
  10048. This filter accepts the following options:
  10049. @table @option
  10050. @item w
  10051. Set object width.
  10052. @item h
  10053. Set object height.
  10054. @item x1
  10055. Set 1st rect x coordinate.
  10056. @item y1
  10057. Set 1st rect y coordinate.
  10058. @item x2
  10059. Set 2nd rect x coordinate.
  10060. @item y2
  10061. Set 2nd rect y coordinate.
  10062. All expressions are evaluated once for each frame.
  10063. @end table
  10064. The all options are expressions containing the following constants:
  10065. @table @option
  10066. @item w
  10067. @item h
  10068. The input width and height.
  10069. @item a
  10070. same as @var{w} / @var{h}
  10071. @item sar
  10072. input sample aspect ratio
  10073. @item dar
  10074. input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
  10075. @item n
  10076. The number of the input frame, starting from 0.
  10077. @item t
  10078. The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
  10079. @item pos
  10080. the position in the file of the input frame, NAN if unknown
  10081. @end table
  10082. @section swapuv
  10083. Swap U & V plane.
  10084. @section telecine
  10085. Apply telecine process to the video.
  10086. This filter accepts the following options:
  10087. @table @option
  10088. @item first_field
  10089. @table @samp
  10090. @item top, t
  10091. top field first
  10092. @item bottom, b
  10093. bottom field first
  10094. The default value is @code{top}.
  10095. @end table
  10096. @item pattern
  10097. A string of numbers representing the pulldown pattern you wish to apply.
  10098. The default value is @code{23}.
  10099. @end table
  10100. @example
  10101. Some typical patterns:
  10102. NTSC output (30i):
  10103. 27.5p: 32222
  10104. 24p: 23 (classic)
  10105. 24p: 2332 (preferred)
  10106. 20p: 33
  10107. 18p: 334
  10108. 16p: 3444
  10109. PAL output (25i):
  10110. 27.5p: 12222
  10111. 24p: 222222222223 ("Euro pulldown")
  10112. 16.67p: 33
  10113. 16p: 33333334
  10114. @end example
  10115. @section threshold
  10116. Apply threshold effect to video stream.
  10117. This filter needs four video streams to perform thresholding.
  10118. First stream is stream we are filtering.
  10119. Second stream is holding threshold values, third stream is holding min values,
  10120. and last, fourth stream is holding max values.
  10121. The filter accepts the following option:
  10122. @table @option
  10123. @item planes
  10124. Set which planes will be processed, unprocessed planes will be copied.
  10125. By default value 0xf, all planes will be processed.
  10126. @end table
  10127. For example if first stream pixel's component value is less then threshold value
  10128. of pixel component from 2nd threshold stream, third stream value will picked,
  10129. otherwise fourth stream pixel component value will be picked.
  10130. Using color source filter one can perform various types of thresholding:
  10131. @subsection Examples
  10132. @itemize
  10133. @item
  10134. Binary threshold, using gray color as threshold:
  10135. @example
  10136. ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=black -f lavfi -i color=white -lavfi threshold output.avi
  10137. @end example
  10138. @item
  10139. Inverted binary threshold, using gray color as threshold:
  10140. @example
  10141. ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -f lavfi -i color=black -lavfi threshold output.avi
  10142. @end example
  10143. @item
  10144. Truncate binary threshold, using gray color as threshold:
  10145. @example
  10146. ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=gray -lavfi threshold output.avi
  10147. @end example
  10148. @item
  10149. Threshold to zero, using gray color as threshold:
  10150. @example
  10151. ffmpeg -i 320x240.avi -f lavfi -i color=gray -f lavfi -i color=white -i 320x240.avi -lavfi threshold output.avi
  10152. @end example
  10153. @item
  10154. Inverted threshold to zero, using gray color as threshold:
  10155. @example
  10156. ffmpeg -i 320x240.avi -f lavfi -i color=gray -i 320x240.avi -f lavfi -i color=white -lavfi threshold output.avi
  10157. @end example
  10158. @end itemize
  10159. @section thumbnail
  10160. Select the most representative frame in a given sequence of consecutive frames.
  10161. The filter accepts the following options:
  10162. @table @option
  10163. @item n
  10164. Set the frames batch size to analyze; in a set of @var{n} frames, the filter
  10165. will pick one of them, and then handle the next batch of @var{n} frames until
  10166. the end. Default is @code{100}.
  10167. @end table
  10168. Since the filter keeps track of the whole frames sequence, a bigger @var{n}
  10169. value will result in a higher memory usage, so a high value is not recommended.
  10170. @subsection Examples
  10171. @itemize
  10172. @item
  10173. Extract one picture each 50 frames:
  10174. @example
  10175. thumbnail=50
  10176. @end example
  10177. @item
  10178. Complete example of a thumbnail creation with @command{ffmpeg}:
  10179. @example
  10180. ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
  10181. @end example
  10182. @end itemize
  10183. @section tile
  10184. Tile several successive frames together.
  10185. The filter accepts the following options:
  10186. @table @option
  10187. @item layout
  10188. Set the grid size (i.e. the number of lines and columns). For the syntax of
  10189. this option, check the
  10190. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  10191. @item nb_frames
  10192. Set the maximum number of frames to render in the given area. It must be less
  10193. than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
  10194. the area will be used.
  10195. @item margin
  10196. Set the outer border margin in pixels.
  10197. @item padding
  10198. Set the inner border thickness (i.e. the number of pixels between frames). For
  10199. more advanced padding options (such as having different values for the edges),
  10200. refer to the pad video filter.
  10201. @item color
  10202. Specify the color of the unused area. For the syntax of this option, check the
  10203. "Color" section in the ffmpeg-utils manual. The default value of @var{color}
  10204. is "black".
  10205. @end table
  10206. @subsection Examples
  10207. @itemize
  10208. @item
  10209. Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
  10210. @example
  10211. ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
  10212. @end example
  10213. The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
  10214. duplicating each output frame to accommodate the originally detected frame
  10215. rate.
  10216. @item
  10217. Display @code{5} pictures in an area of @code{3x2} frames,
  10218. with @code{7} pixels between them, and @code{2} pixels of initial margin, using
  10219. mixed flat and named options:
  10220. @example
  10221. tile=3x2:nb_frames=5:padding=7:margin=2
  10222. @end example
  10223. @end itemize
  10224. @section tinterlace
  10225. Perform various types of temporal field interlacing.
  10226. Frames are counted starting from 1, so the first input frame is
  10227. considered odd.
  10228. The filter accepts the following options:
  10229. @table @option
  10230. @item mode
  10231. Specify the mode of the interlacing. This option can also be specified
  10232. as a value alone. See below for a list of values for this option.
  10233. Available values are:
  10234. @table @samp
  10235. @item merge, 0
  10236. Move odd frames into the upper field, even into the lower field,
  10237. generating a double height frame at half frame rate.
  10238. @example
  10239. ------> time
  10240. Input:
  10241. Frame 1 Frame 2 Frame 3 Frame 4
  10242. 11111 22222 33333 44444
  10243. 11111 22222 33333 44444
  10244. 11111 22222 33333 44444
  10245. 11111 22222 33333 44444
  10246. Output:
  10247. 11111 33333
  10248. 22222 44444
  10249. 11111 33333
  10250. 22222 44444
  10251. 11111 33333
  10252. 22222 44444
  10253. 11111 33333
  10254. 22222 44444
  10255. @end example
  10256. @item drop_even, 1
  10257. Only output odd frames, even frames are dropped, generating a frame with
  10258. unchanged height at half frame rate.
  10259. @example
  10260. ------> time
  10261. Input:
  10262. Frame 1 Frame 2 Frame 3 Frame 4
  10263. 11111 22222 33333 44444
  10264. 11111 22222 33333 44444
  10265. 11111 22222 33333 44444
  10266. 11111 22222 33333 44444
  10267. Output:
  10268. 11111 33333
  10269. 11111 33333
  10270. 11111 33333
  10271. 11111 33333
  10272. @end example
  10273. @item drop_odd, 2
  10274. Only output even frames, odd frames are dropped, generating a frame with
  10275. unchanged height at half frame rate.
  10276. @example
  10277. ------> time
  10278. Input:
  10279. Frame 1 Frame 2 Frame 3 Frame 4
  10280. 11111 22222 33333 44444
  10281. 11111 22222 33333 44444
  10282. 11111 22222 33333 44444
  10283. 11111 22222 33333 44444
  10284. Output:
  10285. 22222 44444
  10286. 22222 44444
  10287. 22222 44444
  10288. 22222 44444
  10289. @end example
  10290. @item pad, 3
  10291. Expand each frame to full height, but pad alternate lines with black,
  10292. generating a frame with double height at the same input frame rate.
  10293. @example
  10294. ------> time
  10295. Input:
  10296. Frame 1 Frame 2 Frame 3 Frame 4
  10297. 11111 22222 33333 44444
  10298. 11111 22222 33333 44444
  10299. 11111 22222 33333 44444
  10300. 11111 22222 33333 44444
  10301. Output:
  10302. 11111 ..... 33333 .....
  10303. ..... 22222 ..... 44444
  10304. 11111 ..... 33333 .....
  10305. ..... 22222 ..... 44444
  10306. 11111 ..... 33333 .....
  10307. ..... 22222 ..... 44444
  10308. 11111 ..... 33333 .....
  10309. ..... 22222 ..... 44444
  10310. @end example
  10311. @item interleave_top, 4
  10312. Interleave the upper field from odd frames with the lower field from
  10313. even frames, generating a frame with unchanged height at half frame rate.
  10314. @example
  10315. ------> time
  10316. Input:
  10317. Frame 1 Frame 2 Frame 3 Frame 4
  10318. 11111<- 22222 33333<- 44444
  10319. 11111 22222<- 33333 44444<-
  10320. 11111<- 22222 33333<- 44444
  10321. 11111 22222<- 33333 44444<-
  10322. Output:
  10323. 11111 33333
  10324. 22222 44444
  10325. 11111 33333
  10326. 22222 44444
  10327. @end example
  10328. @item interleave_bottom, 5
  10329. Interleave the lower field from odd frames with the upper field from
  10330. even frames, generating a frame with unchanged height at half frame rate.
  10331. @example
  10332. ------> time
  10333. Input:
  10334. Frame 1 Frame 2 Frame 3 Frame 4
  10335. 11111 22222<- 33333 44444<-
  10336. 11111<- 22222 33333<- 44444
  10337. 11111 22222<- 33333 44444<-
  10338. 11111<- 22222 33333<- 44444
  10339. Output:
  10340. 22222 44444
  10341. 11111 33333
  10342. 22222 44444
  10343. 11111 33333
  10344. @end example
  10345. @item interlacex2, 6
  10346. Double frame rate with unchanged height. Frames are inserted each
  10347. containing the second temporal field from the previous input frame and
  10348. the first temporal field from the next input frame. This mode relies on
  10349. the top_field_first flag. Useful for interlaced video displays with no
  10350. field synchronisation.
  10351. @example
  10352. ------> time
  10353. Input:
  10354. Frame 1 Frame 2 Frame 3 Frame 4
  10355. 11111 22222 33333 44444
  10356. 11111 22222 33333 44444
  10357. 11111 22222 33333 44444
  10358. 11111 22222 33333 44444
  10359. Output:
  10360. 11111 22222 22222 33333 33333 44444 44444
  10361. 11111 11111 22222 22222 33333 33333 44444
  10362. 11111 22222 22222 33333 33333 44444 44444
  10363. 11111 11111 22222 22222 33333 33333 44444
  10364. @end example
  10365. @item mergex2, 7
  10366. Move odd frames into the upper field, even into the lower field,
  10367. generating a double height frame at same frame rate.
  10368. @example
  10369. ------> time
  10370. Input:
  10371. Frame 1 Frame 2 Frame 3 Frame 4
  10372. 11111 22222 33333 44444
  10373. 11111 22222 33333 44444
  10374. 11111 22222 33333 44444
  10375. 11111 22222 33333 44444
  10376. Output:
  10377. 11111 33333 33333 55555
  10378. 22222 22222 44444 44444
  10379. 11111 33333 33333 55555
  10380. 22222 22222 44444 44444
  10381. 11111 33333 33333 55555
  10382. 22222 22222 44444 44444
  10383. 11111 33333 33333 55555
  10384. 22222 22222 44444 44444
  10385. @end example
  10386. @end table
  10387. Numeric values are deprecated but are accepted for backward
  10388. compatibility reasons.
  10389. Default mode is @code{merge}.
  10390. @item flags
  10391. Specify flags influencing the filter process.
  10392. Available value for @var{flags} is:
  10393. @table @option
  10394. @item low_pass_filter, vlfp
  10395. Enable vertical low-pass filtering in the filter.
  10396. Vertical low-pass filtering is required when creating an interlaced
  10397. destination from a progressive source which contains high-frequency
  10398. vertical detail. Filtering will reduce interlace 'twitter' and Moire
  10399. patterning.
  10400. Vertical low-pass filtering can only be enabled for @option{mode}
  10401. @var{interleave_top} and @var{interleave_bottom}.
  10402. @end table
  10403. @end table
  10404. @section transpose
  10405. Transpose rows with columns in the input video and optionally flip it.
  10406. It accepts the following parameters:
  10407. @table @option
  10408. @item dir
  10409. Specify the transposition direction.
  10410. Can assume the following values:
  10411. @table @samp
  10412. @item 0, 4, cclock_flip
  10413. Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
  10414. @example
  10415. L.R L.l
  10416. . . -> . .
  10417. l.r R.r
  10418. @end example
  10419. @item 1, 5, clock
  10420. Rotate by 90 degrees clockwise, that is:
  10421. @example
  10422. L.R l.L
  10423. . . -> . .
  10424. l.r r.R
  10425. @end example
  10426. @item 2, 6, cclock
  10427. Rotate by 90 degrees counterclockwise, that is:
  10428. @example
  10429. L.R R.r
  10430. . . -> . .
  10431. l.r L.l
  10432. @end example
  10433. @item 3, 7, clock_flip
  10434. Rotate by 90 degrees clockwise and vertically flip, that is:
  10435. @example
  10436. L.R r.R
  10437. . . -> . .
  10438. l.r l.L
  10439. @end example
  10440. @end table
  10441. For values between 4-7, the transposition is only done if the input
  10442. video geometry is portrait and not landscape. These values are
  10443. deprecated, the @code{passthrough} option should be used instead.
  10444. Numerical values are deprecated, and should be dropped in favor of
  10445. symbolic constants.
  10446. @item passthrough
  10447. Do not apply the transposition if the input geometry matches the one
  10448. specified by the specified value. It accepts the following values:
  10449. @table @samp
  10450. @item none
  10451. Always apply transposition.
  10452. @item portrait
  10453. Preserve portrait geometry (when @var{height} >= @var{width}).
  10454. @item landscape
  10455. Preserve landscape geometry (when @var{width} >= @var{height}).
  10456. @end table
  10457. Default value is @code{none}.
  10458. @end table
  10459. For example to rotate by 90 degrees clockwise and preserve portrait
  10460. layout:
  10461. @example
  10462. transpose=dir=1:passthrough=portrait
  10463. @end example
  10464. The command above can also be specified as:
  10465. @example
  10466. transpose=1:portrait
  10467. @end example
  10468. @section trim
  10469. Trim the input so that the output contains one continuous subpart of the input.
  10470. It accepts the following parameters:
  10471. @table @option
  10472. @item start
  10473. Specify the time of the start of the kept section, i.e. the frame with the
  10474. timestamp @var{start} will be the first frame in the output.
  10475. @item end
  10476. Specify the time of the first frame that will be dropped, i.e. the frame
  10477. immediately preceding the one with the timestamp @var{end} will be the last
  10478. frame in the output.
  10479. @item start_pts
  10480. This is the same as @var{start}, except this option sets the start timestamp
  10481. in timebase units instead of seconds.
  10482. @item end_pts
  10483. This is the same as @var{end}, except this option sets the end timestamp
  10484. in timebase units instead of seconds.
  10485. @item duration
  10486. The maximum duration of the output in seconds.
  10487. @item start_frame
  10488. The number of the first frame that should be passed to the output.
  10489. @item end_frame
  10490. The number of the first frame that should be dropped.
  10491. @end table
  10492. @option{start}, @option{end}, and @option{duration} are expressed as time
  10493. duration specifications; see
  10494. @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
  10495. for the accepted syntax.
  10496. Note that the first two sets of the start/end options and the @option{duration}
  10497. option look at the frame timestamp, while the _frame variants simply count the
  10498. frames that pass through the filter. Also note that this filter does not modify
  10499. the timestamps. If you wish for the output timestamps to start at zero, insert a
  10500. setpts filter after the trim filter.
  10501. If multiple start or end options are set, this filter tries to be greedy and
  10502. keep all the frames that match at least one of the specified constraints. To keep
  10503. only the part that matches all the constraints at once, chain multiple trim
  10504. filters.
  10505. The defaults are such that all the input is kept. So it is possible to set e.g.
  10506. just the end values to keep everything before the specified time.
  10507. Examples:
  10508. @itemize
  10509. @item
  10510. Drop everything except the second minute of input:
  10511. @example
  10512. ffmpeg -i INPUT -vf trim=60:120
  10513. @end example
  10514. @item
  10515. Keep only the first second:
  10516. @example
  10517. ffmpeg -i INPUT -vf trim=duration=1
  10518. @end example
  10519. @end itemize
  10520. @anchor{unsharp}
  10521. @section unsharp
  10522. Sharpen or blur the input video.
  10523. It accepts the following parameters:
  10524. @table @option
  10525. @item luma_msize_x, lx
  10526. Set the luma matrix horizontal size. It must be an odd integer between
  10527. 3 and 23. The default value is 5.
  10528. @item luma_msize_y, ly
  10529. Set the luma matrix vertical size. It must be an odd integer between 3
  10530. and 23. The default value is 5.
  10531. @item luma_amount, la
  10532. Set the luma effect strength. It must be a floating point number, reasonable
  10533. values lay between -1.5 and 1.5.
  10534. Negative values will blur the input video, while positive values will
  10535. sharpen it, a value of zero will disable the effect.
  10536. Default value is 1.0.
  10537. @item chroma_msize_x, cx
  10538. Set the chroma matrix horizontal size. It must be an odd integer
  10539. between 3 and 23. The default value is 5.
  10540. @item chroma_msize_y, cy
  10541. Set the chroma matrix vertical size. It must be an odd integer
  10542. between 3 and 23. The default value is 5.
  10543. @item chroma_amount, ca
  10544. Set the chroma effect strength. It must be a floating point number, reasonable
  10545. values lay between -1.5 and 1.5.
  10546. Negative values will blur the input video, while positive values will
  10547. sharpen it, a value of zero will disable the effect.
  10548. Default value is 0.0.
  10549. @item opencl
  10550. If set to 1, specify using OpenCL capabilities, only available if
  10551. FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
  10552. @end table
  10553. All parameters are optional and default to the equivalent of the
  10554. string '5:5:1.0:5:5:0.0'.
  10555. @subsection Examples
  10556. @itemize
  10557. @item
  10558. Apply strong luma sharpen effect:
  10559. @example
  10560. unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
  10561. @end example
  10562. @item
  10563. Apply a strong blur of both luma and chroma parameters:
  10564. @example
  10565. unsharp=7:7:-2:7:7:-2
  10566. @end example
  10567. @end itemize
  10568. @section uspp
  10569. Apply ultra slow/simple postprocessing filter that compresses and decompresses
  10570. the image at several (or - in the case of @option{quality} level @code{8} - all)
  10571. shifts and average the results.
  10572. The way this differs from the behavior of spp is that uspp actually encodes &
  10573. decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
  10574. DCT similar to MJPEG.
  10575. The filter accepts the following options:
  10576. @table @option
  10577. @item quality
  10578. Set quality. This option defines the number of levels for averaging. It accepts
  10579. an integer in the range 0-8. If set to @code{0}, the filter will have no
  10580. effect. A value of @code{8} means the higher quality. For each increment of
  10581. that value the speed drops by a factor of approximately 2. Default value is
  10582. @code{3}.
  10583. @item qp
  10584. Force a constant quantization parameter. If not set, the filter will use the QP
  10585. from the video stream (if available).
  10586. @end table
  10587. @section vaguedenoiser
  10588. Apply a wavelet based denoiser.
  10589. It transforms each frame from the video input into the wavelet domain,
  10590. using Cohen-Daubechies-Feauveau 9/7. Then it applies some filtering to
  10591. the obtained coefficients. It does an inverse wavelet transform after.
  10592. Due to wavelet properties, it should give a nice smoothed result, and
  10593. reduced noise, without blurring picture features.
  10594. This filter accepts the following options:
  10595. @table @option
  10596. @item threshold
  10597. The filtering strength. The higher, the more filtered the video will be.
  10598. Hard thresholding can use a higher threshold than soft thresholding
  10599. before the video looks overfiltered.
  10600. @item method
  10601. The filtering method the filter will use.
  10602. It accepts the following values:
  10603. @table @samp
  10604. @item hard
  10605. All values under the threshold will be zeroed.
  10606. @item soft
  10607. All values under the threshold will be zeroed. All values above will be
  10608. reduced by the threshold.
  10609. @item garrote
  10610. Scales or nullifies coefficients - intermediary between (more) soft and
  10611. (less) hard thresholding.
  10612. @end table
  10613. @item nsteps
  10614. Number of times, the wavelet will decompose the picture. Picture can't
  10615. be decomposed beyond a particular point (typically, 8 for a 640x480
  10616. frame - as 2^9 = 512 > 480)
  10617. @item percent
  10618. Partial of full denoising (limited coefficients shrinking), from 0 to 100.
  10619. @item planes
  10620. A list of the planes to process. By default all planes are processed.
  10621. @end table
  10622. @section vectorscope
  10623. Display 2 color component values in the two dimensional graph (which is called
  10624. a vectorscope).
  10625. This filter accepts the following options:
  10626. @table @option
  10627. @item mode, m
  10628. Set vectorscope mode.
  10629. It accepts the following values:
  10630. @table @samp
  10631. @item gray
  10632. Gray values are displayed on graph, higher brightness means more pixels have
  10633. same component color value on location in graph. This is the default mode.
  10634. @item color
  10635. Gray values are displayed on graph. Surrounding pixels values which are not
  10636. present in video frame are drawn in gradient of 2 color components which are
  10637. set by option @code{x} and @code{y}. The 3rd color component is static.
  10638. @item color2
  10639. Actual color components values present in video frame are displayed on graph.
  10640. @item color3
  10641. Similar as color2 but higher frequency of same values @code{x} and @code{y}
  10642. on graph increases value of another color component, which is luminance by
  10643. default values of @code{x} and @code{y}.
  10644. @item color4
  10645. Actual colors present in video frame are displayed on graph. If two different
  10646. colors map to same position on graph then color with higher value of component
  10647. not present in graph is picked.
  10648. @item color5
  10649. Gray values are displayed on graph. Similar to @code{color} but with 3rd color
  10650. component picked from radial gradient.
  10651. @end table
  10652. @item x
  10653. Set which color component will be represented on X-axis. Default is @code{1}.
  10654. @item y
  10655. Set which color component will be represented on Y-axis. Default is @code{2}.
  10656. @item intensity, i
  10657. Set intensity, used by modes: gray, color, color3 and color5 for increasing brightness
  10658. of color component which represents frequency of (X, Y) location in graph.
  10659. @item envelope, e
  10660. @table @samp
  10661. @item none
  10662. No envelope, this is default.
  10663. @item instant
  10664. Instant envelope, even darkest single pixel will be clearly highlighted.
  10665. @item peak
  10666. Hold maximum and minimum values presented in graph over time. This way you
  10667. can still spot out of range values without constantly looking at vectorscope.
  10668. @item peak+instant
  10669. Peak and instant envelope combined together.
  10670. @end table
  10671. @item graticule, g
  10672. Set what kind of graticule to draw.
  10673. @table @samp
  10674. @item none
  10675. @item green
  10676. @item color
  10677. @end table
  10678. @item opacity, o
  10679. Set graticule opacity.
  10680. @item flags, f
  10681. Set graticule flags.
  10682. @table @samp
  10683. @item white
  10684. Draw graticule for white point.
  10685. @item black
  10686. Draw graticule for black point.
  10687. @item name
  10688. Draw color points short names.
  10689. @end table
  10690. @item bgopacity, b
  10691. Set background opacity.
  10692. @item lthreshold, l
  10693. Set low threshold for color component not represented on X or Y axis.
  10694. Values lower than this value will be ignored. Default is 0.
  10695. Note this value is multiplied with actual max possible value one pixel component
  10696. can have. So for 8-bit input and low threshold value of 0.1 actual threshold
  10697. is 0.1 * 255 = 25.
  10698. @item hthreshold, h
  10699. Set high threshold for color component not represented on X or Y axis.
  10700. Values higher than this value will be ignored. Default is 1.
  10701. Note this value is multiplied with actual max possible value one pixel component
  10702. can have. So for 8-bit input and high threshold value of 0.9 actual threshold
  10703. is 0.9 * 255 = 230.
  10704. @item colorspace, c
  10705. Set what kind of colorspace to use when drawing graticule.
  10706. @table @samp
  10707. @item auto
  10708. @item 601
  10709. @item 709
  10710. @end table
  10711. Default is auto.
  10712. @end table
  10713. @anchor{vidstabdetect}
  10714. @section vidstabdetect
  10715. Analyze video stabilization/deshaking. Perform pass 1 of 2, see
  10716. @ref{vidstabtransform} for pass 2.
  10717. This filter generates a file with relative translation and rotation
  10718. transform information about subsequent frames, which is then used by
  10719. the @ref{vidstabtransform} filter.
  10720. To enable compilation of this filter you need to configure FFmpeg with
  10721. @code{--enable-libvidstab}.
  10722. This filter accepts the following options:
  10723. @table @option
  10724. @item result
  10725. Set the path to the file used to write the transforms information.
  10726. Default value is @file{transforms.trf}.
  10727. @item shakiness
  10728. Set how shaky the video is and how quick the camera is. It accepts an
  10729. integer in the range 1-10, a value of 1 means little shakiness, a
  10730. value of 10 means strong shakiness. Default value is 5.
  10731. @item accuracy
  10732. Set the accuracy of the detection process. It must be a value in the
  10733. range 1-15. A value of 1 means low accuracy, a value of 15 means high
  10734. accuracy. Default value is 15.
  10735. @item stepsize
  10736. Set stepsize of the search process. The region around minimum is
  10737. scanned with 1 pixel resolution. Default value is 6.
  10738. @item mincontrast
  10739. Set minimum contrast. Below this value a local measurement field is
  10740. discarded. Must be a floating point value in the range 0-1. Default
  10741. value is 0.3.
  10742. @item tripod
  10743. Set reference frame number for tripod mode.
  10744. If enabled, the motion of the frames is compared to a reference frame
  10745. in the filtered stream, identified by the specified number. The idea
  10746. is to compensate all movements in a more-or-less static scene and keep
  10747. the camera view absolutely still.
  10748. If set to 0, it is disabled. The frames are counted starting from 1.
  10749. @item show
  10750. Show fields and transforms in the resulting frames. It accepts an
  10751. integer in the range 0-2. Default value is 0, which disables any
  10752. visualization.
  10753. @end table
  10754. @subsection Examples
  10755. @itemize
  10756. @item
  10757. Use default values:
  10758. @example
  10759. vidstabdetect
  10760. @end example
  10761. @item
  10762. Analyze strongly shaky movie and put the results in file
  10763. @file{mytransforms.trf}:
  10764. @example
  10765. vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
  10766. @end example
  10767. @item
  10768. Visualize the result of internal transformations in the resulting
  10769. video:
  10770. @example
  10771. vidstabdetect=show=1
  10772. @end example
  10773. @item
  10774. Analyze a video with medium shakiness using @command{ffmpeg}:
  10775. @example
  10776. ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
  10777. @end example
  10778. @end itemize
  10779. @anchor{vidstabtransform}
  10780. @section vidstabtransform
  10781. Video stabilization/deshaking: pass 2 of 2,
  10782. see @ref{vidstabdetect} for pass 1.
  10783. Read a file with transform information for each frame and
  10784. apply/compensate them. Together with the @ref{vidstabdetect}
  10785. filter this can be used to deshake videos. See also
  10786. @url{http://public.hronopik.de/vid.stab}. It is important to also use
  10787. the @ref{unsharp} filter, see below.
  10788. To enable compilation of this filter you need to configure FFmpeg with
  10789. @code{--enable-libvidstab}.
  10790. @subsection Options
  10791. @table @option
  10792. @item input
  10793. Set path to the file used to read the transforms. Default value is
  10794. @file{transforms.trf}.
  10795. @item smoothing
  10796. Set the number of frames (value*2 + 1) used for lowpass filtering the
  10797. camera movements. Default value is 10.
  10798. For example a number of 10 means that 21 frames are used (10 in the
  10799. past and 10 in the future) to smoothen the motion in the video. A
  10800. larger value leads to a smoother video, but limits the acceleration of
  10801. the camera (pan/tilt movements). 0 is a special case where a static
  10802. camera is simulated.
  10803. @item optalgo
  10804. Set the camera path optimization algorithm.
  10805. Accepted values are:
  10806. @table @samp
  10807. @item gauss
  10808. gaussian kernel low-pass filter on camera motion (default)
  10809. @item avg
  10810. averaging on transformations
  10811. @end table
  10812. @item maxshift
  10813. Set maximal number of pixels to translate frames. Default value is -1,
  10814. meaning no limit.
  10815. @item maxangle
  10816. Set maximal angle in radians (degree*PI/180) to rotate frames. Default
  10817. value is -1, meaning no limit.
  10818. @item crop
  10819. Specify how to deal with borders that may be visible due to movement
  10820. compensation.
  10821. Available values are:
  10822. @table @samp
  10823. @item keep
  10824. keep image information from previous frame (default)
  10825. @item black
  10826. fill the border black
  10827. @end table
  10828. @item invert
  10829. Invert transforms if set to 1. Default value is 0.
  10830. @item relative
  10831. Consider transforms as relative to previous frame if set to 1,
  10832. absolute if set to 0. Default value is 0.
  10833. @item zoom
  10834. Set percentage to zoom. A positive value will result in a zoom-in
  10835. effect, a negative value in a zoom-out effect. Default value is 0 (no
  10836. zoom).
  10837. @item optzoom
  10838. Set optimal zooming to avoid borders.
  10839. Accepted values are:
  10840. @table @samp
  10841. @item 0
  10842. disabled
  10843. @item 1
  10844. optimal static zoom value is determined (only very strong movements
  10845. will lead to visible borders) (default)
  10846. @item 2
  10847. optimal adaptive zoom value is determined (no borders will be
  10848. visible), see @option{zoomspeed}
  10849. @end table
  10850. Note that the value given at zoom is added to the one calculated here.
  10851. @item zoomspeed
  10852. Set percent to zoom maximally each frame (enabled when
  10853. @option{optzoom} is set to 2). Range is from 0 to 5, default value is
  10854. 0.25.
  10855. @item interpol
  10856. Specify type of interpolation.
  10857. Available values are:
  10858. @table @samp
  10859. @item no
  10860. no interpolation
  10861. @item linear
  10862. linear only horizontal
  10863. @item bilinear
  10864. linear in both directions (default)
  10865. @item bicubic
  10866. cubic in both directions (slow)
  10867. @end table
  10868. @item tripod
  10869. Enable virtual tripod mode if set to 1, which is equivalent to
  10870. @code{relative=0:smoothing=0}. Default value is 0.
  10871. Use also @code{tripod} option of @ref{vidstabdetect}.
  10872. @item debug
  10873. Increase log verbosity if set to 1. Also the detected global motions
  10874. are written to the temporary file @file{global_motions.trf}. Default
  10875. value is 0.
  10876. @end table
  10877. @subsection Examples
  10878. @itemize
  10879. @item
  10880. Use @command{ffmpeg} for a typical stabilization with default values:
  10881. @example
  10882. ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
  10883. @end example
  10884. Note the use of the @ref{unsharp} filter which is always recommended.
  10885. @item
  10886. Zoom in a bit more and load transform data from a given file:
  10887. @example
  10888. vidstabtransform=zoom=5:input="mytransforms.trf"
  10889. @end example
  10890. @item
  10891. Smoothen the video even more:
  10892. @example
  10893. vidstabtransform=smoothing=30
  10894. @end example
  10895. @end itemize
  10896. @section vflip
  10897. Flip the input video vertically.
  10898. For example, to vertically flip a video with @command{ffmpeg}:
  10899. @example
  10900. ffmpeg -i in.avi -vf "vflip" out.avi
  10901. @end example
  10902. @anchor{vignette}
  10903. @section vignette
  10904. Make or reverse a natural vignetting effect.
  10905. The filter accepts the following options:
  10906. @table @option
  10907. @item angle, a
  10908. Set lens angle expression as a number of radians.
  10909. The value is clipped in the @code{[0,PI/2]} range.
  10910. Default value: @code{"PI/5"}
  10911. @item x0
  10912. @item y0
  10913. Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
  10914. by default.
  10915. @item mode
  10916. Set forward/backward mode.
  10917. Available modes are:
  10918. @table @samp
  10919. @item forward
  10920. The larger the distance from the central point, the darker the image becomes.
  10921. @item backward
  10922. The larger the distance from the central point, the brighter the image becomes.
  10923. This can be used to reverse a vignette effect, though there is no automatic
  10924. detection to extract the lens @option{angle} and other settings (yet). It can
  10925. also be used to create a burning effect.
  10926. @end table
  10927. Default value is @samp{forward}.
  10928. @item eval
  10929. Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
  10930. It accepts the following values:
  10931. @table @samp
  10932. @item init
  10933. Evaluate expressions only once during the filter initialization.
  10934. @item frame
  10935. Evaluate expressions for each incoming frame. This is way slower than the
  10936. @samp{init} mode since it requires all the scalers to be re-computed, but it
  10937. allows advanced dynamic expressions.
  10938. @end table
  10939. Default value is @samp{init}.
  10940. @item dither
  10941. Set dithering to reduce the circular banding effects. Default is @code{1}
  10942. (enabled).
  10943. @item aspect
  10944. Set vignette aspect. This setting allows one to adjust the shape of the vignette.
  10945. Setting this value to the SAR of the input will make a rectangular vignetting
  10946. following the dimensions of the video.
  10947. Default is @code{1/1}.
  10948. @end table
  10949. @subsection Expressions
  10950. The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
  10951. following parameters.
  10952. @table @option
  10953. @item w
  10954. @item h
  10955. input width and height
  10956. @item n
  10957. the number of input frame, starting from 0
  10958. @item pts
  10959. the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
  10960. @var{TB} units, NAN if undefined
  10961. @item r
  10962. frame rate of the input video, NAN if the input frame rate is unknown
  10963. @item t
  10964. the PTS (Presentation TimeStamp) of the filtered video frame,
  10965. expressed in seconds, NAN if undefined
  10966. @item tb
  10967. time base of the input video
  10968. @end table
  10969. @subsection Examples
  10970. @itemize
  10971. @item
  10972. Apply simple strong vignetting effect:
  10973. @example
  10974. vignette=PI/4
  10975. @end example
  10976. @item
  10977. Make a flickering vignetting:
  10978. @example
  10979. vignette='PI/4+random(1)*PI/50':eval=frame
  10980. @end example
  10981. @end itemize
  10982. @section vstack
  10983. Stack input videos vertically.
  10984. All streams must be of same pixel format and of same width.
  10985. Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
  10986. to create same output.
  10987. The filter accept the following option:
  10988. @table @option
  10989. @item inputs
  10990. Set number of input streams. Default is 2.
  10991. @item shortest
  10992. If set to 1, force the output to terminate when the shortest input
  10993. terminates. Default value is 0.
  10994. @end table
  10995. @section w3fdif
  10996. Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
  10997. Deinterlacing Filter").
  10998. Based on the process described by Martin Weston for BBC R&D, and
  10999. implemented based on the de-interlace algorithm written by Jim
  11000. Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
  11001. uses filter coefficients calculated by BBC R&D.
  11002. There are two sets of filter coefficients, so called "simple":
  11003. and "complex". Which set of filter coefficients is used can
  11004. be set by passing an optional parameter:
  11005. @table @option
  11006. @item filter
  11007. Set the interlacing filter coefficients. Accepts one of the following values:
  11008. @table @samp
  11009. @item simple
  11010. Simple filter coefficient set.
  11011. @item complex
  11012. More-complex filter coefficient set.
  11013. @end table
  11014. Default value is @samp{complex}.
  11015. @item deint
  11016. Specify which frames to deinterlace. Accept one of the following values:
  11017. @table @samp
  11018. @item all
  11019. Deinterlace all frames,
  11020. @item interlaced
  11021. Only deinterlace frames marked as interlaced.
  11022. @end table
  11023. Default value is @samp{all}.
  11024. @end table
  11025. @section waveform
  11026. Video waveform monitor.
  11027. The waveform monitor plots color component intensity. By default luminance
  11028. only. Each column of the waveform corresponds to a column of pixels in the
  11029. source video.
  11030. It accepts the following options:
  11031. @table @option
  11032. @item mode, m
  11033. Can be either @code{row}, or @code{column}. Default is @code{column}.
  11034. In row mode, the graph on the left side represents color component value 0 and
  11035. the right side represents value = 255. In column mode, the top side represents
  11036. color component value = 0 and bottom side represents value = 255.
  11037. @item intensity, i
  11038. Set intensity. Smaller values are useful to find out how many values of the same
  11039. luminance are distributed across input rows/columns.
  11040. Default value is @code{0.04}. Allowed range is [0, 1].
  11041. @item mirror, r
  11042. Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
  11043. In mirrored mode, higher values will be represented on the left
  11044. side for @code{row} mode and at the top for @code{column} mode. Default is
  11045. @code{1} (mirrored).
  11046. @item display, d
  11047. Set display mode.
  11048. It accepts the following values:
  11049. @table @samp
  11050. @item overlay
  11051. Presents information identical to that in the @code{parade}, except
  11052. that the graphs representing color components are superimposed directly
  11053. over one another.
  11054. This display mode makes it easier to spot relative differences or similarities
  11055. in overlapping areas of the color components that are supposed to be identical,
  11056. such as neutral whites, grays, or blacks.
  11057. @item stack
  11058. Display separate graph for the color components side by side in
  11059. @code{row} mode or one below the other in @code{column} mode.
  11060. @item parade
  11061. Display separate graph for the color components side by side in
  11062. @code{column} mode or one below the other in @code{row} mode.
  11063. Using this display mode makes it easy to spot color casts in the highlights
  11064. and shadows of an image, by comparing the contours of the top and the bottom
  11065. graphs of each waveform. Since whites, grays, and blacks are characterized
  11066. by exactly equal amounts of red, green, and blue, neutral areas of the picture
  11067. should display three waveforms of roughly equal width/height. If not, the
  11068. correction is easy to perform by making level adjustments the three waveforms.
  11069. @end table
  11070. Default is @code{stack}.
  11071. @item components, c
  11072. Set which color components to display. Default is 1, which means only luminance
  11073. or red color component if input is in RGB colorspace. If is set for example to
  11074. 7 it will display all 3 (if) available color components.
  11075. @item envelope, e
  11076. @table @samp
  11077. @item none
  11078. No envelope, this is default.
  11079. @item instant
  11080. Instant envelope, minimum and maximum values presented in graph will be easily
  11081. visible even with small @code{step} value.
  11082. @item peak
  11083. Hold minimum and maximum values presented in graph across time. This way you
  11084. can still spot out of range values without constantly looking at waveforms.
  11085. @item peak+instant
  11086. Peak and instant envelope combined together.
  11087. @end table
  11088. @item filter, f
  11089. @table @samp
  11090. @item lowpass
  11091. No filtering, this is default.
  11092. @item flat
  11093. Luma and chroma combined together.
  11094. @item aflat
  11095. Similar as above, but shows difference between blue and red chroma.
  11096. @item chroma
  11097. Displays only chroma.
  11098. @item color
  11099. Displays actual color value on waveform.
  11100. @item acolor
  11101. Similar as above, but with luma showing frequency of chroma values.
  11102. @end table
  11103. @item graticule, g
  11104. Set which graticule to display.
  11105. @table @samp
  11106. @item none
  11107. Do not display graticule.
  11108. @item green
  11109. Display green graticule showing legal broadcast ranges.
  11110. @end table
  11111. @item opacity, o
  11112. Set graticule opacity.
  11113. @item flags, fl
  11114. Set graticule flags.
  11115. @table @samp
  11116. @item numbers
  11117. Draw numbers above lines. By default enabled.
  11118. @item dots
  11119. Draw dots instead of lines.
  11120. @end table
  11121. @item scale, s
  11122. Set scale used for displaying graticule.
  11123. @table @samp
  11124. @item digital
  11125. @item millivolts
  11126. @item ire
  11127. @end table
  11128. Default is digital.
  11129. @item bgopacity, b
  11130. Set background opacity.
  11131. @end table
  11132. @section weave
  11133. The @code{weave} takes a field-based video input and join
  11134. each two sequential fields into single frame, producing a new double
  11135. height clip with half the frame rate and half the frame count.
  11136. It accepts the following option:
  11137. @table @option
  11138. @item first_field
  11139. Set first field. Available values are:
  11140. @table @samp
  11141. @item top, t
  11142. Set the frame as top-field-first.
  11143. @item bottom, b
  11144. Set the frame as bottom-field-first.
  11145. @end table
  11146. @end table
  11147. @subsection Examples
  11148. @itemize
  11149. @item
  11150. Interlace video using @ref{select} and @ref{separatefields} filter:
  11151. @example
  11152. separatefields,select=eq(mod(n,4),0)+eq(mod(n,4),3),weave
  11153. @end example
  11154. @end itemize
  11155. @section xbr
  11156. Apply the xBR high-quality magnification filter which is designed for pixel
  11157. art. It follows a set of edge-detection rules, see
  11158. @url{http://www.libretro.com/forums/viewtopic.php?f=6&t=134}.
  11159. It accepts the following option:
  11160. @table @option
  11161. @item n
  11162. Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
  11163. @code{3xBR} and @code{4} for @code{4xBR}.
  11164. Default is @code{3}.
  11165. @end table
  11166. @anchor{yadif}
  11167. @section yadif
  11168. Deinterlace the input video ("yadif" means "yet another deinterlacing
  11169. filter").
  11170. It accepts the following parameters:
  11171. @table @option
  11172. @item mode
  11173. The interlacing mode to adopt. It accepts one of the following values:
  11174. @table @option
  11175. @item 0, send_frame
  11176. Output one frame for each frame.
  11177. @item 1, send_field
  11178. Output one frame for each field.
  11179. @item 2, send_frame_nospatial
  11180. Like @code{send_frame}, but it skips the spatial interlacing check.
  11181. @item 3, send_field_nospatial
  11182. Like @code{send_field}, but it skips the spatial interlacing check.
  11183. @end table
  11184. The default value is @code{send_frame}.
  11185. @item parity
  11186. The picture field parity assumed for the input interlaced video. It accepts one
  11187. of the following values:
  11188. @table @option
  11189. @item 0, tff
  11190. Assume the top field is first.
  11191. @item 1, bff
  11192. Assume the bottom field is first.
  11193. @item -1, auto
  11194. Enable automatic detection of field parity.
  11195. @end table
  11196. The default value is @code{auto}.
  11197. If the interlacing is unknown or the decoder does not export this information,
  11198. top field first will be assumed.
  11199. @item deint
  11200. Specify which frames to deinterlace. Accept one of the following
  11201. values:
  11202. @table @option
  11203. @item 0, all
  11204. Deinterlace all frames.
  11205. @item 1, interlaced
  11206. Only deinterlace frames marked as interlaced.
  11207. @end table
  11208. The default value is @code{all}.
  11209. @end table
  11210. @section zoompan
  11211. Apply Zoom & Pan effect.
  11212. This filter accepts the following options:
  11213. @table @option
  11214. @item zoom, z
  11215. Set the zoom expression. Default is 1.
  11216. @item x
  11217. @item y
  11218. Set the x and y expression. Default is 0.
  11219. @item d
  11220. Set the duration expression in number of frames.
  11221. This sets for how many number of frames effect will last for
  11222. single input image.
  11223. @item s
  11224. Set the output image size, default is 'hd720'.
  11225. @item fps
  11226. Set the output frame rate, default is '25'.
  11227. @end table
  11228. Each expression can contain the following constants:
  11229. @table @option
  11230. @item in_w, iw
  11231. Input width.
  11232. @item in_h, ih
  11233. Input height.
  11234. @item out_w, ow
  11235. Output width.
  11236. @item out_h, oh
  11237. Output height.
  11238. @item in
  11239. Input frame count.
  11240. @item on
  11241. Output frame count.
  11242. @item x
  11243. @item y
  11244. Last calculated 'x' and 'y' position from 'x' and 'y' expression
  11245. for current input frame.
  11246. @item px
  11247. @item py
  11248. 'x' and 'y' of last output frame of previous input frame or 0 when there was
  11249. not yet such frame (first input frame).
  11250. @item zoom
  11251. Last calculated zoom from 'z' expression for current input frame.
  11252. @item pzoom
  11253. Last calculated zoom of last output frame of previous input frame.
  11254. @item duration
  11255. Number of output frames for current input frame. Calculated from 'd' expression
  11256. for each input frame.
  11257. @item pduration
  11258. number of output frames created for previous input frame
  11259. @item a
  11260. Rational number: input width / input height
  11261. @item sar
  11262. sample aspect ratio
  11263. @item dar
  11264. display aspect ratio
  11265. @end table
  11266. @subsection Examples
  11267. @itemize
  11268. @item
  11269. Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
  11270. @example
  11271. 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
  11272. @end example
  11273. @item
  11274. Zoom-in up to 1.5 and pan always at center of picture:
  11275. @example
  11276. zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
  11277. @end example
  11278. @item
  11279. Same as above but without pausing:
  11280. @example
  11281. zoompan=z='min(max(zoom,pzoom)+0.0015,1.5)':d=1:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
  11282. @end example
  11283. @end itemize
  11284. @section zscale
  11285. Scale (resize) the input video, using the z.lib library:
  11286. https://github.com/sekrit-twc/zimg.
  11287. The zscale filter forces the output display aspect ratio to be the same
  11288. as the input, by changing the output sample aspect ratio.
  11289. If the input image format is different from the format requested by
  11290. the next filter, the zscale filter will convert the input to the
  11291. requested format.
  11292. @subsection Options
  11293. The filter accepts the following options.
  11294. @table @option
  11295. @item width, w
  11296. @item height, h
  11297. Set the output video dimension expression. Default value is the input
  11298. dimension.
  11299. If the @var{width} or @var{w} is 0, the input width is used for the output.
  11300. If the @var{height} or @var{h} is 0, the input height is used for the output.
  11301. If one of the values is -1, the zscale filter will use a value that
  11302. maintains the aspect ratio of the input image, calculated from the
  11303. other specified dimension. If both of them are -1, the input size is
  11304. used
  11305. If one of the values is -n with n > 1, the zscale filter will also use a value
  11306. that maintains the aspect ratio of the input image, calculated from the other
  11307. specified dimension. After that it will, however, make sure that the calculated
  11308. dimension is divisible by n and adjust the value if necessary.
  11309. See below for the list of accepted constants for use in the dimension
  11310. expression.
  11311. @item size, s
  11312. Set the video size. For the syntax of this option, check the
  11313. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  11314. @item dither, d
  11315. Set the dither type.
  11316. Possible values are:
  11317. @table @var
  11318. @item none
  11319. @item ordered
  11320. @item random
  11321. @item error_diffusion
  11322. @end table
  11323. Default is none.
  11324. @item filter, f
  11325. Set the resize filter type.
  11326. Possible values are:
  11327. @table @var
  11328. @item point
  11329. @item bilinear
  11330. @item bicubic
  11331. @item spline16
  11332. @item spline36
  11333. @item lanczos
  11334. @end table
  11335. Default is bilinear.
  11336. @item range, r
  11337. Set the color range.
  11338. Possible values are:
  11339. @table @var
  11340. @item input
  11341. @item limited
  11342. @item full
  11343. @end table
  11344. Default is same as input.
  11345. @item primaries, p
  11346. Set the color primaries.
  11347. Possible values are:
  11348. @table @var
  11349. @item input
  11350. @item 709
  11351. @item unspecified
  11352. @item 170m
  11353. @item 240m
  11354. @item 2020
  11355. @end table
  11356. Default is same as input.
  11357. @item transfer, t
  11358. Set the transfer characteristics.
  11359. Possible values are:
  11360. @table @var
  11361. @item input
  11362. @item 709
  11363. @item unspecified
  11364. @item 601
  11365. @item linear
  11366. @item 2020_10
  11367. @item 2020_12
  11368. @item smpte2084
  11369. @item iec61966-2-1
  11370. @item arib-std-b67
  11371. @end table
  11372. Default is same as input.
  11373. @item matrix, m
  11374. Set the colorspace matrix.
  11375. Possible value are:
  11376. @table @var
  11377. @item input
  11378. @item 709
  11379. @item unspecified
  11380. @item 470bg
  11381. @item 170m
  11382. @item 2020_ncl
  11383. @item 2020_cl
  11384. @end table
  11385. Default is same as input.
  11386. @item rangein, rin
  11387. Set the input color range.
  11388. Possible values are:
  11389. @table @var
  11390. @item input
  11391. @item limited
  11392. @item full
  11393. @end table
  11394. Default is same as input.
  11395. @item primariesin, pin
  11396. Set the input color primaries.
  11397. Possible values are:
  11398. @table @var
  11399. @item input
  11400. @item 709
  11401. @item unspecified
  11402. @item 170m
  11403. @item 240m
  11404. @item 2020
  11405. @end table
  11406. Default is same as input.
  11407. @item transferin, tin
  11408. Set the input transfer characteristics.
  11409. Possible values are:
  11410. @table @var
  11411. @item input
  11412. @item 709
  11413. @item unspecified
  11414. @item 601
  11415. @item linear
  11416. @item 2020_10
  11417. @item 2020_12
  11418. @end table
  11419. Default is same as input.
  11420. @item matrixin, min
  11421. Set the input colorspace matrix.
  11422. Possible value are:
  11423. @table @var
  11424. @item input
  11425. @item 709
  11426. @item unspecified
  11427. @item 470bg
  11428. @item 170m
  11429. @item 2020_ncl
  11430. @item 2020_cl
  11431. @end table
  11432. @item chromal, c
  11433. Set the output chroma location.
  11434. Possible values are:
  11435. @table @var
  11436. @item input
  11437. @item left
  11438. @item center
  11439. @item topleft
  11440. @item top
  11441. @item bottomleft
  11442. @item bottom
  11443. @end table
  11444. @item chromalin, cin
  11445. Set the input chroma location.
  11446. Possible values are:
  11447. @table @var
  11448. @item input
  11449. @item left
  11450. @item center
  11451. @item topleft
  11452. @item top
  11453. @item bottomleft
  11454. @item bottom
  11455. @end table
  11456. @item npl
  11457. Set the nominal peak luminance.
  11458. @end table
  11459. The values of the @option{w} and @option{h} options are expressions
  11460. containing the following constants:
  11461. @table @var
  11462. @item in_w
  11463. @item in_h
  11464. The input width and height
  11465. @item iw
  11466. @item ih
  11467. These are the same as @var{in_w} and @var{in_h}.
  11468. @item out_w
  11469. @item out_h
  11470. The output (scaled) width and height
  11471. @item ow
  11472. @item oh
  11473. These are the same as @var{out_w} and @var{out_h}
  11474. @item a
  11475. The same as @var{iw} / @var{ih}
  11476. @item sar
  11477. input sample aspect ratio
  11478. @item dar
  11479. The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
  11480. @item hsub
  11481. @item vsub
  11482. horizontal and vertical input chroma subsample values. For example for the
  11483. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  11484. @item ohsub
  11485. @item ovsub
  11486. horizontal and vertical output chroma subsample values. For example for the
  11487. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  11488. @end table
  11489. @table @option
  11490. @end table
  11491. @c man end VIDEO FILTERS
  11492. @chapter Video Sources
  11493. @c man begin VIDEO SOURCES
  11494. Below is a description of the currently available video sources.
  11495. @section buffer
  11496. Buffer video frames, and make them available to the filter chain.
  11497. This source is mainly intended for a programmatic use, in particular
  11498. through the interface defined in @file{libavfilter/vsrc_buffer.h}.
  11499. It accepts the following parameters:
  11500. @table @option
  11501. @item video_size
  11502. Specify the size (width and height) of the buffered video frames. For the
  11503. syntax of this option, check the
  11504. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  11505. @item width
  11506. The input video width.
  11507. @item height
  11508. The input video height.
  11509. @item pix_fmt
  11510. A string representing the pixel format of the buffered video frames.
  11511. It may be a number corresponding to a pixel format, or a pixel format
  11512. name.
  11513. @item time_base
  11514. Specify the timebase assumed by the timestamps of the buffered frames.
  11515. @item frame_rate
  11516. Specify the frame rate expected for the video stream.
  11517. @item pixel_aspect, sar
  11518. The sample (pixel) aspect ratio of the input video.
  11519. @item sws_param
  11520. Specify the optional parameters to be used for the scale filter which
  11521. is automatically inserted when an input change is detected in the
  11522. input size or format.
  11523. @item hw_frames_ctx
  11524. When using a hardware pixel format, this should be a reference to an
  11525. AVHWFramesContext describing input frames.
  11526. @end table
  11527. For example:
  11528. @example
  11529. buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
  11530. @end example
  11531. will instruct the source to accept video frames with size 320x240 and
  11532. with format "yuv410p", assuming 1/24 as the timestamps timebase and
  11533. square pixels (1:1 sample aspect ratio).
  11534. Since the pixel format with name "yuv410p" corresponds to the number 6
  11535. (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
  11536. this example corresponds to:
  11537. @example
  11538. buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
  11539. @end example
  11540. Alternatively, the options can be specified as a flat string, but this
  11541. syntax is deprecated:
  11542. @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}]
  11543. @section cellauto
  11544. Create a pattern generated by an elementary cellular automaton.
  11545. The initial state of the cellular automaton can be defined through the
  11546. @option{filename} and @option{pattern} options. If such options are
  11547. not specified an initial state is created randomly.
  11548. At each new frame a new row in the video is filled with the result of
  11549. the cellular automaton next generation. The behavior when the whole
  11550. frame is filled is defined by the @option{scroll} option.
  11551. This source accepts the following options:
  11552. @table @option
  11553. @item filename, f
  11554. Read the initial cellular automaton state, i.e. the starting row, from
  11555. the specified file.
  11556. In the file, each non-whitespace character is considered an alive
  11557. cell, a newline will terminate the row, and further characters in the
  11558. file will be ignored.
  11559. @item pattern, p
  11560. Read the initial cellular automaton state, i.e. the starting row, from
  11561. the specified string.
  11562. Each non-whitespace character in the string is considered an alive
  11563. cell, a newline will terminate the row, and further characters in the
  11564. string will be ignored.
  11565. @item rate, r
  11566. Set the video rate, that is the number of frames generated per second.
  11567. Default is 25.
  11568. @item random_fill_ratio, ratio
  11569. Set the random fill ratio for the initial cellular automaton row. It
  11570. is a floating point number value ranging from 0 to 1, defaults to
  11571. 1/PHI.
  11572. This option is ignored when a file or a pattern is specified.
  11573. @item random_seed, seed
  11574. Set the seed for filling randomly the initial row, must be an integer
  11575. included between 0 and UINT32_MAX. If not specified, or if explicitly
  11576. set to -1, the filter will try to use a good random seed on a best
  11577. effort basis.
  11578. @item rule
  11579. Set the cellular automaton rule, it is a number ranging from 0 to 255.
  11580. Default value is 110.
  11581. @item size, s
  11582. Set the size of the output video. For the syntax of this option, check the
  11583. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  11584. If @option{filename} or @option{pattern} is specified, the size is set
  11585. by default to the width of the specified initial state row, and the
  11586. height is set to @var{width} * PHI.
  11587. If @option{size} is set, it must contain the width of the specified
  11588. pattern string, and the specified pattern will be centered in the
  11589. larger row.
  11590. If a filename or a pattern string is not specified, the size value
  11591. defaults to "320x518" (used for a randomly generated initial state).
  11592. @item scroll
  11593. If set to 1, scroll the output upward when all the rows in the output
  11594. have been already filled. If set to 0, the new generated row will be
  11595. written over the top row just after the bottom row is filled.
  11596. Defaults to 1.
  11597. @item start_full, full
  11598. If set to 1, completely fill the output with generated rows before
  11599. outputting the first frame.
  11600. This is the default behavior, for disabling set the value to 0.
  11601. @item stitch
  11602. If set to 1, stitch the left and right row edges together.
  11603. This is the default behavior, for disabling set the value to 0.
  11604. @end table
  11605. @subsection Examples
  11606. @itemize
  11607. @item
  11608. Read the initial state from @file{pattern}, and specify an output of
  11609. size 200x400.
  11610. @example
  11611. cellauto=f=pattern:s=200x400
  11612. @end example
  11613. @item
  11614. Generate a random initial row with a width of 200 cells, with a fill
  11615. ratio of 2/3:
  11616. @example
  11617. cellauto=ratio=2/3:s=200x200
  11618. @end example
  11619. @item
  11620. Create a pattern generated by rule 18 starting by a single alive cell
  11621. centered on an initial row with width 100:
  11622. @example
  11623. cellauto=p=@@:s=100x400:full=0:rule=18
  11624. @end example
  11625. @item
  11626. Specify a more elaborated initial pattern:
  11627. @example
  11628. cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
  11629. @end example
  11630. @end itemize
  11631. @anchor{coreimagesrc}
  11632. @section coreimagesrc
  11633. Video source generated on GPU using Apple's CoreImage API on OSX.
  11634. This video source is a specialized version of the @ref{coreimage} video filter.
  11635. Use a core image generator at the beginning of the applied filterchain to
  11636. generate the content.
  11637. The coreimagesrc video source accepts the following options:
  11638. @table @option
  11639. @item list_generators
  11640. List all available generators along with all their respective options as well as
  11641. possible minimum and maximum values along with the default values.
  11642. @example
  11643. list_generators=true
  11644. @end example
  11645. @item size, s
  11646. Specify the size of the sourced video. For the syntax of this option, check the
  11647. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  11648. The default value is @code{320x240}.
  11649. @item rate, r
  11650. Specify the frame rate of the sourced video, as the number of frames
  11651. generated per second. It has to be a string in the format
  11652. @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
  11653. number or a valid video frame rate abbreviation. The default value is
  11654. "25".
  11655. @item sar
  11656. Set the sample aspect ratio of the sourced video.
  11657. @item duration, d
  11658. Set the duration of the sourced video. See
  11659. @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
  11660. for the accepted syntax.
  11661. If not specified, or the expressed duration is negative, the video is
  11662. supposed to be generated forever.
  11663. @end table
  11664. Additionally, all options of the @ref{coreimage} video filter are accepted.
  11665. A complete filterchain can be used for further processing of the
  11666. generated input without CPU-HOST transfer. See @ref{coreimage} documentation
  11667. and examples for details.
  11668. @subsection Examples
  11669. @itemize
  11670. @item
  11671. Use CIQRCodeGenerator to create a QR code for the FFmpeg homepage,
  11672. given as complete and escaped command-line for Apple's standard bash shell:
  11673. @example
  11674. ffmpeg -f lavfi -i coreimagesrc=s=100x100:filter=CIQRCodeGenerator@@inputMessage=https\\\\\://FFmpeg.org/@@inputCorrectionLevel=H -frames:v 1 QRCode.png
  11675. @end example
  11676. This example is equivalent to the QRCode example of @ref{coreimage} without the
  11677. need for a nullsrc video source.
  11678. @end itemize
  11679. @section mandelbrot
  11680. Generate a Mandelbrot set fractal, and progressively zoom towards the
  11681. point specified with @var{start_x} and @var{start_y}.
  11682. This source accepts the following options:
  11683. @table @option
  11684. @item end_pts
  11685. Set the terminal pts value. Default value is 400.
  11686. @item end_scale
  11687. Set the terminal scale value.
  11688. Must be a floating point value. Default value is 0.3.
  11689. @item inner
  11690. Set the inner coloring mode, that is the algorithm used to draw the
  11691. Mandelbrot fractal internal region.
  11692. It shall assume one of the following values:
  11693. @table @option
  11694. @item black
  11695. Set black mode.
  11696. @item convergence
  11697. Show time until convergence.
  11698. @item mincol
  11699. Set color based on point closest to the origin of the iterations.
  11700. @item period
  11701. Set period mode.
  11702. @end table
  11703. Default value is @var{mincol}.
  11704. @item bailout
  11705. Set the bailout value. Default value is 10.0.
  11706. @item maxiter
  11707. Set the maximum of iterations performed by the rendering
  11708. algorithm. Default value is 7189.
  11709. @item outer
  11710. Set outer coloring mode.
  11711. It shall assume one of following values:
  11712. @table @option
  11713. @item iteration_count
  11714. Set iteration cound mode.
  11715. @item normalized_iteration_count
  11716. set normalized iteration count mode.
  11717. @end table
  11718. Default value is @var{normalized_iteration_count}.
  11719. @item rate, r
  11720. Set frame rate, expressed as number of frames per second. Default
  11721. value is "25".
  11722. @item size, s
  11723. Set frame size. For the syntax of this option, check the "Video
  11724. size" section in the ffmpeg-utils manual. Default value is "640x480".
  11725. @item start_scale
  11726. Set the initial scale value. Default value is 3.0.
  11727. @item start_x
  11728. Set the initial x position. Must be a floating point value between
  11729. -100 and 100. Default value is -0.743643887037158704752191506114774.
  11730. @item start_y
  11731. Set the initial y position. Must be a floating point value between
  11732. -100 and 100. Default value is -0.131825904205311970493132056385139.
  11733. @end table
  11734. @section mptestsrc
  11735. Generate various test patterns, as generated by the MPlayer test filter.
  11736. The size of the generated video is fixed, and is 256x256.
  11737. This source is useful in particular for testing encoding features.
  11738. This source accepts the following options:
  11739. @table @option
  11740. @item rate, r
  11741. Specify the frame rate of the sourced video, as the number of frames
  11742. generated per second. It has to be a string in the format
  11743. @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
  11744. number or a valid video frame rate abbreviation. The default value is
  11745. "25".
  11746. @item duration, d
  11747. Set the duration of the sourced video. See
  11748. @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
  11749. for the accepted syntax.
  11750. If not specified, or the expressed duration is negative, the video is
  11751. supposed to be generated forever.
  11752. @item test, t
  11753. Set the number or the name of the test to perform. Supported tests are:
  11754. @table @option
  11755. @item dc_luma
  11756. @item dc_chroma
  11757. @item freq_luma
  11758. @item freq_chroma
  11759. @item amp_luma
  11760. @item amp_chroma
  11761. @item cbp
  11762. @item mv
  11763. @item ring1
  11764. @item ring2
  11765. @item all
  11766. @end table
  11767. Default value is "all", which will cycle through the list of all tests.
  11768. @end table
  11769. Some examples:
  11770. @example
  11771. mptestsrc=t=dc_luma
  11772. @end example
  11773. will generate a "dc_luma" test pattern.
  11774. @section frei0r_src
  11775. Provide a frei0r source.
  11776. To enable compilation of this filter you need to install the frei0r
  11777. header and configure FFmpeg with @code{--enable-frei0r}.
  11778. This source accepts the following parameters:
  11779. @table @option
  11780. @item size
  11781. The size of the video to generate. For the syntax of this option, check the
  11782. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  11783. @item framerate
  11784. The framerate of the generated video. It may be a string of the form
  11785. @var{num}/@var{den} or a frame rate abbreviation.
  11786. @item filter_name
  11787. The name to the frei0r source to load. For more information regarding frei0r and
  11788. how to set the parameters, read the @ref{frei0r} section in the video filters
  11789. documentation.
  11790. @item filter_params
  11791. A '|'-separated list of parameters to pass to the frei0r source.
  11792. @end table
  11793. For example, to generate a frei0r partik0l source with size 200x200
  11794. and frame rate 10 which is overlaid on the overlay filter main input:
  11795. @example
  11796. frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
  11797. @end example
  11798. @section life
  11799. Generate a life pattern.
  11800. This source is based on a generalization of John Conway's life game.
  11801. The sourced input represents a life grid, each pixel represents a cell
  11802. which can be in one of two possible states, alive or dead. Every cell
  11803. interacts with its eight neighbours, which are the cells that are
  11804. horizontally, vertically, or diagonally adjacent.
  11805. At each interaction the grid evolves according to the adopted rule,
  11806. which specifies the number of neighbor alive cells which will make a
  11807. cell stay alive or born. The @option{rule} option allows one to specify
  11808. the rule to adopt.
  11809. This source accepts the following options:
  11810. @table @option
  11811. @item filename, f
  11812. Set the file from which to read the initial grid state. In the file,
  11813. each non-whitespace character is considered an alive cell, and newline
  11814. is used to delimit the end of each row.
  11815. If this option is not specified, the initial grid is generated
  11816. randomly.
  11817. @item rate, r
  11818. Set the video rate, that is the number of frames generated per second.
  11819. Default is 25.
  11820. @item random_fill_ratio, ratio
  11821. Set the random fill ratio for the initial random grid. It is a
  11822. floating point number value ranging from 0 to 1, defaults to 1/PHI.
  11823. It is ignored when a file is specified.
  11824. @item random_seed, seed
  11825. Set the seed for filling the initial random grid, must be an integer
  11826. included between 0 and UINT32_MAX. If not specified, or if explicitly
  11827. set to -1, the filter will try to use a good random seed on a best
  11828. effort basis.
  11829. @item rule
  11830. Set the life rule.
  11831. A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
  11832. where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
  11833. @var{NS} specifies the number of alive neighbor cells which make a
  11834. live cell stay alive, and @var{NB} the number of alive neighbor cells
  11835. which make a dead cell to become alive (i.e. to "born").
  11836. "s" and "b" can be used in place of "S" and "B", respectively.
  11837. Alternatively a rule can be specified by an 18-bits integer. The 9
  11838. high order bits are used to encode the next cell state if it is alive
  11839. for each number of neighbor alive cells, the low order bits specify
  11840. the rule for "borning" new cells. Higher order bits encode for an
  11841. higher number of neighbor cells.
  11842. For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
  11843. rule of 12 and a born rule of 9, which corresponds to "S23/B03".
  11844. Default value is "S23/B3", which is the original Conway's game of life
  11845. rule, and will keep a cell alive if it has 2 or 3 neighbor alive
  11846. cells, and will born a new cell if there are three alive cells around
  11847. a dead cell.
  11848. @item size, s
  11849. Set the size of the output video. For the syntax of this option, check the
  11850. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  11851. If @option{filename} is specified, the size is set by default to the
  11852. same size of the input file. If @option{size} is set, it must contain
  11853. the size specified in the input file, and the initial grid defined in
  11854. that file is centered in the larger resulting area.
  11855. If a filename is not specified, the size value defaults to "320x240"
  11856. (used for a randomly generated initial grid).
  11857. @item stitch
  11858. If set to 1, stitch the left and right grid edges together, and the
  11859. top and bottom edges also. Defaults to 1.
  11860. @item mold
  11861. Set cell mold speed. If set, a dead cell will go from @option{death_color} to
  11862. @option{mold_color} with a step of @option{mold}. @option{mold} can have a
  11863. value from 0 to 255.
  11864. @item life_color
  11865. Set the color of living (or new born) cells.
  11866. @item death_color
  11867. Set the color of dead cells. If @option{mold} is set, this is the first color
  11868. used to represent a dead cell.
  11869. @item mold_color
  11870. Set mold color, for definitely dead and moldy cells.
  11871. For the syntax of these 3 color options, check the "Color" section in the
  11872. ffmpeg-utils manual.
  11873. @end table
  11874. @subsection Examples
  11875. @itemize
  11876. @item
  11877. Read a grid from @file{pattern}, and center it on a grid of size
  11878. 300x300 pixels:
  11879. @example
  11880. life=f=pattern:s=300x300
  11881. @end example
  11882. @item
  11883. Generate a random grid of size 200x200, with a fill ratio of 2/3:
  11884. @example
  11885. life=ratio=2/3:s=200x200
  11886. @end example
  11887. @item
  11888. Specify a custom rule for evolving a randomly generated grid:
  11889. @example
  11890. life=rule=S14/B34
  11891. @end example
  11892. @item
  11893. Full example with slow death effect (mold) using @command{ffplay}:
  11894. @example
  11895. ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
  11896. @end example
  11897. @end itemize
  11898. @anchor{allrgb}
  11899. @anchor{allyuv}
  11900. @anchor{color}
  11901. @anchor{haldclutsrc}
  11902. @anchor{nullsrc}
  11903. @anchor{rgbtestsrc}
  11904. @anchor{smptebars}
  11905. @anchor{smptehdbars}
  11906. @anchor{testsrc}
  11907. @anchor{testsrc2}
  11908. @anchor{yuvtestsrc}
  11909. @section allrgb, allyuv, color, haldclutsrc, nullsrc, rgbtestsrc, smptebars, smptehdbars, testsrc, testsrc2, yuvtestsrc
  11910. The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
  11911. The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
  11912. The @code{color} source provides an uniformly colored input.
  11913. The @code{haldclutsrc} source provides an identity Hald CLUT. See also
  11914. @ref{haldclut} filter.
  11915. The @code{nullsrc} source returns unprocessed video frames. It is
  11916. mainly useful to be employed in analysis / debugging tools, or as the
  11917. source for filters which ignore the input data.
  11918. The @code{rgbtestsrc} source generates an RGB test pattern useful for
  11919. detecting RGB vs BGR issues. You should see a red, green and blue
  11920. stripe from top to bottom.
  11921. The @code{smptebars} source generates a color bars pattern, based on
  11922. the SMPTE Engineering Guideline EG 1-1990.
  11923. The @code{smptehdbars} source generates a color bars pattern, based on
  11924. the SMPTE RP 219-2002.
  11925. The @code{testsrc} source generates a test video pattern, showing a
  11926. color pattern, a scrolling gradient and a timestamp. This is mainly
  11927. intended for testing purposes.
  11928. The @code{testsrc2} source is similar to testsrc, but supports more
  11929. pixel formats instead of just @code{rgb24}. This allows using it as an
  11930. input for other tests without requiring a format conversion.
  11931. The @code{yuvtestsrc} source generates an YUV test pattern. You should
  11932. see a y, cb and cr stripe from top to bottom.
  11933. The sources accept the following parameters:
  11934. @table @option
  11935. @item color, c
  11936. Specify the color of the source, only available in the @code{color}
  11937. source. For the syntax of this option, check the "Color" section in the
  11938. ffmpeg-utils manual.
  11939. @item level
  11940. Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
  11941. source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
  11942. pixels to be used as identity matrix for 3D lookup tables. Each component is
  11943. coded on a @code{1/(N*N)} scale.
  11944. @item size, s
  11945. Specify the size of the sourced video. For the syntax of this option, check the
  11946. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  11947. The default value is @code{320x240}.
  11948. This option is not available with the @code{haldclutsrc} filter.
  11949. @item rate, r
  11950. Specify the frame rate of the sourced video, as the number of frames
  11951. generated per second. It has to be a string in the format
  11952. @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
  11953. number or a valid video frame rate abbreviation. The default value is
  11954. "25".
  11955. @item sar
  11956. Set the sample aspect ratio of the sourced video.
  11957. @item duration, d
  11958. Set the duration of the sourced video. See
  11959. @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
  11960. for the accepted syntax.
  11961. If not specified, or the expressed duration is negative, the video is
  11962. supposed to be generated forever.
  11963. @item decimals, n
  11964. Set the number of decimals to show in the timestamp, only available in the
  11965. @code{testsrc} source.
  11966. The displayed timestamp value will correspond to the original
  11967. timestamp value multiplied by the power of 10 of the specified
  11968. value. Default value is 0.
  11969. @end table
  11970. For example the following:
  11971. @example
  11972. testsrc=duration=5.3:size=qcif:rate=10
  11973. @end example
  11974. will generate a video with a duration of 5.3 seconds, with size
  11975. 176x144 and a frame rate of 10 frames per second.
  11976. The following graph description will generate a red source
  11977. with an opacity of 0.2, with size "qcif" and a frame rate of 10
  11978. frames per second.
  11979. @example
  11980. color=c=red@@0.2:s=qcif:r=10
  11981. @end example
  11982. If the input content is to be ignored, @code{nullsrc} can be used. The
  11983. following command generates noise in the luminance plane by employing
  11984. the @code{geq} filter:
  11985. @example
  11986. nullsrc=s=256x256, geq=random(1)*255:128:128
  11987. @end example
  11988. @subsection Commands
  11989. The @code{color} source supports the following commands:
  11990. @table @option
  11991. @item c, color
  11992. Set the color of the created image. Accepts the same syntax of the
  11993. corresponding @option{color} option.
  11994. @end table
  11995. @c man end VIDEO SOURCES
  11996. @chapter Video Sinks
  11997. @c man begin VIDEO SINKS
  11998. Below is a description of the currently available video sinks.
  11999. @section buffersink
  12000. Buffer video frames, and make them available to the end of the filter
  12001. graph.
  12002. This sink is mainly intended for programmatic use, in particular
  12003. through the interface defined in @file{libavfilter/buffersink.h}
  12004. or the options system.
  12005. It accepts a pointer to an AVBufferSinkContext structure, which
  12006. defines the incoming buffers' formats, to be passed as the opaque
  12007. parameter to @code{avfilter_init_filter} for initialization.
  12008. @section nullsink
  12009. Null video sink: do absolutely nothing with the input video. It is
  12010. mainly useful as a template and for use in analysis / debugging
  12011. tools.
  12012. @c man end VIDEO SINKS
  12013. @chapter Multimedia Filters
  12014. @c man begin MULTIMEDIA FILTERS
  12015. Below is a description of the currently available multimedia filters.
  12016. @section abitscope
  12017. Convert input audio to a video output, displaying the audio bit scope.
  12018. The filter accepts the following options:
  12019. @table @option
  12020. @item rate, r
  12021. Set frame rate, expressed as number of frames per second. Default
  12022. value is "25".
  12023. @item size, s
  12024. Specify the video size for the output. For the syntax of this option, check the
  12025. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  12026. Default value is @code{1024x256}.
  12027. @item colors
  12028. Specify list of colors separated by space or by '|' which will be used to
  12029. draw channels. Unrecognized or missing colors will be replaced
  12030. by white color.
  12031. @end table
  12032. @section ahistogram
  12033. Convert input audio to a video output, displaying the volume histogram.
  12034. The filter accepts the following options:
  12035. @table @option
  12036. @item dmode
  12037. Specify how histogram is calculated.
  12038. It accepts the following values:
  12039. @table @samp
  12040. @item single
  12041. Use single histogram for all channels.
  12042. @item separate
  12043. Use separate histogram for each channel.
  12044. @end table
  12045. Default is @code{single}.
  12046. @item rate, r
  12047. Set frame rate, expressed as number of frames per second. Default
  12048. value is "25".
  12049. @item size, s
  12050. Specify the video size for the output. For the syntax of this option, check the
  12051. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  12052. Default value is @code{hd720}.
  12053. @item scale
  12054. Set display scale.
  12055. It accepts the following values:
  12056. @table @samp
  12057. @item log
  12058. logarithmic
  12059. @item sqrt
  12060. square root
  12061. @item cbrt
  12062. cubic root
  12063. @item lin
  12064. linear
  12065. @item rlog
  12066. reverse logarithmic
  12067. @end table
  12068. Default is @code{log}.
  12069. @item ascale
  12070. Set amplitude scale.
  12071. It accepts the following values:
  12072. @table @samp
  12073. @item log
  12074. logarithmic
  12075. @item lin
  12076. linear
  12077. @end table
  12078. Default is @code{log}.
  12079. @item acount
  12080. Set how much frames to accumulate in histogram.
  12081. Defauls is 1. Setting this to -1 accumulates all frames.
  12082. @item rheight
  12083. Set histogram ratio of window height.
  12084. @item slide
  12085. Set sonogram sliding.
  12086. It accepts the following values:
  12087. @table @samp
  12088. @item replace
  12089. replace old rows with new ones.
  12090. @item scroll
  12091. scroll from top to bottom.
  12092. @end table
  12093. Default is @code{replace}.
  12094. @end table
  12095. @section aphasemeter
  12096. Convert input audio to a video output, displaying the audio phase.
  12097. The filter accepts the following options:
  12098. @table @option
  12099. @item rate, r
  12100. Set the output frame rate. Default value is @code{25}.
  12101. @item size, s
  12102. Set the video size for the output. For the syntax of this option, check the
  12103. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  12104. Default value is @code{800x400}.
  12105. @item rc
  12106. @item gc
  12107. @item bc
  12108. Specify the red, green, blue contrast. Default values are @code{2},
  12109. @code{7} and @code{1}.
  12110. Allowed range is @code{[0, 255]}.
  12111. @item mpc
  12112. Set color which will be used for drawing median phase. If color is
  12113. @code{none} which is default, no median phase value will be drawn.
  12114. @item video
  12115. Enable video output. Default is enabled.
  12116. @end table
  12117. The filter also exports the frame metadata @code{lavfi.aphasemeter.phase} which
  12118. represents mean phase of current audio frame. Value is in range @code{[-1, 1]}.
  12119. The @code{-1} means left and right channels are completely out of phase and
  12120. @code{1} means channels are in phase.
  12121. @section avectorscope
  12122. Convert input audio to a video output, representing the audio vector
  12123. scope.
  12124. The filter is used to measure the difference between channels of stereo
  12125. audio stream. A monoaural signal, consisting of identical left and right
  12126. signal, results in straight vertical line. Any stereo separation is visible
  12127. as a deviation from this line, creating a Lissajous figure.
  12128. If the straight (or deviation from it) but horizontal line appears this
  12129. indicates that the left and right channels are out of phase.
  12130. The filter accepts the following options:
  12131. @table @option
  12132. @item mode, m
  12133. Set the vectorscope mode.
  12134. Available values are:
  12135. @table @samp
  12136. @item lissajous
  12137. Lissajous rotated by 45 degrees.
  12138. @item lissajous_xy
  12139. Same as above but not rotated.
  12140. @item polar
  12141. Shape resembling half of circle.
  12142. @end table
  12143. Default value is @samp{lissajous}.
  12144. @item size, s
  12145. Set the video size for the output. For the syntax of this option, check the
  12146. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  12147. Default value is @code{400x400}.
  12148. @item rate, r
  12149. Set the output frame rate. Default value is @code{25}.
  12150. @item rc
  12151. @item gc
  12152. @item bc
  12153. @item ac
  12154. Specify the red, green, blue and alpha contrast. Default values are @code{40},
  12155. @code{160}, @code{80} and @code{255}.
  12156. Allowed range is @code{[0, 255]}.
  12157. @item rf
  12158. @item gf
  12159. @item bf
  12160. @item af
  12161. Specify the red, green, blue and alpha fade. Default values are @code{15},
  12162. @code{10}, @code{5} and @code{5}.
  12163. Allowed range is @code{[0, 255]}.
  12164. @item zoom
  12165. Set the zoom factor. Default value is @code{1}. Allowed range is @code{[1, 10]}.
  12166. @item draw
  12167. Set the vectorscope drawing mode.
  12168. Available values are:
  12169. @table @samp
  12170. @item dot
  12171. Draw dot for each sample.
  12172. @item line
  12173. Draw line between previous and current sample.
  12174. @end table
  12175. Default value is @samp{dot}.
  12176. @item scale
  12177. Specify amplitude scale of audio samples.
  12178. Available values are:
  12179. @table @samp
  12180. @item lin
  12181. Linear.
  12182. @item sqrt
  12183. Square root.
  12184. @item cbrt
  12185. Cubic root.
  12186. @item log
  12187. Logarithmic.
  12188. @end table
  12189. @end table
  12190. @subsection Examples
  12191. @itemize
  12192. @item
  12193. Complete example using @command{ffplay}:
  12194. @example
  12195. ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
  12196. [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
  12197. @end example
  12198. @end itemize
  12199. @section bench, abench
  12200. Benchmark part of a filtergraph.
  12201. The filter accepts the following options:
  12202. @table @option
  12203. @item action
  12204. Start or stop a timer.
  12205. Available values are:
  12206. @table @samp
  12207. @item start
  12208. Get the current time, set it as frame metadata (using the key
  12209. @code{lavfi.bench.start_time}), and forward the frame to the next filter.
  12210. @item stop
  12211. Get the current time and fetch the @code{lavfi.bench.start_time} metadata from
  12212. the input frame metadata to get the time difference. Time difference, average,
  12213. maximum and minimum time (respectively @code{t}, @code{avg}, @code{max} and
  12214. @code{min}) are then printed. The timestamps are expressed in seconds.
  12215. @end table
  12216. @end table
  12217. @subsection Examples
  12218. @itemize
  12219. @item
  12220. Benchmark @ref{selectivecolor} filter:
  12221. @example
  12222. bench=start,selectivecolor=reds=-.2 .12 -.49,bench=stop
  12223. @end example
  12224. @end itemize
  12225. @section concat
  12226. Concatenate audio and video streams, joining them together one after the
  12227. other.
  12228. The filter works on segments of synchronized video and audio streams. All
  12229. segments must have the same number of streams of each type, and that will
  12230. also be the number of streams at output.
  12231. The filter accepts the following options:
  12232. @table @option
  12233. @item n
  12234. Set the number of segments. Default is 2.
  12235. @item v
  12236. Set the number of output video streams, that is also the number of video
  12237. streams in each segment. Default is 1.
  12238. @item a
  12239. Set the number of output audio streams, that is also the number of audio
  12240. streams in each segment. Default is 0.
  12241. @item unsafe
  12242. Activate unsafe mode: do not fail if segments have a different format.
  12243. @end table
  12244. The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
  12245. @var{a} audio outputs.
  12246. There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
  12247. segment, in the same order as the outputs, then the inputs for the second
  12248. segment, etc.
  12249. Related streams do not always have exactly the same duration, for various
  12250. reasons including codec frame size or sloppy authoring. For that reason,
  12251. related synchronized streams (e.g. a video and its audio track) should be
  12252. concatenated at once. The concat filter will use the duration of the longest
  12253. stream in each segment (except the last one), and if necessary pad shorter
  12254. audio streams with silence.
  12255. For this filter to work correctly, all segments must start at timestamp 0.
  12256. All corresponding streams must have the same parameters in all segments; the
  12257. filtering system will automatically select a common pixel format for video
  12258. streams, and a common sample format, sample rate and channel layout for
  12259. audio streams, but other settings, such as resolution, must be converted
  12260. explicitly by the user.
  12261. Different frame rates are acceptable but will result in variable frame rate
  12262. at output; be sure to configure the output file to handle it.
  12263. @subsection Examples
  12264. @itemize
  12265. @item
  12266. Concatenate an opening, an episode and an ending, all in bilingual version
  12267. (video in stream 0, audio in streams 1 and 2):
  12268. @example
  12269. ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
  12270. '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
  12271. concat=n=3:v=1:a=2 [v] [a1] [a2]' \
  12272. -map '[v]' -map '[a1]' -map '[a2]' output.mkv
  12273. @end example
  12274. @item
  12275. Concatenate two parts, handling audio and video separately, using the
  12276. (a)movie sources, and adjusting the resolution:
  12277. @example
  12278. movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
  12279. movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
  12280. [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
  12281. @end example
  12282. Note that a desync will happen at the stitch if the audio and video streams
  12283. do not have exactly the same duration in the first file.
  12284. @end itemize
  12285. @section drawgraph, adrawgraph
  12286. Draw a graph using input video or audio metadata.
  12287. It accepts the following parameters:
  12288. @table @option
  12289. @item m1
  12290. Set 1st frame metadata key from which metadata values will be used to draw a graph.
  12291. @item fg1
  12292. Set 1st foreground color expression.
  12293. @item m2
  12294. Set 2nd frame metadata key from which metadata values will be used to draw a graph.
  12295. @item fg2
  12296. Set 2nd foreground color expression.
  12297. @item m3
  12298. Set 3rd frame metadata key from which metadata values will be used to draw a graph.
  12299. @item fg3
  12300. Set 3rd foreground color expression.
  12301. @item m4
  12302. Set 4th frame metadata key from which metadata values will be used to draw a graph.
  12303. @item fg4
  12304. Set 4th foreground color expression.
  12305. @item min
  12306. Set minimal value of metadata value.
  12307. @item max
  12308. Set maximal value of metadata value.
  12309. @item bg
  12310. Set graph background color. Default is white.
  12311. @item mode
  12312. Set graph mode.
  12313. Available values for mode is:
  12314. @table @samp
  12315. @item bar
  12316. @item dot
  12317. @item line
  12318. @end table
  12319. Default is @code{line}.
  12320. @item slide
  12321. Set slide mode.
  12322. Available values for slide is:
  12323. @table @samp
  12324. @item frame
  12325. Draw new frame when right border is reached.
  12326. @item replace
  12327. Replace old columns with new ones.
  12328. @item scroll
  12329. Scroll from right to left.
  12330. @item rscroll
  12331. Scroll from left to right.
  12332. @item picture
  12333. Draw single picture.
  12334. @end table
  12335. Default is @code{frame}.
  12336. @item size
  12337. Set size of graph video. For the syntax of this option, check the
  12338. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  12339. The default value is @code{900x256}.
  12340. The foreground color expressions can use the following variables:
  12341. @table @option
  12342. @item MIN
  12343. Minimal value of metadata value.
  12344. @item MAX
  12345. Maximal value of metadata value.
  12346. @item VAL
  12347. Current metadata key value.
  12348. @end table
  12349. The color is defined as 0xAABBGGRR.
  12350. @end table
  12351. Example using metadata from @ref{signalstats} filter:
  12352. @example
  12353. signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
  12354. @end example
  12355. Example using metadata from @ref{ebur128} filter:
  12356. @example
  12357. ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
  12358. @end example
  12359. @anchor{ebur128}
  12360. @section ebur128
  12361. EBU R128 scanner filter. This filter takes an audio stream as input and outputs
  12362. it unchanged. By default, it logs a message at a frequency of 10Hz with the
  12363. Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
  12364. Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
  12365. The filter also has a video output (see the @var{video} option) with a real
  12366. time graph to observe the loudness evolution. The graphic contains the logged
  12367. message mentioned above, so it is not printed anymore when this option is set,
  12368. unless the verbose logging is set. The main graphing area contains the
  12369. short-term loudness (3 seconds of analysis), and the gauge on the right is for
  12370. the momentary loudness (400 milliseconds).
  12371. More information about the Loudness Recommendation EBU R128 on
  12372. @url{http://tech.ebu.ch/loudness}.
  12373. The filter accepts the following options:
  12374. @table @option
  12375. @item video
  12376. Activate the video output. The audio stream is passed unchanged whether this
  12377. option is set or no. The video stream will be the first output stream if
  12378. activated. Default is @code{0}.
  12379. @item size
  12380. Set the video size. This option is for video only. For the syntax of this
  12381. option, check the
  12382. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  12383. Default and minimum resolution is @code{640x480}.
  12384. @item meter
  12385. Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
  12386. @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
  12387. other integer value between this range is allowed.
  12388. @item metadata
  12389. Set metadata injection. If set to @code{1}, the audio input will be segmented
  12390. into 100ms output frames, each of them containing various loudness information
  12391. in metadata. All the metadata keys are prefixed with @code{lavfi.r128.}.
  12392. Default is @code{0}.
  12393. @item framelog
  12394. Force the frame logging level.
  12395. Available values are:
  12396. @table @samp
  12397. @item info
  12398. information logging level
  12399. @item verbose
  12400. verbose logging level
  12401. @end table
  12402. By default, the logging level is set to @var{info}. If the @option{video} or
  12403. the @option{metadata} options are set, it switches to @var{verbose}.
  12404. @item peak
  12405. Set peak mode(s).
  12406. Available modes can be cumulated (the option is a @code{flag} type). Possible
  12407. values are:
  12408. @table @samp
  12409. @item none
  12410. Disable any peak mode (default).
  12411. @item sample
  12412. Enable sample-peak mode.
  12413. Simple peak mode looking for the higher sample value. It logs a message
  12414. for sample-peak (identified by @code{SPK}).
  12415. @item true
  12416. Enable true-peak mode.
  12417. If enabled, the peak lookup is done on an over-sampled version of the input
  12418. stream for better peak accuracy. It logs a message for true-peak.
  12419. (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
  12420. This mode requires a build with @code{libswresample}.
  12421. @end table
  12422. @item dualmono
  12423. Treat mono input files as "dual mono". If a mono file is intended for playback
  12424. on a stereo system, its EBU R128 measurement will be perceptually incorrect.
  12425. If set to @code{true}, this option will compensate for this effect.
  12426. Multi-channel input files are not affected by this option.
  12427. @item panlaw
  12428. Set a specific pan law to be used for the measurement of dual mono files.
  12429. This parameter is optional, and has a default value of -3.01dB.
  12430. @end table
  12431. @subsection Examples
  12432. @itemize
  12433. @item
  12434. Real-time graph using @command{ffplay}, with a EBU scale meter +18:
  12435. @example
  12436. ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
  12437. @end example
  12438. @item
  12439. Run an analysis with @command{ffmpeg}:
  12440. @example
  12441. ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
  12442. @end example
  12443. @end itemize
  12444. @section interleave, ainterleave
  12445. Temporally interleave frames from several inputs.
  12446. @code{interleave} works with video inputs, @code{ainterleave} with audio.
  12447. These filters read frames from several inputs and send the oldest
  12448. queued frame to the output.
  12449. Input streams must have well defined, monotonically increasing frame
  12450. timestamp values.
  12451. In order to submit one frame to output, these filters need to enqueue
  12452. at least one frame for each input, so they cannot work in case one
  12453. input is not yet terminated and will not receive incoming frames.
  12454. For example consider the case when one input is a @code{select} filter
  12455. which always drops input frames. The @code{interleave} filter will keep
  12456. reading from that input, but it will never be able to send new frames
  12457. to output until the input sends an end-of-stream signal.
  12458. Also, depending on inputs synchronization, the filters will drop
  12459. frames in case one input receives more frames than the other ones, and
  12460. the queue is already filled.
  12461. These filters accept the following options:
  12462. @table @option
  12463. @item nb_inputs, n
  12464. Set the number of different inputs, it is 2 by default.
  12465. @end table
  12466. @subsection Examples
  12467. @itemize
  12468. @item
  12469. Interleave frames belonging to different streams using @command{ffmpeg}:
  12470. @example
  12471. ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
  12472. @end example
  12473. @item
  12474. Add flickering blur effect:
  12475. @example
  12476. select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
  12477. @end example
  12478. @end itemize
  12479. @section metadata, ametadata
  12480. Manipulate frame metadata.
  12481. This filter accepts the following options:
  12482. @table @option
  12483. @item mode
  12484. Set mode of operation of the filter.
  12485. Can be one of the following:
  12486. @table @samp
  12487. @item select
  12488. If both @code{value} and @code{key} is set, select frames
  12489. which have such metadata. If only @code{key} is set, select
  12490. every frame that has such key in metadata.
  12491. @item add
  12492. Add new metadata @code{key} and @code{value}. If key is already available
  12493. do nothing.
  12494. @item modify
  12495. Modify value of already present key.
  12496. @item delete
  12497. If @code{value} is set, delete only keys that have such value.
  12498. Otherwise, delete key. If @code{key} is not set, delete all metadata values in
  12499. the frame.
  12500. @item print
  12501. Print key and its value if metadata was found. If @code{key} is not set print all
  12502. metadata values available in frame.
  12503. @end table
  12504. @item key
  12505. Set key used with all modes. Must be set for all modes except @code{print} and @code{delete}.
  12506. @item value
  12507. Set metadata value which will be used. This option is mandatory for
  12508. @code{modify} and @code{add} mode.
  12509. @item function
  12510. Which function to use when comparing metadata value and @code{value}.
  12511. Can be one of following:
  12512. @table @samp
  12513. @item same_str
  12514. Values are interpreted as strings, returns true if metadata value is same as @code{value}.
  12515. @item starts_with
  12516. Values are interpreted as strings, returns true if metadata value starts with
  12517. the @code{value} option string.
  12518. @item less
  12519. Values are interpreted as floats, returns true if metadata value is less than @code{value}.
  12520. @item equal
  12521. Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
  12522. @item greater
  12523. Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
  12524. @item expr
  12525. Values are interpreted as floats, returns true if expression from option @code{expr}
  12526. evaluates to true.
  12527. @end table
  12528. @item expr
  12529. Set expression which is used when @code{function} is set to @code{expr}.
  12530. The expression is evaluated through the eval API and can contain the following
  12531. constants:
  12532. @table @option
  12533. @item VALUE1
  12534. Float representation of @code{value} from metadata key.
  12535. @item VALUE2
  12536. Float representation of @code{value} as supplied by user in @code{value} option.
  12537. @item file
  12538. If specified in @code{print} mode, output is written to the named file. Instead of
  12539. plain filename any writable url can be specified. Filename ``-'' is a shorthand
  12540. for standard output. If @code{file} option is not set, output is written to the log
  12541. with AV_LOG_INFO loglevel.
  12542. @end table
  12543. @end table
  12544. @subsection Examples
  12545. @itemize
  12546. @item
  12547. Print all metadata values for frames with key @code{lavfi.singnalstats.YDIF} with values
  12548. between 0 and 1.
  12549. @example
  12550. signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
  12551. @end example
  12552. @item
  12553. Print silencedetect output to file @file{metadata.txt}.
  12554. @example
  12555. silencedetect,ametadata=mode=print:file=metadata.txt
  12556. @end example
  12557. @item
  12558. Direct all metadata to a pipe with file descriptor 4.
  12559. @example
  12560. metadata=mode=print:file='pipe\:4'
  12561. @end example
  12562. @end itemize
  12563. @section perms, aperms
  12564. Set read/write permissions for the output frames.
  12565. These filters are mainly aimed at developers to test direct path in the
  12566. following filter in the filtergraph.
  12567. The filters accept the following options:
  12568. @table @option
  12569. @item mode
  12570. Select the permissions mode.
  12571. It accepts the following values:
  12572. @table @samp
  12573. @item none
  12574. Do nothing. This is the default.
  12575. @item ro
  12576. Set all the output frames read-only.
  12577. @item rw
  12578. Set all the output frames directly writable.
  12579. @item toggle
  12580. Make the frame read-only if writable, and writable if read-only.
  12581. @item random
  12582. Set each output frame read-only or writable randomly.
  12583. @end table
  12584. @item seed
  12585. Set the seed for the @var{random} mode, must be an integer included between
  12586. @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
  12587. @code{-1}, the filter will try to use a good random seed on a best effort
  12588. basis.
  12589. @end table
  12590. Note: in case of auto-inserted filter between the permission filter and the
  12591. following one, the permission might not be received as expected in that
  12592. following filter. Inserting a @ref{format} or @ref{aformat} filter before the
  12593. perms/aperms filter can avoid this problem.
  12594. @section realtime, arealtime
  12595. Slow down filtering to match real time approximatively.
  12596. These filters will pause the filtering for a variable amount of time to
  12597. match the output rate with the input timestamps.
  12598. They are similar to the @option{re} option to @code{ffmpeg}.
  12599. They accept the following options:
  12600. @table @option
  12601. @item limit
  12602. Time limit for the pauses. Any pause longer than that will be considered
  12603. a timestamp discontinuity and reset the timer. Default is 2 seconds.
  12604. @end table
  12605. @anchor{select}
  12606. @section select, aselect
  12607. Select frames to pass in output.
  12608. This filter accepts the following options:
  12609. @table @option
  12610. @item expr, e
  12611. Set expression, which is evaluated for each input frame.
  12612. If the expression is evaluated to zero, the frame is discarded.
  12613. If the evaluation result is negative or NaN, the frame is sent to the
  12614. first output; otherwise it is sent to the output with index
  12615. @code{ceil(val)-1}, assuming that the input index starts from 0.
  12616. For example a value of @code{1.2} corresponds to the output with index
  12617. @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
  12618. @item outputs, n
  12619. Set the number of outputs. The output to which to send the selected
  12620. frame is based on the result of the evaluation. Default value is 1.
  12621. @end table
  12622. The expression can contain the following constants:
  12623. @table @option
  12624. @item n
  12625. The (sequential) number of the filtered frame, starting from 0.
  12626. @item selected_n
  12627. The (sequential) number of the selected frame, starting from 0.
  12628. @item prev_selected_n
  12629. The sequential number of the last selected frame. It's NAN if undefined.
  12630. @item TB
  12631. The timebase of the input timestamps.
  12632. @item pts
  12633. The PTS (Presentation TimeStamp) of the filtered video frame,
  12634. expressed in @var{TB} units. It's NAN if undefined.
  12635. @item t
  12636. The PTS of the filtered video frame,
  12637. expressed in seconds. It's NAN if undefined.
  12638. @item prev_pts
  12639. The PTS of the previously filtered video frame. It's NAN if undefined.
  12640. @item prev_selected_pts
  12641. The PTS of the last previously filtered video frame. It's NAN if undefined.
  12642. @item prev_selected_t
  12643. The PTS of the last previously selected video frame. It's NAN if undefined.
  12644. @item start_pts
  12645. The PTS of the first video frame in the video. It's NAN if undefined.
  12646. @item start_t
  12647. The time of the first video frame in the video. It's NAN if undefined.
  12648. @item pict_type @emph{(video only)}
  12649. The type of the filtered frame. It can assume one of the following
  12650. values:
  12651. @table @option
  12652. @item I
  12653. @item P
  12654. @item B
  12655. @item S
  12656. @item SI
  12657. @item SP
  12658. @item BI
  12659. @end table
  12660. @item interlace_type @emph{(video only)}
  12661. The frame interlace type. It can assume one of the following values:
  12662. @table @option
  12663. @item PROGRESSIVE
  12664. The frame is progressive (not interlaced).
  12665. @item TOPFIRST
  12666. The frame is top-field-first.
  12667. @item BOTTOMFIRST
  12668. The frame is bottom-field-first.
  12669. @end table
  12670. @item consumed_sample_n @emph{(audio only)}
  12671. the number of selected samples before the current frame
  12672. @item samples_n @emph{(audio only)}
  12673. the number of samples in the current frame
  12674. @item sample_rate @emph{(audio only)}
  12675. the input sample rate
  12676. @item key
  12677. This is 1 if the filtered frame is a key-frame, 0 otherwise.
  12678. @item pos
  12679. the position in the file of the filtered frame, -1 if the information
  12680. is not available (e.g. for synthetic video)
  12681. @item scene @emph{(video only)}
  12682. value between 0 and 1 to indicate a new scene; a low value reflects a low
  12683. probability for the current frame to introduce a new scene, while a higher
  12684. value means the current frame is more likely to be one (see the example below)
  12685. @item concatdec_select
  12686. The concat demuxer can select only part of a concat input file by setting an
  12687. inpoint and an outpoint, but the output packets may not be entirely contained
  12688. in the selected interval. By using this variable, it is possible to skip frames
  12689. generated by the concat demuxer which are not exactly contained in the selected
  12690. interval.
  12691. This works by comparing the frame pts against the @var{lavf.concat.start_time}
  12692. and the @var{lavf.concat.duration} packet metadata values which are also
  12693. present in the decoded frames.
  12694. The @var{concatdec_select} variable is -1 if the frame pts is at least
  12695. start_time and either the duration metadata is missing or the frame pts is less
  12696. than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
  12697. missing.
  12698. That basically means that an input frame is selected if its pts is within the
  12699. interval set by the concat demuxer.
  12700. @end table
  12701. The default value of the select expression is "1".
  12702. @subsection Examples
  12703. @itemize
  12704. @item
  12705. Select all frames in input:
  12706. @example
  12707. select
  12708. @end example
  12709. The example above is the same as:
  12710. @example
  12711. select=1
  12712. @end example
  12713. @item
  12714. Skip all frames:
  12715. @example
  12716. select=0
  12717. @end example
  12718. @item
  12719. Select only I-frames:
  12720. @example
  12721. select='eq(pict_type\,I)'
  12722. @end example
  12723. @item
  12724. Select one frame every 100:
  12725. @example
  12726. select='not(mod(n\,100))'
  12727. @end example
  12728. @item
  12729. Select only frames contained in the 10-20 time interval:
  12730. @example
  12731. select=between(t\,10\,20)
  12732. @end example
  12733. @item
  12734. Select only I-frames contained in the 10-20 time interval:
  12735. @example
  12736. select=between(t\,10\,20)*eq(pict_type\,I)
  12737. @end example
  12738. @item
  12739. Select frames with a minimum distance of 10 seconds:
  12740. @example
  12741. select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
  12742. @end example
  12743. @item
  12744. Use aselect to select only audio frames with samples number > 100:
  12745. @example
  12746. aselect='gt(samples_n\,100)'
  12747. @end example
  12748. @item
  12749. Create a mosaic of the first scenes:
  12750. @example
  12751. ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
  12752. @end example
  12753. Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
  12754. choice.
  12755. @item
  12756. Send even and odd frames to separate outputs, and compose them:
  12757. @example
  12758. select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
  12759. @end example
  12760. @item
  12761. Select useful frames from an ffconcat file which is using inpoints and
  12762. outpoints but where the source files are not intra frame only.
  12763. @example
  12764. ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
  12765. @end example
  12766. @end itemize
  12767. @section sendcmd, asendcmd
  12768. Send commands to filters in the filtergraph.
  12769. These filters read commands to be sent to other filters in the
  12770. filtergraph.
  12771. @code{sendcmd} must be inserted between two video filters,
  12772. @code{asendcmd} must be inserted between two audio filters, but apart
  12773. from that they act the same way.
  12774. The specification of commands can be provided in the filter arguments
  12775. with the @var{commands} option, or in a file specified by the
  12776. @var{filename} option.
  12777. These filters accept the following options:
  12778. @table @option
  12779. @item commands, c
  12780. Set the commands to be read and sent to the other filters.
  12781. @item filename, f
  12782. Set the filename of the commands to be read and sent to the other
  12783. filters.
  12784. @end table
  12785. @subsection Commands syntax
  12786. A commands description consists of a sequence of interval
  12787. specifications, comprising a list of commands to be executed when a
  12788. particular event related to that interval occurs. The occurring event
  12789. is typically the current frame time entering or leaving a given time
  12790. interval.
  12791. An interval is specified by the following syntax:
  12792. @example
  12793. @var{START}[-@var{END}] @var{COMMANDS};
  12794. @end example
  12795. The time interval is specified by the @var{START} and @var{END} times.
  12796. @var{END} is optional and defaults to the maximum time.
  12797. The current frame time is considered within the specified interval if
  12798. it is included in the interval [@var{START}, @var{END}), that is when
  12799. the time is greater or equal to @var{START} and is lesser than
  12800. @var{END}.
  12801. @var{COMMANDS} consists of a sequence of one or more command
  12802. specifications, separated by ",", relating to that interval. The
  12803. syntax of a command specification is given by:
  12804. @example
  12805. [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
  12806. @end example
  12807. @var{FLAGS} is optional and specifies the type of events relating to
  12808. the time interval which enable sending the specified command, and must
  12809. be a non-null sequence of identifier flags separated by "+" or "|" and
  12810. enclosed between "[" and "]".
  12811. The following flags are recognized:
  12812. @table @option
  12813. @item enter
  12814. The command is sent when the current frame timestamp enters the
  12815. specified interval. In other words, the command is sent when the
  12816. previous frame timestamp was not in the given interval, and the
  12817. current is.
  12818. @item leave
  12819. The command is sent when the current frame timestamp leaves the
  12820. specified interval. In other words, the command is sent when the
  12821. previous frame timestamp was in the given interval, and the
  12822. current is not.
  12823. @end table
  12824. If @var{FLAGS} is not specified, a default value of @code{[enter]} is
  12825. assumed.
  12826. @var{TARGET} specifies the target of the command, usually the name of
  12827. the filter class or a specific filter instance name.
  12828. @var{COMMAND} specifies the name of the command for the target filter.
  12829. @var{ARG} is optional and specifies the optional list of argument for
  12830. the given @var{COMMAND}.
  12831. Between one interval specification and another, whitespaces, or
  12832. sequences of characters starting with @code{#} until the end of line,
  12833. are ignored and can be used to annotate comments.
  12834. A simplified BNF description of the commands specification syntax
  12835. follows:
  12836. @example
  12837. @var{COMMAND_FLAG} ::= "enter" | "leave"
  12838. @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
  12839. @var{COMMAND} ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
  12840. @var{COMMANDS} ::= @var{COMMAND} [,@var{COMMANDS}]
  12841. @var{INTERVAL} ::= @var{START}[-@var{END}] @var{COMMANDS}
  12842. @var{INTERVALS} ::= @var{INTERVAL}[;@var{INTERVALS}]
  12843. @end example
  12844. @subsection Examples
  12845. @itemize
  12846. @item
  12847. Specify audio tempo change at second 4:
  12848. @example
  12849. asendcmd=c='4.0 atempo tempo 1.5',atempo
  12850. @end example
  12851. @item
  12852. Specify a list of drawtext and hue commands in a file.
  12853. @example
  12854. # show text in the interval 5-10
  12855. 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
  12856. [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
  12857. # desaturate the image in the interval 15-20
  12858. 15.0-20.0 [enter] hue s 0,
  12859. [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
  12860. [leave] hue s 1,
  12861. [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
  12862. # apply an exponential saturation fade-out effect, starting from time 25
  12863. 25 [enter] hue s exp(25-t)
  12864. @end example
  12865. A filtergraph allowing to read and process the above command list
  12866. stored in a file @file{test.cmd}, can be specified with:
  12867. @example
  12868. sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
  12869. @end example
  12870. @end itemize
  12871. @anchor{setpts}
  12872. @section setpts, asetpts
  12873. Change the PTS (presentation timestamp) of the input frames.
  12874. @code{setpts} works on video frames, @code{asetpts} on audio frames.
  12875. This filter accepts the following options:
  12876. @table @option
  12877. @item expr
  12878. The expression which is evaluated for each frame to construct its timestamp.
  12879. @end table
  12880. The expression is evaluated through the eval API and can contain the following
  12881. constants:
  12882. @table @option
  12883. @item FRAME_RATE
  12884. frame rate, only defined for constant frame-rate video
  12885. @item PTS
  12886. The presentation timestamp in input
  12887. @item N
  12888. The count of the input frame for video or the number of consumed samples,
  12889. not including the current frame for audio, starting from 0.
  12890. @item NB_CONSUMED_SAMPLES
  12891. The number of consumed samples, not including the current frame (only
  12892. audio)
  12893. @item NB_SAMPLES, S
  12894. The number of samples in the current frame (only audio)
  12895. @item SAMPLE_RATE, SR
  12896. The audio sample rate.
  12897. @item STARTPTS
  12898. The PTS of the first frame.
  12899. @item STARTT
  12900. the time in seconds of the first frame
  12901. @item INTERLACED
  12902. State whether the current frame is interlaced.
  12903. @item T
  12904. the time in seconds of the current frame
  12905. @item POS
  12906. original position in the file of the frame, or undefined if undefined
  12907. for the current frame
  12908. @item PREV_INPTS
  12909. The previous input PTS.
  12910. @item PREV_INT
  12911. previous input time in seconds
  12912. @item PREV_OUTPTS
  12913. The previous output PTS.
  12914. @item PREV_OUTT
  12915. previous output time in seconds
  12916. @item RTCTIME
  12917. The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
  12918. instead.
  12919. @item RTCSTART
  12920. The wallclock (RTC) time at the start of the movie in microseconds.
  12921. @item TB
  12922. The timebase of the input timestamps.
  12923. @end table
  12924. @subsection Examples
  12925. @itemize
  12926. @item
  12927. Start counting PTS from zero
  12928. @example
  12929. setpts=PTS-STARTPTS
  12930. @end example
  12931. @item
  12932. Apply fast motion effect:
  12933. @example
  12934. setpts=0.5*PTS
  12935. @end example
  12936. @item
  12937. Apply slow motion effect:
  12938. @example
  12939. setpts=2.0*PTS
  12940. @end example
  12941. @item
  12942. Set fixed rate of 25 frames per second:
  12943. @example
  12944. setpts=N/(25*TB)
  12945. @end example
  12946. @item
  12947. Set fixed rate 25 fps with some jitter:
  12948. @example
  12949. setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
  12950. @end example
  12951. @item
  12952. Apply an offset of 10 seconds to the input PTS:
  12953. @example
  12954. setpts=PTS+10/TB
  12955. @end example
  12956. @item
  12957. Generate timestamps from a "live source" and rebase onto the current timebase:
  12958. @example
  12959. setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
  12960. @end example
  12961. @item
  12962. Generate timestamps by counting samples:
  12963. @example
  12964. asetpts=N/SR/TB
  12965. @end example
  12966. @end itemize
  12967. @section settb, asettb
  12968. Set the timebase to use for the output frames timestamps.
  12969. It is mainly useful for testing timebase configuration.
  12970. It accepts the following parameters:
  12971. @table @option
  12972. @item expr, tb
  12973. The expression which is evaluated into the output timebase.
  12974. @end table
  12975. The value for @option{tb} is an arithmetic expression representing a
  12976. rational. The expression can contain the constants "AVTB" (the default
  12977. timebase), "intb" (the input timebase) and "sr" (the sample rate,
  12978. audio only). Default value is "intb".
  12979. @subsection Examples
  12980. @itemize
  12981. @item
  12982. Set the timebase to 1/25:
  12983. @example
  12984. settb=expr=1/25
  12985. @end example
  12986. @item
  12987. Set the timebase to 1/10:
  12988. @example
  12989. settb=expr=0.1
  12990. @end example
  12991. @item
  12992. Set the timebase to 1001/1000:
  12993. @example
  12994. settb=1+0.001
  12995. @end example
  12996. @item
  12997. Set the timebase to 2*intb:
  12998. @example
  12999. settb=2*intb
  13000. @end example
  13001. @item
  13002. Set the default timebase value:
  13003. @example
  13004. settb=AVTB
  13005. @end example
  13006. @end itemize
  13007. @section showcqt
  13008. Convert input audio to a video output representing frequency spectrum
  13009. logarithmically using Brown-Puckette constant Q transform algorithm with
  13010. direct frequency domain coefficient calculation (but the transform itself
  13011. is not really constant Q, instead the Q factor is actually variable/clamped),
  13012. with musical tone scale, from E0 to D#10.
  13013. The filter accepts the following options:
  13014. @table @option
  13015. @item size, s
  13016. Specify the video size for the output. It must be even. For the syntax of this option,
  13017. check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  13018. Default value is @code{1920x1080}.
  13019. @item fps, rate, r
  13020. Set the output frame rate. Default value is @code{25}.
  13021. @item bar_h
  13022. Set the bargraph height. It must be even. Default value is @code{-1} which
  13023. computes the bargraph height automatically.
  13024. @item axis_h
  13025. Set the axis height. It must be even. Default value is @code{-1} which computes
  13026. the axis height automatically.
  13027. @item sono_h
  13028. Set the sonogram height. It must be even. Default value is @code{-1} which
  13029. computes the sonogram height automatically.
  13030. @item fullhd
  13031. Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
  13032. instead. Default value is @code{1}.
  13033. @item sono_v, volume
  13034. Specify the sonogram volume expression. It can contain variables:
  13035. @table @option
  13036. @item bar_v
  13037. the @var{bar_v} evaluated expression
  13038. @item frequency, freq, f
  13039. the frequency where it is evaluated
  13040. @item timeclamp, tc
  13041. the value of @var{timeclamp} option
  13042. @end table
  13043. and functions:
  13044. @table @option
  13045. @item a_weighting(f)
  13046. A-weighting of equal loudness
  13047. @item b_weighting(f)
  13048. B-weighting of equal loudness
  13049. @item c_weighting(f)
  13050. C-weighting of equal loudness.
  13051. @end table
  13052. Default value is @code{16}.
  13053. @item bar_v, volume2
  13054. Specify the bargraph volume expression. It can contain variables:
  13055. @table @option
  13056. @item sono_v
  13057. the @var{sono_v} evaluated expression
  13058. @item frequency, freq, f
  13059. the frequency where it is evaluated
  13060. @item timeclamp, tc
  13061. the value of @var{timeclamp} option
  13062. @end table
  13063. and functions:
  13064. @table @option
  13065. @item a_weighting(f)
  13066. A-weighting of equal loudness
  13067. @item b_weighting(f)
  13068. B-weighting of equal loudness
  13069. @item c_weighting(f)
  13070. C-weighting of equal loudness.
  13071. @end table
  13072. Default value is @code{sono_v}.
  13073. @item sono_g, gamma
  13074. Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
  13075. higher gamma makes the spectrum having more range. Default value is @code{3}.
  13076. Acceptable range is @code{[1, 7]}.
  13077. @item bar_g, gamma2
  13078. Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
  13079. @code{[1, 7]}.
  13080. @item bar_t
  13081. Specify the bargraph transparency level. Lower value makes the bargraph sharper.
  13082. Default value is @code{1}. Acceptable range is @code{[0, 1]}.
  13083. @item timeclamp, tc
  13084. Specify the transform timeclamp. At low frequency, there is trade-off between
  13085. accuracy in time domain and frequency domain. If timeclamp is lower,
  13086. event in time domain is represented more accurately (such as fast bass drum),
  13087. otherwise event in frequency domain is represented more accurately
  13088. (such as bass guitar). Acceptable range is @code{[0.002, 1]}. Default value is @code{0.17}.
  13089. @item basefreq
  13090. Specify the transform base frequency. Default value is @code{20.01523126408007475},
  13091. which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
  13092. @item endfreq
  13093. Specify the transform end frequency. Default value is @code{20495.59681441799654},
  13094. which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
  13095. @item coeffclamp
  13096. This option is deprecated and ignored.
  13097. @item tlength
  13098. Specify the transform length in time domain. Use this option to control accuracy
  13099. trade-off between time domain and frequency domain at every frequency sample.
  13100. It can contain variables:
  13101. @table @option
  13102. @item frequency, freq, f
  13103. the frequency where it is evaluated
  13104. @item timeclamp, tc
  13105. the value of @var{timeclamp} option.
  13106. @end table
  13107. Default value is @code{384*tc/(384+tc*f)}.
  13108. @item count
  13109. Specify the transform count for every video frame. Default value is @code{6}.
  13110. Acceptable range is @code{[1, 30]}.
  13111. @item fcount
  13112. Specify the transform count for every single pixel. Default value is @code{0},
  13113. which makes it computed automatically. Acceptable range is @code{[0, 10]}.
  13114. @item fontfile
  13115. Specify font file for use with freetype to draw the axis. If not specified,
  13116. use embedded font. Note that drawing with font file or embedded font is not
  13117. implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
  13118. option instead.
  13119. @item font
  13120. Specify fontconfig pattern. This has lower priority than @var{fontfile}.
  13121. The : in the pattern may be replaced by | to avoid unnecessary escaping.
  13122. @item fontcolor
  13123. Specify font color expression. This is arithmetic expression that should return
  13124. integer value 0xRRGGBB. It can contain variables:
  13125. @table @option
  13126. @item frequency, freq, f
  13127. the frequency where it is evaluated
  13128. @item timeclamp, tc
  13129. the value of @var{timeclamp} option
  13130. @end table
  13131. and functions:
  13132. @table @option
  13133. @item midi(f)
  13134. midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
  13135. @item r(x), g(x), b(x)
  13136. red, green, and blue value of intensity x.
  13137. @end table
  13138. Default value is @code{st(0, (midi(f)-59.5)/12);
  13139. st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
  13140. r(1-ld(1)) + b(ld(1))}.
  13141. @item axisfile
  13142. Specify image file to draw the axis. This option override @var{fontfile} and
  13143. @var{fontcolor} option.
  13144. @item axis, text
  13145. Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
  13146. the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
  13147. Default value is @code{1}.
  13148. @item csp
  13149. Set colorspace. The accepted values are:
  13150. @table @samp
  13151. @item unspecified
  13152. Unspecified (default)
  13153. @item bt709
  13154. BT.709
  13155. @item fcc
  13156. FCC
  13157. @item bt470bg
  13158. BT.470BG or BT.601-6 625
  13159. @item smpte170m
  13160. SMPTE-170M or BT.601-6 525
  13161. @item smpte240m
  13162. SMPTE-240M
  13163. @item bt2020ncl
  13164. BT.2020 with non-constant luminance
  13165. @end table
  13166. @item cscheme
  13167. Set spectrogram color scheme. This is list of floating point values with format
  13168. @code{left_r|left_g|left_b|right_r|right_g|right_b}.
  13169. The default is @code{1|0.5|0|0|0.5|1}.
  13170. @end table
  13171. @subsection Examples
  13172. @itemize
  13173. @item
  13174. Playing audio while showing the spectrum:
  13175. @example
  13176. ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
  13177. @end example
  13178. @item
  13179. Same as above, but with frame rate 30 fps:
  13180. @example
  13181. ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
  13182. @end example
  13183. @item
  13184. Playing at 1280x720:
  13185. @example
  13186. ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
  13187. @end example
  13188. @item
  13189. Disable sonogram display:
  13190. @example
  13191. sono_h=0
  13192. @end example
  13193. @item
  13194. A1 and its harmonics: A1, A2, (near)E3, A3:
  13195. @example
  13196. 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),
  13197. asplit[a][out1]; [a] showcqt [out0]'
  13198. @end example
  13199. @item
  13200. Same as above, but with more accuracy in frequency domain:
  13201. @example
  13202. 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),
  13203. asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
  13204. @end example
  13205. @item
  13206. Custom volume:
  13207. @example
  13208. bar_v=10:sono_v=bar_v*a_weighting(f)
  13209. @end example
  13210. @item
  13211. Custom gamma, now spectrum is linear to the amplitude.
  13212. @example
  13213. bar_g=2:sono_g=2
  13214. @end example
  13215. @item
  13216. Custom tlength equation:
  13217. @example
  13218. tc=0.33:tlength='st(0,0.17); 384*tc / (384 / ld(0) + tc*f /(1-ld(0))) + 384*tc / (tc*f / ld(0) + 384 /(1-ld(0)))'
  13219. @end example
  13220. @item
  13221. Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
  13222. @example
  13223. fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
  13224. @end example
  13225. @item
  13226. Custom font using fontconfig:
  13227. @example
  13228. font='Courier New,Monospace,mono|bold'
  13229. @end example
  13230. @item
  13231. Custom frequency range with custom axis using image file:
  13232. @example
  13233. axisfile=myaxis.png:basefreq=40:endfreq=10000
  13234. @end example
  13235. @end itemize
  13236. @section showfreqs
  13237. Convert input audio to video output representing the audio power spectrum.
  13238. Audio amplitude is on Y-axis while frequency is on X-axis.
  13239. The filter accepts the following options:
  13240. @table @option
  13241. @item size, s
  13242. Specify size of video. For the syntax of this option, check the
  13243. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  13244. Default is @code{1024x512}.
  13245. @item mode
  13246. Set display mode.
  13247. This set how each frequency bin will be represented.
  13248. It accepts the following values:
  13249. @table @samp
  13250. @item line
  13251. @item bar
  13252. @item dot
  13253. @end table
  13254. Default is @code{bar}.
  13255. @item ascale
  13256. Set amplitude scale.
  13257. It accepts the following values:
  13258. @table @samp
  13259. @item lin
  13260. Linear scale.
  13261. @item sqrt
  13262. Square root scale.
  13263. @item cbrt
  13264. Cubic root scale.
  13265. @item log
  13266. Logarithmic scale.
  13267. @end table
  13268. Default is @code{log}.
  13269. @item fscale
  13270. Set frequency scale.
  13271. It accepts the following values:
  13272. @table @samp
  13273. @item lin
  13274. Linear scale.
  13275. @item log
  13276. Logarithmic scale.
  13277. @item rlog
  13278. Reverse logarithmic scale.
  13279. @end table
  13280. Default is @code{lin}.
  13281. @item win_size
  13282. Set window size.
  13283. It accepts the following values:
  13284. @table @samp
  13285. @item w16
  13286. @item w32
  13287. @item w64
  13288. @item w128
  13289. @item w256
  13290. @item w512
  13291. @item w1024
  13292. @item w2048
  13293. @item w4096
  13294. @item w8192
  13295. @item w16384
  13296. @item w32768
  13297. @item w65536
  13298. @end table
  13299. Default is @code{w2048}
  13300. @item win_func
  13301. Set windowing function.
  13302. It accepts the following values:
  13303. @table @samp
  13304. @item rect
  13305. @item bartlett
  13306. @item hanning
  13307. @item hamming
  13308. @item blackman
  13309. @item welch
  13310. @item flattop
  13311. @item bharris
  13312. @item bnuttall
  13313. @item bhann
  13314. @item sine
  13315. @item nuttall
  13316. @item lanczos
  13317. @item gauss
  13318. @item tukey
  13319. @item dolph
  13320. @item cauchy
  13321. @item parzen
  13322. @item poisson
  13323. @end table
  13324. Default is @code{hanning}.
  13325. @item overlap
  13326. Set window overlap. In range @code{[0, 1]}. Default is @code{1},
  13327. which means optimal overlap for selected window function will be picked.
  13328. @item averaging
  13329. Set time averaging. Setting this to 0 will display current maximal peaks.
  13330. Default is @code{1}, which means time averaging is disabled.
  13331. @item colors
  13332. Specify list of colors separated by space or by '|' which will be used to
  13333. draw channel frequencies. Unrecognized or missing colors will be replaced
  13334. by white color.
  13335. @item cmode
  13336. Set channel display mode.
  13337. It accepts the following values:
  13338. @table @samp
  13339. @item combined
  13340. @item separate
  13341. @end table
  13342. Default is @code{combined}.
  13343. @item minamp
  13344. Set minimum amplitude used in @code{log} amplitude scaler.
  13345. @end table
  13346. @anchor{showspectrum}
  13347. @section showspectrum
  13348. Convert input audio to a video output, representing the audio frequency
  13349. spectrum.
  13350. The filter accepts the following options:
  13351. @table @option
  13352. @item size, s
  13353. Specify the video size for the output. For the syntax of this option, check the
  13354. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  13355. Default value is @code{640x512}.
  13356. @item slide
  13357. Specify how the spectrum should slide along the window.
  13358. It accepts the following values:
  13359. @table @samp
  13360. @item replace
  13361. the samples start again on the left when they reach the right
  13362. @item scroll
  13363. the samples scroll from right to left
  13364. @item fullframe
  13365. frames are only produced when the samples reach the right
  13366. @item rscroll
  13367. the samples scroll from left to right
  13368. @end table
  13369. Default value is @code{replace}.
  13370. @item mode
  13371. Specify display mode.
  13372. It accepts the following values:
  13373. @table @samp
  13374. @item combined
  13375. all channels are displayed in the same row
  13376. @item separate
  13377. all channels are displayed in separate rows
  13378. @end table
  13379. Default value is @samp{combined}.
  13380. @item color
  13381. Specify display color mode.
  13382. It accepts the following values:
  13383. @table @samp
  13384. @item channel
  13385. each channel is displayed in a separate color
  13386. @item intensity
  13387. each channel is displayed using the same color scheme
  13388. @item rainbow
  13389. each channel is displayed using the rainbow color scheme
  13390. @item moreland
  13391. each channel is displayed using the moreland color scheme
  13392. @item nebulae
  13393. each channel is displayed using the nebulae color scheme
  13394. @item fire
  13395. each channel is displayed using the fire color scheme
  13396. @item fiery
  13397. each channel is displayed using the fiery color scheme
  13398. @item fruit
  13399. each channel is displayed using the fruit color scheme
  13400. @item cool
  13401. each channel is displayed using the cool color scheme
  13402. @end table
  13403. Default value is @samp{channel}.
  13404. @item scale
  13405. Specify scale used for calculating intensity color values.
  13406. It accepts the following values:
  13407. @table @samp
  13408. @item lin
  13409. linear
  13410. @item sqrt
  13411. square root, default
  13412. @item cbrt
  13413. cubic root
  13414. @item log
  13415. logarithmic
  13416. @item 4thrt
  13417. 4th root
  13418. @item 5thrt
  13419. 5th root
  13420. @end table
  13421. Default value is @samp{sqrt}.
  13422. @item saturation
  13423. Set saturation modifier for displayed colors. Negative values provide
  13424. alternative color scheme. @code{0} is no saturation at all.
  13425. Saturation must be in [-10.0, 10.0] range.
  13426. Default value is @code{1}.
  13427. @item win_func
  13428. Set window function.
  13429. It accepts the following values:
  13430. @table @samp
  13431. @item rect
  13432. @item bartlett
  13433. @item hann
  13434. @item hanning
  13435. @item hamming
  13436. @item blackman
  13437. @item welch
  13438. @item flattop
  13439. @item bharris
  13440. @item bnuttall
  13441. @item bhann
  13442. @item sine
  13443. @item nuttall
  13444. @item lanczos
  13445. @item gauss
  13446. @item tukey
  13447. @item dolph
  13448. @item cauchy
  13449. @item parzen
  13450. @item poisson
  13451. @end table
  13452. Default value is @code{hann}.
  13453. @item orientation
  13454. Set orientation of time vs frequency axis. Can be @code{vertical} or
  13455. @code{horizontal}. Default is @code{vertical}.
  13456. @item overlap
  13457. Set ratio of overlap window. Default value is @code{0}.
  13458. When value is @code{1} overlap is set to recommended size for specific
  13459. window function currently used.
  13460. @item gain
  13461. Set scale gain for calculating intensity color values.
  13462. Default value is @code{1}.
  13463. @item data
  13464. Set which data to display. Can be @code{magnitude}, default or @code{phase}.
  13465. @item rotation
  13466. Set color rotation, must be in [-1.0, 1.0] range.
  13467. Default value is @code{0}.
  13468. @end table
  13469. The usage is very similar to the showwaves filter; see the examples in that
  13470. section.
  13471. @subsection Examples
  13472. @itemize
  13473. @item
  13474. Large window with logarithmic color scaling:
  13475. @example
  13476. showspectrum=s=1280x480:scale=log
  13477. @end example
  13478. @item
  13479. Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
  13480. @example
  13481. ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
  13482. [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
  13483. @end example
  13484. @end itemize
  13485. @section showspectrumpic
  13486. Convert input audio to a single video frame, representing the audio frequency
  13487. spectrum.
  13488. The filter accepts the following options:
  13489. @table @option
  13490. @item size, s
  13491. Specify the video size for the output. For the syntax of this option, check the
  13492. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  13493. Default value is @code{4096x2048}.
  13494. @item mode
  13495. Specify display mode.
  13496. It accepts the following values:
  13497. @table @samp
  13498. @item combined
  13499. all channels are displayed in the same row
  13500. @item separate
  13501. all channels are displayed in separate rows
  13502. @end table
  13503. Default value is @samp{combined}.
  13504. @item color
  13505. Specify display color mode.
  13506. It accepts the following values:
  13507. @table @samp
  13508. @item channel
  13509. each channel is displayed in a separate color
  13510. @item intensity
  13511. each channel is displayed using the same color scheme
  13512. @item rainbow
  13513. each channel is displayed using the rainbow color scheme
  13514. @item moreland
  13515. each channel is displayed using the moreland color scheme
  13516. @item nebulae
  13517. each channel is displayed using the nebulae color scheme
  13518. @item fire
  13519. each channel is displayed using the fire color scheme
  13520. @item fiery
  13521. each channel is displayed using the fiery color scheme
  13522. @item fruit
  13523. each channel is displayed using the fruit color scheme
  13524. @item cool
  13525. each channel is displayed using the cool color scheme
  13526. @end table
  13527. Default value is @samp{intensity}.
  13528. @item scale
  13529. Specify scale used for calculating intensity color values.
  13530. It accepts the following values:
  13531. @table @samp
  13532. @item lin
  13533. linear
  13534. @item sqrt
  13535. square root, default
  13536. @item cbrt
  13537. cubic root
  13538. @item log
  13539. logarithmic
  13540. @item 4thrt
  13541. 4th root
  13542. @item 5thrt
  13543. 5th root
  13544. @end table
  13545. Default value is @samp{log}.
  13546. @item saturation
  13547. Set saturation modifier for displayed colors. Negative values provide
  13548. alternative color scheme. @code{0} is no saturation at all.
  13549. Saturation must be in [-10.0, 10.0] range.
  13550. Default value is @code{1}.
  13551. @item win_func
  13552. Set window function.
  13553. It accepts the following values:
  13554. @table @samp
  13555. @item rect
  13556. @item bartlett
  13557. @item hann
  13558. @item hanning
  13559. @item hamming
  13560. @item blackman
  13561. @item welch
  13562. @item flattop
  13563. @item bharris
  13564. @item bnuttall
  13565. @item bhann
  13566. @item sine
  13567. @item nuttall
  13568. @item lanczos
  13569. @item gauss
  13570. @item tukey
  13571. @item dolph
  13572. @item cauchy
  13573. @item parzen
  13574. @item poisson
  13575. @end table
  13576. Default value is @code{hann}.
  13577. @item orientation
  13578. Set orientation of time vs frequency axis. Can be @code{vertical} or
  13579. @code{horizontal}. Default is @code{vertical}.
  13580. @item gain
  13581. Set scale gain for calculating intensity color values.
  13582. Default value is @code{1}.
  13583. @item legend
  13584. Draw time and frequency axes and legends. Default is enabled.
  13585. @item rotation
  13586. Set color rotation, must be in [-1.0, 1.0] range.
  13587. Default value is @code{0}.
  13588. @end table
  13589. @subsection Examples
  13590. @itemize
  13591. @item
  13592. Extract an audio spectrogram of a whole audio track
  13593. in a 1024x1024 picture using @command{ffmpeg}:
  13594. @example
  13595. ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
  13596. @end example
  13597. @end itemize
  13598. @section showvolume
  13599. Convert input audio volume to a video output.
  13600. The filter accepts the following options:
  13601. @table @option
  13602. @item rate, r
  13603. Set video rate.
  13604. @item b
  13605. Set border width, allowed range is [0, 5]. Default is 1.
  13606. @item w
  13607. Set channel width, allowed range is [80, 8192]. Default is 400.
  13608. @item h
  13609. Set channel height, allowed range is [1, 900]. Default is 20.
  13610. @item f
  13611. Set fade, allowed range is [0.001, 1]. Default is 0.95.
  13612. @item c
  13613. Set volume color expression.
  13614. The expression can use the following variables:
  13615. @table @option
  13616. @item VOLUME
  13617. Current max volume of channel in dB.
  13618. @item PEAK
  13619. Current peak.
  13620. @item CHANNEL
  13621. Current channel number, starting from 0.
  13622. @end table
  13623. @item t
  13624. If set, displays channel names. Default is enabled.
  13625. @item v
  13626. If set, displays volume values. Default is enabled.
  13627. @item o
  13628. Set orientation, can be @code{horizontal} or @code{vertical},
  13629. default is @code{horizontal}.
  13630. @item s
  13631. Set step size, allowed range s [0, 5]. Default is 0, which means
  13632. step is disabled.
  13633. @end table
  13634. @section showwaves
  13635. Convert input audio to a video output, representing the samples waves.
  13636. The filter accepts the following options:
  13637. @table @option
  13638. @item size, s
  13639. Specify the video size for the output. For the syntax of this option, check the
  13640. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  13641. Default value is @code{600x240}.
  13642. @item mode
  13643. Set display mode.
  13644. Available values are:
  13645. @table @samp
  13646. @item point
  13647. Draw a point for each sample.
  13648. @item line
  13649. Draw a vertical line for each sample.
  13650. @item p2p
  13651. Draw a point for each sample and a line between them.
  13652. @item cline
  13653. Draw a centered vertical line for each sample.
  13654. @end table
  13655. Default value is @code{point}.
  13656. @item n
  13657. Set the number of samples which are printed on the same column. A
  13658. larger value will decrease the frame rate. Must be a positive
  13659. integer. This option can be set only if the value for @var{rate}
  13660. is not explicitly specified.
  13661. @item rate, r
  13662. Set the (approximate) output frame rate. This is done by setting the
  13663. option @var{n}. Default value is "25".
  13664. @item split_channels
  13665. Set if channels should be drawn separately or overlap. Default value is 0.
  13666. @item colors
  13667. Set colors separated by '|' which are going to be used for drawing of each channel.
  13668. @item scale
  13669. Set amplitude scale.
  13670. Available values are:
  13671. @table @samp
  13672. @item lin
  13673. Linear.
  13674. @item log
  13675. Logarithmic.
  13676. @item sqrt
  13677. Square root.
  13678. @item cbrt
  13679. Cubic root.
  13680. @end table
  13681. Default is linear.
  13682. @end table
  13683. @subsection Examples
  13684. @itemize
  13685. @item
  13686. Output the input file audio and the corresponding video representation
  13687. at the same time:
  13688. @example
  13689. amovie=a.mp3,asplit[out0],showwaves[out1]
  13690. @end example
  13691. @item
  13692. Create a synthetic signal and show it with showwaves, forcing a
  13693. frame rate of 30 frames per second:
  13694. @example
  13695. aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
  13696. @end example
  13697. @end itemize
  13698. @section showwavespic
  13699. Convert input audio to a single video frame, representing the samples waves.
  13700. The filter accepts the following options:
  13701. @table @option
  13702. @item size, s
  13703. Specify the video size for the output. For the syntax of this option, check the
  13704. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  13705. Default value is @code{600x240}.
  13706. @item split_channels
  13707. Set if channels should be drawn separately or overlap. Default value is 0.
  13708. @item colors
  13709. Set colors separated by '|' which are going to be used for drawing of each channel.
  13710. @item scale
  13711. Set amplitude scale. Can be linear @code{lin} or logarithmic @code{log}.
  13712. Default is linear.
  13713. @end table
  13714. @subsection Examples
  13715. @itemize
  13716. @item
  13717. Extract a channel split representation of the wave form of a whole audio track
  13718. in a 1024x800 picture using @command{ffmpeg}:
  13719. @example
  13720. ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
  13721. @end example
  13722. @end itemize
  13723. @section sidedata, asidedata
  13724. Delete frame side data, or select frames based on it.
  13725. This filter accepts the following options:
  13726. @table @option
  13727. @item mode
  13728. Set mode of operation of the filter.
  13729. Can be one of the following:
  13730. @table @samp
  13731. @item select
  13732. Select every frame with side data of @code{type}.
  13733. @item delete
  13734. Delete side data of @code{type}. If @code{type} is not set, delete all side
  13735. data in the frame.
  13736. @end table
  13737. @item type
  13738. Set side data type used with all modes. Must be set for @code{select} mode. For
  13739. the list of frame side data types, refer to the @code{AVFrameSideDataType} enum
  13740. in @file{libavutil/frame.h}. For example, to choose
  13741. @code{AV_FRAME_DATA_PANSCAN} side data, you must specify @code{PANSCAN}.
  13742. @end table
  13743. @section spectrumsynth
  13744. Sythesize audio from 2 input video spectrums, first input stream represents
  13745. magnitude across time and second represents phase across time.
  13746. The filter will transform from frequency domain as displayed in videos back
  13747. to time domain as presented in audio output.
  13748. This filter is primarily created for reversing processed @ref{showspectrum}
  13749. filter outputs, but can synthesize sound from other spectrograms too.
  13750. But in such case results are going to be poor if the phase data is not
  13751. available, because in such cases phase data need to be recreated, usually
  13752. its just recreated from random noise.
  13753. For best results use gray only output (@code{channel} color mode in
  13754. @ref{showspectrum} filter) and @code{log} scale for magnitude video and
  13755. @code{lin} scale for phase video. To produce phase, for 2nd video, use
  13756. @code{data} option. Inputs videos should generally use @code{fullframe}
  13757. slide mode as that saves resources needed for decoding video.
  13758. The filter accepts the following options:
  13759. @table @option
  13760. @item sample_rate
  13761. Specify sample rate of output audio, the sample rate of audio from which
  13762. spectrum was generated may differ.
  13763. @item channels
  13764. Set number of channels represented in input video spectrums.
  13765. @item scale
  13766. Set scale which was used when generating magnitude input spectrum.
  13767. Can be @code{lin} or @code{log}. Default is @code{log}.
  13768. @item slide
  13769. Set slide which was used when generating inputs spectrums.
  13770. Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
  13771. Default is @code{fullframe}.
  13772. @item win_func
  13773. Set window function used for resynthesis.
  13774. @item overlap
  13775. Set window overlap. In range @code{[0, 1]}. Default is @code{1},
  13776. which means optimal overlap for selected window function will be picked.
  13777. @item orientation
  13778. Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
  13779. Default is @code{vertical}.
  13780. @end table
  13781. @subsection Examples
  13782. @itemize
  13783. @item
  13784. First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
  13785. then resynthesize videos back to audio with spectrumsynth:
  13786. @example
  13787. ffmpeg -i input.flac -lavfi showspectrum=mode=separate:scale=log:overlap=0.875:color=channel:slide=fullframe:data=magnitude -an -c:v rawvideo magnitude.nut
  13788. ffmpeg -i input.flac -lavfi showspectrum=mode=separate:scale=lin:overlap=0.875:color=channel:slide=fullframe:data=phase -an -c:v rawvideo phase.nut
  13789. ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
  13790. @end example
  13791. @end itemize
  13792. @section split, asplit
  13793. Split input into several identical outputs.
  13794. @code{asplit} works with audio input, @code{split} with video.
  13795. The filter accepts a single parameter which specifies the number of outputs. If
  13796. unspecified, it defaults to 2.
  13797. @subsection Examples
  13798. @itemize
  13799. @item
  13800. Create two separate outputs from the same input:
  13801. @example
  13802. [in] split [out0][out1]
  13803. @end example
  13804. @item
  13805. To create 3 or more outputs, you need to specify the number of
  13806. outputs, like in:
  13807. @example
  13808. [in] asplit=3 [out0][out1][out2]
  13809. @end example
  13810. @item
  13811. Create two separate outputs from the same input, one cropped and
  13812. one padded:
  13813. @example
  13814. [in] split [splitout1][splitout2];
  13815. [splitout1] crop=100:100:0:0 [cropout];
  13816. [splitout2] pad=200:200:100:100 [padout];
  13817. @end example
  13818. @item
  13819. Create 5 copies of the input audio with @command{ffmpeg}:
  13820. @example
  13821. ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
  13822. @end example
  13823. @end itemize
  13824. @section zmq, azmq
  13825. Receive commands sent through a libzmq client, and forward them to
  13826. filters in the filtergraph.
  13827. @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
  13828. must be inserted between two video filters, @code{azmq} between two
  13829. audio filters.
  13830. To enable these filters you need to install the libzmq library and
  13831. headers and configure FFmpeg with @code{--enable-libzmq}.
  13832. For more information about libzmq see:
  13833. @url{http://www.zeromq.org/}
  13834. The @code{zmq} and @code{azmq} filters work as a libzmq server, which
  13835. receives messages sent through a network interface defined by the
  13836. @option{bind_address} option.
  13837. The received message must be in the form:
  13838. @example
  13839. @var{TARGET} @var{COMMAND} [@var{ARG}]
  13840. @end example
  13841. @var{TARGET} specifies the target of the command, usually the name of
  13842. the filter class or a specific filter instance name.
  13843. @var{COMMAND} specifies the name of the command for the target filter.
  13844. @var{ARG} is optional and specifies the optional argument list for the
  13845. given @var{COMMAND}.
  13846. Upon reception, the message is processed and the corresponding command
  13847. is injected into the filtergraph. Depending on the result, the filter
  13848. will send a reply to the client, adopting the format:
  13849. @example
  13850. @var{ERROR_CODE} @var{ERROR_REASON}
  13851. @var{MESSAGE}
  13852. @end example
  13853. @var{MESSAGE} is optional.
  13854. @subsection Examples
  13855. Look at @file{tools/zmqsend} for an example of a zmq client which can
  13856. be used to send commands processed by these filters.
  13857. Consider the following filtergraph generated by @command{ffplay}
  13858. @example
  13859. ffplay -dumpgraph 1 -f lavfi "
  13860. color=s=100x100:c=red [l];
  13861. color=s=100x100:c=blue [r];
  13862. nullsrc=s=200x100, zmq [bg];
  13863. [bg][l] overlay [bg+l];
  13864. [bg+l][r] overlay=x=100 "
  13865. @end example
  13866. To change the color of the left side of the video, the following
  13867. command can be used:
  13868. @example
  13869. echo Parsed_color_0 c yellow | tools/zmqsend
  13870. @end example
  13871. To change the right side:
  13872. @example
  13873. echo Parsed_color_1 c pink | tools/zmqsend
  13874. @end example
  13875. @c man end MULTIMEDIA FILTERS
  13876. @chapter Multimedia Sources
  13877. @c man begin MULTIMEDIA SOURCES
  13878. Below is a description of the currently available multimedia sources.
  13879. @section amovie
  13880. This is the same as @ref{movie} source, except it selects an audio
  13881. stream by default.
  13882. @anchor{movie}
  13883. @section movie
  13884. Read audio and/or video stream(s) from a movie container.
  13885. It accepts the following parameters:
  13886. @table @option
  13887. @item filename
  13888. The name of the resource to read (not necessarily a file; it can also be a
  13889. device or a stream accessed through some protocol).
  13890. @item format_name, f
  13891. Specifies the format assumed for the movie to read, and can be either
  13892. the name of a container or an input device. If not specified, the
  13893. format is guessed from @var{movie_name} or by probing.
  13894. @item seek_point, sp
  13895. Specifies the seek point in seconds. The frames will be output
  13896. starting from this seek point. The parameter is evaluated with
  13897. @code{av_strtod}, so the numerical value may be suffixed by an IS
  13898. postfix. The default value is "0".
  13899. @item streams, s
  13900. Specifies the streams to read. Several streams can be specified,
  13901. separated by "+". The source will then have as many outputs, in the
  13902. same order. The syntax is explained in the ``Stream specifiers''
  13903. section in the ffmpeg manual. Two special names, "dv" and "da" specify
  13904. respectively the default (best suited) video and audio stream. Default
  13905. is "dv", or "da" if the filter is called as "amovie".
  13906. @item stream_index, si
  13907. Specifies the index of the video stream to read. If the value is -1,
  13908. the most suitable video stream will be automatically selected. The default
  13909. value is "-1". Deprecated. If the filter is called "amovie", it will select
  13910. audio instead of video.
  13911. @item loop
  13912. Specifies how many times to read the stream in sequence.
  13913. If the value is 0, the stream will be looped infinitely.
  13914. Default value is "1".
  13915. Note that when the movie is looped the source timestamps are not
  13916. changed, so it will generate non monotonically increasing timestamps.
  13917. @item discontinuity
  13918. Specifies the time difference between frames above which the point is
  13919. considered a timestamp discontinuity which is removed by adjusting the later
  13920. timestamps.
  13921. @end table
  13922. It allows overlaying a second video on top of the main input of
  13923. a filtergraph, as shown in this graph:
  13924. @example
  13925. input -----------> deltapts0 --> overlay --> output
  13926. ^
  13927. |
  13928. movie --> scale--> deltapts1 -------+
  13929. @end example
  13930. @subsection Examples
  13931. @itemize
  13932. @item
  13933. Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
  13934. on top of the input labelled "in":
  13935. @example
  13936. movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
  13937. [in] setpts=PTS-STARTPTS [main];
  13938. [main][over] overlay=16:16 [out]
  13939. @end example
  13940. @item
  13941. Read from a video4linux2 device, and overlay it on top of the input
  13942. labelled "in":
  13943. @example
  13944. movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
  13945. [in] setpts=PTS-STARTPTS [main];
  13946. [main][over] overlay=16:16 [out]
  13947. @end example
  13948. @item
  13949. Read the first video stream and the audio stream with id 0x81 from
  13950. dvd.vob; the video is connected to the pad named "video" and the audio is
  13951. connected to the pad named "audio":
  13952. @example
  13953. movie=dvd.vob:s=v:0+#0x81 [video] [audio]
  13954. @end example
  13955. @end itemize
  13956. @subsection Commands
  13957. Both movie and amovie support the following commands:
  13958. @table @option
  13959. @item seek
  13960. Perform seek using "av_seek_frame".
  13961. The syntax is: seek @var{stream_index}|@var{timestamp}|@var{flags}
  13962. @itemize
  13963. @item
  13964. @var{stream_index}: If stream_index is -1, a default
  13965. stream is selected, and @var{timestamp} is automatically converted
  13966. from AV_TIME_BASE units to the stream specific time_base.
  13967. @item
  13968. @var{timestamp}: Timestamp in AVStream.time_base units
  13969. or, if no stream is specified, in AV_TIME_BASE units.
  13970. @item
  13971. @var{flags}: Flags which select direction and seeking mode.
  13972. @end itemize
  13973. @item get_duration
  13974. Get movie duration in AV_TIME_BASE units.
  13975. @end table
  13976. @c man end MULTIMEDIA SOURCES