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.

15958 lines
431KB

  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 adelay
  353. Delay one or more audio channels.
  354. Samples in delayed channel are filled with silence.
  355. The filter accepts the following option:
  356. @table @option
  357. @item delays
  358. Set list of delays in milliseconds for each channel separated by '|'.
  359. At least one delay greater than 0 should be provided.
  360. Unused delays will be silently ignored. If number of given delays is
  361. smaller than number of channels all remaining channels will not be delayed.
  362. @end table
  363. @subsection Examples
  364. @itemize
  365. @item
  366. Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave
  367. the second channel (and any other channels that may be present) unchanged.
  368. @example
  369. adelay=1500|0|500
  370. @end example
  371. @end itemize
  372. @section aecho
  373. Apply echoing to the input audio.
  374. Echoes are reflected sound and can occur naturally amongst mountains
  375. (and sometimes large buildings) when talking or shouting; digital echo
  376. effects emulate this behaviour and are often used to help fill out the
  377. sound of a single instrument or vocal. The time difference between the
  378. original signal and the reflection is the @code{delay}, and the
  379. loudness of the reflected signal is the @code{decay}.
  380. Multiple echoes can have different delays and decays.
  381. A description of the accepted parameters follows.
  382. @table @option
  383. @item in_gain
  384. Set input gain of reflected signal. Default is @code{0.6}.
  385. @item out_gain
  386. Set output gain of reflected signal. Default is @code{0.3}.
  387. @item delays
  388. Set list of time intervals in milliseconds between original signal and reflections
  389. separated by '|'. Allowed range for each @code{delay} is @code{(0 - 90000.0]}.
  390. Default is @code{1000}.
  391. @item decays
  392. Set list of loudnesses of reflected signals separated by '|'.
  393. Allowed range for each @code{decay} is @code{(0 - 1.0]}.
  394. Default is @code{0.5}.
  395. @end table
  396. @subsection Examples
  397. @itemize
  398. @item
  399. Make it sound as if there are twice as many instruments as are actually playing:
  400. @example
  401. aecho=0.8:0.88:60:0.4
  402. @end example
  403. @item
  404. If delay is very short, then it sound like a (metallic) robot playing music:
  405. @example
  406. aecho=0.8:0.88:6:0.4
  407. @end example
  408. @item
  409. A longer delay will sound like an open air concert in the mountains:
  410. @example
  411. aecho=0.8:0.9:1000:0.3
  412. @end example
  413. @item
  414. Same as above but with one more mountain:
  415. @example
  416. aecho=0.8:0.9:1000|1800:0.3|0.25
  417. @end example
  418. @end itemize
  419. @section aemphasis
  420. Audio emphasis filter creates or restores material directly taken from LPs or
  421. emphased CDs with different filter curves. E.g. to store music on vinyl the
  422. signal has to be altered by a filter first to even out the disadvantages of
  423. this recording medium.
  424. Once the material is played back the inverse filter has to be applied to
  425. restore the distortion of the frequency response.
  426. The filter accepts the following options:
  427. @table @option
  428. @item level_in
  429. Set input gain.
  430. @item level_out
  431. Set output gain.
  432. @item mode
  433. Set filter mode. For restoring material use @code{reproduction} mode, otherwise
  434. use @code{production} mode. Default is @code{reproduction} mode.
  435. @item type
  436. Set filter type. Selects medium. Can be one of the following:
  437. @table @option
  438. @item col
  439. select Columbia.
  440. @item emi
  441. select EMI.
  442. @item bsi
  443. select BSI (78RPM).
  444. @item riaa
  445. select RIAA.
  446. @item cd
  447. select Compact Disc (CD).
  448. @item 50fm
  449. select 50µs (FM).
  450. @item 75fm
  451. select 75µs (FM).
  452. @item 50kf
  453. select 50µs (FM-KF).
  454. @item 75kf
  455. select 75µs (FM-KF).
  456. @end table
  457. @end table
  458. @section aeval
  459. Modify an audio signal according to the specified expressions.
  460. This filter accepts one or more expressions (one for each channel),
  461. which are evaluated and used to modify a corresponding audio signal.
  462. It accepts the following parameters:
  463. @table @option
  464. @item exprs
  465. Set the '|'-separated expressions list for each separate channel. If
  466. the number of input channels is greater than the number of
  467. expressions, the last specified expression is used for the remaining
  468. output channels.
  469. @item channel_layout, c
  470. Set output channel layout. If not specified, the channel layout is
  471. specified by the number of expressions. If set to @samp{same}, it will
  472. use by default the same input channel layout.
  473. @end table
  474. Each expression in @var{exprs} can contain the following constants and functions:
  475. @table @option
  476. @item ch
  477. channel number of the current expression
  478. @item n
  479. number of the evaluated sample, starting from 0
  480. @item s
  481. sample rate
  482. @item t
  483. time of the evaluated sample expressed in seconds
  484. @item nb_in_channels
  485. @item nb_out_channels
  486. input and output number of channels
  487. @item val(CH)
  488. the value of input channel with number @var{CH}
  489. @end table
  490. Note: this filter is slow. For faster processing you should use a
  491. dedicated filter.
  492. @subsection Examples
  493. @itemize
  494. @item
  495. Half volume:
  496. @example
  497. aeval=val(ch)/2:c=same
  498. @end example
  499. @item
  500. Invert phase of the second channel:
  501. @example
  502. aeval=val(0)|-val(1)
  503. @end example
  504. @end itemize
  505. @anchor{afade}
  506. @section afade
  507. Apply fade-in/out effect to input audio.
  508. A description of the accepted parameters follows.
  509. @table @option
  510. @item type, t
  511. Specify the effect type, can be either @code{in} for fade-in, or
  512. @code{out} for a fade-out effect. Default is @code{in}.
  513. @item start_sample, ss
  514. Specify the number of the start sample for starting to apply the fade
  515. effect. Default is 0.
  516. @item nb_samples, ns
  517. Specify the number of samples for which the fade effect has to last. At
  518. the end of the fade-in effect the output audio will have the same
  519. volume as the input audio, at the end of the fade-out transition
  520. the output audio will be silence. Default is 44100.
  521. @item start_time, st
  522. Specify the start time of the fade effect. Default is 0.
  523. The value must be specified as a time duration; see
  524. @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
  525. for the accepted syntax.
  526. If set this option is used instead of @var{start_sample}.
  527. @item duration, d
  528. Specify the duration of the fade effect. See
  529. @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
  530. for the accepted syntax.
  531. At the end of the fade-in effect the output audio will have the same
  532. volume as the input audio, at the end of the fade-out transition
  533. the output audio will be silence.
  534. By default the duration is determined by @var{nb_samples}.
  535. If set this option is used instead of @var{nb_samples}.
  536. @item curve
  537. Set curve for fade transition.
  538. It accepts the following values:
  539. @table @option
  540. @item tri
  541. select triangular, linear slope (default)
  542. @item qsin
  543. select quarter of sine wave
  544. @item hsin
  545. select half of sine wave
  546. @item esin
  547. select exponential sine wave
  548. @item log
  549. select logarithmic
  550. @item ipar
  551. select inverted parabola
  552. @item qua
  553. select quadratic
  554. @item cub
  555. select cubic
  556. @item squ
  557. select square root
  558. @item cbr
  559. select cubic root
  560. @item par
  561. select parabola
  562. @item exp
  563. select exponential
  564. @item iqsin
  565. select inverted quarter of sine wave
  566. @item ihsin
  567. select inverted half of sine wave
  568. @item dese
  569. select double-exponential seat
  570. @item desi
  571. select double-exponential sigmoid
  572. @end table
  573. @end table
  574. @subsection Examples
  575. @itemize
  576. @item
  577. Fade in first 15 seconds of audio:
  578. @example
  579. afade=t=in:ss=0:d=15
  580. @end example
  581. @item
  582. Fade out last 25 seconds of a 900 seconds audio:
  583. @example
  584. afade=t=out:st=875:d=25
  585. @end example
  586. @end itemize
  587. @section afftfilt
  588. Apply arbitrary expressions to samples in frequency domain.
  589. @table @option
  590. @item real
  591. Set frequency domain real expression for each separate channel separated
  592. by '|'. Default is "1".
  593. If the number of input channels is greater than the number of
  594. expressions, the last specified expression is used for the remaining
  595. output channels.
  596. @item imag
  597. Set frequency domain imaginary expression for each separate channel
  598. separated by '|'. If not set, @var{real} option is used.
  599. Each expression in @var{real} and @var{imag} can contain the following
  600. constants:
  601. @table @option
  602. @item sr
  603. sample rate
  604. @item b
  605. current frequency bin number
  606. @item nb
  607. number of available bins
  608. @item ch
  609. channel number of the current expression
  610. @item chs
  611. number of channels
  612. @item pts
  613. current frame pts
  614. @end table
  615. @item win_size
  616. Set window size.
  617. It accepts the following values:
  618. @table @samp
  619. @item w16
  620. @item w32
  621. @item w64
  622. @item w128
  623. @item w256
  624. @item w512
  625. @item w1024
  626. @item w2048
  627. @item w4096
  628. @item w8192
  629. @item w16384
  630. @item w32768
  631. @item w65536
  632. @end table
  633. Default is @code{w4096}
  634. @item win_func
  635. Set window function. Default is @code{hann}.
  636. @item overlap
  637. Set window overlap. If set to 1, the recommended overlap for selected
  638. window function will be picked. Default is @code{0.75}.
  639. @end table
  640. @subsection Examples
  641. @itemize
  642. @item
  643. Leave almost only low frequencies in audio:
  644. @example
  645. afftfilt="1-clip((b/nb)*b,0,1)"
  646. @end example
  647. @end itemize
  648. @anchor{aformat}
  649. @section aformat
  650. Set output format constraints for the input audio. The framework will
  651. negotiate the most appropriate format to minimize conversions.
  652. It accepts the following parameters:
  653. @table @option
  654. @item sample_fmts
  655. A '|'-separated list of requested sample formats.
  656. @item sample_rates
  657. A '|'-separated list of requested sample rates.
  658. @item channel_layouts
  659. A '|'-separated list of requested channel layouts.
  660. See @ref{channel layout syntax,,the Channel Layout section in the ffmpeg-utils(1) manual,ffmpeg-utils}
  661. for the required syntax.
  662. @end table
  663. If a parameter is omitted, all values are allowed.
  664. Force the output to either unsigned 8-bit or signed 16-bit stereo
  665. @example
  666. aformat=sample_fmts=u8|s16:channel_layouts=stereo
  667. @end example
  668. @section agate
  669. A gate is mainly used to reduce lower parts of a signal. This kind of signal
  670. processing reduces disturbing noise between useful signals.
  671. Gating is done by detecting the volume below a chosen level @var{threshold}
  672. and divide it by the factor set with @var{ratio}. The bottom of the noise
  673. floor is set via @var{range}. Because an exact manipulation of the signal
  674. would cause distortion of the waveform the reduction can be levelled over
  675. time. This is done by setting @var{attack} and @var{release}.
  676. @var{attack} determines how long the signal has to fall below the threshold
  677. before any reduction will occur and @var{release} sets the time the signal
  678. has to raise above the threshold to reduce the reduction again.
  679. Shorter signals than the chosen attack time will be left untouched.
  680. @table @option
  681. @item level_in
  682. Set input level before filtering.
  683. Default is 1. Allowed range is from 0.015625 to 64.
  684. @item range
  685. Set the level of gain reduction when the signal is below the threshold.
  686. Default is 0.06125. Allowed range is from 0 to 1.
  687. @item threshold
  688. If a signal rises above this level the gain reduction is released.
  689. Default is 0.125. Allowed range is from 0 to 1.
  690. @item ratio
  691. Set a ratio about which the signal is reduced.
  692. Default is 2. Allowed range is from 1 to 9000.
  693. @item attack
  694. Amount of milliseconds the signal has to rise above the threshold before gain
  695. reduction stops.
  696. Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
  697. @item release
  698. Amount of milliseconds the signal has to fall below the threshold before the
  699. reduction is increased again. Default is 250 milliseconds.
  700. Allowed range is from 0.01 to 9000.
  701. @item makeup
  702. Set amount of amplification of signal after processing.
  703. Default is 1. Allowed range is from 1 to 64.
  704. @item knee
  705. Curve the sharp knee around the threshold to enter gain reduction more softly.
  706. Default is 2.828427125. Allowed range is from 1 to 8.
  707. @item detection
  708. Choose if exact signal should be taken for detection or an RMS like one.
  709. Default is rms. Can be peak or rms.
  710. @item link
  711. Choose if the average level between all channels or the louder channel affects
  712. the reduction.
  713. Default is average. Can be average or maximum.
  714. @end table
  715. @section alimiter
  716. The limiter prevents input signal from raising over a desired threshold.
  717. This limiter uses lookahead technology to prevent your signal from distorting.
  718. It means that there is a small delay after signal is processed. Keep in mind
  719. that the delay it produces is the attack time you set.
  720. The filter accepts the following options:
  721. @table @option
  722. @item level_in
  723. Set input gain. Default is 1.
  724. @item level_out
  725. Set output gain. Default is 1.
  726. @item limit
  727. Don't let signals above this level pass the limiter. Default is 1.
  728. @item attack
  729. The limiter will reach its attenuation level in this amount of time in
  730. milliseconds. Default is 5 milliseconds.
  731. @item release
  732. Come back from limiting to attenuation 1.0 in this amount of milliseconds.
  733. Default is 50 milliseconds.
  734. @item asc
  735. When gain reduction is always needed ASC takes care of releasing to an
  736. average reduction level rather than reaching a reduction of 0 in the release
  737. time.
  738. @item asc_level
  739. Select how much the release time is affected by ASC, 0 means nearly no changes
  740. in release time while 1 produces higher release times.
  741. @item level
  742. Auto level output signal. Default is enabled.
  743. This normalizes audio back to 0dB if enabled.
  744. @end table
  745. Depending on picked setting it is recommended to upsample input 2x or 4x times
  746. with @ref{aresample} before applying this filter.
  747. @section allpass
  748. Apply a two-pole all-pass filter with central frequency (in Hz)
  749. @var{frequency}, and filter-width @var{width}.
  750. An all-pass filter changes the audio's frequency to phase relationship
  751. without changing its frequency to amplitude relationship.
  752. The filter accepts the following options:
  753. @table @option
  754. @item frequency, f
  755. Set frequency in Hz.
  756. @item width_type
  757. Set method to specify band-width of filter.
  758. @table @option
  759. @item h
  760. Hz
  761. @item q
  762. Q-Factor
  763. @item o
  764. octave
  765. @item s
  766. slope
  767. @end table
  768. @item width, w
  769. Specify the band-width of a filter in width_type units.
  770. @end table
  771. @anchor{amerge}
  772. @section amerge
  773. Merge two or more audio streams into a single multi-channel stream.
  774. The filter accepts the following options:
  775. @table @option
  776. @item inputs
  777. Set the number of inputs. Default is 2.
  778. @end table
  779. If the channel layouts of the inputs are disjoint, and therefore compatible,
  780. the channel layout of the output will be set accordingly and the channels
  781. will be reordered as necessary. If the channel layouts of the inputs are not
  782. disjoint, the output will have all the channels of the first input then all
  783. the channels of the second input, in that order, and the channel layout of
  784. the output will be the default value corresponding to the total number of
  785. channels.
  786. For example, if the first input is in 2.1 (FL+FR+LF) and the second input
  787. is FC+BL+BR, then the output will be in 5.1, with the channels in the
  788. following order: a1, a2, b1, a3, b2, b3 (a1 is the first channel of the
  789. first input, b1 is the first channel of the second input).
  790. On the other hand, if both input are in stereo, the output channels will be
  791. in the default order: a1, a2, b1, b2, and the channel layout will be
  792. arbitrarily set to 4.0, which may or may not be the expected value.
  793. All inputs must have the same sample rate, and format.
  794. If inputs do not have the same duration, the output will stop with the
  795. shortest.
  796. @subsection Examples
  797. @itemize
  798. @item
  799. Merge two mono files into a stereo stream:
  800. @example
  801. amovie=left.wav [l] ; amovie=right.mp3 [r] ; [l] [r] amerge
  802. @end example
  803. @item
  804. Multiple merges assuming 1 video stream and 6 audio streams in @file{input.mkv}:
  805. @example
  806. 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
  807. @end example
  808. @end itemize
  809. @section amix
  810. Mixes multiple audio inputs into a single output.
  811. Note that this filter only supports float samples (the @var{amerge}
  812. and @var{pan} audio filters support many formats). If the @var{amix}
  813. input has integer samples then @ref{aresample} will be automatically
  814. inserted to perform the conversion to float samples.
  815. For example
  816. @example
  817. ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
  818. @end example
  819. will mix 3 input audio streams to a single output with the same duration as the
  820. first input and a dropout transition time of 3 seconds.
  821. It accepts the following parameters:
  822. @table @option
  823. @item inputs
  824. The number of inputs. If unspecified, it defaults to 2.
  825. @item duration
  826. How to determine the end-of-stream.
  827. @table @option
  828. @item longest
  829. The duration of the longest input. (default)
  830. @item shortest
  831. The duration of the shortest input.
  832. @item first
  833. The duration of the first input.
  834. @end table
  835. @item dropout_transition
  836. The transition time, in seconds, for volume renormalization when an input
  837. stream ends. The default value is 2 seconds.
  838. @end table
  839. @section anequalizer
  840. High-order parametric multiband equalizer for each channel.
  841. It accepts the following parameters:
  842. @table @option
  843. @item params
  844. This option string is in format:
  845. "c@var{chn} f=@var{cf} w=@var{w} g=@var{g} t=@var{f} | ..."
  846. Each equalizer band is separated by '|'.
  847. @table @option
  848. @item chn
  849. Set channel number to which equalization will be applied.
  850. If input doesn't have that channel the entry is ignored.
  851. @item cf
  852. Set central frequency for band.
  853. If input doesn't have that frequency the entry is ignored.
  854. @item w
  855. Set band width in hertz.
  856. @item g
  857. Set band gain in dB.
  858. @item f
  859. Set filter type for band, optional, can be:
  860. @table @samp
  861. @item 0
  862. Butterworth, this is default.
  863. @item 1
  864. Chebyshev type 1.
  865. @item 2
  866. Chebyshev type 2.
  867. @end table
  868. @end table
  869. @item curves
  870. With this option activated frequency response of anequalizer is displayed
  871. in video stream.
  872. @item size
  873. Set video stream size. Only useful if curves option is activated.
  874. @item mgain
  875. Set max gain that will be displayed. Only useful if curves option is activated.
  876. Setting this to reasonable value allows to display gain which is derived from
  877. neighbour bands which are too close to each other and thus produce higher gain
  878. when both are activated.
  879. @item fscale
  880. Set frequency scale used to draw frequency response in video output.
  881. Can be linear or logarithmic. Default is logarithmic.
  882. @item colors
  883. Set color for each channel curve which is going to be displayed in video stream.
  884. This is list of color names separated by space or by '|'.
  885. Unrecognised or missing colors will be replaced by white color.
  886. @end table
  887. @subsection Examples
  888. @itemize
  889. @item
  890. Lower gain by 10 of central frequency 200Hz and width 100 Hz
  891. for first 2 channels using Chebyshev type 1 filter:
  892. @example
  893. anequalizer=c0 f=200 w=100 g=-10 t=1|c1 f=200 w=100 g=-10 t=1
  894. @end example
  895. @end itemize
  896. @subsection Commands
  897. This filter supports the following commands:
  898. @table @option
  899. @item change
  900. Alter existing filter parameters.
  901. Syntax for the commands is : "@var{fN}|f=@var{freq}|w=@var{width}|g=@var{gain}"
  902. @var{fN} is existing filter number, starting from 0, if no such filter is available
  903. error is returned.
  904. @var{freq} set new frequency parameter.
  905. @var{width} set new width parameter in herz.
  906. @var{gain} set new gain parameter in dB.
  907. Full filter invocation with asendcmd may look like this:
  908. asendcmd=c='4.0 anequalizer change 0|f=200|w=50|g=1',anequalizer=...
  909. @end table
  910. @section anull
  911. Pass the audio source unchanged to the output.
  912. @section apad
  913. Pad the end of an audio stream with silence.
  914. This can be used together with @command{ffmpeg} @option{-shortest} to
  915. extend audio streams to the same length as the video stream.
  916. A description of the accepted options follows.
  917. @table @option
  918. @item packet_size
  919. Set silence packet size. Default value is 4096.
  920. @item pad_len
  921. Set the number of samples of silence to add to the end. After the
  922. value is reached, the stream is terminated. This option is mutually
  923. exclusive with @option{whole_len}.
  924. @item whole_len
  925. Set the minimum total number of samples in the output audio stream. If
  926. the value is longer than the input audio length, silence is added to
  927. the end, until the value is reached. This option is mutually exclusive
  928. with @option{pad_len}.
  929. @end table
  930. If neither the @option{pad_len} nor the @option{whole_len} option is
  931. set, the filter will add silence to the end of the input stream
  932. indefinitely.
  933. @subsection Examples
  934. @itemize
  935. @item
  936. Add 1024 samples of silence to the end of the input:
  937. @example
  938. apad=pad_len=1024
  939. @end example
  940. @item
  941. Make sure the audio output will contain at least 10000 samples, pad
  942. the input with silence if required:
  943. @example
  944. apad=whole_len=10000
  945. @end example
  946. @item
  947. Use @command{ffmpeg} to pad the audio input with silence, so that the
  948. video stream will always result the shortest and will be converted
  949. until the end in the output file when using the @option{shortest}
  950. option:
  951. @example
  952. ffmpeg -i VIDEO -i AUDIO -filter_complex "[1:0]apad" -shortest OUTPUT
  953. @end example
  954. @end itemize
  955. @section aphaser
  956. Add a phasing effect to the input audio.
  957. A phaser filter creates series of peaks and troughs in the frequency spectrum.
  958. The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect.
  959. A description of the accepted parameters follows.
  960. @table @option
  961. @item in_gain
  962. Set input gain. Default is 0.4.
  963. @item out_gain
  964. Set output gain. Default is 0.74
  965. @item delay
  966. Set delay in milliseconds. Default is 3.0.
  967. @item decay
  968. Set decay. Default is 0.4.
  969. @item speed
  970. Set modulation speed in Hz. Default is 0.5.
  971. @item type
  972. Set modulation type. Default is triangular.
  973. It accepts the following values:
  974. @table @samp
  975. @item triangular, t
  976. @item sinusoidal, s
  977. @end table
  978. @end table
  979. @section apulsator
  980. Audio pulsator is something between an autopanner and a tremolo.
  981. But it can produce funny stereo effects as well. Pulsator changes the volume
  982. of the left and right channel based on a LFO (low frequency oscillator) with
  983. different waveforms and shifted phases.
  984. This filter have the ability to define an offset between left and right
  985. channel. An offset of 0 means that both LFO shapes match each other.
  986. The left and right channel are altered equally - a conventional tremolo.
  987. An offset of 50% means that the shape of the right channel is exactly shifted
  988. in phase (or moved backwards about half of the frequency) - pulsator acts as
  989. an autopanner. At 1 both curves match again. Every setting in between moves the
  990. phase shift gapless between all stages and produces some "bypassing" sounds with
  991. sine and triangle waveforms. The more you set the offset near 1 (starting from
  992. the 0.5) the faster the signal passes from the left to the right speaker.
  993. The filter accepts the following options:
  994. @table @option
  995. @item level_in
  996. Set input gain. By default it is 1. Range is [0.015625 - 64].
  997. @item level_out
  998. Set output gain. By default it is 1. Range is [0.015625 - 64].
  999. @item mode
  1000. Set waveform shape the LFO will use. Can be one of: sine, triangle, square,
  1001. sawup or sawdown. Default is sine.
  1002. @item amount
  1003. Set modulation. Define how much of original signal is affected by the LFO.
  1004. @item offset_l
  1005. Set left channel offset. Default is 0. Allowed range is [0 - 1].
  1006. @item offset_r
  1007. Set right channel offset. Default is 0.5. Allowed range is [0 - 1].
  1008. @item width
  1009. Set pulse width. Default is 1. Allowed range is [0 - 2].
  1010. @item timing
  1011. Set possible timing mode. Can be one of: bpm, ms or hz. Default is hz.
  1012. @item bpm
  1013. Set bpm. Default is 120. Allowed range is [30 - 300]. Only used if timing
  1014. is set to bpm.
  1015. @item ms
  1016. Set ms. Default is 500. Allowed range is [10 - 2000]. Only used if timing
  1017. is set to ms.
  1018. @item hz
  1019. Set frequency in Hz. Default is 2. Allowed range is [0.01 - 100]. Only used
  1020. if timing is set to hz.
  1021. @end table
  1022. @anchor{aresample}
  1023. @section aresample
  1024. Resample the input audio to the specified parameters, using the
  1025. libswresample library. If none are specified then the filter will
  1026. automatically convert between its input and output.
  1027. This filter is also able to stretch/squeeze the audio data to make it match
  1028. the timestamps or to inject silence / cut out audio to make it match the
  1029. timestamps, do a combination of both or do neither.
  1030. The filter accepts the syntax
  1031. [@var{sample_rate}:]@var{resampler_options}, where @var{sample_rate}
  1032. expresses a sample rate and @var{resampler_options} is a list of
  1033. @var{key}=@var{value} pairs, separated by ":". See the
  1034. ffmpeg-resampler manual for the complete list of supported options.
  1035. @subsection Examples
  1036. @itemize
  1037. @item
  1038. Resample the input audio to 44100Hz:
  1039. @example
  1040. aresample=44100
  1041. @end example
  1042. @item
  1043. Stretch/squeeze samples to the given timestamps, with a maximum of 1000
  1044. samples per second compensation:
  1045. @example
  1046. aresample=async=1000
  1047. @end example
  1048. @end itemize
  1049. @section asetnsamples
  1050. Set the number of samples per each output audio frame.
  1051. The last output packet may contain a different number of samples, as
  1052. the filter will flush all the remaining samples when the input audio
  1053. signal its end.
  1054. The filter accepts the following options:
  1055. @table @option
  1056. @item nb_out_samples, n
  1057. Set the number of frames per each output audio frame. The number is
  1058. intended as the number of samples @emph{per each channel}.
  1059. Default value is 1024.
  1060. @item pad, p
  1061. If set to 1, the filter will pad the last audio frame with zeroes, so
  1062. that the last frame will contain the same number of samples as the
  1063. previous ones. Default value is 1.
  1064. @end table
  1065. For example, to set the number of per-frame samples to 1234 and
  1066. disable padding for the last frame, use:
  1067. @example
  1068. asetnsamples=n=1234:p=0
  1069. @end example
  1070. @section asetrate
  1071. Set the sample rate without altering the PCM data.
  1072. This will result in a change of speed and pitch.
  1073. The filter accepts the following options:
  1074. @table @option
  1075. @item sample_rate, r
  1076. Set the output sample rate. Default is 44100 Hz.
  1077. @end table
  1078. @section ashowinfo
  1079. Show a line containing various information for each input audio frame.
  1080. The input audio is not modified.
  1081. The shown line contains a sequence of key/value pairs of the form
  1082. @var{key}:@var{value}.
  1083. The following values are shown in the output:
  1084. @table @option
  1085. @item n
  1086. The (sequential) number of the input frame, starting from 0.
  1087. @item pts
  1088. The presentation timestamp of the input frame, in time base units; the time base
  1089. depends on the filter input pad, and is usually 1/@var{sample_rate}.
  1090. @item pts_time
  1091. The presentation timestamp of the input frame in seconds.
  1092. @item pos
  1093. position of the frame in the input stream, -1 if this information in
  1094. unavailable and/or meaningless (for example in case of synthetic audio)
  1095. @item fmt
  1096. The sample format.
  1097. @item chlayout
  1098. The channel layout.
  1099. @item rate
  1100. The sample rate for the audio frame.
  1101. @item nb_samples
  1102. The number of samples (per channel) in the frame.
  1103. @item checksum
  1104. The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
  1105. audio, the data is treated as if all the planes were concatenated.
  1106. @item plane_checksums
  1107. A list of Adler-32 checksums for each data plane.
  1108. @end table
  1109. @anchor{astats}
  1110. @section astats
  1111. Display time domain statistical information about the audio channels.
  1112. Statistics are calculated and displayed for each audio channel and,
  1113. where applicable, an overall figure is also given.
  1114. It accepts the following option:
  1115. @table @option
  1116. @item length
  1117. Short window length in seconds, used for peak and trough RMS measurement.
  1118. Default is @code{0.05} (50 milliseconds). Allowed range is @code{[0.1 - 10]}.
  1119. @item metadata
  1120. Set metadata injection. All the metadata keys are prefixed with @code{lavfi.astats.X},
  1121. where @code{X} is channel number starting from 1 or string @code{Overall}. Default is
  1122. disabled.
  1123. Available keys for each channel are:
  1124. DC_offset
  1125. Min_level
  1126. Max_level
  1127. Min_difference
  1128. Max_difference
  1129. Mean_difference
  1130. Peak_level
  1131. RMS_peak
  1132. RMS_trough
  1133. Crest_factor
  1134. Flat_factor
  1135. Peak_count
  1136. Bit_depth
  1137. and for Overall:
  1138. DC_offset
  1139. Min_level
  1140. Max_level
  1141. Min_difference
  1142. Max_difference
  1143. Mean_difference
  1144. Peak_level
  1145. RMS_level
  1146. RMS_peak
  1147. RMS_trough
  1148. Flat_factor
  1149. Peak_count
  1150. Bit_depth
  1151. Number_of_samples
  1152. For example full key look like this @code{lavfi.astats.1.DC_offset} or
  1153. this @code{lavfi.astats.Overall.Peak_count}.
  1154. For description what each key means read below.
  1155. @item reset
  1156. Set number of frame after which stats are going to be recalculated.
  1157. Default is disabled.
  1158. @end table
  1159. A description of each shown parameter follows:
  1160. @table @option
  1161. @item DC offset
  1162. Mean amplitude displacement from zero.
  1163. @item Min level
  1164. Minimal sample level.
  1165. @item Max level
  1166. Maximal sample level.
  1167. @item Min difference
  1168. Minimal difference between two consecutive samples.
  1169. @item Max difference
  1170. Maximal difference between two consecutive samples.
  1171. @item Mean difference
  1172. Mean difference between two consecutive samples.
  1173. The average of each difference between two consecutive samples.
  1174. @item Peak level dB
  1175. @item RMS level dB
  1176. Standard peak and RMS level measured in dBFS.
  1177. @item RMS peak dB
  1178. @item RMS trough dB
  1179. Peak and trough values for RMS level measured over a short window.
  1180. @item Crest factor
  1181. Standard ratio of peak to RMS level (note: not in dB).
  1182. @item Flat factor
  1183. Flatness (i.e. consecutive samples with the same value) of the signal at its peak levels
  1184. (i.e. either @var{Min level} or @var{Max level}).
  1185. @item Peak count
  1186. Number of occasions (not the number of samples) that the signal attained either
  1187. @var{Min level} or @var{Max level}.
  1188. @item Bit depth
  1189. Overall bit depth of audio. Number of bits used for each sample.
  1190. @end table
  1191. @section asyncts
  1192. Synchronize audio data with timestamps by squeezing/stretching it and/or
  1193. dropping samples/adding silence when needed.
  1194. This filter is not built by default, please use @ref{aresample} to do squeezing/stretching.
  1195. It accepts the following parameters:
  1196. @table @option
  1197. @item compensate
  1198. Enable stretching/squeezing the data to make it match the timestamps. Disabled
  1199. by default. When disabled, time gaps are covered with silence.
  1200. @item min_delta
  1201. The minimum difference between timestamps and audio data (in seconds) to trigger
  1202. adding/dropping samples. The default value is 0.1. If you get an imperfect
  1203. sync with this filter, try setting this parameter to 0.
  1204. @item max_comp
  1205. The maximum compensation in samples per second. Only relevant with compensate=1.
  1206. The default value is 500.
  1207. @item first_pts
  1208. Assume that the first PTS should be this value. The time base is 1 / sample
  1209. rate. This allows for padding/trimming at the start of the stream. By default,
  1210. no assumption is made about the first frame's expected PTS, so no padding or
  1211. trimming is done. For example, this could be set to 0 to pad the beginning with
  1212. silence if an audio stream starts after the video stream or to trim any samples
  1213. with a negative PTS due to encoder delay.
  1214. @end table
  1215. @section atempo
  1216. Adjust audio tempo.
  1217. The filter accepts exactly one parameter, the audio tempo. If not
  1218. specified then the filter will assume nominal 1.0 tempo. Tempo must
  1219. be in the [0.5, 2.0] range.
  1220. @subsection Examples
  1221. @itemize
  1222. @item
  1223. Slow down audio to 80% tempo:
  1224. @example
  1225. atempo=0.8
  1226. @end example
  1227. @item
  1228. To speed up audio to 125% tempo:
  1229. @example
  1230. atempo=1.25
  1231. @end example
  1232. @end itemize
  1233. @section atrim
  1234. Trim the input so that the output contains one continuous subpart of the input.
  1235. It accepts the following parameters:
  1236. @table @option
  1237. @item start
  1238. Timestamp (in seconds) of the start of the section to keep. I.e. the audio
  1239. sample with the timestamp @var{start} will be the first sample in the output.
  1240. @item end
  1241. Specify time of the first audio sample that will be dropped, i.e. the
  1242. audio sample immediately preceding the one with the timestamp @var{end} will be
  1243. the last sample in the output.
  1244. @item start_pts
  1245. Same as @var{start}, except this option sets the start timestamp in samples
  1246. instead of seconds.
  1247. @item end_pts
  1248. Same as @var{end}, except this option sets the end timestamp in samples instead
  1249. of seconds.
  1250. @item duration
  1251. The maximum duration of the output in seconds.
  1252. @item start_sample
  1253. The number of the first sample that should be output.
  1254. @item end_sample
  1255. The number of the first sample that should be dropped.
  1256. @end table
  1257. @option{start}, @option{end}, and @option{duration} are expressed as time
  1258. duration specifications; see
  1259. @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}.
  1260. Note that the first two sets of the start/end options and the @option{duration}
  1261. option look at the frame timestamp, while the _sample options simply count the
  1262. samples that pass through the filter. So start/end_pts and start/end_sample will
  1263. give different results when the timestamps are wrong, inexact or do not start at
  1264. zero. Also note that this filter does not modify the timestamps. If you wish
  1265. to have the output timestamps start at zero, insert the asetpts filter after the
  1266. atrim filter.
  1267. If multiple start or end options are set, this filter tries to be greedy and
  1268. keep all samples that match at least one of the specified constraints. To keep
  1269. only the part that matches all the constraints at once, chain multiple atrim
  1270. filters.
  1271. The defaults are such that all the input is kept. So it is possible to set e.g.
  1272. just the end values to keep everything before the specified time.
  1273. Examples:
  1274. @itemize
  1275. @item
  1276. Drop everything except the second minute of input:
  1277. @example
  1278. ffmpeg -i INPUT -af atrim=60:120
  1279. @end example
  1280. @item
  1281. Keep only the first 1000 samples:
  1282. @example
  1283. ffmpeg -i INPUT -af atrim=end_sample=1000
  1284. @end example
  1285. @end itemize
  1286. @section bandpass
  1287. Apply a two-pole Butterworth band-pass filter with central
  1288. frequency @var{frequency}, and (3dB-point) band-width width.
  1289. The @var{csg} option selects a constant skirt gain (peak gain = Q)
  1290. instead of the default: constant 0dB peak gain.
  1291. The filter roll off at 6dB per octave (20dB per decade).
  1292. The filter accepts the following options:
  1293. @table @option
  1294. @item frequency, f
  1295. Set the filter's central frequency. Default is @code{3000}.
  1296. @item csg
  1297. Constant skirt gain if set to 1. Defaults to 0.
  1298. @item width_type
  1299. Set method to specify band-width of filter.
  1300. @table @option
  1301. @item h
  1302. Hz
  1303. @item q
  1304. Q-Factor
  1305. @item o
  1306. octave
  1307. @item s
  1308. slope
  1309. @end table
  1310. @item width, w
  1311. Specify the band-width of a filter in width_type units.
  1312. @end table
  1313. @section bandreject
  1314. Apply a two-pole Butterworth band-reject filter with central
  1315. frequency @var{frequency}, and (3dB-point) band-width @var{width}.
  1316. The filter roll off at 6dB per octave (20dB per decade).
  1317. The filter accepts the following options:
  1318. @table @option
  1319. @item frequency, f
  1320. Set the filter's central frequency. Default is @code{3000}.
  1321. @item width_type
  1322. Set method to specify band-width of filter.
  1323. @table @option
  1324. @item h
  1325. Hz
  1326. @item q
  1327. Q-Factor
  1328. @item o
  1329. octave
  1330. @item s
  1331. slope
  1332. @end table
  1333. @item width, w
  1334. Specify the band-width of a filter in width_type units.
  1335. @end table
  1336. @section bass
  1337. Boost or cut the bass (lower) frequencies of the audio using a two-pole
  1338. shelving filter with a response similar to that of a standard
  1339. hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
  1340. The filter accepts the following options:
  1341. @table @option
  1342. @item gain, g
  1343. Give the gain at 0 Hz. Its useful range is about -20
  1344. (for a large cut) to +20 (for a large boost).
  1345. Beware of clipping when using a positive gain.
  1346. @item frequency, f
  1347. Set the filter's central frequency and so can be used
  1348. to extend or reduce the frequency range to be boosted or cut.
  1349. The default value is @code{100} Hz.
  1350. @item width_type
  1351. Set method to specify band-width of filter.
  1352. @table @option
  1353. @item h
  1354. Hz
  1355. @item q
  1356. Q-Factor
  1357. @item o
  1358. octave
  1359. @item s
  1360. slope
  1361. @end table
  1362. @item width, w
  1363. Determine how steep is the filter's shelf transition.
  1364. @end table
  1365. @section biquad
  1366. Apply a biquad IIR filter with the given coefficients.
  1367. Where @var{b0}, @var{b1}, @var{b2} and @var{a0}, @var{a1}, @var{a2}
  1368. are the numerator and denominator coefficients respectively.
  1369. @section bs2b
  1370. Bauer stereo to binaural transformation, which improves headphone listening of
  1371. stereo audio records.
  1372. It accepts the following parameters:
  1373. @table @option
  1374. @item profile
  1375. Pre-defined crossfeed level.
  1376. @table @option
  1377. @item default
  1378. Default level (fcut=700, feed=50).
  1379. @item cmoy
  1380. Chu Moy circuit (fcut=700, feed=60).
  1381. @item jmeier
  1382. Jan Meier circuit (fcut=650, feed=95).
  1383. @end table
  1384. @item fcut
  1385. Cut frequency (in Hz).
  1386. @item feed
  1387. Feed level (in Hz).
  1388. @end table
  1389. @section channelmap
  1390. Remap input channels to new locations.
  1391. It accepts the following parameters:
  1392. @table @option
  1393. @item channel_layout
  1394. The channel layout of the output stream.
  1395. @item map
  1396. Map channels from input to output. The argument is a '|'-separated list of
  1397. mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
  1398. @var{in_channel} form. @var{in_channel} can be either the name of the input
  1399. channel (e.g. FL for front left) or its index in the input channel layout.
  1400. @var{out_channel} is the name of the output channel or its index in the output
  1401. channel layout. If @var{out_channel} is not given then it is implicitly an
  1402. index, starting with zero and increasing by one for each mapping.
  1403. @end table
  1404. If no mapping is present, the filter will implicitly map input channels to
  1405. output channels, preserving indices.
  1406. For example, assuming a 5.1+downmix input MOV file,
  1407. @example
  1408. ffmpeg -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
  1409. @end example
  1410. will create an output WAV file tagged as stereo from the downmix channels of
  1411. the input.
  1412. To fix a 5.1 WAV improperly encoded in AAC's native channel order
  1413. @example
  1414. ffmpeg -i in.wav -filter 'channelmap=1|2|0|5|3|4:5.1' out.wav
  1415. @end example
  1416. @section channelsplit
  1417. Split each channel from an input audio stream into a separate output stream.
  1418. It accepts the following parameters:
  1419. @table @option
  1420. @item channel_layout
  1421. The channel layout of the input stream. The default is "stereo".
  1422. @end table
  1423. For example, assuming a stereo input MP3 file,
  1424. @example
  1425. ffmpeg -i in.mp3 -filter_complex channelsplit out.mkv
  1426. @end example
  1427. will create an output Matroska file with two audio streams, one containing only
  1428. the left channel and the other the right channel.
  1429. Split a 5.1 WAV file into per-channel files:
  1430. @example
  1431. ffmpeg -i in.wav -filter_complex
  1432. 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
  1433. -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
  1434. front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
  1435. side_right.wav
  1436. @end example
  1437. @section chorus
  1438. Add a chorus effect to the audio.
  1439. Can make a single vocal sound like a chorus, but can also be applied to instrumentation.
  1440. Chorus resembles an echo effect with a short delay, but whereas with echo the delay is
  1441. constant, with chorus, it is varied using using sinusoidal or triangular modulation.
  1442. The modulation depth defines the range the modulated delay is played before or after
  1443. the delay. Hence the delayed sound will sound slower or faster, that is the delayed
  1444. sound tuned around the original one, like in a chorus where some vocals are slightly
  1445. off key.
  1446. It accepts the following parameters:
  1447. @table @option
  1448. @item in_gain
  1449. Set input gain. Default is 0.4.
  1450. @item out_gain
  1451. Set output gain. Default is 0.4.
  1452. @item delays
  1453. Set delays. A typical delay is around 40ms to 60ms.
  1454. @item decays
  1455. Set decays.
  1456. @item speeds
  1457. Set speeds.
  1458. @item depths
  1459. Set depths.
  1460. @end table
  1461. @subsection Examples
  1462. @itemize
  1463. @item
  1464. A single delay:
  1465. @example
  1466. chorus=0.7:0.9:55:0.4:0.25:2
  1467. @end example
  1468. @item
  1469. Two delays:
  1470. @example
  1471. chorus=0.6:0.9:50|60:0.4|0.32:0.25|0.4:2|1.3
  1472. @end example
  1473. @item
  1474. Fuller sounding chorus with three delays:
  1475. @example
  1476. 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
  1477. @end example
  1478. @end itemize
  1479. @section compand
  1480. Compress or expand the audio's dynamic range.
  1481. It accepts the following parameters:
  1482. @table @option
  1483. @item attacks
  1484. @item decays
  1485. A list of times in seconds for each channel over which the instantaneous level
  1486. of the input signal is averaged to determine its volume. @var{attacks} refers to
  1487. increase of volume and @var{decays} refers to decrease of volume. For most
  1488. situations, the attack time (response to the audio getting louder) should be
  1489. shorter than the decay time, because the human ear is more sensitive to sudden
  1490. loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
  1491. a typical value for decay is 0.8 seconds.
  1492. If specified number of attacks & decays is lower than number of channels, the last
  1493. set attack/decay will be used for all remaining channels.
  1494. @item points
  1495. A list of points for the transfer function, specified in dB relative to the
  1496. maximum possible signal amplitude. Each key points list must be defined using
  1497. the following syntax: @code{x0/y0|x1/y1|x2/y2|....} or
  1498. @code{x0/y0 x1/y1 x2/y2 ....}
  1499. The input values must be in strictly increasing order but the transfer function
  1500. does not have to be monotonically rising. The point @code{0/0} is assumed but
  1501. may be overridden (by @code{0/out-dBn}). Typical values for the transfer
  1502. function are @code{-70/-70|-60/-20}.
  1503. @item soft-knee
  1504. Set the curve radius in dB for all joints. It defaults to 0.01.
  1505. @item gain
  1506. Set the additional gain in dB to be applied at all points on the transfer
  1507. function. This allows for easy adjustment of the overall gain.
  1508. It defaults to 0.
  1509. @item volume
  1510. Set an initial volume, in dB, to be assumed for each channel when filtering
  1511. starts. This permits the user to supply a nominal level initially, so that, for
  1512. example, a very large gain is not applied to initial signal levels before the
  1513. companding has begun to operate. A typical value for audio which is initially
  1514. quiet is -90 dB. It defaults to 0.
  1515. @item delay
  1516. Set a delay, in seconds. The input audio is analyzed immediately, but audio is
  1517. delayed before being fed to the volume adjuster. Specifying a delay
  1518. approximately equal to the attack/decay times allows the filter to effectively
  1519. operate in predictive rather than reactive mode. It defaults to 0.
  1520. @end table
  1521. @subsection Examples
  1522. @itemize
  1523. @item
  1524. Make music with both quiet and loud passages suitable for listening to in a
  1525. noisy environment:
  1526. @example
  1527. compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
  1528. @end example
  1529. Another example for audio with whisper and explosion parts:
  1530. @example
  1531. compand=0|0:1|1:-90/-900|-70/-70|-30/-9|0/-3:6:0:0:0
  1532. @end example
  1533. @item
  1534. A noise gate for when the noise is at a lower level than the signal:
  1535. @example
  1536. compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
  1537. @end example
  1538. @item
  1539. Here is another noise gate, this time for when the noise is at a higher level
  1540. than the signal (making it, in some ways, similar to squelch):
  1541. @example
  1542. compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
  1543. @end example
  1544. @item
  1545. 2:1 compression starting at -6dB:
  1546. @example
  1547. compand=points=-80/-80|-6/-6|0/-3.8|20/3.5
  1548. @end example
  1549. @item
  1550. 2:1 compression starting at -9dB:
  1551. @example
  1552. compand=points=-80/-80|-9/-9|0/-5.3|20/2.9
  1553. @end example
  1554. @item
  1555. 2:1 compression starting at -12dB:
  1556. @example
  1557. compand=points=-80/-80|-12/-12|0/-6.8|20/1.9
  1558. @end example
  1559. @item
  1560. 2:1 compression starting at -18dB:
  1561. @example
  1562. compand=points=-80/-80|-18/-18|0/-9.8|20/0.7
  1563. @end example
  1564. @item
  1565. 3:1 compression starting at -15dB:
  1566. @example
  1567. compand=points=-80/-80|-15/-15|0/-10.8|20/-5.2
  1568. @end example
  1569. @item
  1570. Compressor/Gate:
  1571. @example
  1572. compand=points=-80/-105|-62/-80|-15.4/-15.4|0/-12|20/-7.6
  1573. @end example
  1574. @item
  1575. Expander:
  1576. @example
  1577. 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
  1578. @end example
  1579. @item
  1580. Hard limiter at -6dB:
  1581. @example
  1582. compand=attacks=0:points=-80/-80|-6/-6|20/-6
  1583. @end example
  1584. @item
  1585. Hard limiter at -12dB:
  1586. @example
  1587. compand=attacks=0:points=-80/-80|-12/-12|20/-12
  1588. @end example
  1589. @item
  1590. Hard noise gate at -35 dB:
  1591. @example
  1592. compand=attacks=0:points=-80/-115|-35.1/-80|-35/-35|20/20
  1593. @end example
  1594. @item
  1595. Soft limiter:
  1596. @example
  1597. compand=attacks=0:points=-80/-80|-12.4/-12.4|-6/-8|0/-6.8|20/-2.8
  1598. @end example
  1599. @end itemize
  1600. @section compensationdelay
  1601. Compensation Delay Line is a metric based delay to compensate differing
  1602. positions of microphones or speakers.
  1603. For example, you have recorded guitar with two microphones placed in
  1604. different location. Because the front of sound wave has fixed speed in
  1605. normal conditions, the phasing of microphones can vary and depends on
  1606. their location and interposition. The best sound mix can be achieved when
  1607. these microphones are in phase (synchronized). Note that distance of
  1608. ~30 cm between microphones makes one microphone to capture signal in
  1609. antiphase to another microphone. That makes the final mix sounding moody.
  1610. This filter helps to solve phasing problems by adding different delays
  1611. to each microphone track and make them synchronized.
  1612. The best result can be reached when you take one track as base and
  1613. synchronize other tracks one by one with it.
  1614. Remember that synchronization/delay tolerance depends on sample rate, too.
  1615. Higher sample rates will give more tolerance.
  1616. It accepts the following parameters:
  1617. @table @option
  1618. @item mm
  1619. Set millimeters distance. This is compensation distance for fine tuning.
  1620. Default is 0.
  1621. @item cm
  1622. Set cm distance. This is compensation distance for tightening distance setup.
  1623. Default is 0.
  1624. @item m
  1625. Set meters distance. This is compensation distance for hard distance setup.
  1626. Default is 0.
  1627. @item dry
  1628. Set dry amount. Amount of unprocessed (dry) signal.
  1629. Default is 0.
  1630. @item wet
  1631. Set wet amount. Amount of processed (wet) signal.
  1632. Default is 1.
  1633. @item temp
  1634. Set temperature degree in Celsius. This is the temperature of the environment.
  1635. Default is 20.
  1636. @end table
  1637. @section dcshift
  1638. Apply a DC shift to the audio.
  1639. This can be useful to remove a DC offset (caused perhaps by a hardware problem
  1640. in the recording chain) from the audio. The effect of a DC offset is reduced
  1641. headroom and hence volume. The @ref{astats} filter can be used to determine if
  1642. a signal has a DC offset.
  1643. @table @option
  1644. @item shift
  1645. Set the DC shift, allowed range is [-1, 1]. It indicates the amount to shift
  1646. the audio.
  1647. @item limitergain
  1648. Optional. It should have a value much less than 1 (e.g. 0.05 or 0.02) and is
  1649. used to prevent clipping.
  1650. @end table
  1651. @section dynaudnorm
  1652. Dynamic Audio Normalizer.
  1653. This filter applies a certain amount of gain to the input audio in order
  1654. to bring its peak magnitude to a target level (e.g. 0 dBFS). However, in
  1655. contrast to more "simple" normalization algorithms, the Dynamic Audio
  1656. Normalizer *dynamically* re-adjusts the gain factor to the input audio.
  1657. This allows for applying extra gain to the "quiet" sections of the audio
  1658. while avoiding distortions or clipping the "loud" sections. In other words:
  1659. The Dynamic Audio Normalizer will "even out" the volume of quiet and loud
  1660. sections, in the sense that the volume of each section is brought to the
  1661. same target level. Note, however, that the Dynamic Audio Normalizer achieves
  1662. this goal *without* applying "dynamic range compressing". It will retain 100%
  1663. of the dynamic range *within* each section of the audio file.
  1664. @table @option
  1665. @item f
  1666. Set the frame length in milliseconds. In range from 10 to 8000 milliseconds.
  1667. Default is 500 milliseconds.
  1668. The Dynamic Audio Normalizer processes the input audio in small chunks,
  1669. referred to as frames. This is required, because a peak magnitude has no
  1670. meaning for just a single sample value. Instead, we need to determine the
  1671. peak magnitude for a contiguous sequence of sample values. While a "standard"
  1672. normalizer would simply use the peak magnitude of the complete file, the
  1673. Dynamic Audio Normalizer determines the peak magnitude individually for each
  1674. frame. The length of a frame is specified in milliseconds. By default, the
  1675. Dynamic Audio Normalizer uses a frame length of 500 milliseconds, which has
  1676. been found to give good results with most files.
  1677. Note that the exact frame length, in number of samples, will be determined
  1678. automatically, based on the sampling rate of the individual input audio file.
  1679. @item g
  1680. Set the Gaussian filter window size. In range from 3 to 301, must be odd
  1681. number. Default is 31.
  1682. Probably the most important parameter of the Dynamic Audio Normalizer is the
  1683. @code{window size} of the Gaussian smoothing filter. The filter's window size
  1684. is specified in frames, centered around the current frame. For the sake of
  1685. simplicity, this must be an odd number. Consequently, the default value of 31
  1686. takes into account the current frame, as well as the 15 preceding frames and
  1687. the 15 subsequent frames. Using a larger window results in a stronger
  1688. smoothing effect and thus in less gain variation, i.e. slower gain
  1689. adaptation. Conversely, using a smaller window results in a weaker smoothing
  1690. effect and thus in more gain variation, i.e. faster gain adaptation.
  1691. In other words, the more you increase this value, the more the Dynamic Audio
  1692. Normalizer will behave like a "traditional" normalization filter. On the
  1693. contrary, the more you decrease this value, the more the Dynamic Audio
  1694. Normalizer will behave like a dynamic range compressor.
  1695. @item p
  1696. Set the target peak value. This specifies the highest permissible magnitude
  1697. level for the normalized audio input. This filter will try to approach the
  1698. target peak magnitude as closely as possible, but at the same time it also
  1699. makes sure that the normalized signal will never exceed the peak magnitude.
  1700. A frame's maximum local gain factor is imposed directly by the target peak
  1701. magnitude. The default value is 0.95 and thus leaves a headroom of 5%*.
  1702. It is not recommended to go above this value.
  1703. @item m
  1704. Set the maximum gain factor. In range from 1.0 to 100.0. Default is 10.0.
  1705. The Dynamic Audio Normalizer determines the maximum possible (local) gain
  1706. factor for each input frame, i.e. the maximum gain factor that does not
  1707. result in clipping or distortion. The maximum gain factor is determined by
  1708. the frame's highest magnitude sample. However, the Dynamic Audio Normalizer
  1709. additionally bounds the frame's maximum gain factor by a predetermined
  1710. (global) maximum gain factor. This is done in order to avoid excessive gain
  1711. factors in "silent" or almost silent frames. By default, the maximum gain
  1712. factor is 10.0, For most inputs the default value should be sufficient and
  1713. it usually is not recommended to increase this value. Though, for input
  1714. with an extremely low overall volume level, it may be necessary to allow even
  1715. higher gain factors. Note, however, that the Dynamic Audio Normalizer does
  1716. not simply apply a "hard" threshold (i.e. cut off values above the threshold).
  1717. Instead, a "sigmoid" threshold function will be applied. This way, the
  1718. gain factors will smoothly approach the threshold value, but never exceed that
  1719. value.
  1720. @item r
  1721. Set the target RMS. In range from 0.0 to 1.0. Default is 0.0 - disabled.
  1722. By default, the Dynamic Audio Normalizer performs "peak" normalization.
  1723. This means that the maximum local gain factor for each frame is defined
  1724. (only) by the frame's highest magnitude sample. This way, the samples can
  1725. be amplified as much as possible without exceeding the maximum signal
  1726. level, i.e. without clipping. Optionally, however, the Dynamic Audio
  1727. Normalizer can also take into account the frame's root mean square,
  1728. abbreviated RMS. In electrical engineering, the RMS is commonly used to
  1729. determine the power of a time-varying signal. It is therefore considered
  1730. that the RMS is a better approximation of the "perceived loudness" than
  1731. just looking at the signal's peak magnitude. Consequently, by adjusting all
  1732. frames to a constant RMS value, a uniform "perceived loudness" can be
  1733. established. If a target RMS value has been specified, a frame's local gain
  1734. factor is defined as the factor that would result in exactly that RMS value.
  1735. Note, however, that the maximum local gain factor is still restricted by the
  1736. frame's highest magnitude sample, in order to prevent clipping.
  1737. @item n
  1738. Enable channels coupling. By default is enabled.
  1739. By default, the Dynamic Audio Normalizer will amplify all channels by the same
  1740. amount. This means the same gain factor will be applied to all channels, i.e.
  1741. the maximum possible gain factor is determined by the "loudest" channel.
  1742. However, in some recordings, it may happen that the volume of the different
  1743. channels is uneven, e.g. one channel may be "quieter" than the other one(s).
  1744. In this case, this option can be used to disable the channel coupling. This way,
  1745. the gain factor will be determined independently for each channel, depending
  1746. only on the individual channel's highest magnitude sample. This allows for
  1747. harmonizing the volume of the different channels.
  1748. @item c
  1749. Enable DC bias correction. By default is disabled.
  1750. An audio signal (in the time domain) is a sequence of sample values.
  1751. In the Dynamic Audio Normalizer these sample values are represented in the
  1752. -1.0 to 1.0 range, regardless of the original input format. Normally, the
  1753. audio signal, or "waveform", should be centered around the zero point.
  1754. That means if we calculate the mean value of all samples in a file, or in a
  1755. single frame, then the result should be 0.0 or at least very close to that
  1756. value. If, however, there is a significant deviation of the mean value from
  1757. 0.0, in either positive or negative direction, this is referred to as a
  1758. DC bias or DC offset. Since a DC bias is clearly undesirable, the Dynamic
  1759. Audio Normalizer provides optional DC bias correction.
  1760. With DC bias correction enabled, the Dynamic Audio Normalizer will determine
  1761. the mean value, or "DC correction" offset, of each input frame and subtract
  1762. that value from all of the frame's sample values which ensures those samples
  1763. are centered around 0.0 again. Also, in order to avoid "gaps" at the frame
  1764. boundaries, the DC correction offset values will be interpolated smoothly
  1765. between neighbouring frames.
  1766. @item b
  1767. Enable alternative boundary mode. By default is disabled.
  1768. The Dynamic Audio Normalizer takes into account a certain neighbourhood
  1769. around each frame. This includes the preceding frames as well as the
  1770. subsequent frames. However, for the "boundary" frames, located at the very
  1771. beginning and at the very end of the audio file, not all neighbouring
  1772. frames are available. In particular, for the first few frames in the audio
  1773. file, the preceding frames are not known. And, similarly, for the last few
  1774. frames in the audio file, the subsequent frames are not known. Thus, the
  1775. question arises which gain factors should be assumed for the missing frames
  1776. in the "boundary" region. The Dynamic Audio Normalizer implements two modes
  1777. to deal with this situation. The default boundary mode assumes a gain factor
  1778. of exactly 1.0 for the missing frames, resulting in a smooth "fade in" and
  1779. "fade out" at the beginning and at the end of the input, respectively.
  1780. @item s
  1781. Set the compress factor. In range from 0.0 to 30.0. Default is 0.0.
  1782. By default, the Dynamic Audio Normalizer does not apply "traditional"
  1783. compression. This means that signal peaks will not be pruned and thus the
  1784. full dynamic range will be retained within each local neighbourhood. However,
  1785. in some cases it may be desirable to combine the Dynamic Audio Normalizer's
  1786. normalization algorithm with a more "traditional" compression.
  1787. For this purpose, the Dynamic Audio Normalizer provides an optional compression
  1788. (thresholding) function. If (and only if) the compression feature is enabled,
  1789. all input frames will be processed by a soft knee thresholding function prior
  1790. to the actual normalization process. Put simply, the thresholding function is
  1791. going to prune all samples whose magnitude exceeds a certain threshold value.
  1792. However, the Dynamic Audio Normalizer does not simply apply a fixed threshold
  1793. value. Instead, the threshold value will be adjusted for each individual
  1794. frame.
  1795. In general, smaller parameters result in stronger compression, and vice versa.
  1796. Values below 3.0 are not recommended, because audible distortion may appear.
  1797. @end table
  1798. @section earwax
  1799. Make audio easier to listen to on headphones.
  1800. This filter adds `cues' to 44.1kHz stereo (i.e. audio CD format) audio
  1801. so that when listened to on headphones the stereo image is moved from
  1802. inside your head (standard for headphones) to outside and in front of
  1803. the listener (standard for speakers).
  1804. Ported from SoX.
  1805. @section equalizer
  1806. Apply a two-pole peaking equalisation (EQ) filter. With this
  1807. filter, the signal-level at and around a selected frequency can
  1808. be increased or decreased, whilst (unlike bandpass and bandreject
  1809. filters) that at all other frequencies is unchanged.
  1810. In order to produce complex equalisation curves, this filter can
  1811. be given several times, each with a different central frequency.
  1812. The filter accepts the following options:
  1813. @table @option
  1814. @item frequency, f
  1815. Set the filter's central frequency in Hz.
  1816. @item width_type
  1817. Set method to specify band-width of filter.
  1818. @table @option
  1819. @item h
  1820. Hz
  1821. @item q
  1822. Q-Factor
  1823. @item o
  1824. octave
  1825. @item s
  1826. slope
  1827. @end table
  1828. @item width, w
  1829. Specify the band-width of a filter in width_type units.
  1830. @item gain, g
  1831. Set the required gain or attenuation in dB.
  1832. Beware of clipping when using a positive gain.
  1833. @end table
  1834. @subsection Examples
  1835. @itemize
  1836. @item
  1837. Attenuate 10 dB at 1000 Hz, with a bandwidth of 200 Hz:
  1838. @example
  1839. equalizer=f=1000:width_type=h:width=200:g=-10
  1840. @end example
  1841. @item
  1842. Apply 2 dB gain at 1000 Hz with Q 1 and attenuate 5 dB at 100 Hz with Q 2:
  1843. @example
  1844. equalizer=f=1000:width_type=q:width=1:g=2,equalizer=f=100:width_type=q:width=2:g=-5
  1845. @end example
  1846. @end itemize
  1847. @section extrastereo
  1848. Linearly increases the difference between left and right channels which
  1849. adds some sort of "live" effect to playback.
  1850. The filter accepts the following option:
  1851. @table @option
  1852. @item m
  1853. Sets the difference coefficient (default: 2.5). 0.0 means mono sound
  1854. (average of both channels), with 1.0 sound will be unchanged, with
  1855. -1.0 left and right channels will be swapped.
  1856. @item c
  1857. Enable clipping. By default is enabled.
  1858. @end table
  1859. @section flanger
  1860. Apply a flanging effect to the audio.
  1861. The filter accepts the following options:
  1862. @table @option
  1863. @item delay
  1864. Set base delay in milliseconds. Range from 0 to 30. Default value is 0.
  1865. @item depth
  1866. Set added swep delay in milliseconds. Range from 0 to 10. Default value is 2.
  1867. @item regen
  1868. Set percentage regeneration (delayed signal feedback). Range from -95 to 95.
  1869. Default value is 0.
  1870. @item width
  1871. Set percentage of delayed signal mixed with original. Range from 0 to 100.
  1872. Default value is 71.
  1873. @item speed
  1874. Set sweeps per second (Hz). Range from 0.1 to 10. Default value is 0.5.
  1875. @item shape
  1876. Set swept wave shape, can be @var{triangular} or @var{sinusoidal}.
  1877. Default value is @var{sinusoidal}.
  1878. @item phase
  1879. Set swept wave percentage-shift for multi channel. Range from 0 to 100.
  1880. Default value is 25.
  1881. @item interp
  1882. Set delay-line interpolation, @var{linear} or @var{quadratic}.
  1883. Default is @var{linear}.
  1884. @end table
  1885. @section highpass
  1886. Apply a high-pass filter with 3dB point frequency.
  1887. The filter can be either single-pole, or double-pole (the default).
  1888. The filter roll off at 6dB per pole per octave (20dB per pole per decade).
  1889. The filter accepts the following options:
  1890. @table @option
  1891. @item frequency, f
  1892. Set frequency in Hz. Default is 3000.
  1893. @item poles, p
  1894. Set number of poles. Default is 2.
  1895. @item width_type
  1896. Set method to specify band-width of filter.
  1897. @table @option
  1898. @item h
  1899. Hz
  1900. @item q
  1901. Q-Factor
  1902. @item o
  1903. octave
  1904. @item s
  1905. slope
  1906. @end table
  1907. @item width, w
  1908. Specify the band-width of a filter in width_type units.
  1909. Applies only to double-pole filter.
  1910. The default is 0.707q and gives a Butterworth response.
  1911. @end table
  1912. @section join
  1913. Join multiple input streams into one multi-channel stream.
  1914. It accepts the following parameters:
  1915. @table @option
  1916. @item inputs
  1917. The number of input streams. It defaults to 2.
  1918. @item channel_layout
  1919. The desired output channel layout. It defaults to stereo.
  1920. @item map
  1921. Map channels from inputs to output. The argument is a '|'-separated list of
  1922. mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
  1923. form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
  1924. can be either the name of the input channel (e.g. FL for front left) or its
  1925. index in the specified input stream. @var{out_channel} is the name of the output
  1926. channel.
  1927. @end table
  1928. The filter will attempt to guess the mappings when they are not specified
  1929. explicitly. It does so by first trying to find an unused matching input channel
  1930. and if that fails it picks the first unused input channel.
  1931. Join 3 inputs (with properly set channel layouts):
  1932. @example
  1933. ffmpeg -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
  1934. @end example
  1935. Build a 5.1 output from 6 single-channel streams:
  1936. @example
  1937. ffmpeg -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
  1938. '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'
  1939. out
  1940. @end example
  1941. @section ladspa
  1942. Load a LADSPA (Linux Audio Developer's Simple Plugin API) plugin.
  1943. To enable compilation of this filter you need to configure FFmpeg with
  1944. @code{--enable-ladspa}.
  1945. @table @option
  1946. @item file, f
  1947. Specifies the name of LADSPA plugin library to load. If the environment
  1948. variable @env{LADSPA_PATH} is defined, the LADSPA plugin is searched in
  1949. each one of the directories specified by the colon separated list in
  1950. @env{LADSPA_PATH}, otherwise in the standard LADSPA paths, which are in
  1951. this order: @file{HOME/.ladspa/lib/}, @file{/usr/local/lib/ladspa/},
  1952. @file{/usr/lib/ladspa/}.
  1953. @item plugin, p
  1954. Specifies the plugin within the library. Some libraries contain only
  1955. one plugin, but others contain many of them. If this is not set filter
  1956. will list all available plugins within the specified library.
  1957. @item controls, c
  1958. Set the '|' separated list of controls which are zero or more floating point
  1959. values that determine the behavior of the loaded plugin (for example delay,
  1960. threshold or gain).
  1961. Controls need to be defined using the following syntax:
  1962. c0=@var{value0}|c1=@var{value1}|c2=@var{value2}|..., where
  1963. @var{valuei} is the value set on the @var{i}-th control.
  1964. Alternatively they can be also defined using the following syntax:
  1965. @var{value0}|@var{value1}|@var{value2}|..., where
  1966. @var{valuei} is the value set on the @var{i}-th control.
  1967. If @option{controls} is set to @code{help}, all available controls and
  1968. their valid ranges are printed.
  1969. @item sample_rate, s
  1970. Specify the sample rate, default to 44100. Only used if plugin have
  1971. zero inputs.
  1972. @item nb_samples, n
  1973. Set the number of samples per channel per each output frame, default
  1974. is 1024. Only used if plugin have zero inputs.
  1975. @item duration, d
  1976. Set the minimum duration of the sourced audio. See
  1977. @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
  1978. for the accepted syntax.
  1979. Note that the resulting duration may be greater than the specified duration,
  1980. as the generated audio is always cut at the end of a complete frame.
  1981. If not specified, or the expressed duration is negative, the audio is
  1982. supposed to be generated forever.
  1983. Only used if plugin have zero inputs.
  1984. @end table
  1985. @subsection Examples
  1986. @itemize
  1987. @item
  1988. List all available plugins within amp (LADSPA example plugin) library:
  1989. @example
  1990. ladspa=file=amp
  1991. @end example
  1992. @item
  1993. List all available controls and their valid ranges for @code{vcf_notch}
  1994. plugin from @code{VCF} library:
  1995. @example
  1996. ladspa=f=vcf:p=vcf_notch:c=help
  1997. @end example
  1998. @item
  1999. Simulate low quality audio equipment using @code{Computer Music Toolkit} (CMT)
  2000. plugin library:
  2001. @example
  2002. ladspa=file=cmt:plugin=lofi:controls=c0=22|c1=12|c2=12
  2003. @end example
  2004. @item
  2005. Add reverberation to the audio using TAP-plugins
  2006. (Tom's Audio Processing plugins):
  2007. @example
  2008. ladspa=file=tap_reverb:tap_reverb
  2009. @end example
  2010. @item
  2011. Generate white noise, with 0.2 amplitude:
  2012. @example
  2013. ladspa=file=cmt:noise_source_white:c=c0=.2
  2014. @end example
  2015. @item
  2016. Generate 20 bpm clicks using plugin @code{C* Click - Metronome} from the
  2017. @code{C* Audio Plugin Suite} (CAPS) library:
  2018. @example
  2019. ladspa=file=caps:Click:c=c1=20'
  2020. @end example
  2021. @item
  2022. Apply @code{C* Eq10X2 - Stereo 10-band equaliser} effect:
  2023. @example
  2024. ladspa=caps:Eq10X2:c=c0=-48|c9=-24|c3=12|c4=2
  2025. @end example
  2026. @item
  2027. Increase volume by 20dB using fast lookahead limiter from Steve Harris
  2028. @code{SWH Plugins} collection:
  2029. @example
  2030. ladspa=fast_lookahead_limiter_1913:fastLookaheadLimiter:20|0|2
  2031. @end example
  2032. @item
  2033. Attenuate low frequencies using Multiband EQ from Steve Harris
  2034. @code{SWH Plugins} collection:
  2035. @example
  2036. ladspa=mbeq_1197:mbeq:-24|-24|-24|0|0|0|0|0|0|0|0|0|0|0|0
  2037. @end example
  2038. @end itemize
  2039. @subsection Commands
  2040. This filter supports the following commands:
  2041. @table @option
  2042. @item cN
  2043. Modify the @var{N}-th control value.
  2044. If the specified value is not valid, it is ignored and prior one is kept.
  2045. @end table
  2046. @section lowpass
  2047. Apply a low-pass filter with 3dB point frequency.
  2048. The filter can be either single-pole or double-pole (the default).
  2049. The filter roll off at 6dB per pole per octave (20dB per pole per decade).
  2050. The filter accepts the following options:
  2051. @table @option
  2052. @item frequency, f
  2053. Set frequency in Hz. Default is 500.
  2054. @item poles, p
  2055. Set number of poles. Default is 2.
  2056. @item width_type
  2057. Set method to specify band-width of filter.
  2058. @table @option
  2059. @item h
  2060. Hz
  2061. @item q
  2062. Q-Factor
  2063. @item o
  2064. octave
  2065. @item s
  2066. slope
  2067. @end table
  2068. @item width, w
  2069. Specify the band-width of a filter in width_type units.
  2070. Applies only to double-pole filter.
  2071. The default is 0.707q and gives a Butterworth response.
  2072. @end table
  2073. @anchor{pan}
  2074. @section pan
  2075. Mix channels with specific gain levels. The filter accepts the output
  2076. channel layout followed by a set of channels definitions.
  2077. This filter is also designed to efficiently remap the channels of an audio
  2078. stream.
  2079. The filter accepts parameters of the form:
  2080. "@var{l}|@var{outdef}|@var{outdef}|..."
  2081. @table @option
  2082. @item l
  2083. output channel layout or number of channels
  2084. @item outdef
  2085. output channel specification, of the form:
  2086. "@var{out_name}=[@var{gain}*]@var{in_name}[+[@var{gain}*]@var{in_name}...]"
  2087. @item out_name
  2088. output channel to define, either a channel name (FL, FR, etc.) or a channel
  2089. number (c0, c1, etc.)
  2090. @item gain
  2091. multiplicative coefficient for the channel, 1 leaving the volume unchanged
  2092. @item in_name
  2093. input channel to use, see out_name for details; it is not possible to mix
  2094. named and numbered input channels
  2095. @end table
  2096. If the `=' in a channel specification is replaced by `<', then the gains for
  2097. that specification will be renormalized so that the total is 1, thus
  2098. avoiding clipping noise.
  2099. @subsection Mixing examples
  2100. For example, if you want to down-mix from stereo to mono, but with a bigger
  2101. factor for the left channel:
  2102. @example
  2103. pan=1c|c0=0.9*c0+0.1*c1
  2104. @end example
  2105. A customized down-mix to stereo that works automatically for 3-, 4-, 5- and
  2106. 7-channels surround:
  2107. @example
  2108. pan=stereo| FL < FL + 0.5*FC + 0.6*BL + 0.6*SL | FR < FR + 0.5*FC + 0.6*BR + 0.6*SR
  2109. @end example
  2110. Note that @command{ffmpeg} integrates a default down-mix (and up-mix) system
  2111. that should be preferred (see "-ac" option) unless you have very specific
  2112. needs.
  2113. @subsection Remapping examples
  2114. The channel remapping will be effective if, and only if:
  2115. @itemize
  2116. @item gain coefficients are zeroes or ones,
  2117. @item only one input per channel output,
  2118. @end itemize
  2119. If all these conditions are satisfied, the filter will notify the user ("Pure
  2120. channel mapping detected"), and use an optimized and lossless method to do the
  2121. remapping.
  2122. For example, if you have a 5.1 source and want a stereo audio stream by
  2123. dropping the extra channels:
  2124. @example
  2125. pan="stereo| c0=FL | c1=FR"
  2126. @end example
  2127. Given the same source, you can also switch front left and front right channels
  2128. and keep the input channel layout:
  2129. @example
  2130. pan="5.1| c0=c1 | c1=c0 | c2=c2 | c3=c3 | c4=c4 | c5=c5"
  2131. @end example
  2132. If the input is a stereo audio stream, you can mute the front left channel (and
  2133. still keep the stereo channel layout) with:
  2134. @example
  2135. pan="stereo|c1=c1"
  2136. @end example
  2137. Still with a stereo audio stream input, you can copy the right channel in both
  2138. front left and right:
  2139. @example
  2140. pan="stereo| c0=FR | c1=FR"
  2141. @end example
  2142. @section replaygain
  2143. ReplayGain scanner filter. This filter takes an audio stream as an input and
  2144. outputs it unchanged.
  2145. At end of filtering it displays @code{track_gain} and @code{track_peak}.
  2146. @section resample
  2147. Convert the audio sample format, sample rate and channel layout. It is
  2148. not meant to be used directly.
  2149. @section rubberband
  2150. Apply time-stretching and pitch-shifting with librubberband.
  2151. The filter accepts the following options:
  2152. @table @option
  2153. @item tempo
  2154. Set tempo scale factor.
  2155. @item pitch
  2156. Set pitch scale factor.
  2157. @item transients
  2158. Set transients detector.
  2159. Possible values are:
  2160. @table @var
  2161. @item crisp
  2162. @item mixed
  2163. @item smooth
  2164. @end table
  2165. @item detector
  2166. Set detector.
  2167. Possible values are:
  2168. @table @var
  2169. @item compound
  2170. @item percussive
  2171. @item soft
  2172. @end table
  2173. @item phase
  2174. Set phase.
  2175. Possible values are:
  2176. @table @var
  2177. @item laminar
  2178. @item independent
  2179. @end table
  2180. @item window
  2181. Set processing window size.
  2182. Possible values are:
  2183. @table @var
  2184. @item standard
  2185. @item short
  2186. @item long
  2187. @end table
  2188. @item smoothing
  2189. Set smoothing.
  2190. Possible values are:
  2191. @table @var
  2192. @item off
  2193. @item on
  2194. @end table
  2195. @item formant
  2196. Enable formant preservation when shift pitching.
  2197. Possible values are:
  2198. @table @var
  2199. @item shifted
  2200. @item preserved
  2201. @end table
  2202. @item pitchq
  2203. Set pitch quality.
  2204. Possible values are:
  2205. @table @var
  2206. @item quality
  2207. @item speed
  2208. @item consistency
  2209. @end table
  2210. @item channels
  2211. Set channels.
  2212. Possible values are:
  2213. @table @var
  2214. @item apart
  2215. @item together
  2216. @end table
  2217. @end table
  2218. @section sidechaincompress
  2219. This filter acts like normal compressor but has the ability to compress
  2220. detected signal using second input signal.
  2221. It needs two input streams and returns one output stream.
  2222. First input stream will be processed depending on second stream signal.
  2223. The filtered signal then can be filtered with other filters in later stages of
  2224. processing. See @ref{pan} and @ref{amerge} filter.
  2225. The filter accepts the following options:
  2226. @table @option
  2227. @item level_in
  2228. Set input gain. Default is 1. Range is between 0.015625 and 64.
  2229. @item threshold
  2230. If a signal of second stream raises above this level it will affect the gain
  2231. reduction of first stream.
  2232. By default is 0.125. Range is between 0.00097563 and 1.
  2233. @item ratio
  2234. Set a ratio about which the signal is reduced. 1:2 means that if the level
  2235. raised 4dB above the threshold, it will be only 2dB above after the reduction.
  2236. Default is 2. Range is between 1 and 20.
  2237. @item attack
  2238. Amount of milliseconds the signal has to rise above the threshold before gain
  2239. reduction starts. Default is 20. Range is between 0.01 and 2000.
  2240. @item release
  2241. Amount of milliseconds the signal has to fall below the threshold before
  2242. reduction is decreased again. Default is 250. Range is between 0.01 and 9000.
  2243. @item makeup
  2244. Set the amount by how much signal will be amplified after processing.
  2245. Default is 2. Range is from 1 and 64.
  2246. @item knee
  2247. Curve the sharp knee around the threshold to enter gain reduction more softly.
  2248. Default is 2.82843. Range is between 1 and 8.
  2249. @item link
  2250. Choose if the @code{average} level between all channels of side-chain stream
  2251. or the louder(@code{maximum}) channel of side-chain stream affects the
  2252. reduction. Default is @code{average}.
  2253. @item detection
  2254. Should the exact signal be taken in case of @code{peak} or an RMS one in case
  2255. of @code{rms}. Default is @code{rms} which is mainly smoother.
  2256. @item level_sc
  2257. Set sidechain gain. Default is 1. Range is between 0.015625 and 64.
  2258. @item mix
  2259. How much to use compressed signal in output. Default is 1.
  2260. Range is between 0 and 1.
  2261. @end table
  2262. @subsection Examples
  2263. @itemize
  2264. @item
  2265. Full ffmpeg example taking 2 audio inputs, 1st input to be compressed
  2266. depending on the signal of 2nd input and later compressed signal to be
  2267. merged with 2nd input:
  2268. @example
  2269. ffmpeg -i main.flac -i sidechain.flac -filter_complex "[1:a]asplit=2[sc][mix];[0:a][sc]sidechaincompress[compr];[compr][mix]amerge"
  2270. @end example
  2271. @end itemize
  2272. @section sidechaingate
  2273. A sidechain gate acts like a normal (wideband) gate but has the ability to
  2274. filter the detected signal before sending it to the gain reduction stage.
  2275. Normally a gate uses the full range signal to detect a level above the
  2276. threshold.
  2277. For example: If you cut all lower frequencies from your sidechain signal
  2278. the gate will decrease the volume of your track only if not enough highs
  2279. appear. With this technique you are able to reduce the resonation of a
  2280. natural drum or remove "rumbling" of muted strokes from a heavily distorted
  2281. guitar.
  2282. It needs two input streams and returns one output stream.
  2283. First input stream will be processed depending on second stream signal.
  2284. The filter accepts the following options:
  2285. @table @option
  2286. @item level_in
  2287. Set input level before filtering.
  2288. Default is 1. Allowed range is from 0.015625 to 64.
  2289. @item range
  2290. Set the level of gain reduction when the signal is below the threshold.
  2291. Default is 0.06125. Allowed range is from 0 to 1.
  2292. @item threshold
  2293. If a signal rises above this level the gain reduction is released.
  2294. Default is 0.125. Allowed range is from 0 to 1.
  2295. @item ratio
  2296. Set a ratio about which the signal is reduced.
  2297. Default is 2. Allowed range is from 1 to 9000.
  2298. @item attack
  2299. Amount of milliseconds the signal has to rise above the threshold before gain
  2300. reduction stops.
  2301. Default is 20 milliseconds. Allowed range is from 0.01 to 9000.
  2302. @item release
  2303. Amount of milliseconds the signal has to fall below the threshold before the
  2304. reduction is increased again. Default is 250 milliseconds.
  2305. Allowed range is from 0.01 to 9000.
  2306. @item makeup
  2307. Set amount of amplification of signal after processing.
  2308. Default is 1. Allowed range is from 1 to 64.
  2309. @item knee
  2310. Curve the sharp knee around the threshold to enter gain reduction more softly.
  2311. Default is 2.828427125. Allowed range is from 1 to 8.
  2312. @item detection
  2313. Choose if exact signal should be taken for detection or an RMS like one.
  2314. Default is rms. Can be peak or rms.
  2315. @item link
  2316. Choose if the average level between all channels or the louder channel affects
  2317. the reduction.
  2318. Default is average. Can be average or maximum.
  2319. @item level_sc
  2320. Set sidechain gain. Default is 1. Range is from 0.015625 to 64.
  2321. @end table
  2322. @section silencedetect
  2323. Detect silence in an audio stream.
  2324. This filter logs a message when it detects that the input audio volume is less
  2325. or equal to a noise tolerance value for a duration greater or equal to the
  2326. minimum detected noise duration.
  2327. The printed times and duration are expressed in seconds.
  2328. The filter accepts the following options:
  2329. @table @option
  2330. @item duration, d
  2331. Set silence duration until notification (default is 2 seconds).
  2332. @item noise, n
  2333. Set noise tolerance. Can be specified in dB (in case "dB" is appended to the
  2334. specified value) or amplitude ratio. Default is -60dB, or 0.001.
  2335. @end table
  2336. @subsection Examples
  2337. @itemize
  2338. @item
  2339. Detect 5 seconds of silence with -50dB noise tolerance:
  2340. @example
  2341. silencedetect=n=-50dB:d=5
  2342. @end example
  2343. @item
  2344. Complete example with @command{ffmpeg} to detect silence with 0.0001 noise
  2345. tolerance in @file{silence.mp3}:
  2346. @example
  2347. ffmpeg -i silence.mp3 -af silencedetect=noise=0.0001 -f null -
  2348. @end example
  2349. @end itemize
  2350. @section silenceremove
  2351. Remove silence from the beginning, middle or end of the audio.
  2352. The filter accepts the following options:
  2353. @table @option
  2354. @item start_periods
  2355. This value is used to indicate if audio should be trimmed at beginning of
  2356. the audio. A value of zero indicates no silence should be trimmed from the
  2357. beginning. When specifying a non-zero value, it trims audio up until it
  2358. finds non-silence. Normally, when trimming silence from beginning of audio
  2359. the @var{start_periods} will be @code{1} but it can be increased to higher
  2360. values to trim all audio up to specific count of non-silence periods.
  2361. Default value is @code{0}.
  2362. @item start_duration
  2363. Specify the amount of time that non-silence must be detected before it stops
  2364. trimming audio. By increasing the duration, bursts of noises can be treated
  2365. as silence and trimmed off. Default value is @code{0}.
  2366. @item start_threshold
  2367. This indicates what sample value should be treated as silence. For digital
  2368. audio, a value of @code{0} may be fine but for audio recorded from analog,
  2369. you may wish to increase the value to account for background noise.
  2370. Can be specified in dB (in case "dB" is appended to the specified value)
  2371. or amplitude ratio. Default value is @code{0}.
  2372. @item stop_periods
  2373. Set the count for trimming silence from the end of audio.
  2374. To remove silence from the middle of a file, specify a @var{stop_periods}
  2375. that is negative. This value is then treated as a positive value and is
  2376. used to indicate the effect should restart processing as specified by
  2377. @var{start_periods}, making it suitable for removing periods of silence
  2378. in the middle of the audio.
  2379. Default value is @code{0}.
  2380. @item stop_duration
  2381. Specify a duration of silence that must exist before audio is not copied any
  2382. more. By specifying a higher duration, silence that is wanted can be left in
  2383. the audio.
  2384. Default value is @code{0}.
  2385. @item stop_threshold
  2386. This is the same as @option{start_threshold} but for trimming silence from
  2387. the end of audio.
  2388. Can be specified in dB (in case "dB" is appended to the specified value)
  2389. or amplitude ratio. Default value is @code{0}.
  2390. @item leave_silence
  2391. This indicate that @var{stop_duration} length of audio should be left intact
  2392. at the beginning of each period of silence.
  2393. For example, if you want to remove long pauses between words but do not want
  2394. to remove the pauses completely. Default value is @code{0}.
  2395. @item detection
  2396. Set how is silence detected. Can be @code{rms} or @code{peak}. Second is faster
  2397. and works better with digital silence which is exactly 0.
  2398. Default value is @code{rms}.
  2399. @item window
  2400. Set ratio used to calculate size of window for detecting silence.
  2401. Default value is @code{0.02}. Allowed range is from @code{0} to @code{10}.
  2402. @end table
  2403. @subsection Examples
  2404. @itemize
  2405. @item
  2406. The following example shows how this filter can be used to start a recording
  2407. that does not contain the delay at the start which usually occurs between
  2408. pressing the record button and the start of the performance:
  2409. @example
  2410. silenceremove=1:5:0.02
  2411. @end example
  2412. @item
  2413. Trim all silence encountered from begining to end where there is more than 1
  2414. second of silence in audio:
  2415. @example
  2416. silenceremove=0:0:0:-1:1:-90dB
  2417. @end example
  2418. @end itemize
  2419. @section sofalizer
  2420. SOFAlizer uses head-related transfer functions (HRTFs) to create virtual
  2421. loudspeakers around the user for binaural listening via headphones (audio
  2422. formats up to 9 channels supported).
  2423. The HRTFs are stored in SOFA files (see @url{http://www.sofacoustics.org/} for a database).
  2424. SOFAlizer is developed at the Acoustics Research Institute (ARI) of the
  2425. Austrian Academy of Sciences.
  2426. To enable compilation of this filter you need to configure FFmpeg with
  2427. @code{--enable-netcdf}.
  2428. The filter accepts the following options:
  2429. @table @option
  2430. @item sofa
  2431. Set the SOFA file used for rendering.
  2432. @item gain
  2433. Set gain applied to audio. Value is in dB. Default is 0.
  2434. @item rotation
  2435. Set rotation of virtual loudspeakers in deg. Default is 0.
  2436. @item elevation
  2437. Set elevation of virtual speakers in deg. Default is 0.
  2438. @item radius
  2439. Set distance in meters between loudspeakers and the listener with near-field
  2440. HRTFs. Default is 1.
  2441. @item type
  2442. Set processing type. Can be @var{time} or @var{freq}. @var{time} is
  2443. processing audio in time domain which is slow but gives high quality output.
  2444. @var{freq} is processing audio in frequency domain which is fast but gives
  2445. mediocre output. Default is @var{freq}.
  2446. @end table
  2447. @section stereotools
  2448. This filter has some handy utilities to manage stereo signals, for converting
  2449. M/S stereo recordings to L/R signal while having control over the parameters
  2450. or spreading the stereo image of master track.
  2451. The filter accepts the following options:
  2452. @table @option
  2453. @item level_in
  2454. Set input level before filtering for both channels. Defaults is 1.
  2455. Allowed range is from 0.015625 to 64.
  2456. @item level_out
  2457. Set output level after filtering for both channels. Defaults is 1.
  2458. Allowed range is from 0.015625 to 64.
  2459. @item balance_in
  2460. Set input balance between both channels. Default is 0.
  2461. Allowed range is from -1 to 1.
  2462. @item balance_out
  2463. Set output balance between both channels. Default is 0.
  2464. Allowed range is from -1 to 1.
  2465. @item softclip
  2466. Enable softclipping. Results in analog distortion instead of harsh digital 0dB
  2467. clipping. Disabled by default.
  2468. @item mutel
  2469. Mute the left channel. Disabled by default.
  2470. @item muter
  2471. Mute the right channel. Disabled by default.
  2472. @item phasel
  2473. Change the phase of the left channel. Disabled by default.
  2474. @item phaser
  2475. Change the phase of the right channel. Disabled by default.
  2476. @item mode
  2477. Set stereo mode. Available values are:
  2478. @table @samp
  2479. @item lr>lr
  2480. Left/Right to Left/Right, this is default.
  2481. @item lr>ms
  2482. Left/Right to Mid/Side.
  2483. @item ms>lr
  2484. Mid/Side to Left/Right.
  2485. @item lr>ll
  2486. Left/Right to Left/Left.
  2487. @item lr>rr
  2488. Left/Right to Right/Right.
  2489. @item lr>l+r
  2490. Left/Right to Left + Right.
  2491. @item lr>rl
  2492. Left/Right to Right/Left.
  2493. @end table
  2494. @item slev
  2495. Set level of side signal. Default is 1.
  2496. Allowed range is from 0.015625 to 64.
  2497. @item sbal
  2498. Set balance of side signal. Default is 0.
  2499. Allowed range is from -1 to 1.
  2500. @item mlev
  2501. Set level of the middle signal. Default is 1.
  2502. Allowed range is from 0.015625 to 64.
  2503. @item mpan
  2504. Set middle signal pan. Default is 0. Allowed range is from -1 to 1.
  2505. @item base
  2506. Set stereo base between mono and inversed channels. Default is 0.
  2507. Allowed range is from -1 to 1.
  2508. @item delay
  2509. Set delay in milliseconds how much to delay left from right channel and
  2510. vice versa. Default is 0. Allowed range is from -20 to 20.
  2511. @item sclevel
  2512. Set S/C level. Default is 1. Allowed range is from 1 to 100.
  2513. @item phase
  2514. Set the stereo phase in degrees. Default is 0. Allowed range is from 0 to 360.
  2515. @end table
  2516. @section stereowiden
  2517. This filter enhance the stereo effect by suppressing signal common to both
  2518. channels and by delaying the signal of left into right and vice versa,
  2519. thereby widening the stereo effect.
  2520. The filter accepts the following options:
  2521. @table @option
  2522. @item delay
  2523. Time in milliseconds of the delay of left signal into right and vice versa.
  2524. Default is 20 milliseconds.
  2525. @item feedback
  2526. Amount of gain in delayed signal into right and vice versa. Gives a delay
  2527. effect of left signal in right output and vice versa which gives widening
  2528. effect. Default is 0.3.
  2529. @item crossfeed
  2530. Cross feed of left into right with inverted phase. This helps in suppressing
  2531. the mono. If the value is 1 it will cancel all the signal common to both
  2532. channels. Default is 0.3.
  2533. @item drymix
  2534. Set level of input signal of original channel. Default is 0.8.
  2535. @end table
  2536. @section treble
  2537. Boost or cut treble (upper) frequencies of the audio using a two-pole
  2538. shelving filter with a response similar to that of a standard
  2539. hi-fi's tone-controls. This is also known as shelving equalisation (EQ).
  2540. The filter accepts the following options:
  2541. @table @option
  2542. @item gain, g
  2543. Give the gain at whichever is the lower of ~22 kHz and the
  2544. Nyquist frequency. Its useful range is about -20 (for a large cut)
  2545. to +20 (for a large boost). Beware of clipping when using a positive gain.
  2546. @item frequency, f
  2547. Set the filter's central frequency and so can be used
  2548. to extend or reduce the frequency range to be boosted or cut.
  2549. The default value is @code{3000} Hz.
  2550. @item width_type
  2551. Set method to specify band-width of filter.
  2552. @table @option
  2553. @item h
  2554. Hz
  2555. @item q
  2556. Q-Factor
  2557. @item o
  2558. octave
  2559. @item s
  2560. slope
  2561. @end table
  2562. @item width, w
  2563. Determine how steep is the filter's shelf transition.
  2564. @end table
  2565. @section tremolo
  2566. Sinusoidal amplitude modulation.
  2567. The filter accepts the following options:
  2568. @table @option
  2569. @item f
  2570. Modulation frequency in Hertz. Modulation frequencies in the subharmonic range
  2571. (20 Hz or lower) will result in a tremolo effect.
  2572. This filter may also be used as a ring modulator by specifying
  2573. a modulation frequency higher than 20 Hz.
  2574. Range is 0.1 - 20000.0. Default value is 5.0 Hz.
  2575. @item d
  2576. Depth of modulation as a percentage. Range is 0.0 - 1.0.
  2577. Default value is 0.5.
  2578. @end table
  2579. @section vibrato
  2580. Sinusoidal phase modulation.
  2581. The filter accepts the following options:
  2582. @table @option
  2583. @item f
  2584. Modulation frequency in Hertz.
  2585. Range is 0.1 - 20000.0. Default value is 5.0 Hz.
  2586. @item d
  2587. Depth of modulation as a percentage. Range is 0.0 - 1.0.
  2588. Default value is 0.5.
  2589. @end table
  2590. @section volume
  2591. Adjust the input audio volume.
  2592. It accepts the following parameters:
  2593. @table @option
  2594. @item volume
  2595. Set audio volume expression.
  2596. Output values are clipped to the maximum value.
  2597. The output audio volume is given by the relation:
  2598. @example
  2599. @var{output_volume} = @var{volume} * @var{input_volume}
  2600. @end example
  2601. The default value for @var{volume} is "1.0".
  2602. @item precision
  2603. This parameter represents the mathematical precision.
  2604. It determines which input sample formats will be allowed, which affects the
  2605. precision of the volume scaling.
  2606. @table @option
  2607. @item fixed
  2608. 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
  2609. @item float
  2610. 32-bit floating-point; this limits input sample format to FLT. (default)
  2611. @item double
  2612. 64-bit floating-point; this limits input sample format to DBL.
  2613. @end table
  2614. @item replaygain
  2615. Choose the behaviour on encountering ReplayGain side data in input frames.
  2616. @table @option
  2617. @item drop
  2618. Remove ReplayGain side data, ignoring its contents (the default).
  2619. @item ignore
  2620. Ignore ReplayGain side data, but leave it in the frame.
  2621. @item track
  2622. Prefer the track gain, if present.
  2623. @item album
  2624. Prefer the album gain, if present.
  2625. @end table
  2626. @item replaygain_preamp
  2627. Pre-amplification gain in dB to apply to the selected replaygain gain.
  2628. Default value for @var{replaygain_preamp} is 0.0.
  2629. @item eval
  2630. Set when the volume expression is evaluated.
  2631. It accepts the following values:
  2632. @table @samp
  2633. @item once
  2634. only evaluate expression once during the filter initialization, or
  2635. when the @samp{volume} command is sent
  2636. @item frame
  2637. evaluate expression for each incoming frame
  2638. @end table
  2639. Default value is @samp{once}.
  2640. @end table
  2641. The volume expression can contain the following parameters.
  2642. @table @option
  2643. @item n
  2644. frame number (starting at zero)
  2645. @item nb_channels
  2646. number of channels
  2647. @item nb_consumed_samples
  2648. number of samples consumed by the filter
  2649. @item nb_samples
  2650. number of samples in the current frame
  2651. @item pos
  2652. original frame position in the file
  2653. @item pts
  2654. frame PTS
  2655. @item sample_rate
  2656. sample rate
  2657. @item startpts
  2658. PTS at start of stream
  2659. @item startt
  2660. time at start of stream
  2661. @item t
  2662. frame time
  2663. @item tb
  2664. timestamp timebase
  2665. @item volume
  2666. last set volume value
  2667. @end table
  2668. Note that when @option{eval} is set to @samp{once} only the
  2669. @var{sample_rate} and @var{tb} variables are available, all other
  2670. variables will evaluate to NAN.
  2671. @subsection Commands
  2672. This filter supports the following commands:
  2673. @table @option
  2674. @item volume
  2675. Modify the volume expression.
  2676. The command accepts the same syntax of the corresponding option.
  2677. If the specified expression is not valid, it is kept at its current
  2678. value.
  2679. @item replaygain_noclip
  2680. Prevent clipping by limiting the gain applied.
  2681. Default value for @var{replaygain_noclip} is 1.
  2682. @end table
  2683. @subsection Examples
  2684. @itemize
  2685. @item
  2686. Halve the input audio volume:
  2687. @example
  2688. volume=volume=0.5
  2689. volume=volume=1/2
  2690. volume=volume=-6.0206dB
  2691. @end example
  2692. In all the above example the named key for @option{volume} can be
  2693. omitted, for example like in:
  2694. @example
  2695. volume=0.5
  2696. @end example
  2697. @item
  2698. Increase input audio power by 6 decibels using fixed-point precision:
  2699. @example
  2700. volume=volume=6dB:precision=fixed
  2701. @end example
  2702. @item
  2703. Fade volume after time 10 with an annihilation period of 5 seconds:
  2704. @example
  2705. volume='if(lt(t,10),1,max(1-(t-10)/5,0))':eval=frame
  2706. @end example
  2707. @end itemize
  2708. @section volumedetect
  2709. Detect the volume of the input video.
  2710. The filter has no parameters. The input is not modified. Statistics about
  2711. the volume will be printed in the log when the input stream end is reached.
  2712. In particular it will show the mean volume (root mean square), maximum
  2713. volume (on a per-sample basis), and the beginning of a histogram of the
  2714. registered volume values (from the maximum value to a cumulated 1/1000 of
  2715. the samples).
  2716. All volumes are in decibels relative to the maximum PCM value.
  2717. @subsection Examples
  2718. Here is an excerpt of the output:
  2719. @example
  2720. [Parsed_volumedetect_0 @ 0xa23120] mean_volume: -27 dB
  2721. [Parsed_volumedetect_0 @ 0xa23120] max_volume: -4 dB
  2722. [Parsed_volumedetect_0 @ 0xa23120] histogram_4db: 6
  2723. [Parsed_volumedetect_0 @ 0xa23120] histogram_5db: 62
  2724. [Parsed_volumedetect_0 @ 0xa23120] histogram_6db: 286
  2725. [Parsed_volumedetect_0 @ 0xa23120] histogram_7db: 1042
  2726. [Parsed_volumedetect_0 @ 0xa23120] histogram_8db: 2551
  2727. [Parsed_volumedetect_0 @ 0xa23120] histogram_9db: 4609
  2728. [Parsed_volumedetect_0 @ 0xa23120] histogram_10db: 8409
  2729. @end example
  2730. It means that:
  2731. @itemize
  2732. @item
  2733. The mean square energy is approximately -27 dB, or 10^-2.7.
  2734. @item
  2735. The largest sample is at -4 dB, or more precisely between -4 dB and -5 dB.
  2736. @item
  2737. There are 6 samples at -4 dB, 62 at -5 dB, 286 at -6 dB, etc.
  2738. @end itemize
  2739. In other words, raising the volume by +4 dB does not cause any clipping,
  2740. raising it by +5 dB causes clipping for 6 samples, etc.
  2741. @c man end AUDIO FILTERS
  2742. @chapter Audio Sources
  2743. @c man begin AUDIO SOURCES
  2744. Below is a description of the currently available audio sources.
  2745. @section abuffer
  2746. Buffer audio frames, and make them available to the filter chain.
  2747. This source is mainly intended for a programmatic use, in particular
  2748. through the interface defined in @file{libavfilter/asrc_abuffer.h}.
  2749. It accepts the following parameters:
  2750. @table @option
  2751. @item time_base
  2752. The timebase which will be used for timestamps of submitted frames. It must be
  2753. either a floating-point number or in @var{numerator}/@var{denominator} form.
  2754. @item sample_rate
  2755. The sample rate of the incoming audio buffers.
  2756. @item sample_fmt
  2757. The sample format of the incoming audio buffers.
  2758. Either a sample format name or its corresponding integer representation from
  2759. the enum AVSampleFormat in @file{libavutil/samplefmt.h}
  2760. @item channel_layout
  2761. The channel layout of the incoming audio buffers.
  2762. Either a channel layout name from channel_layout_map in
  2763. @file{libavutil/channel_layout.c} or its corresponding integer representation
  2764. from the AV_CH_LAYOUT_* macros in @file{libavutil/channel_layout.h}
  2765. @item channels
  2766. The number of channels of the incoming audio buffers.
  2767. If both @var{channels} and @var{channel_layout} are specified, then they
  2768. must be consistent.
  2769. @end table
  2770. @subsection Examples
  2771. @example
  2772. abuffer=sample_rate=44100:sample_fmt=s16p:channel_layout=stereo
  2773. @end example
  2774. will instruct the source to accept planar 16bit signed stereo at 44100Hz.
  2775. Since the sample format with name "s16p" corresponds to the number
  2776. 6 and the "stereo" channel layout corresponds to the value 0x3, this is
  2777. equivalent to:
  2778. @example
  2779. abuffer=sample_rate=44100:sample_fmt=6:channel_layout=0x3
  2780. @end example
  2781. @section aevalsrc
  2782. Generate an audio signal specified by an expression.
  2783. This source accepts in input one or more expressions (one for each
  2784. channel), which are evaluated and used to generate a corresponding
  2785. audio signal.
  2786. This source accepts the following options:
  2787. @table @option
  2788. @item exprs
  2789. Set the '|'-separated expressions list for each separate channel. In case the
  2790. @option{channel_layout} option is not specified, the selected channel layout
  2791. depends on the number of provided expressions. Otherwise the last
  2792. specified expression is applied to the remaining output channels.
  2793. @item channel_layout, c
  2794. Set the channel layout. The number of channels in the specified layout
  2795. must be equal to the number of specified expressions.
  2796. @item duration, d
  2797. Set the minimum duration of the sourced audio. See
  2798. @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
  2799. for the accepted syntax.
  2800. Note that the resulting duration may be greater than the specified
  2801. duration, as the generated audio is always cut at the end of a
  2802. complete frame.
  2803. If not specified, or the expressed duration is negative, the audio is
  2804. supposed to be generated forever.
  2805. @item nb_samples, n
  2806. Set the number of samples per channel per each output frame,
  2807. default to 1024.
  2808. @item sample_rate, s
  2809. Specify the sample rate, default to 44100.
  2810. @end table
  2811. Each expression in @var{exprs} can contain the following constants:
  2812. @table @option
  2813. @item n
  2814. number of the evaluated sample, starting from 0
  2815. @item t
  2816. time of the evaluated sample expressed in seconds, starting from 0
  2817. @item s
  2818. sample rate
  2819. @end table
  2820. @subsection Examples
  2821. @itemize
  2822. @item
  2823. Generate silence:
  2824. @example
  2825. aevalsrc=0
  2826. @end example
  2827. @item
  2828. Generate a sin signal with frequency of 440 Hz, set sample rate to
  2829. 8000 Hz:
  2830. @example
  2831. aevalsrc="sin(440*2*PI*t):s=8000"
  2832. @end example
  2833. @item
  2834. Generate a two channels signal, specify the channel layout (Front
  2835. Center + Back Center) explicitly:
  2836. @example
  2837. aevalsrc="sin(420*2*PI*t)|cos(430*2*PI*t):c=FC|BC"
  2838. @end example
  2839. @item
  2840. Generate white noise:
  2841. @example
  2842. aevalsrc="-2+random(0)"
  2843. @end example
  2844. @item
  2845. Generate an amplitude modulated signal:
  2846. @example
  2847. aevalsrc="sin(10*2*PI*t)*sin(880*2*PI*t)"
  2848. @end example
  2849. @item
  2850. Generate 2.5 Hz binaural beats on a 360 Hz carrier:
  2851. @example
  2852. aevalsrc="0.1*sin(2*PI*(360-2.5/2)*t) | 0.1*sin(2*PI*(360+2.5/2)*t)"
  2853. @end example
  2854. @end itemize
  2855. @section anullsrc
  2856. The null audio source, return unprocessed audio frames. It is mainly useful
  2857. as a template and to be employed in analysis / debugging tools, or as
  2858. the source for filters which ignore the input data (for example the sox
  2859. synth filter).
  2860. This source accepts the following options:
  2861. @table @option
  2862. @item channel_layout, cl
  2863. Specifies the channel layout, and can be either an integer or a string
  2864. representing a channel layout. The default value of @var{channel_layout}
  2865. is "stereo".
  2866. Check the channel_layout_map definition in
  2867. @file{libavutil/channel_layout.c} for the mapping between strings and
  2868. channel layout values.
  2869. @item sample_rate, r
  2870. Specifies the sample rate, and defaults to 44100.
  2871. @item nb_samples, n
  2872. Set the number of samples per requested frames.
  2873. @end table
  2874. @subsection Examples
  2875. @itemize
  2876. @item
  2877. Set the sample rate to 48000 Hz and the channel layout to AV_CH_LAYOUT_MONO.
  2878. @example
  2879. anullsrc=r=48000:cl=4
  2880. @end example
  2881. @item
  2882. Do the same operation with a more obvious syntax:
  2883. @example
  2884. anullsrc=r=48000:cl=mono
  2885. @end example
  2886. @end itemize
  2887. All the parameters need to be explicitly defined.
  2888. @section flite
  2889. Synthesize a voice utterance using the libflite library.
  2890. To enable compilation of this filter you need to configure FFmpeg with
  2891. @code{--enable-libflite}.
  2892. Note that the flite library is not thread-safe.
  2893. The filter accepts the following options:
  2894. @table @option
  2895. @item list_voices
  2896. If set to 1, list the names of the available voices and exit
  2897. immediately. Default value is 0.
  2898. @item nb_samples, n
  2899. Set the maximum number of samples per frame. Default value is 512.
  2900. @item textfile
  2901. Set the filename containing the text to speak.
  2902. @item text
  2903. Set the text to speak.
  2904. @item voice, v
  2905. Set the voice to use for the speech synthesis. Default value is
  2906. @code{kal}. See also the @var{list_voices} option.
  2907. @end table
  2908. @subsection Examples
  2909. @itemize
  2910. @item
  2911. Read from file @file{speech.txt}, and synthesize the text using the
  2912. standard flite voice:
  2913. @example
  2914. flite=textfile=speech.txt
  2915. @end example
  2916. @item
  2917. Read the specified text selecting the @code{slt} voice:
  2918. @example
  2919. flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
  2920. @end example
  2921. @item
  2922. Input text to ffmpeg:
  2923. @example
  2924. ffmpeg -f lavfi -i flite=text='So fare thee well, poor devil of a Sub-Sub, whose commentator I am':voice=slt
  2925. @end example
  2926. @item
  2927. Make @file{ffplay} speak the specified text, using @code{flite} and
  2928. the @code{lavfi} device:
  2929. @example
  2930. ffplay -f lavfi flite=text='No more be grieved for which that thou hast done.'
  2931. @end example
  2932. @end itemize
  2933. For more information about libflite, check:
  2934. @url{http://www.speech.cs.cmu.edu/flite/}
  2935. @section anoisesrc
  2936. Generate a noise audio signal.
  2937. The filter accepts the following options:
  2938. @table @option
  2939. @item sample_rate, r
  2940. Specify the sample rate. Default value is 48000 Hz.
  2941. @item amplitude, a
  2942. Specify the amplitude (0.0 - 1.0) of the generated audio stream. Default value
  2943. is 1.0.
  2944. @item duration, d
  2945. Specify the duration of the generated audio stream. Not specifying this option
  2946. results in noise with an infinite length.
  2947. @item color, colour, c
  2948. Specify the color of noise. Available noise colors are white, pink, and brown.
  2949. Default color is white.
  2950. @item seed, s
  2951. Specify a value used to seed the PRNG.
  2952. @item nb_samples, n
  2953. Set the number of samples per each output frame, default is 1024.
  2954. @end table
  2955. @subsection Examples
  2956. @itemize
  2957. @item
  2958. Generate 60 seconds of pink noise, with a 44.1 kHz sampling rate and an amplitude of 0.5:
  2959. @example
  2960. anoisesrc=d=60:c=pink:r=44100:a=0.5
  2961. @end example
  2962. @end itemize
  2963. @section sine
  2964. Generate an audio signal made of a sine wave with amplitude 1/8.
  2965. The audio signal is bit-exact.
  2966. The filter accepts the following options:
  2967. @table @option
  2968. @item frequency, f
  2969. Set the carrier frequency. Default is 440 Hz.
  2970. @item beep_factor, b
  2971. Enable a periodic beep every second with frequency @var{beep_factor} times
  2972. the carrier frequency. Default is 0, meaning the beep is disabled.
  2973. @item sample_rate, r
  2974. Specify the sample rate, default is 44100.
  2975. @item duration, d
  2976. Specify the duration of the generated audio stream.
  2977. @item samples_per_frame
  2978. Set the number of samples per output frame.
  2979. The expression can contain the following constants:
  2980. @table @option
  2981. @item n
  2982. The (sequential) number of the output audio frame, starting from 0.
  2983. @item pts
  2984. The PTS (Presentation TimeStamp) of the output audio frame,
  2985. expressed in @var{TB} units.
  2986. @item t
  2987. The PTS of the output audio frame, expressed in seconds.
  2988. @item TB
  2989. The timebase of the output audio frames.
  2990. @end table
  2991. Default is @code{1024}.
  2992. @end table
  2993. @subsection Examples
  2994. @itemize
  2995. @item
  2996. Generate a simple 440 Hz sine wave:
  2997. @example
  2998. sine
  2999. @end example
  3000. @item
  3001. Generate a 220 Hz sine wave with a 880 Hz beep each second, for 5 seconds:
  3002. @example
  3003. sine=220:4:d=5
  3004. sine=f=220:b=4:d=5
  3005. sine=frequency=220:beep_factor=4:duration=5
  3006. @end example
  3007. @item
  3008. Generate a 1 kHz sine wave following @code{1602,1601,1602,1601,1602} NTSC
  3009. pattern:
  3010. @example
  3011. sine=1000:samples_per_frame='st(0,mod(n,5)); 1602-not(not(eq(ld(0),1)+eq(ld(0),3)))'
  3012. @end example
  3013. @end itemize
  3014. @c man end AUDIO SOURCES
  3015. @chapter Audio Sinks
  3016. @c man begin AUDIO SINKS
  3017. Below is a description of the currently available audio sinks.
  3018. @section abuffersink
  3019. Buffer audio frames, and make them available to the end of filter chain.
  3020. This sink is mainly intended for programmatic use, in particular
  3021. through the interface defined in @file{libavfilter/buffersink.h}
  3022. or the options system.
  3023. It accepts a pointer to an AVABufferSinkContext structure, which
  3024. defines the incoming buffers' formats, to be passed as the opaque
  3025. parameter to @code{avfilter_init_filter} for initialization.
  3026. @section anullsink
  3027. Null audio sink; do absolutely nothing with the input audio. It is
  3028. mainly useful as a template and for use in analysis / debugging
  3029. tools.
  3030. @c man end AUDIO SINKS
  3031. @chapter Video Filters
  3032. @c man begin VIDEO FILTERS
  3033. When you configure your FFmpeg build, you can disable any of the
  3034. existing filters using @code{--disable-filters}.
  3035. The configure output will show the video filters included in your
  3036. build.
  3037. Below is a description of the currently available video filters.
  3038. @section alphaextract
  3039. Extract the alpha component from the input as a grayscale video. This
  3040. is especially useful with the @var{alphamerge} filter.
  3041. @section alphamerge
  3042. Add or replace the alpha component of the primary input with the
  3043. grayscale value of a second input. This is intended for use with
  3044. @var{alphaextract} to allow the transmission or storage of frame
  3045. sequences that have alpha in a format that doesn't support an alpha
  3046. channel.
  3047. For example, to reconstruct full frames from a normal YUV-encoded video
  3048. and a separate video created with @var{alphaextract}, you might use:
  3049. @example
  3050. movie=in_alpha.mkv [alpha]; [in][alpha] alphamerge [out]
  3051. @end example
  3052. Since this filter is designed for reconstruction, it operates on frame
  3053. sequences without considering timestamps, and terminates when either
  3054. input reaches end of stream. This will cause problems if your encoding
  3055. pipeline drops frames. If you're trying to apply an image as an
  3056. overlay to a video stream, consider the @var{overlay} filter instead.
  3057. @section ass
  3058. Same as the @ref{subtitles} filter, except that it doesn't require libavcodec
  3059. and libavformat to work. On the other hand, it is limited to ASS (Advanced
  3060. Substation Alpha) subtitles files.
  3061. This filter accepts the following option in addition to the common options from
  3062. the @ref{subtitles} filter:
  3063. @table @option
  3064. @item shaping
  3065. Set the shaping engine
  3066. Available values are:
  3067. @table @samp
  3068. @item auto
  3069. The default libass shaping engine, which is the best available.
  3070. @item simple
  3071. Fast, font-agnostic shaper that can do only substitutions
  3072. @item complex
  3073. Slower shaper using OpenType for substitutions and positioning
  3074. @end table
  3075. The default is @code{auto}.
  3076. @end table
  3077. @section atadenoise
  3078. Apply an Adaptive Temporal Averaging Denoiser to the video input.
  3079. The filter accepts the following options:
  3080. @table @option
  3081. @item 0a
  3082. Set threshold A for 1st plane. Default is 0.02.
  3083. Valid range is 0 to 0.3.
  3084. @item 0b
  3085. Set threshold B for 1st plane. Default is 0.04.
  3086. Valid range is 0 to 5.
  3087. @item 1a
  3088. Set threshold A for 2nd plane. Default is 0.02.
  3089. Valid range is 0 to 0.3.
  3090. @item 1b
  3091. Set threshold B for 2nd plane. Default is 0.04.
  3092. Valid range is 0 to 5.
  3093. @item 2a
  3094. Set threshold A for 3rd plane. Default is 0.02.
  3095. Valid range is 0 to 0.3.
  3096. @item 2b
  3097. Set threshold B for 3rd plane. Default is 0.04.
  3098. Valid range is 0 to 5.
  3099. Threshold A is designed to react on abrupt changes in the input signal and
  3100. threshold B is designed to react on continuous changes in the input signal.
  3101. @item s
  3102. Set number of frames filter will use for averaging. Default is 33. Must be odd
  3103. number in range [5, 129].
  3104. @end table
  3105. @section bbox
  3106. Compute the bounding box for the non-black pixels in the input frame
  3107. luminance plane.
  3108. This filter computes the bounding box containing all the pixels with a
  3109. luminance value greater than the minimum allowed value.
  3110. The parameters describing the bounding box are printed on the filter
  3111. log.
  3112. The filter accepts the following option:
  3113. @table @option
  3114. @item min_val
  3115. Set the minimal luminance value. Default is @code{16}.
  3116. @end table
  3117. @section blackdetect
  3118. Detect video intervals that are (almost) completely black. Can be
  3119. useful to detect chapter transitions, commercials, or invalid
  3120. recordings. Output lines contains the time for the start, end and
  3121. duration of the detected black interval expressed in seconds.
  3122. In order to display the output lines, you need to set the loglevel at
  3123. least to the AV_LOG_INFO value.
  3124. The filter accepts the following options:
  3125. @table @option
  3126. @item black_min_duration, d
  3127. Set the minimum detected black duration expressed in seconds. It must
  3128. be a non-negative floating point number.
  3129. Default value is 2.0.
  3130. @item picture_black_ratio_th, pic_th
  3131. Set the threshold for considering a picture "black".
  3132. Express the minimum value for the ratio:
  3133. @example
  3134. @var{nb_black_pixels} / @var{nb_pixels}
  3135. @end example
  3136. for which a picture is considered black.
  3137. Default value is 0.98.
  3138. @item pixel_black_th, pix_th
  3139. Set the threshold for considering a pixel "black".
  3140. The threshold expresses the maximum pixel luminance value for which a
  3141. pixel is considered "black". The provided value is scaled according to
  3142. the following equation:
  3143. @example
  3144. @var{absolute_threshold} = @var{luminance_minimum_value} + @var{pixel_black_th} * @var{luminance_range_size}
  3145. @end example
  3146. @var{luminance_range_size} and @var{luminance_minimum_value} depend on
  3147. the input video format, the range is [0-255] for YUV full-range
  3148. formats and [16-235] for YUV non full-range formats.
  3149. Default value is 0.10.
  3150. @end table
  3151. The following example sets the maximum pixel threshold to the minimum
  3152. value, and detects only black intervals of 2 or more seconds:
  3153. @example
  3154. blackdetect=d=2:pix_th=0.00
  3155. @end example
  3156. @section blackframe
  3157. Detect frames that are (almost) completely black. Can be useful to
  3158. detect chapter transitions or commercials. Output lines consist of
  3159. the frame number of the detected frame, the percentage of blackness,
  3160. the position in the file if known or -1 and the timestamp in seconds.
  3161. In order to display the output lines, you need to set the loglevel at
  3162. least to the AV_LOG_INFO value.
  3163. It accepts the following parameters:
  3164. @table @option
  3165. @item amount
  3166. The percentage of the pixels that have to be below the threshold; it defaults to
  3167. @code{98}.
  3168. @item threshold, thresh
  3169. The threshold below which a pixel value is considered black; it defaults to
  3170. @code{32}.
  3171. @end table
  3172. @section blend, tblend
  3173. Blend two video frames into each other.
  3174. The @code{blend} filter takes two input streams and outputs one
  3175. stream, the first input is the "top" layer and second input is
  3176. "bottom" layer. Output terminates when shortest input terminates.
  3177. The @code{tblend} (time blend) filter takes two consecutive frames
  3178. from one single stream, and outputs the result obtained by blending
  3179. the new frame on top of the old frame.
  3180. A description of the accepted options follows.
  3181. @table @option
  3182. @item c0_mode
  3183. @item c1_mode
  3184. @item c2_mode
  3185. @item c3_mode
  3186. @item all_mode
  3187. Set blend mode for specific pixel component or all pixel components in case
  3188. of @var{all_mode}. Default value is @code{normal}.
  3189. Available values for component modes are:
  3190. @table @samp
  3191. @item addition
  3192. @item addition128
  3193. @item and
  3194. @item average
  3195. @item burn
  3196. @item darken
  3197. @item difference
  3198. @item difference128
  3199. @item divide
  3200. @item dodge
  3201. @item exclusion
  3202. @item glow
  3203. @item hardlight
  3204. @item hardmix
  3205. @item lighten
  3206. @item linearlight
  3207. @item multiply
  3208. @item multiply128
  3209. @item negation
  3210. @item normal
  3211. @item or
  3212. @item overlay
  3213. @item phoenix
  3214. @item pinlight
  3215. @item reflect
  3216. @item screen
  3217. @item softlight
  3218. @item subtract
  3219. @item vividlight
  3220. @item xor
  3221. @end table
  3222. @item c0_opacity
  3223. @item c1_opacity
  3224. @item c2_opacity
  3225. @item c3_opacity
  3226. @item all_opacity
  3227. Set blend opacity for specific pixel component or all pixel components in case
  3228. of @var{all_opacity}. Only used in combination with pixel component blend modes.
  3229. @item c0_expr
  3230. @item c1_expr
  3231. @item c2_expr
  3232. @item c3_expr
  3233. @item all_expr
  3234. Set blend expression for specific pixel component or all pixel components in case
  3235. of @var{all_expr}. Note that related mode options will be ignored if those are set.
  3236. The expressions can use the following variables:
  3237. @table @option
  3238. @item N
  3239. The sequential number of the filtered frame, starting from @code{0}.
  3240. @item X
  3241. @item Y
  3242. the coordinates of the current sample
  3243. @item W
  3244. @item H
  3245. the width and height of currently filtered plane
  3246. @item SW
  3247. @item SH
  3248. Width and height scale depending on the currently filtered plane. It is the
  3249. ratio between the corresponding luma plane number of pixels and the current
  3250. plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
  3251. @code{0.5,0.5} for chroma planes.
  3252. @item T
  3253. Time of the current frame, expressed in seconds.
  3254. @item TOP, A
  3255. Value of pixel component at current location for first video frame (top layer).
  3256. @item BOTTOM, B
  3257. Value of pixel component at current location for second video frame (bottom layer).
  3258. @end table
  3259. @item shortest
  3260. Force termination when the shortest input terminates. Default is
  3261. @code{0}. This option is only defined for the @code{blend} filter.
  3262. @item repeatlast
  3263. Continue applying the last bottom frame after the end of the stream. A value of
  3264. @code{0} disable the filter after the last frame of the bottom layer is reached.
  3265. Default is @code{1}. This option is only defined for the @code{blend} filter.
  3266. @end table
  3267. @subsection Examples
  3268. @itemize
  3269. @item
  3270. Apply transition from bottom layer to top layer in first 10 seconds:
  3271. @example
  3272. blend=all_expr='A*(if(gte(T,10),1,T/10))+B*(1-(if(gte(T,10),1,T/10)))'
  3273. @end example
  3274. @item
  3275. Apply 1x1 checkerboard effect:
  3276. @example
  3277. blend=all_expr='if(eq(mod(X,2),mod(Y,2)),A,B)'
  3278. @end example
  3279. @item
  3280. Apply uncover left effect:
  3281. @example
  3282. blend=all_expr='if(gte(N*SW+X,W),A,B)'
  3283. @end example
  3284. @item
  3285. Apply uncover down effect:
  3286. @example
  3287. blend=all_expr='if(gte(Y-N*SH,0),A,B)'
  3288. @end example
  3289. @item
  3290. Apply uncover up-left effect:
  3291. @example
  3292. blend=all_expr='if(gte(T*SH*40+Y,H)*gte((T*40*SW+X)*W/H,W),A,B)'
  3293. @end example
  3294. @item
  3295. Split diagonally video and shows top and bottom layer on each side:
  3296. @example
  3297. blend=all_expr=if(gt(X,Y*(W/H)),A,B)
  3298. @end example
  3299. @item
  3300. Display differences between the current and the previous frame:
  3301. @example
  3302. tblend=all_mode=difference128
  3303. @end example
  3304. @end itemize
  3305. @section boxblur
  3306. Apply a boxblur algorithm to the input video.
  3307. It accepts the following parameters:
  3308. @table @option
  3309. @item luma_radius, lr
  3310. @item luma_power, lp
  3311. @item chroma_radius, cr
  3312. @item chroma_power, cp
  3313. @item alpha_radius, ar
  3314. @item alpha_power, ap
  3315. @end table
  3316. A description of the accepted options follows.
  3317. @table @option
  3318. @item luma_radius, lr
  3319. @item chroma_radius, cr
  3320. @item alpha_radius, ar
  3321. Set an expression for the box radius in pixels used for blurring the
  3322. corresponding input plane.
  3323. The radius value must be a non-negative number, and must not be
  3324. greater than the value of the expression @code{min(w,h)/2} for the
  3325. luma and alpha planes, and of @code{min(cw,ch)/2} for the chroma
  3326. planes.
  3327. Default value for @option{luma_radius} is "2". If not specified,
  3328. @option{chroma_radius} and @option{alpha_radius} default to the
  3329. corresponding value set for @option{luma_radius}.
  3330. The expressions can contain the following constants:
  3331. @table @option
  3332. @item w
  3333. @item h
  3334. The input width and height in pixels.
  3335. @item cw
  3336. @item ch
  3337. The input chroma image width and height in pixels.
  3338. @item hsub
  3339. @item vsub
  3340. The horizontal and vertical chroma subsample values. For example, for the
  3341. pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
  3342. @end table
  3343. @item luma_power, lp
  3344. @item chroma_power, cp
  3345. @item alpha_power, ap
  3346. Specify how many times the boxblur filter is applied to the
  3347. corresponding plane.
  3348. Default value for @option{luma_power} is 2. If not specified,
  3349. @option{chroma_power} and @option{alpha_power} default to the
  3350. corresponding value set for @option{luma_power}.
  3351. A value of 0 will disable the effect.
  3352. @end table
  3353. @subsection Examples
  3354. @itemize
  3355. @item
  3356. Apply a boxblur filter with the luma, chroma, and alpha radii
  3357. set to 2:
  3358. @example
  3359. boxblur=luma_radius=2:luma_power=1
  3360. boxblur=2:1
  3361. @end example
  3362. @item
  3363. Set the luma radius to 2, and alpha and chroma radius to 0:
  3364. @example
  3365. boxblur=2:1:cr=0:ar=0
  3366. @end example
  3367. @item
  3368. Set the luma and chroma radii to a fraction of the video dimension:
  3369. @example
  3370. boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
  3371. @end example
  3372. @end itemize
  3373. @section chromakey
  3374. YUV colorspace color/chroma keying.
  3375. The filter accepts the following options:
  3376. @table @option
  3377. @item color
  3378. The color which will be replaced with transparency.
  3379. @item similarity
  3380. Similarity percentage with the key color.
  3381. 0.01 matches only the exact key color, while 1.0 matches everything.
  3382. @item blend
  3383. Blend percentage.
  3384. 0.0 makes pixels either fully transparent, or not transparent at all.
  3385. Higher values result in semi-transparent pixels, with a higher transparency
  3386. the more similar the pixels color is to the key color.
  3387. @item yuv
  3388. Signals that the color passed is already in YUV instead of RGB.
  3389. Litteral colors like "green" or "red" don't make sense with this enabled anymore.
  3390. This can be used to pass exact YUV values as hexadecimal numbers.
  3391. @end table
  3392. @subsection Examples
  3393. @itemize
  3394. @item
  3395. Make every green pixel in the input image transparent:
  3396. @example
  3397. ffmpeg -i input.png -vf chromakey=green out.png
  3398. @end example
  3399. @item
  3400. Overlay a greenscreen-video on top of a static black background.
  3401. @example
  3402. 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
  3403. @end example
  3404. @end itemize
  3405. @section codecview
  3406. Visualize information exported by some codecs.
  3407. Some codecs can export information through frames using side-data or other
  3408. means. For example, some MPEG based codecs export motion vectors through the
  3409. @var{export_mvs} flag in the codec @option{flags2} option.
  3410. The filter accepts the following option:
  3411. @table @option
  3412. @item mv
  3413. Set motion vectors to visualize.
  3414. Available flags for @var{mv} are:
  3415. @table @samp
  3416. @item pf
  3417. forward predicted MVs of P-frames
  3418. @item bf
  3419. forward predicted MVs of B-frames
  3420. @item bb
  3421. backward predicted MVs of B-frames
  3422. @end table
  3423. @item qp
  3424. Display quantization parameters using the chroma planes
  3425. @end table
  3426. @subsection Examples
  3427. @itemize
  3428. @item
  3429. Visualizes multi-directionals MVs from P and B-Frames using @command{ffplay}:
  3430. @example
  3431. ffplay -flags2 +export_mvs input.mpg -vf codecview=mv=pf+bf+bb
  3432. @end example
  3433. @end itemize
  3434. @section colorbalance
  3435. Modify intensity of primary colors (red, green and blue) of input frames.
  3436. The filter allows an input frame to be adjusted in the shadows, midtones or highlights
  3437. regions for the red-cyan, green-magenta or blue-yellow balance.
  3438. A positive adjustment value shifts the balance towards the primary color, a negative
  3439. value towards the complementary color.
  3440. The filter accepts the following options:
  3441. @table @option
  3442. @item rs
  3443. @item gs
  3444. @item bs
  3445. Adjust red, green and blue shadows (darkest pixels).
  3446. @item rm
  3447. @item gm
  3448. @item bm
  3449. Adjust red, green and blue midtones (medium pixels).
  3450. @item rh
  3451. @item gh
  3452. @item bh
  3453. Adjust red, green and blue highlights (brightest pixels).
  3454. Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
  3455. @end table
  3456. @subsection Examples
  3457. @itemize
  3458. @item
  3459. Add red color cast to shadows:
  3460. @example
  3461. colorbalance=rs=.3
  3462. @end example
  3463. @end itemize
  3464. @section colorkey
  3465. RGB colorspace color keying.
  3466. The filter accepts the following options:
  3467. @table @option
  3468. @item color
  3469. The color which will be replaced with transparency.
  3470. @item similarity
  3471. Similarity percentage with the key color.
  3472. 0.01 matches only the exact key color, while 1.0 matches everything.
  3473. @item blend
  3474. Blend percentage.
  3475. 0.0 makes pixels either fully transparent, or not transparent at all.
  3476. Higher values result in semi-transparent pixels, with a higher transparency
  3477. the more similar the pixels color is to the key color.
  3478. @end table
  3479. @subsection Examples
  3480. @itemize
  3481. @item
  3482. Make every green pixel in the input image transparent:
  3483. @example
  3484. ffmpeg -i input.png -vf colorkey=green out.png
  3485. @end example
  3486. @item
  3487. Overlay a greenscreen-video on top of a static background image.
  3488. @example
  3489. 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
  3490. @end example
  3491. @end itemize
  3492. @section colorlevels
  3493. Adjust video input frames using levels.
  3494. The filter accepts the following options:
  3495. @table @option
  3496. @item rimin
  3497. @item gimin
  3498. @item bimin
  3499. @item aimin
  3500. Adjust red, green, blue and alpha input black point.
  3501. Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{0}.
  3502. @item rimax
  3503. @item gimax
  3504. @item bimax
  3505. @item aimax
  3506. Adjust red, green, blue and alpha input white point.
  3507. Allowed ranges for options are @code{[-1.0, 1.0]}. Defaults are @code{1}.
  3508. Input levels are used to lighten highlights (bright tones), darken shadows
  3509. (dark tones), change the balance of bright and dark tones.
  3510. @item romin
  3511. @item gomin
  3512. @item bomin
  3513. @item aomin
  3514. Adjust red, green, blue and alpha output black point.
  3515. Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{0}.
  3516. @item romax
  3517. @item gomax
  3518. @item bomax
  3519. @item aomax
  3520. Adjust red, green, blue and alpha output white point.
  3521. Allowed ranges for options are @code{[0, 1.0]}. Defaults are @code{1}.
  3522. Output levels allows manual selection of a constrained output level range.
  3523. @end table
  3524. @subsection Examples
  3525. @itemize
  3526. @item
  3527. Make video output darker:
  3528. @example
  3529. colorlevels=rimin=0.058:gimin=0.058:bimin=0.058
  3530. @end example
  3531. @item
  3532. Increase contrast:
  3533. @example
  3534. colorlevels=rimin=0.039:gimin=0.039:bimin=0.039:rimax=0.96:gimax=0.96:bimax=0.96
  3535. @end example
  3536. @item
  3537. Make video output lighter:
  3538. @example
  3539. colorlevels=rimax=0.902:gimax=0.902:bimax=0.902
  3540. @end example
  3541. @item
  3542. Increase brightness:
  3543. @example
  3544. colorlevels=romin=0.5:gomin=0.5:bomin=0.5
  3545. @end example
  3546. @end itemize
  3547. @section colorchannelmixer
  3548. Adjust video input frames by re-mixing color channels.
  3549. This filter modifies a color channel by adding the values associated to
  3550. the other channels of the same pixels. For example if the value to
  3551. modify is red, the output value will be:
  3552. @example
  3553. @var{red}=@var{red}*@var{rr} + @var{blue}*@var{rb} + @var{green}*@var{rg} + @var{alpha}*@var{ra}
  3554. @end example
  3555. The filter accepts the following options:
  3556. @table @option
  3557. @item rr
  3558. @item rg
  3559. @item rb
  3560. @item ra
  3561. Adjust contribution of input red, green, blue and alpha channels for output red channel.
  3562. Default is @code{1} for @var{rr}, and @code{0} for @var{rg}, @var{rb} and @var{ra}.
  3563. @item gr
  3564. @item gg
  3565. @item gb
  3566. @item ga
  3567. Adjust contribution of input red, green, blue and alpha channels for output green channel.
  3568. Default is @code{1} for @var{gg}, and @code{0} for @var{gr}, @var{gb} and @var{ga}.
  3569. @item br
  3570. @item bg
  3571. @item bb
  3572. @item ba
  3573. Adjust contribution of input red, green, blue and alpha channels for output blue channel.
  3574. Default is @code{1} for @var{bb}, and @code{0} for @var{br}, @var{bg} and @var{ba}.
  3575. @item ar
  3576. @item ag
  3577. @item ab
  3578. @item aa
  3579. Adjust contribution of input red, green, blue and alpha channels for output alpha channel.
  3580. Default is @code{1} for @var{aa}, and @code{0} for @var{ar}, @var{ag} and @var{ab}.
  3581. Allowed ranges for options are @code{[-2.0, 2.0]}.
  3582. @end table
  3583. @subsection Examples
  3584. @itemize
  3585. @item
  3586. Convert source to grayscale:
  3587. @example
  3588. colorchannelmixer=.3:.4:.3:0:.3:.4:.3:0:.3:.4:.3
  3589. @end example
  3590. @item
  3591. Simulate sepia tones:
  3592. @example
  3593. colorchannelmixer=.393:.769:.189:0:.349:.686:.168:0:.272:.534:.131
  3594. @end example
  3595. @end itemize
  3596. @section colormatrix
  3597. Convert color matrix.
  3598. The filter accepts the following options:
  3599. @table @option
  3600. @item src
  3601. @item dst
  3602. Specify the source and destination color matrix. Both values must be
  3603. specified.
  3604. The accepted values are:
  3605. @table @samp
  3606. @item bt709
  3607. BT.709
  3608. @item bt601
  3609. BT.601
  3610. @item smpte240m
  3611. SMPTE-240M
  3612. @item fcc
  3613. FCC
  3614. @end table
  3615. @end table
  3616. For example to convert from BT.601 to SMPTE-240M, use the command:
  3617. @example
  3618. colormatrix=bt601:smpte240m
  3619. @end example
  3620. @section convolution
  3621. Apply convolution 3x3 or 5x5 filter.
  3622. The filter accepts the following options:
  3623. @table @option
  3624. @item 0m
  3625. @item 1m
  3626. @item 2m
  3627. @item 3m
  3628. Set matrix for each plane.
  3629. Matrix is sequence of 9 or 25 signed integers.
  3630. @item 0rdiv
  3631. @item 1rdiv
  3632. @item 2rdiv
  3633. @item 3rdiv
  3634. Set multiplier for calculated value for each plane.
  3635. @item 0bias
  3636. @item 1bias
  3637. @item 2bias
  3638. @item 3bias
  3639. Set bias for each plane. This value is added to the result of the multiplication.
  3640. Useful for making the overall image brighter or darker. Default is 0.0.
  3641. @end table
  3642. @subsection Examples
  3643. @itemize
  3644. @item
  3645. Apply sharpen:
  3646. @example
  3647. 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"
  3648. @end example
  3649. @item
  3650. Apply blur:
  3651. @example
  3652. 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"
  3653. @end example
  3654. @item
  3655. Apply edge enhance:
  3656. @example
  3657. 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"
  3658. @end example
  3659. @item
  3660. Apply edge detect:
  3661. @example
  3662. 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"
  3663. @end example
  3664. @item
  3665. Apply emboss:
  3666. @example
  3667. 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"
  3668. @end example
  3669. @end itemize
  3670. @section copy
  3671. Copy the input source unchanged to the output. This is mainly useful for
  3672. testing purposes.
  3673. @section crop
  3674. Crop the input video to given dimensions.
  3675. It accepts the following parameters:
  3676. @table @option
  3677. @item w, out_w
  3678. The width of the output video. It defaults to @code{iw}.
  3679. This expression is evaluated only once during the filter
  3680. configuration, or when the @samp{w} or @samp{out_w} command is sent.
  3681. @item h, out_h
  3682. The height of the output video. It defaults to @code{ih}.
  3683. This expression is evaluated only once during the filter
  3684. configuration, or when the @samp{h} or @samp{out_h} command is sent.
  3685. @item x
  3686. The horizontal position, in the input video, of the left edge of the output
  3687. video. It defaults to @code{(in_w-out_w)/2}.
  3688. This expression is evaluated per-frame.
  3689. @item y
  3690. The vertical position, in the input video, of the top edge of the output video.
  3691. It defaults to @code{(in_h-out_h)/2}.
  3692. This expression is evaluated per-frame.
  3693. @item keep_aspect
  3694. If set to 1 will force the output display aspect ratio
  3695. to be the same of the input, by changing the output sample aspect
  3696. ratio. It defaults to 0.
  3697. @end table
  3698. The @var{out_w}, @var{out_h}, @var{x}, @var{y} parameters are
  3699. expressions containing the following constants:
  3700. @table @option
  3701. @item x
  3702. @item y
  3703. The computed values for @var{x} and @var{y}. They are evaluated for
  3704. each new frame.
  3705. @item in_w
  3706. @item in_h
  3707. The input width and height.
  3708. @item iw
  3709. @item ih
  3710. These are the same as @var{in_w} and @var{in_h}.
  3711. @item out_w
  3712. @item out_h
  3713. The output (cropped) width and height.
  3714. @item ow
  3715. @item oh
  3716. These are the same as @var{out_w} and @var{out_h}.
  3717. @item a
  3718. same as @var{iw} / @var{ih}
  3719. @item sar
  3720. input sample aspect ratio
  3721. @item dar
  3722. input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
  3723. @item hsub
  3724. @item vsub
  3725. horizontal and vertical chroma subsample values. For example for the
  3726. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  3727. @item n
  3728. The number of the input frame, starting from 0.
  3729. @item pos
  3730. the position in the file of the input frame, NAN if unknown
  3731. @item t
  3732. The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
  3733. @end table
  3734. The expression for @var{out_w} may depend on the value of @var{out_h},
  3735. and the expression for @var{out_h} may depend on @var{out_w}, but they
  3736. cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
  3737. evaluated after @var{out_w} and @var{out_h}.
  3738. The @var{x} and @var{y} parameters specify the expressions for the
  3739. position of the top-left corner of the output (non-cropped) area. They
  3740. are evaluated for each frame. If the evaluated value is not valid, it
  3741. is approximated to the nearest valid value.
  3742. The expression for @var{x} may depend on @var{y}, and the expression
  3743. for @var{y} may depend on @var{x}.
  3744. @subsection Examples
  3745. @itemize
  3746. @item
  3747. Crop area with size 100x100 at position (12,34).
  3748. @example
  3749. crop=100:100:12:34
  3750. @end example
  3751. Using named options, the example above becomes:
  3752. @example
  3753. crop=w=100:h=100:x=12:y=34
  3754. @end example
  3755. @item
  3756. Crop the central input area with size 100x100:
  3757. @example
  3758. crop=100:100
  3759. @end example
  3760. @item
  3761. Crop the central input area with size 2/3 of the input video:
  3762. @example
  3763. crop=2/3*in_w:2/3*in_h
  3764. @end example
  3765. @item
  3766. Crop the input video central square:
  3767. @example
  3768. crop=out_w=in_h
  3769. crop=in_h
  3770. @end example
  3771. @item
  3772. Delimit the rectangle with the top-left corner placed at position
  3773. 100:100 and the right-bottom corner corresponding to the right-bottom
  3774. corner of the input image.
  3775. @example
  3776. crop=in_w-100:in_h-100:100:100
  3777. @end example
  3778. @item
  3779. Crop 10 pixels from the left and right borders, and 20 pixels from
  3780. the top and bottom borders
  3781. @example
  3782. crop=in_w-2*10:in_h-2*20
  3783. @end example
  3784. @item
  3785. Keep only the bottom right quarter of the input image:
  3786. @example
  3787. crop=in_w/2:in_h/2:in_w/2:in_h/2
  3788. @end example
  3789. @item
  3790. Crop height for getting Greek harmony:
  3791. @example
  3792. crop=in_w:1/PHI*in_w
  3793. @end example
  3794. @item
  3795. Apply trembling effect:
  3796. @example
  3797. 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)
  3798. @end example
  3799. @item
  3800. Apply erratic camera effect depending on timestamp:
  3801. @example
  3802. 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)"
  3803. @end example
  3804. @item
  3805. Set x depending on the value of y:
  3806. @example
  3807. crop=in_w/2:in_h/2:y:10+10*sin(n/10)
  3808. @end example
  3809. @end itemize
  3810. @subsection Commands
  3811. This filter supports the following commands:
  3812. @table @option
  3813. @item w, out_w
  3814. @item h, out_h
  3815. @item x
  3816. @item y
  3817. Set width/height of the output video and the horizontal/vertical position
  3818. in the input video.
  3819. The command accepts the same syntax of the corresponding option.
  3820. If the specified expression is not valid, it is kept at its current
  3821. value.
  3822. @end table
  3823. @section cropdetect
  3824. Auto-detect the crop size.
  3825. It calculates the necessary cropping parameters and prints the
  3826. recommended parameters via the logging system. The detected dimensions
  3827. correspond to the non-black area of the input video.
  3828. It accepts the following parameters:
  3829. @table @option
  3830. @item limit
  3831. Set higher black value threshold, which can be optionally specified
  3832. from nothing (0) to everything (255 for 8bit based formats). An intensity
  3833. value greater to the set value is considered non-black. It defaults to 24.
  3834. You can also specify a value between 0.0 and 1.0 which will be scaled depending
  3835. on the bitdepth of the pixel format.
  3836. @item round
  3837. The value which the width/height should be divisible by. It defaults to
  3838. 16. The offset is automatically adjusted to center the video. Use 2 to
  3839. get only even dimensions (needed for 4:2:2 video). 16 is best when
  3840. encoding to most video codecs.
  3841. @item reset_count, reset
  3842. Set the counter that determines after how many frames cropdetect will
  3843. reset the previously detected largest video area and start over to
  3844. detect the current optimal crop area. Default value is 0.
  3845. This can be useful when channel logos distort the video area. 0
  3846. indicates 'never reset', and returns the largest area encountered during
  3847. playback.
  3848. @end table
  3849. @anchor{curves}
  3850. @section curves
  3851. Apply color adjustments using curves.
  3852. This filter is similar to the Adobe Photoshop and GIMP curves tools. Each
  3853. component (red, green and blue) has its values defined by @var{N} key points
  3854. tied from each other using a smooth curve. The x-axis represents the pixel
  3855. values from the input frame, and the y-axis the new pixel values to be set for
  3856. the output frame.
  3857. By default, a component curve is defined by the two points @var{(0;0)} and
  3858. @var{(1;1)}. This creates a straight line where each original pixel value is
  3859. "adjusted" to its own value, which means no change to the image.
  3860. The filter allows you to redefine these two points and add some more. A new
  3861. curve (using a natural cubic spline interpolation) will be define to pass
  3862. smoothly through all these new coordinates. The new defined points needs to be
  3863. strictly increasing over the x-axis, and their @var{x} and @var{y} values must
  3864. be in the @var{[0;1]} interval. If the computed curves happened to go outside
  3865. the vector spaces, the values will be clipped accordingly.
  3866. If there is no key point defined in @code{x=0}, the filter will automatically
  3867. insert a @var{(0;0)} point. In the same way, if there is no key point defined
  3868. in @code{x=1}, the filter will automatically insert a @var{(1;1)} point.
  3869. The filter accepts the following options:
  3870. @table @option
  3871. @item preset
  3872. Select one of the available color presets. This option can be used in addition
  3873. to the @option{r}, @option{g}, @option{b} parameters; in this case, the later
  3874. options takes priority on the preset values.
  3875. Available presets are:
  3876. @table @samp
  3877. @item none
  3878. @item color_negative
  3879. @item cross_process
  3880. @item darker
  3881. @item increase_contrast
  3882. @item lighter
  3883. @item linear_contrast
  3884. @item medium_contrast
  3885. @item negative
  3886. @item strong_contrast
  3887. @item vintage
  3888. @end table
  3889. Default is @code{none}.
  3890. @item master, m
  3891. Set the master key points. These points will define a second pass mapping. It
  3892. is sometimes called a "luminance" or "value" mapping. It can be used with
  3893. @option{r}, @option{g}, @option{b} or @option{all} since it acts like a
  3894. post-processing LUT.
  3895. @item red, r
  3896. Set the key points for the red component.
  3897. @item green, g
  3898. Set the key points for the green component.
  3899. @item blue, b
  3900. Set the key points for the blue component.
  3901. @item all
  3902. Set the key points for all components (not including master).
  3903. Can be used in addition to the other key points component
  3904. options. In this case, the unset component(s) will fallback on this
  3905. @option{all} setting.
  3906. @item psfile
  3907. Specify a Photoshop curves file (@code{.acv}) to import the settings from.
  3908. @end table
  3909. To avoid some filtergraph syntax conflicts, each key points list need to be
  3910. defined using the following syntax: @code{x0/y0 x1/y1 x2/y2 ...}.
  3911. @subsection Examples
  3912. @itemize
  3913. @item
  3914. Increase slightly the middle level of blue:
  3915. @example
  3916. curves=blue='0.5/0.58'
  3917. @end example
  3918. @item
  3919. Vintage effect:
  3920. @example
  3921. curves=r='0/0.11 .42/.51 1/0.95':g='0.50/0.48':b='0/0.22 .49/.44 1/0.8'
  3922. @end example
  3923. Here we obtain the following coordinates for each components:
  3924. @table @var
  3925. @item red
  3926. @code{(0;0.11) (0.42;0.51) (1;0.95)}
  3927. @item green
  3928. @code{(0;0) (0.50;0.48) (1;1)}
  3929. @item blue
  3930. @code{(0;0.22) (0.49;0.44) (1;0.80)}
  3931. @end table
  3932. @item
  3933. The previous example can also be achieved with the associated built-in preset:
  3934. @example
  3935. curves=preset=vintage
  3936. @end example
  3937. @item
  3938. Or simply:
  3939. @example
  3940. curves=vintage
  3941. @end example
  3942. @item
  3943. Use a Photoshop preset and redefine the points of the green component:
  3944. @example
  3945. curves=psfile='MyCurvesPresets/purple.acv':green='0.45/0.53'
  3946. @end example
  3947. @end itemize
  3948. @section dctdnoiz
  3949. Denoise frames using 2D DCT (frequency domain filtering).
  3950. This filter is not designed for real time.
  3951. The filter accepts the following options:
  3952. @table @option
  3953. @item sigma, s
  3954. Set the noise sigma constant.
  3955. This @var{sigma} defines a hard threshold of @code{3 * sigma}; every DCT
  3956. coefficient (absolute value) below this threshold with be dropped.
  3957. If you need a more advanced filtering, see @option{expr}.
  3958. Default is @code{0}.
  3959. @item overlap
  3960. Set number overlapping pixels for each block. Since the filter can be slow, you
  3961. may want to reduce this value, at the cost of a less effective filter and the
  3962. risk of various artefacts.
  3963. If the overlapping value doesn't permit processing the whole input width or
  3964. height, a warning will be displayed and according borders won't be denoised.
  3965. Default value is @var{blocksize}-1, which is the best possible setting.
  3966. @item expr, e
  3967. Set the coefficient factor expression.
  3968. For each coefficient of a DCT block, this expression will be evaluated as a
  3969. multiplier value for the coefficient.
  3970. If this is option is set, the @option{sigma} option will be ignored.
  3971. The absolute value of the coefficient can be accessed through the @var{c}
  3972. variable.
  3973. @item n
  3974. Set the @var{blocksize} using the number of bits. @code{1<<@var{n}} defines the
  3975. @var{blocksize}, which is the width and height of the processed blocks.
  3976. The default value is @var{3} (8x8) and can be raised to @var{4} for a
  3977. @var{blocksize} of 16x16. Note that changing this setting has huge consequences
  3978. on the speed processing. Also, a larger block size does not necessarily means a
  3979. better de-noising.
  3980. @end table
  3981. @subsection Examples
  3982. Apply a denoise with a @option{sigma} of @code{4.5}:
  3983. @example
  3984. dctdnoiz=4.5
  3985. @end example
  3986. The same operation can be achieved using the expression system:
  3987. @example
  3988. dctdnoiz=e='gte(c, 4.5*3)'
  3989. @end example
  3990. Violent denoise using a block size of @code{16x16}:
  3991. @example
  3992. dctdnoiz=15:n=4
  3993. @end example
  3994. @section deband
  3995. Remove banding artifacts from input video.
  3996. It works by replacing banded pixels with average value of referenced pixels.
  3997. The filter accepts the following options:
  3998. @table @option
  3999. @item 1thr
  4000. @item 2thr
  4001. @item 3thr
  4002. @item 4thr
  4003. Set banding detection threshold for each plane. Default is 0.02.
  4004. Valid range is 0.00003 to 0.5.
  4005. If difference between current pixel and reference pixel is less than threshold,
  4006. it will be considered as banded.
  4007. @item range, r
  4008. Banding detection range in pixels. Default is 16. If positive, random number
  4009. in range 0 to set value will be used. If negative, exact absolute value
  4010. will be used.
  4011. The range defines square of four pixels around current pixel.
  4012. @item direction, d
  4013. Set direction in radians from which four pixel will be compared. If positive,
  4014. random direction from 0 to set direction will be picked. If negative, exact of
  4015. absolute value will be picked. For example direction 0, -PI or -2*PI radians
  4016. will pick only pixels on same row and -PI/2 will pick only pixels on same
  4017. column.
  4018. @item blur
  4019. If enabled, current pixel is compared with average value of all four
  4020. surrounding pixels. The default is enabled. If disabled current pixel is
  4021. compared with all four surrounding pixels. The pixel is considered banded
  4022. if only all four differences with surrounding pixels are less than threshold.
  4023. @end table
  4024. @anchor{decimate}
  4025. @section decimate
  4026. Drop duplicated frames at regular intervals.
  4027. The filter accepts the following options:
  4028. @table @option
  4029. @item cycle
  4030. Set the number of frames from which one will be dropped. Setting this to
  4031. @var{N} means one frame in every batch of @var{N} frames will be dropped.
  4032. Default is @code{5}.
  4033. @item dupthresh
  4034. Set the threshold for duplicate detection. If the difference metric for a frame
  4035. is less than or equal to this value, then it is declared as duplicate. Default
  4036. is @code{1.1}
  4037. @item scthresh
  4038. Set scene change threshold. Default is @code{15}.
  4039. @item blockx
  4040. @item blocky
  4041. Set the size of the x and y-axis blocks used during metric calculations.
  4042. Larger blocks give better noise suppression, but also give worse detection of
  4043. small movements. Must be a power of two. Default is @code{32}.
  4044. @item ppsrc
  4045. Mark main input as a pre-processed input and activate clean source input
  4046. stream. This allows the input to be pre-processed with various filters to help
  4047. the metrics calculation while keeping the frame selection lossless. When set to
  4048. @code{1}, the first stream is for the pre-processed input, and the second
  4049. stream is the clean source from where the kept frames are chosen. Default is
  4050. @code{0}.
  4051. @item chroma
  4052. Set whether or not chroma is considered in the metric calculations. Default is
  4053. @code{1}.
  4054. @end table
  4055. @section deflate
  4056. Apply deflate effect to the video.
  4057. This filter replaces the pixel by the local(3x3) average by taking into account
  4058. only values lower than the pixel.
  4059. It accepts the following options:
  4060. @table @option
  4061. @item threshold0
  4062. @item threshold1
  4063. @item threshold2
  4064. @item threshold3
  4065. Limit the maximum change for each plane, default is 65535.
  4066. If 0, plane will remain unchanged.
  4067. @end table
  4068. @section dejudder
  4069. Remove judder produced by partially interlaced telecined content.
  4070. Judder can be introduced, for instance, by @ref{pullup} filter. If the original
  4071. source was partially telecined content then the output of @code{pullup,dejudder}
  4072. will have a variable frame rate. May change the recorded frame rate of the
  4073. container. Aside from that change, this filter will not affect constant frame
  4074. rate video.
  4075. The option available in this filter is:
  4076. @table @option
  4077. @item cycle
  4078. Specify the length of the window over which the judder repeats.
  4079. Accepts any integer greater than 1. Useful values are:
  4080. @table @samp
  4081. @item 4
  4082. If the original was telecined from 24 to 30 fps (Film to NTSC).
  4083. @item 5
  4084. If the original was telecined from 25 to 30 fps (PAL to NTSC).
  4085. @item 20
  4086. If a mixture of the two.
  4087. @end table
  4088. The default is @samp{4}.
  4089. @end table
  4090. @section delogo
  4091. Suppress a TV station logo by a simple interpolation of the surrounding
  4092. pixels. Just set a rectangle covering the logo and watch it disappear
  4093. (and sometimes something even uglier appear - your mileage may vary).
  4094. It accepts the following parameters:
  4095. @table @option
  4096. @item x
  4097. @item y
  4098. Specify the top left corner coordinates of the logo. They must be
  4099. specified.
  4100. @item w
  4101. @item h
  4102. Specify the width and height of the logo to clear. They must be
  4103. specified.
  4104. @item band, t
  4105. Specify the thickness of the fuzzy edge of the rectangle (added to
  4106. @var{w} and @var{h}). The default value is 1. This option is
  4107. deprecated, setting higher values should no longer be necessary and
  4108. is not recommended.
  4109. @item show
  4110. When set to 1, a green rectangle is drawn on the screen to simplify
  4111. finding the right @var{x}, @var{y}, @var{w}, and @var{h} parameters.
  4112. The default value is 0.
  4113. The rectangle is drawn on the outermost pixels which will be (partly)
  4114. replaced with interpolated values. The values of the next pixels
  4115. immediately outside this rectangle in each direction will be used to
  4116. compute the interpolated pixel values inside the rectangle.
  4117. @end table
  4118. @subsection Examples
  4119. @itemize
  4120. @item
  4121. Set a rectangle covering the area with top left corner coordinates 0,0
  4122. and size 100x77, and a band of size 10:
  4123. @example
  4124. delogo=x=0:y=0:w=100:h=77:band=10
  4125. @end example
  4126. @end itemize
  4127. @section deshake
  4128. Attempt to fix small changes in horizontal and/or vertical shift. This
  4129. filter helps remove camera shake from hand-holding a camera, bumping a
  4130. tripod, moving on a vehicle, etc.
  4131. The filter accepts the following options:
  4132. @table @option
  4133. @item x
  4134. @item y
  4135. @item w
  4136. @item h
  4137. Specify a rectangular area where to limit the search for motion
  4138. vectors.
  4139. If desired the search for motion vectors can be limited to a
  4140. rectangular area of the frame defined by its top left corner, width
  4141. and height. These parameters have the same meaning as the drawbox
  4142. filter which can be used to visualise the position of the bounding
  4143. box.
  4144. This is useful when simultaneous movement of subjects within the frame
  4145. might be confused for camera motion by the motion vector search.
  4146. If any or all of @var{x}, @var{y}, @var{w} and @var{h} are set to -1
  4147. then the full frame is used. This allows later options to be set
  4148. without specifying the bounding box for the motion vector search.
  4149. Default - search the whole frame.
  4150. @item rx
  4151. @item ry
  4152. Specify the maximum extent of movement in x and y directions in the
  4153. range 0-64 pixels. Default 16.
  4154. @item edge
  4155. Specify how to generate pixels to fill blanks at the edge of the
  4156. frame. Available values are:
  4157. @table @samp
  4158. @item blank, 0
  4159. Fill zeroes at blank locations
  4160. @item original, 1
  4161. Original image at blank locations
  4162. @item clamp, 2
  4163. Extruded edge value at blank locations
  4164. @item mirror, 3
  4165. Mirrored edge at blank locations
  4166. @end table
  4167. Default value is @samp{mirror}.
  4168. @item blocksize
  4169. Specify the blocksize to use for motion search. Range 4-128 pixels,
  4170. default 8.
  4171. @item contrast
  4172. Specify the contrast threshold for blocks. Only blocks with more than
  4173. the specified contrast (difference between darkest and lightest
  4174. pixels) will be considered. Range 1-255, default 125.
  4175. @item search
  4176. Specify the search strategy. Available values are:
  4177. @table @samp
  4178. @item exhaustive, 0
  4179. Set exhaustive search
  4180. @item less, 1
  4181. Set less exhaustive search.
  4182. @end table
  4183. Default value is @samp{exhaustive}.
  4184. @item filename
  4185. If set then a detailed log of the motion search is written to the
  4186. specified file.
  4187. @item opencl
  4188. If set to 1, specify using OpenCL capabilities, only available if
  4189. FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
  4190. @end table
  4191. @section detelecine
  4192. Apply an exact inverse of the telecine operation. It requires a predefined
  4193. pattern specified using the pattern option which must be the same as that passed
  4194. to the telecine filter.
  4195. This filter accepts the following options:
  4196. @table @option
  4197. @item first_field
  4198. @table @samp
  4199. @item top, t
  4200. top field first
  4201. @item bottom, b
  4202. bottom field first
  4203. The default value is @code{top}.
  4204. @end table
  4205. @item pattern
  4206. A string of numbers representing the pulldown pattern you wish to apply.
  4207. The default value is @code{23}.
  4208. @item start_frame
  4209. A number representing position of the first frame with respect to the telecine
  4210. pattern. This is to be used if the stream is cut. The default value is @code{0}.
  4211. @end table
  4212. @section dilation
  4213. Apply dilation effect to the video.
  4214. This filter replaces the pixel by the local(3x3) maximum.
  4215. It accepts the following options:
  4216. @table @option
  4217. @item threshold0
  4218. @item threshold1
  4219. @item threshold2
  4220. @item threshold3
  4221. Limit the maximum change for each plane, default is 65535.
  4222. If 0, plane will remain unchanged.
  4223. @item coordinates
  4224. Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
  4225. pixels are used.
  4226. Flags to local 3x3 coordinates maps like this:
  4227. 1 2 3
  4228. 4 5
  4229. 6 7 8
  4230. @end table
  4231. @section displace
  4232. Displace pixels as indicated by second and third input stream.
  4233. It takes three input streams and outputs one stream, the first input is the
  4234. source, and second and third input are displacement maps.
  4235. The second input specifies how much to displace pixels along the
  4236. x-axis, while the third input specifies how much to displace pixels
  4237. along the y-axis.
  4238. If one of displacement map streams terminates, last frame from that
  4239. displacement map will be used.
  4240. Note that once generated, displacements maps can be reused over and over again.
  4241. A description of the accepted options follows.
  4242. @table @option
  4243. @item edge
  4244. Set displace behavior for pixels that are out of range.
  4245. Available values are:
  4246. @table @samp
  4247. @item blank
  4248. Missing pixels are replaced by black pixels.
  4249. @item smear
  4250. Adjacent pixels will spread out to replace missing pixels.
  4251. @item wrap
  4252. Out of range pixels are wrapped so they point to pixels of other side.
  4253. @end table
  4254. Default is @samp{smear}.
  4255. @end table
  4256. @subsection Examples
  4257. @itemize
  4258. @item
  4259. Add ripple effect to rgb input of video size hd720:
  4260. @example
  4261. 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
  4262. @end example
  4263. @item
  4264. Add wave effect to rgb input of video size hd720:
  4265. @example
  4266. 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
  4267. @end example
  4268. @end itemize
  4269. @section drawbox
  4270. Draw a colored box on the input image.
  4271. It accepts the following parameters:
  4272. @table @option
  4273. @item x
  4274. @item y
  4275. The expressions which specify the top left corner coordinates of the box. It defaults to 0.
  4276. @item width, w
  4277. @item height, h
  4278. The expressions which specify the width and height of the box; if 0 they are interpreted as
  4279. the input width and height. It defaults to 0.
  4280. @item color, c
  4281. Specify the color of the box to write. For the general syntax of this option,
  4282. check the "Color" section in the ffmpeg-utils manual. If the special
  4283. value @code{invert} is used, the box edge color is the same as the
  4284. video with inverted luma.
  4285. @item thickness, t
  4286. The expression which sets the thickness of the box edge. Default value is @code{3}.
  4287. See below for the list of accepted constants.
  4288. @end table
  4289. The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
  4290. following constants:
  4291. @table @option
  4292. @item dar
  4293. The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
  4294. @item hsub
  4295. @item vsub
  4296. horizontal and vertical chroma subsample values. For example for the
  4297. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  4298. @item in_h, ih
  4299. @item in_w, iw
  4300. The input width and height.
  4301. @item sar
  4302. The input sample aspect ratio.
  4303. @item x
  4304. @item y
  4305. The x and y offset coordinates where the box is drawn.
  4306. @item w
  4307. @item h
  4308. The width and height of the drawn box.
  4309. @item t
  4310. The thickness of the drawn box.
  4311. These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
  4312. each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
  4313. @end table
  4314. @subsection Examples
  4315. @itemize
  4316. @item
  4317. Draw a black box around the edge of the input image:
  4318. @example
  4319. drawbox
  4320. @end example
  4321. @item
  4322. Draw a box with color red and an opacity of 50%:
  4323. @example
  4324. drawbox=10:20:200:60:red@@0.5
  4325. @end example
  4326. The previous example can be specified as:
  4327. @example
  4328. drawbox=x=10:y=20:w=200:h=60:color=red@@0.5
  4329. @end example
  4330. @item
  4331. Fill the box with pink color:
  4332. @example
  4333. drawbox=x=10:y=10:w=100:h=100:color=pink@@0.5:t=max
  4334. @end example
  4335. @item
  4336. Draw a 2-pixel red 2.40:1 mask:
  4337. @example
  4338. 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
  4339. @end example
  4340. @end itemize
  4341. @section drawgraph, adrawgraph
  4342. Draw a graph using input video or audio metadata.
  4343. It accepts the following parameters:
  4344. @table @option
  4345. @item m1
  4346. Set 1st frame metadata key from which metadata values will be used to draw a graph.
  4347. @item fg1
  4348. Set 1st foreground color expression.
  4349. @item m2
  4350. Set 2nd frame metadata key from which metadata values will be used to draw a graph.
  4351. @item fg2
  4352. Set 2nd foreground color expression.
  4353. @item m3
  4354. Set 3rd frame metadata key from which metadata values will be used to draw a graph.
  4355. @item fg3
  4356. Set 3rd foreground color expression.
  4357. @item m4
  4358. Set 4th frame metadata key from which metadata values will be used to draw a graph.
  4359. @item fg4
  4360. Set 4th foreground color expression.
  4361. @item min
  4362. Set minimal value of metadata value.
  4363. @item max
  4364. Set maximal value of metadata value.
  4365. @item bg
  4366. Set graph background color. Default is white.
  4367. @item mode
  4368. Set graph mode.
  4369. Available values for mode is:
  4370. @table @samp
  4371. @item bar
  4372. @item dot
  4373. @item line
  4374. @end table
  4375. Default is @code{line}.
  4376. @item slide
  4377. Set slide mode.
  4378. Available values for slide is:
  4379. @table @samp
  4380. @item frame
  4381. Draw new frame when right border is reached.
  4382. @item replace
  4383. Replace old columns with new ones.
  4384. @item scroll
  4385. Scroll from right to left.
  4386. @item rscroll
  4387. Scroll from left to right.
  4388. @end table
  4389. Default is @code{frame}.
  4390. @item size
  4391. Set size of graph video. For the syntax of this option, check the
  4392. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  4393. The default value is @code{900x256}.
  4394. The foreground color expressions can use the following variables:
  4395. @table @option
  4396. @item MIN
  4397. Minimal value of metadata value.
  4398. @item MAX
  4399. Maximal value of metadata value.
  4400. @item VAL
  4401. Current metadata key value.
  4402. @end table
  4403. The color is defined as 0xAABBGGRR.
  4404. @end table
  4405. Example using metadata from @ref{signalstats} filter:
  4406. @example
  4407. signalstats,drawgraph=lavfi.signalstats.YAVG:min=0:max=255
  4408. @end example
  4409. Example using metadata from @ref{ebur128} filter:
  4410. @example
  4411. ebur128=metadata=1,adrawgraph=lavfi.r128.M:min=-120:max=5
  4412. @end example
  4413. @section drawgrid
  4414. Draw a grid on the input image.
  4415. It accepts the following parameters:
  4416. @table @option
  4417. @item x
  4418. @item y
  4419. The expressions which specify the coordinates of some point of grid intersection (meant to configure offset). Both default to 0.
  4420. @item width, w
  4421. @item height, h
  4422. The expressions which specify the width and height of the grid cell, if 0 they are interpreted as the
  4423. input width and height, respectively, minus @code{thickness}, so image gets
  4424. framed. Default to 0.
  4425. @item color, c
  4426. Specify the color of the grid. For the general syntax of this option,
  4427. check the "Color" section in the ffmpeg-utils manual. If the special
  4428. value @code{invert} is used, the grid color is the same as the
  4429. video with inverted luma.
  4430. @item thickness, t
  4431. The expression which sets the thickness of the grid line. Default value is @code{1}.
  4432. See below for the list of accepted constants.
  4433. @end table
  4434. The parameters for @var{x}, @var{y}, @var{w} and @var{h} and @var{t} are expressions containing the
  4435. following constants:
  4436. @table @option
  4437. @item dar
  4438. The input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}.
  4439. @item hsub
  4440. @item vsub
  4441. horizontal and vertical chroma subsample values. For example for the
  4442. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  4443. @item in_h, ih
  4444. @item in_w, iw
  4445. The input grid cell width and height.
  4446. @item sar
  4447. The input sample aspect ratio.
  4448. @item x
  4449. @item y
  4450. The x and y coordinates of some point of grid intersection (meant to configure offset).
  4451. @item w
  4452. @item h
  4453. The width and height of the drawn cell.
  4454. @item t
  4455. The thickness of the drawn cell.
  4456. These constants allow the @var{x}, @var{y}, @var{w}, @var{h} and @var{t} expressions to refer to
  4457. each other, so you may for example specify @code{y=x/dar} or @code{h=w/dar}.
  4458. @end table
  4459. @subsection Examples
  4460. @itemize
  4461. @item
  4462. Draw a grid with cell 100x100 pixels, thickness 2 pixels, with color red and an opacity of 50%:
  4463. @example
  4464. drawgrid=width=100:height=100:thickness=2:color=red@@0.5
  4465. @end example
  4466. @item
  4467. Draw a white 3x3 grid with an opacity of 50%:
  4468. @example
  4469. drawgrid=w=iw/3:h=ih/3:t=2:c=white@@0.5
  4470. @end example
  4471. @end itemize
  4472. @anchor{drawtext}
  4473. @section drawtext
  4474. Draw a text string or text from a specified file on top of a video, using the
  4475. libfreetype library.
  4476. To enable compilation of this filter, you need to configure FFmpeg with
  4477. @code{--enable-libfreetype}.
  4478. To enable default font fallback and the @var{font} option you need to
  4479. configure FFmpeg with @code{--enable-libfontconfig}.
  4480. To enable the @var{text_shaping} option, you need to configure FFmpeg with
  4481. @code{--enable-libfribidi}.
  4482. @subsection Syntax
  4483. It accepts the following parameters:
  4484. @table @option
  4485. @item box
  4486. Used to draw a box around text using the background color.
  4487. The value must be either 1 (enable) or 0 (disable).
  4488. The default value of @var{box} is 0.
  4489. @item boxborderw
  4490. Set the width of the border to be drawn around the box using @var{boxcolor}.
  4491. The default value of @var{boxborderw} is 0.
  4492. @item boxcolor
  4493. The color to be used for drawing box around text. For the syntax of this
  4494. option, check the "Color" section in the ffmpeg-utils manual.
  4495. The default value of @var{boxcolor} is "white".
  4496. @item borderw
  4497. Set the width of the border to be drawn around the text using @var{bordercolor}.
  4498. The default value of @var{borderw} is 0.
  4499. @item bordercolor
  4500. Set the color to be used for drawing border around text. For the syntax of this
  4501. option, check the "Color" section in the ffmpeg-utils manual.
  4502. The default value of @var{bordercolor} is "black".
  4503. @item expansion
  4504. Select how the @var{text} is expanded. Can be either @code{none},
  4505. @code{strftime} (deprecated) or
  4506. @code{normal} (default). See the @ref{drawtext_expansion, Text expansion} section
  4507. below for details.
  4508. @item fix_bounds
  4509. If true, check and fix text coords to avoid clipping.
  4510. @item fontcolor
  4511. The color to be used for drawing fonts. For the syntax of this option, check
  4512. the "Color" section in the ffmpeg-utils manual.
  4513. The default value of @var{fontcolor} is "black".
  4514. @item fontcolor_expr
  4515. String which is expanded the same way as @var{text} to obtain dynamic
  4516. @var{fontcolor} value. By default this option has empty value and is not
  4517. processed. When this option is set, it overrides @var{fontcolor} option.
  4518. @item font
  4519. The font family to be used for drawing text. By default Sans.
  4520. @item fontfile
  4521. The font file to be used for drawing text. The path must be included.
  4522. This parameter is mandatory if the fontconfig support is disabled.
  4523. @item draw
  4524. This option does not exist, please see the timeline system
  4525. @item alpha
  4526. Draw the text applying alpha blending. The value can
  4527. be either a number between 0.0 and 1.0
  4528. The expression accepts the same variables @var{x, y} do.
  4529. The default value is 1.
  4530. Please see fontcolor_expr
  4531. @item fontsize
  4532. The font size to be used for drawing text.
  4533. The default value of @var{fontsize} is 16.
  4534. @item text_shaping
  4535. If set to 1, attempt to shape the text (for example, reverse the order of
  4536. right-to-left text and join Arabic characters) before drawing it.
  4537. Otherwise, just draw the text exactly as given.
  4538. By default 1 (if supported).
  4539. @item ft_load_flags
  4540. The flags to be used for loading the fonts.
  4541. The flags map the corresponding flags supported by libfreetype, and are
  4542. a combination of the following values:
  4543. @table @var
  4544. @item default
  4545. @item no_scale
  4546. @item no_hinting
  4547. @item render
  4548. @item no_bitmap
  4549. @item vertical_layout
  4550. @item force_autohint
  4551. @item crop_bitmap
  4552. @item pedantic
  4553. @item ignore_global_advance_width
  4554. @item no_recurse
  4555. @item ignore_transform
  4556. @item monochrome
  4557. @item linear_design
  4558. @item no_autohint
  4559. @end table
  4560. Default value is "default".
  4561. For more information consult the documentation for the FT_LOAD_*
  4562. libfreetype flags.
  4563. @item shadowcolor
  4564. The color to be used for drawing a shadow behind the drawn text. For the
  4565. syntax of this option, check the "Color" section in the ffmpeg-utils manual.
  4566. The default value of @var{shadowcolor} is "black".
  4567. @item shadowx
  4568. @item shadowy
  4569. The x and y offsets for the text shadow position with respect to the
  4570. position of the text. They can be either positive or negative
  4571. values. The default value for both is "0".
  4572. @item start_number
  4573. The starting frame number for the n/frame_num variable. The default value
  4574. is "0".
  4575. @item tabsize
  4576. The size in number of spaces to use for rendering the tab.
  4577. Default value is 4.
  4578. @item timecode
  4579. Set the initial timecode representation in "hh:mm:ss[:;.]ff"
  4580. format. It can be used with or without text parameter. @var{timecode_rate}
  4581. option must be specified.
  4582. @item timecode_rate, rate, r
  4583. Set the timecode frame rate (timecode only).
  4584. @item text
  4585. The text string to be drawn. The text must be a sequence of UTF-8
  4586. encoded characters.
  4587. This parameter is mandatory if no file is specified with the parameter
  4588. @var{textfile}.
  4589. @item textfile
  4590. A text file containing text to be drawn. The text must be a sequence
  4591. of UTF-8 encoded characters.
  4592. This parameter is mandatory if no text string is specified with the
  4593. parameter @var{text}.
  4594. If both @var{text} and @var{textfile} are specified, an error is thrown.
  4595. @item reload
  4596. If set to 1, the @var{textfile} will be reloaded before each frame.
  4597. Be sure to update it atomically, or it may be read partially, or even fail.
  4598. @item x
  4599. @item y
  4600. The expressions which specify the offsets where text will be drawn
  4601. within the video frame. They are relative to the top/left border of the
  4602. output image.
  4603. The default value of @var{x} and @var{y} is "0".
  4604. See below for the list of accepted constants and functions.
  4605. @end table
  4606. The parameters for @var{x} and @var{y} are expressions containing the
  4607. following constants and functions:
  4608. @table @option
  4609. @item dar
  4610. input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
  4611. @item hsub
  4612. @item vsub
  4613. horizontal and vertical chroma subsample values. For example for the
  4614. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  4615. @item line_h, lh
  4616. the height of each text line
  4617. @item main_h, h, H
  4618. the input height
  4619. @item main_w, w, W
  4620. the input width
  4621. @item max_glyph_a, ascent
  4622. the maximum distance from the baseline to the highest/upper grid
  4623. coordinate used to place a glyph outline point, for all the rendered
  4624. glyphs.
  4625. It is a positive value, due to the grid's orientation with the Y axis
  4626. upwards.
  4627. @item max_glyph_d, descent
  4628. the maximum distance from the baseline to the lowest grid coordinate
  4629. used to place a glyph outline point, for all the rendered glyphs.
  4630. This is a negative value, due to the grid's orientation, with the Y axis
  4631. upwards.
  4632. @item max_glyph_h
  4633. maximum glyph height, that is the maximum height for all the glyphs
  4634. contained in the rendered text, it is equivalent to @var{ascent} -
  4635. @var{descent}.
  4636. @item max_glyph_w
  4637. maximum glyph width, that is the maximum width for all the glyphs
  4638. contained in the rendered text
  4639. @item n
  4640. the number of input frame, starting from 0
  4641. @item rand(min, max)
  4642. return a random number included between @var{min} and @var{max}
  4643. @item sar
  4644. The input sample aspect ratio.
  4645. @item t
  4646. timestamp expressed in seconds, NAN if the input timestamp is unknown
  4647. @item text_h, th
  4648. the height of the rendered text
  4649. @item text_w, tw
  4650. the width of the rendered text
  4651. @item x
  4652. @item y
  4653. the x and y offset coordinates where the text is drawn.
  4654. These parameters allow the @var{x} and @var{y} expressions to refer
  4655. each other, so you can for example specify @code{y=x/dar}.
  4656. @end table
  4657. @anchor{drawtext_expansion}
  4658. @subsection Text expansion
  4659. If @option{expansion} is set to @code{strftime},
  4660. the filter recognizes strftime() sequences in the provided text and
  4661. expands them accordingly. Check the documentation of strftime(). This
  4662. feature is deprecated.
  4663. If @option{expansion} is set to @code{none}, the text is printed verbatim.
  4664. If @option{expansion} is set to @code{normal} (which is the default),
  4665. the following expansion mechanism is used.
  4666. The backslash character @samp{\}, followed by any character, always expands to
  4667. the second character.
  4668. Sequence of the form @code{%@{...@}} are expanded. The text between the
  4669. braces is a function name, possibly followed by arguments separated by ':'.
  4670. If the arguments contain special characters or delimiters (':' or '@}'),
  4671. they should be escaped.
  4672. Note that they probably must also be escaped as the value for the
  4673. @option{text} option in the filter argument string and as the filter
  4674. argument in the filtergraph description, and possibly also for the shell,
  4675. that makes up to four levels of escaping; using a text file avoids these
  4676. problems.
  4677. The following functions are available:
  4678. @table @command
  4679. @item expr, e
  4680. The expression evaluation result.
  4681. It must take one argument specifying the expression to be evaluated,
  4682. which accepts the same constants and functions as the @var{x} and
  4683. @var{y} values. Note that not all constants should be used, for
  4684. example the text size is not known when evaluating the expression, so
  4685. the constants @var{text_w} and @var{text_h} will have an undefined
  4686. value.
  4687. @item expr_int_format, eif
  4688. Evaluate the expression's value and output as formatted integer.
  4689. The first argument is the expression to be evaluated, just as for the @var{expr} function.
  4690. The second argument specifies the output format. Allowed values are @samp{x},
  4691. @samp{X}, @samp{d} and @samp{u}. They are treated exactly as in the
  4692. @code{printf} function.
  4693. The third parameter is optional and sets the number of positions taken by the output.
  4694. It can be used to add padding with zeros from the left.
  4695. @item gmtime
  4696. The time at which the filter is running, expressed in UTC.
  4697. It can accept an argument: a strftime() format string.
  4698. @item localtime
  4699. The time at which the filter is running, expressed in the local time zone.
  4700. It can accept an argument: a strftime() format string.
  4701. @item metadata
  4702. Frame metadata. It must take one argument specifying metadata key.
  4703. @item n, frame_num
  4704. The frame number, starting from 0.
  4705. @item pict_type
  4706. A 1 character description of the current picture type.
  4707. @item pts
  4708. The timestamp of the current frame.
  4709. It can take up to three arguments.
  4710. The first argument is the format of the timestamp; it defaults to @code{flt}
  4711. for seconds as a decimal number with microsecond accuracy; @code{hms} stands
  4712. for a formatted @var{[-]HH:MM:SS.mmm} timestamp with millisecond accuracy.
  4713. @code{gmtime} stands for the timestamp of the frame formatted as UTC time;
  4714. @code{localtime} stands for the timestamp of the frame formatted as
  4715. local time zone time.
  4716. The second argument is an offset added to the timestamp.
  4717. If the format is set to @code{localtime} or @code{gmtime},
  4718. a third argument may be supplied: a strftime() format string.
  4719. By default, @var{YYYY-MM-DD HH:MM:SS} format will be used.
  4720. @end table
  4721. @subsection Examples
  4722. @itemize
  4723. @item
  4724. Draw "Test Text" with font FreeSerif, using the default values for the
  4725. optional parameters.
  4726. @example
  4727. drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
  4728. @end example
  4729. @item
  4730. Draw 'Test Text' with font FreeSerif of size 24 at position x=100
  4731. and y=50 (counting from the top-left corner of the screen), text is
  4732. yellow with a red box around it. Both the text and the box have an
  4733. opacity of 20%.
  4734. @example
  4735. drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
  4736. x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
  4737. @end example
  4738. Note that the double quotes are not necessary if spaces are not used
  4739. within the parameter list.
  4740. @item
  4741. Show the text at the center of the video frame:
  4742. @example
  4743. drawtext="fontsize=30:fontfile=FreeSerif.ttf:text='hello world':x=(w-text_w)/2:y=(h-text_h)/2"
  4744. @end example
  4745. @item
  4746. Show a text line sliding from right to left in the last row of the video
  4747. frame. The file @file{LONG_LINE} is assumed to contain a single line
  4748. with no newlines.
  4749. @example
  4750. drawtext="fontsize=15:fontfile=FreeSerif.ttf:text=LONG_LINE:y=h-line_h:x=-50*t"
  4751. @end example
  4752. @item
  4753. Show the content of file @file{CREDITS} off the bottom of the frame and scroll up.
  4754. @example
  4755. drawtext="fontsize=20:fontfile=FreeSerif.ttf:textfile=CREDITS:y=h-20*t"
  4756. @end example
  4757. @item
  4758. Draw a single green letter "g", at the center of the input video.
  4759. The glyph baseline is placed at half screen height.
  4760. @example
  4761. drawtext="fontsize=60:fontfile=FreeSerif.ttf:fontcolor=green:text=g:x=(w-max_glyph_w)/2:y=h/2-ascent"
  4762. @end example
  4763. @item
  4764. Show text for 1 second every 3 seconds:
  4765. @example
  4766. drawtext="fontfile=FreeSerif.ttf:fontcolor=white:x=100:y=x/dar:enable=lt(mod(t\,3)\,1):text='blink'"
  4767. @end example
  4768. @item
  4769. Use fontconfig to set the font. Note that the colons need to be escaped.
  4770. @example
  4771. drawtext='fontfile=Linux Libertine O-40\:style=Semibold:text=FFmpeg'
  4772. @end example
  4773. @item
  4774. Print the date of a real-time encoding (see strftime(3)):
  4775. @example
  4776. drawtext='fontfile=FreeSans.ttf:text=%@{localtime\:%a %b %d %Y@}'
  4777. @end example
  4778. @item
  4779. Show text fading in and out (appearing/disappearing):
  4780. @example
  4781. #!/bin/sh
  4782. DS=1.0 # display start
  4783. DE=10.0 # display end
  4784. FID=1.5 # fade in duration
  4785. FOD=5 # fade out duration
  4786. 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 @}"
  4787. @end example
  4788. @end itemize
  4789. For more information about libfreetype, check:
  4790. @url{http://www.freetype.org/}.
  4791. For more information about fontconfig, check:
  4792. @url{http://freedesktop.org/software/fontconfig/fontconfig-user.html}.
  4793. For more information about libfribidi, check:
  4794. @url{http://fribidi.org/}.
  4795. @section edgedetect
  4796. Detect and draw edges. The filter uses the Canny Edge Detection algorithm.
  4797. The filter accepts the following options:
  4798. @table @option
  4799. @item low
  4800. @item high
  4801. Set low and high threshold values used by the Canny thresholding
  4802. algorithm.
  4803. The high threshold selects the "strong" edge pixels, which are then
  4804. connected through 8-connectivity with the "weak" edge pixels selected
  4805. by the low threshold.
  4806. @var{low} and @var{high} threshold values must be chosen in the range
  4807. [0,1], and @var{low} should be lesser or equal to @var{high}.
  4808. Default value for @var{low} is @code{20/255}, and default value for @var{high}
  4809. is @code{50/255}.
  4810. @item mode
  4811. Define the drawing mode.
  4812. @table @samp
  4813. @item wires
  4814. Draw white/gray wires on black background.
  4815. @item colormix
  4816. Mix the colors to create a paint/cartoon effect.
  4817. @end table
  4818. Default value is @var{wires}.
  4819. @end table
  4820. @subsection Examples
  4821. @itemize
  4822. @item
  4823. Standard edge detection with custom values for the hysteresis thresholding:
  4824. @example
  4825. edgedetect=low=0.1:high=0.4
  4826. @end example
  4827. @item
  4828. Painting effect without thresholding:
  4829. @example
  4830. edgedetect=mode=colormix:high=0
  4831. @end example
  4832. @end itemize
  4833. @section eq
  4834. Set brightness, contrast, saturation and approximate gamma adjustment.
  4835. The filter accepts the following options:
  4836. @table @option
  4837. @item contrast
  4838. Set the contrast expression. The value must be a float value in range
  4839. @code{-2.0} to @code{2.0}. The default value is "1".
  4840. @item brightness
  4841. Set the brightness expression. The value must be a float value in
  4842. range @code{-1.0} to @code{1.0}. The default value is "0".
  4843. @item saturation
  4844. Set the saturation expression. The value must be a float in
  4845. range @code{0.0} to @code{3.0}. The default value is "1".
  4846. @item gamma
  4847. Set the gamma expression. The value must be a float in range
  4848. @code{0.1} to @code{10.0}. The default value is "1".
  4849. @item gamma_r
  4850. Set the gamma expression for red. The value must be a float in
  4851. range @code{0.1} to @code{10.0}. The default value is "1".
  4852. @item gamma_g
  4853. Set the gamma expression for green. The value must be a float in range
  4854. @code{0.1} to @code{10.0}. The default value is "1".
  4855. @item gamma_b
  4856. Set the gamma expression for blue. The value must be a float in range
  4857. @code{0.1} to @code{10.0}. The default value is "1".
  4858. @item gamma_weight
  4859. Set the gamma weight expression. It can be used to reduce the effect
  4860. of a high gamma value on bright image areas, e.g. keep them from
  4861. getting overamplified and just plain white. The value must be a float
  4862. in range @code{0.0} to @code{1.0}. A value of @code{0.0} turns the
  4863. gamma correction all the way down while @code{1.0} leaves it at its
  4864. full strength. Default is "1".
  4865. @item eval
  4866. Set when the expressions for brightness, contrast, saturation and
  4867. gamma expressions are evaluated.
  4868. It accepts the following values:
  4869. @table @samp
  4870. @item init
  4871. only evaluate expressions once during the filter initialization or
  4872. when a command is processed
  4873. @item frame
  4874. evaluate expressions for each incoming frame
  4875. @end table
  4876. Default value is @samp{init}.
  4877. @end table
  4878. The expressions accept the following parameters:
  4879. @table @option
  4880. @item n
  4881. frame count of the input frame starting from 0
  4882. @item pos
  4883. byte position of the corresponding packet in the input file, NAN if
  4884. unspecified
  4885. @item r
  4886. frame rate of the input video, NAN if the input frame rate is unknown
  4887. @item t
  4888. timestamp expressed in seconds, NAN if the input timestamp is unknown
  4889. @end table
  4890. @subsection Commands
  4891. The filter supports the following commands:
  4892. @table @option
  4893. @item contrast
  4894. Set the contrast expression.
  4895. @item brightness
  4896. Set the brightness expression.
  4897. @item saturation
  4898. Set the saturation expression.
  4899. @item gamma
  4900. Set the gamma expression.
  4901. @item gamma_r
  4902. Set the gamma_r expression.
  4903. @item gamma_g
  4904. Set gamma_g expression.
  4905. @item gamma_b
  4906. Set gamma_b expression.
  4907. @item gamma_weight
  4908. Set gamma_weight expression.
  4909. The command accepts the same syntax of the corresponding option.
  4910. If the specified expression is not valid, it is kept at its current
  4911. value.
  4912. @end table
  4913. @section erosion
  4914. Apply erosion effect to the video.
  4915. This filter replaces the pixel by the local(3x3) minimum.
  4916. It accepts the following options:
  4917. @table @option
  4918. @item threshold0
  4919. @item threshold1
  4920. @item threshold2
  4921. @item threshold3
  4922. Limit the maximum change for each plane, default is 65535.
  4923. If 0, plane will remain unchanged.
  4924. @item coordinates
  4925. Flag which specifies the pixel to refer to. Default is 255 i.e. all eight
  4926. pixels are used.
  4927. Flags to local 3x3 coordinates maps like this:
  4928. 1 2 3
  4929. 4 5
  4930. 6 7 8
  4931. @end table
  4932. @section extractplanes
  4933. Extract color channel components from input video stream into
  4934. separate grayscale video streams.
  4935. The filter accepts the following option:
  4936. @table @option
  4937. @item planes
  4938. Set plane(s) to extract.
  4939. Available values for planes are:
  4940. @table @samp
  4941. @item y
  4942. @item u
  4943. @item v
  4944. @item a
  4945. @item r
  4946. @item g
  4947. @item b
  4948. @end table
  4949. Choosing planes not available in the input will result in an error.
  4950. That means you cannot select @code{r}, @code{g}, @code{b} planes
  4951. with @code{y}, @code{u}, @code{v} planes at same time.
  4952. @end table
  4953. @subsection Examples
  4954. @itemize
  4955. @item
  4956. Extract luma, u and v color channel component from input video frame
  4957. into 3 grayscale outputs:
  4958. @example
  4959. 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
  4960. @end example
  4961. @end itemize
  4962. @section elbg
  4963. Apply a posterize effect using the ELBG (Enhanced LBG) algorithm.
  4964. For each input image, the filter will compute the optimal mapping from
  4965. the input to the output given the codebook length, that is the number
  4966. of distinct output colors.
  4967. This filter accepts the following options.
  4968. @table @option
  4969. @item codebook_length, l
  4970. Set codebook length. The value must be a positive integer, and
  4971. represents the number of distinct output colors. Default value is 256.
  4972. @item nb_steps, n
  4973. Set the maximum number of iterations to apply for computing the optimal
  4974. mapping. The higher the value the better the result and the higher the
  4975. computation time. Default value is 1.
  4976. @item seed, s
  4977. Set a random seed, must be an integer included between 0 and
  4978. UINT32_MAX. If not specified, or if explicitly set to -1, the filter
  4979. will try to use a good random seed on a best effort basis.
  4980. @item pal8
  4981. Set pal8 output pixel format. This option does not work with codebook
  4982. length greater than 256.
  4983. @end table
  4984. @section fade
  4985. Apply a fade-in/out effect to the input video.
  4986. It accepts the following parameters:
  4987. @table @option
  4988. @item type, t
  4989. The effect type can be either "in" for a fade-in, or "out" for a fade-out
  4990. effect.
  4991. Default is @code{in}.
  4992. @item start_frame, s
  4993. Specify the number of the frame to start applying the fade
  4994. effect at. Default is 0.
  4995. @item nb_frames, n
  4996. The number of frames that the fade effect lasts. At the end of the
  4997. fade-in effect, the output video will have the same intensity as the input video.
  4998. At the end of the fade-out transition, the output video will be filled with the
  4999. selected @option{color}.
  5000. Default is 25.
  5001. @item alpha
  5002. If set to 1, fade only alpha channel, if one exists on the input.
  5003. Default value is 0.
  5004. @item start_time, st
  5005. Specify the timestamp (in seconds) of the frame to start to apply the fade
  5006. effect. If both start_frame and start_time are specified, the fade will start at
  5007. whichever comes last. Default is 0.
  5008. @item duration, d
  5009. The number of seconds for which the fade effect has to last. At the end of the
  5010. fade-in effect the output video will have the same intensity as the input video,
  5011. at the end of the fade-out transition the output video will be filled with the
  5012. selected @option{color}.
  5013. If both duration and nb_frames are specified, duration is used. Default is 0
  5014. (nb_frames is used by default).
  5015. @item color, c
  5016. Specify the color of the fade. Default is "black".
  5017. @end table
  5018. @subsection Examples
  5019. @itemize
  5020. @item
  5021. Fade in the first 30 frames of video:
  5022. @example
  5023. fade=in:0:30
  5024. @end example
  5025. The command above is equivalent to:
  5026. @example
  5027. fade=t=in:s=0:n=30
  5028. @end example
  5029. @item
  5030. Fade out the last 45 frames of a 200-frame video:
  5031. @example
  5032. fade=out:155:45
  5033. fade=type=out:start_frame=155:nb_frames=45
  5034. @end example
  5035. @item
  5036. Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video:
  5037. @example
  5038. fade=in:0:25, fade=out:975:25
  5039. @end example
  5040. @item
  5041. Make the first 5 frames yellow, then fade in from frame 5-24:
  5042. @example
  5043. fade=in:5:20:color=yellow
  5044. @end example
  5045. @item
  5046. Fade in alpha over first 25 frames of video:
  5047. @example
  5048. fade=in:0:25:alpha=1
  5049. @end example
  5050. @item
  5051. Make the first 5.5 seconds black, then fade in for 0.5 seconds:
  5052. @example
  5053. fade=t=in:st=5.5:d=0.5
  5054. @end example
  5055. @end itemize
  5056. @section fftfilt
  5057. Apply arbitrary expressions to samples in frequency domain
  5058. @table @option
  5059. @item dc_Y
  5060. Adjust the dc value (gain) of the luma plane of the image. The filter
  5061. accepts an integer value in range @code{0} to @code{1000}. The default
  5062. value is set to @code{0}.
  5063. @item dc_U
  5064. Adjust the dc value (gain) of the 1st chroma plane of the image. The
  5065. filter accepts an integer value in range @code{0} to @code{1000}. The
  5066. default value is set to @code{0}.
  5067. @item dc_V
  5068. Adjust the dc value (gain) of the 2nd chroma plane of the image. The
  5069. filter accepts an integer value in range @code{0} to @code{1000}. The
  5070. default value is set to @code{0}.
  5071. @item weight_Y
  5072. Set the frequency domain weight expression for the luma plane.
  5073. @item weight_U
  5074. Set the frequency domain weight expression for the 1st chroma plane.
  5075. @item weight_V
  5076. Set the frequency domain weight expression for the 2nd chroma plane.
  5077. The filter accepts the following variables:
  5078. @item X
  5079. @item Y
  5080. The coordinates of the current sample.
  5081. @item W
  5082. @item H
  5083. The width and height of the image.
  5084. @end table
  5085. @subsection Examples
  5086. @itemize
  5087. @item
  5088. High-pass:
  5089. @example
  5090. fftfilt=dc_Y=128:weight_Y='squish(1-(Y+X)/100)'
  5091. @end example
  5092. @item
  5093. Low-pass:
  5094. @example
  5095. fftfilt=dc_Y=0:weight_Y='squish((Y+X)/100-1)'
  5096. @end example
  5097. @item
  5098. Sharpen:
  5099. @example
  5100. fftfilt=dc_Y=0:weight_Y='1+squish(1-(Y+X)/100)'
  5101. @end example
  5102. @item
  5103. Blur:
  5104. @example
  5105. fftfilt=dc_Y=0:weight_Y='exp(-4 * ((Y+X)/(W+H)))'
  5106. @end example
  5107. @end itemize
  5108. @section field
  5109. Extract a single field from an interlaced image using stride
  5110. arithmetic to avoid wasting CPU time. The output frames are marked as
  5111. non-interlaced.
  5112. The filter accepts the following options:
  5113. @table @option
  5114. @item type
  5115. Specify whether to extract the top (if the value is @code{0} or
  5116. @code{top}) or the bottom field (if the value is @code{1} or
  5117. @code{bottom}).
  5118. @end table
  5119. @section fieldhint
  5120. Create new frames by copying the top and bottom fields from surrounding frames
  5121. supplied as numbers by the hint file.
  5122. @table @option
  5123. @item hint
  5124. Set file containing hints: absolute/relative frame numbers.
  5125. There must be one line for each frame in a clip. Each line must contain two
  5126. numbers separated by the comma, optionally followed by @code{-} or @code{+}.
  5127. Numbers supplied on each line of file can not be out of [N-1,N+1] where N
  5128. is current frame number for @code{absolute} mode or out of [-1, 1] range
  5129. for @code{relative} mode. First number tells from which frame to pick up top
  5130. field and second number tells from which frame to pick up bottom field.
  5131. If optionally followed by @code{+} output frame will be marked as interlaced,
  5132. else if followed by @code{-} output frame will be marked as progressive, else
  5133. it will be marked same as input frame.
  5134. If line starts with @code{#} or @code{;} that line is skipped.
  5135. @item mode
  5136. Can be item @code{absolute} or @code{relative}. Default is @code{absolute}.
  5137. @end table
  5138. Example of first several lines of @code{hint} file for @code{relative} mode:
  5139. @example
  5140. 0,0 - # first frame
  5141. 1,0 - # second frame, use third's frame top field and second's frame bottom field
  5142. 1,0 - # third frame, use fourth's frame top field and third's frame bottom field
  5143. 1,0 -
  5144. 0,0 -
  5145. 0,0 -
  5146. 1,0 -
  5147. 1,0 -
  5148. 1,0 -
  5149. 0,0 -
  5150. 0,0 -
  5151. 1,0 -
  5152. 1,0 -
  5153. 1,0 -
  5154. 0,0 -
  5155. @end example
  5156. @section fieldmatch
  5157. Field matching filter for inverse telecine. It is meant to reconstruct the
  5158. progressive frames from a telecined stream. The filter does not drop duplicated
  5159. frames, so to achieve a complete inverse telecine @code{fieldmatch} needs to be
  5160. followed by a decimation filter such as @ref{decimate} in the filtergraph.
  5161. The separation of the field matching and the decimation is notably motivated by
  5162. the possibility of inserting a de-interlacing filter fallback between the two.
  5163. If the source has mixed telecined and real interlaced content,
  5164. @code{fieldmatch} will not be able to match fields for the interlaced parts.
  5165. But these remaining combed frames will be marked as interlaced, and thus can be
  5166. de-interlaced by a later filter such as @ref{yadif} before decimation.
  5167. In addition to the various configuration options, @code{fieldmatch} can take an
  5168. optional second stream, activated through the @option{ppsrc} option. If
  5169. enabled, the frames reconstruction will be based on the fields and frames from
  5170. this second stream. This allows the first input to be pre-processed in order to
  5171. help the various algorithms of the filter, while keeping the output lossless
  5172. (assuming the fields are matched properly). Typically, a field-aware denoiser,
  5173. or brightness/contrast adjustments can help.
  5174. Note that this filter uses the same algorithms as TIVTC/TFM (AviSynth project)
  5175. and VIVTC/VFM (VapourSynth project). The later is a light clone of TFM from
  5176. which @code{fieldmatch} is based on. While the semantic and usage are very
  5177. close, some behaviour and options names can differ.
  5178. The @ref{decimate} filter currently only works for constant frame rate input.
  5179. If your input has mixed telecined (30fps) and progressive content with a lower
  5180. framerate like 24fps use the following filterchain to produce the necessary cfr
  5181. stream: @code{dejudder,fps=30000/1001,fieldmatch,decimate}.
  5182. The filter accepts the following options:
  5183. @table @option
  5184. @item order
  5185. Specify the assumed field order of the input stream. Available values are:
  5186. @table @samp
  5187. @item auto
  5188. Auto detect parity (use FFmpeg's internal parity value).
  5189. @item bff
  5190. Assume bottom field first.
  5191. @item tff
  5192. Assume top field first.
  5193. @end table
  5194. Note that it is sometimes recommended not to trust the parity announced by the
  5195. stream.
  5196. Default value is @var{auto}.
  5197. @item mode
  5198. Set the matching mode or strategy to use. @option{pc} mode is the safest in the
  5199. sense that it won't risk creating jerkiness due to duplicate frames when
  5200. possible, but if there are bad edits or blended fields it will end up
  5201. outputting combed frames when a good match might actually exist. On the other
  5202. hand, @option{pcn_ub} mode is the most risky in terms of creating jerkiness,
  5203. but will almost always find a good frame if there is one. The other values are
  5204. all somewhere in between @option{pc} and @option{pcn_ub} in terms of risking
  5205. jerkiness and creating duplicate frames versus finding good matches in sections
  5206. with bad edits, orphaned fields, blended fields, etc.
  5207. More details about p/c/n/u/b are available in @ref{p/c/n/u/b meaning} section.
  5208. Available values are:
  5209. @table @samp
  5210. @item pc
  5211. 2-way matching (p/c)
  5212. @item pc_n
  5213. 2-way matching, and trying 3rd match if still combed (p/c + n)
  5214. @item pc_u
  5215. 2-way matching, and trying 3rd match (same order) if still combed (p/c + u)
  5216. @item pc_n_ub
  5217. 2-way matching, trying 3rd match if still combed, and trying 4th/5th matches if
  5218. still combed (p/c + n + u/b)
  5219. @item pcn
  5220. 3-way matching (p/c/n)
  5221. @item pcn_ub
  5222. 3-way matching, and trying 4th/5th matches if all 3 of the original matches are
  5223. detected as combed (p/c/n + u/b)
  5224. @end table
  5225. The parenthesis at the end indicate the matches that would be used for that
  5226. mode assuming @option{order}=@var{tff} (and @option{field} on @var{auto} or
  5227. @var{top}).
  5228. In terms of speed @option{pc} mode is by far the fastest and @option{pcn_ub} is
  5229. the slowest.
  5230. Default value is @var{pc_n}.
  5231. @item ppsrc
  5232. Mark the main input stream as a pre-processed input, and enable the secondary
  5233. input stream as the clean source to pick the fields from. See the filter
  5234. introduction for more details. It is similar to the @option{clip2} feature from
  5235. VFM/TFM.
  5236. Default value is @code{0} (disabled).
  5237. @item field
  5238. Set the field to match from. It is recommended to set this to the same value as
  5239. @option{order} unless you experience matching failures with that setting. In
  5240. certain circumstances changing the field that is used to match from can have a
  5241. large impact on matching performance. Available values are:
  5242. @table @samp
  5243. @item auto
  5244. Automatic (same value as @option{order}).
  5245. @item bottom
  5246. Match from the bottom field.
  5247. @item top
  5248. Match from the top field.
  5249. @end table
  5250. Default value is @var{auto}.
  5251. @item mchroma
  5252. Set whether or not chroma is included during the match comparisons. In most
  5253. cases it is recommended to leave this enabled. You should set this to @code{0}
  5254. only if your clip has bad chroma problems such as heavy rainbowing or other
  5255. artifacts. Setting this to @code{0} could also be used to speed things up at
  5256. the cost of some accuracy.
  5257. Default value is @code{1}.
  5258. @item y0
  5259. @item y1
  5260. These define an exclusion band which excludes the lines between @option{y0} and
  5261. @option{y1} from being included in the field matching decision. An exclusion
  5262. band can be used to ignore subtitles, a logo, or other things that may
  5263. interfere with the matching. @option{y0} sets the starting scan line and
  5264. @option{y1} sets the ending line; all lines in between @option{y0} and
  5265. @option{y1} (including @option{y0} and @option{y1}) will be ignored. Setting
  5266. @option{y0} and @option{y1} to the same value will disable the feature.
  5267. @option{y0} and @option{y1} defaults to @code{0}.
  5268. @item scthresh
  5269. Set the scene change detection threshold as a percentage of maximum change on
  5270. the luma plane. Good values are in the @code{[8.0, 14.0]} range. Scene change
  5271. detection is only relevant in case @option{combmatch}=@var{sc}. The range for
  5272. @option{scthresh} is @code{[0.0, 100.0]}.
  5273. Default value is @code{12.0}.
  5274. @item combmatch
  5275. When @option{combatch} is not @var{none}, @code{fieldmatch} will take into
  5276. account the combed scores of matches when deciding what match to use as the
  5277. final match. Available values are:
  5278. @table @samp
  5279. @item none
  5280. No final matching based on combed scores.
  5281. @item sc
  5282. Combed scores are only used when a scene change is detected.
  5283. @item full
  5284. Use combed scores all the time.
  5285. @end table
  5286. Default is @var{sc}.
  5287. @item combdbg
  5288. Force @code{fieldmatch} to calculate the combed metrics for certain matches and
  5289. print them. This setting is known as @option{micout} in TFM/VFM vocabulary.
  5290. Available values are:
  5291. @table @samp
  5292. @item none
  5293. No forced calculation.
  5294. @item pcn
  5295. Force p/c/n calculations.
  5296. @item pcnub
  5297. Force p/c/n/u/b calculations.
  5298. @end table
  5299. Default value is @var{none}.
  5300. @item cthresh
  5301. This is the area combing threshold used for combed frame detection. This
  5302. essentially controls how "strong" or "visible" combing must be to be detected.
  5303. Larger values mean combing must be more visible and smaller values mean combing
  5304. can be less visible or strong and still be detected. Valid settings are from
  5305. @code{-1} (every pixel will be detected as combed) to @code{255} (no pixel will
  5306. be detected as combed). This is basically a pixel difference value. A good
  5307. range is @code{[8, 12]}.
  5308. Default value is @code{9}.
  5309. @item chroma
  5310. Sets whether or not chroma is considered in the combed frame decision. Only
  5311. disable this if your source has chroma problems (rainbowing, etc.) that are
  5312. causing problems for the combed frame detection with chroma enabled. Actually,
  5313. using @option{chroma}=@var{0} is usually more reliable, except for the case
  5314. where there is chroma only combing in the source.
  5315. Default value is @code{0}.
  5316. @item blockx
  5317. @item blocky
  5318. Respectively set the x-axis and y-axis size of the window used during combed
  5319. frame detection. This has to do with the size of the area in which
  5320. @option{combpel} pixels are required to be detected as combed for a frame to be
  5321. declared combed. See the @option{combpel} parameter description for more info.
  5322. Possible values are any number that is a power of 2 starting at 4 and going up
  5323. to 512.
  5324. Default value is @code{16}.
  5325. @item combpel
  5326. The number of combed pixels inside any of the @option{blocky} by
  5327. @option{blockx} size blocks on the frame for the frame to be detected as
  5328. combed. While @option{cthresh} controls how "visible" the combing must be, this
  5329. setting controls "how much" combing there must be in any localized area (a
  5330. window defined by the @option{blockx} and @option{blocky} settings) on the
  5331. frame. Minimum value is @code{0} and maximum is @code{blocky x blockx} (at
  5332. which point no frames will ever be detected as combed). This setting is known
  5333. as @option{MI} in TFM/VFM vocabulary.
  5334. Default value is @code{80}.
  5335. @end table
  5336. @anchor{p/c/n/u/b meaning}
  5337. @subsection p/c/n/u/b meaning
  5338. @subsubsection p/c/n
  5339. We assume the following telecined stream:
  5340. @example
  5341. Top fields: 1 2 2 3 4
  5342. Bottom fields: 1 2 3 4 4
  5343. @end example
  5344. The numbers correspond to the progressive frame the fields relate to. Here, the
  5345. first two frames are progressive, the 3rd and 4th are combed, and so on.
  5346. When @code{fieldmatch} is configured to run a matching from bottom
  5347. (@option{field}=@var{bottom}) this is how this input stream get transformed:
  5348. @example
  5349. Input stream:
  5350. T 1 2 2 3 4
  5351. B 1 2 3 4 4 <-- matching reference
  5352. Matches: c c n n c
  5353. Output stream:
  5354. T 1 2 3 4 4
  5355. B 1 2 3 4 4
  5356. @end example
  5357. As a result of the field matching, we can see that some frames get duplicated.
  5358. To perform a complete inverse telecine, you need to rely on a decimation filter
  5359. after this operation. See for instance the @ref{decimate} filter.
  5360. The same operation now matching from top fields (@option{field}=@var{top})
  5361. looks like this:
  5362. @example
  5363. Input stream:
  5364. T 1 2 2 3 4 <-- matching reference
  5365. B 1 2 3 4 4
  5366. Matches: c c p p c
  5367. Output stream:
  5368. T 1 2 2 3 4
  5369. B 1 2 2 3 4
  5370. @end example
  5371. In these examples, we can see what @var{p}, @var{c} and @var{n} mean;
  5372. basically, they refer to the frame and field of the opposite parity:
  5373. @itemize
  5374. @item @var{p} matches the field of the opposite parity in the previous frame
  5375. @item @var{c} matches the field of the opposite parity in the current frame
  5376. @item @var{n} matches the field of the opposite parity in the next frame
  5377. @end itemize
  5378. @subsubsection u/b
  5379. The @var{u} and @var{b} matching are a bit special in the sense that they match
  5380. from the opposite parity flag. In the following examples, we assume that we are
  5381. currently matching the 2nd frame (Top:2, bottom:2). According to the match, a
  5382. 'x' is placed above and below each matched fields.
  5383. With bottom matching (@option{field}=@var{bottom}):
  5384. @example
  5385. Match: c p n b u
  5386. x x x x x
  5387. Top 1 2 2 1 2 2 1 2 2 1 2 2 1 2 2
  5388. Bottom 1 2 3 1 2 3 1 2 3 1 2 3 1 2 3
  5389. x x x x x
  5390. Output frames:
  5391. 2 1 2 2 2
  5392. 2 2 2 1 3
  5393. @end example
  5394. With top matching (@option{field}=@var{top}):
  5395. @example
  5396. Match: c p n b u
  5397. x x x x x
  5398. Top 1 2 2 1 2 2 1 2 2 1 2 2 1 2 2
  5399. Bottom 1 2 3 1 2 3 1 2 3 1 2 3 1 2 3
  5400. x x x x x
  5401. Output frames:
  5402. 2 2 2 1 2
  5403. 2 1 3 2 2
  5404. @end example
  5405. @subsection Examples
  5406. Simple IVTC of a top field first telecined stream:
  5407. @example
  5408. fieldmatch=order=tff:combmatch=none, decimate
  5409. @end example
  5410. Advanced IVTC, with fallback on @ref{yadif} for still combed frames:
  5411. @example
  5412. fieldmatch=order=tff:combmatch=full, yadif=deint=interlaced, decimate
  5413. @end example
  5414. @section fieldorder
  5415. Transform the field order of the input video.
  5416. It accepts the following parameters:
  5417. @table @option
  5418. @item order
  5419. The output field order. Valid values are @var{tff} for top field first or @var{bff}
  5420. for bottom field first.
  5421. @end table
  5422. The default value is @samp{tff}.
  5423. The transformation is done by shifting the picture content up or down
  5424. by one line, and filling the remaining line with appropriate picture content.
  5425. This method is consistent with most broadcast field order converters.
  5426. If the input video is not flagged as being interlaced, or it is already
  5427. flagged as being of the required output field order, then this filter does
  5428. not alter the incoming video.
  5429. It is very useful when converting to or from PAL DV material,
  5430. which is bottom field first.
  5431. For example:
  5432. @example
  5433. ffmpeg -i in.vob -vf "fieldorder=bff" out.dv
  5434. @end example
  5435. @section fifo, afifo
  5436. Buffer input images and send them when they are requested.
  5437. It is mainly useful when auto-inserted by the libavfilter
  5438. framework.
  5439. It does not take parameters.
  5440. @section find_rect
  5441. Find a rectangular object
  5442. It accepts the following options:
  5443. @table @option
  5444. @item object
  5445. Filepath of the object image, needs to be in gray8.
  5446. @item threshold
  5447. Detection threshold, default is 0.5.
  5448. @item mipmaps
  5449. Number of mipmaps, default is 3.
  5450. @item xmin, ymin, xmax, ymax
  5451. Specifies the rectangle in which to search.
  5452. @end table
  5453. @subsection Examples
  5454. @itemize
  5455. @item
  5456. Generate a representative palette of a given video using @command{ffmpeg}:
  5457. @example
  5458. ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
  5459. @end example
  5460. @end itemize
  5461. @section cover_rect
  5462. Cover a rectangular object
  5463. It accepts the following options:
  5464. @table @option
  5465. @item cover
  5466. Filepath of the optional cover image, needs to be in yuv420.
  5467. @item mode
  5468. Set covering mode.
  5469. It accepts the following values:
  5470. @table @samp
  5471. @item cover
  5472. cover it by the supplied image
  5473. @item blur
  5474. cover it by interpolating the surrounding pixels
  5475. @end table
  5476. Default value is @var{blur}.
  5477. @end table
  5478. @subsection Examples
  5479. @itemize
  5480. @item
  5481. Generate a representative palette of a given video using @command{ffmpeg}:
  5482. @example
  5483. ffmpeg -i file.ts -vf find_rect=newref.pgm,cover_rect=cover.jpg:mode=cover new.mkv
  5484. @end example
  5485. @end itemize
  5486. @anchor{format}
  5487. @section format
  5488. Convert the input video to one of the specified pixel formats.
  5489. Libavfilter will try to pick one that is suitable as input to
  5490. the next filter.
  5491. It accepts the following parameters:
  5492. @table @option
  5493. @item pix_fmts
  5494. A '|'-separated list of pixel format names, such as
  5495. "pix_fmts=yuv420p|monow|rgb24".
  5496. @end table
  5497. @subsection Examples
  5498. @itemize
  5499. @item
  5500. Convert the input video to the @var{yuv420p} format
  5501. @example
  5502. format=pix_fmts=yuv420p
  5503. @end example
  5504. Convert the input video to any of the formats in the list
  5505. @example
  5506. format=pix_fmts=yuv420p|yuv444p|yuv410p
  5507. @end example
  5508. @end itemize
  5509. @anchor{fps}
  5510. @section fps
  5511. Convert the video to specified constant frame rate by duplicating or dropping
  5512. frames as necessary.
  5513. It accepts the following parameters:
  5514. @table @option
  5515. @item fps
  5516. The desired output frame rate. The default is @code{25}.
  5517. @item round
  5518. Rounding method.
  5519. Possible values are:
  5520. @table @option
  5521. @item zero
  5522. zero round towards 0
  5523. @item inf
  5524. round away from 0
  5525. @item down
  5526. round towards -infinity
  5527. @item up
  5528. round towards +infinity
  5529. @item near
  5530. round to nearest
  5531. @end table
  5532. The default is @code{near}.
  5533. @item start_time
  5534. Assume the first PTS should be the given value, in seconds. This allows for
  5535. padding/trimming at the start of stream. By default, no assumption is made
  5536. about the first frame's expected PTS, so no padding or trimming is done.
  5537. For example, this could be set to 0 to pad the beginning with duplicates of
  5538. the first frame if a video stream starts after the audio stream or to trim any
  5539. frames with a negative PTS.
  5540. @end table
  5541. Alternatively, the options can be specified as a flat string:
  5542. @var{fps}[:@var{round}].
  5543. See also the @ref{setpts} filter.
  5544. @subsection Examples
  5545. @itemize
  5546. @item
  5547. A typical usage in order to set the fps to 25:
  5548. @example
  5549. fps=fps=25
  5550. @end example
  5551. @item
  5552. Sets the fps to 24, using abbreviation and rounding method to round to nearest:
  5553. @example
  5554. fps=fps=film:round=near
  5555. @end example
  5556. @end itemize
  5557. @section framepack
  5558. Pack two different video streams into a stereoscopic video, setting proper
  5559. metadata on supported codecs. The two views should have the same size and
  5560. framerate and processing will stop when the shorter video ends. Please note
  5561. that you may conveniently adjust view properties with the @ref{scale} and
  5562. @ref{fps} filters.
  5563. It accepts the following parameters:
  5564. @table @option
  5565. @item format
  5566. The desired packing format. Supported values are:
  5567. @table @option
  5568. @item sbs
  5569. The views are next to each other (default).
  5570. @item tab
  5571. The views are on top of each other.
  5572. @item lines
  5573. The views are packed by line.
  5574. @item columns
  5575. The views are packed by column.
  5576. @item frameseq
  5577. The views are temporally interleaved.
  5578. @end table
  5579. @end table
  5580. Some examples:
  5581. @example
  5582. # Convert left and right views into a frame-sequential video
  5583. ffmpeg -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
  5584. # Convert views into a side-by-side video with the same output resolution as the input
  5585. 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
  5586. @end example
  5587. @section framerate
  5588. Change the frame rate by interpolating new video output frames from the source
  5589. frames.
  5590. This filter is not designed to function correctly with interlaced media. If
  5591. you wish to change the frame rate of interlaced media then you are required
  5592. to deinterlace before this filter and re-interlace after this filter.
  5593. A description of the accepted options follows.
  5594. @table @option
  5595. @item fps
  5596. Specify the output frames per second. This option can also be specified
  5597. as a value alone. The default is @code{50}.
  5598. @item interp_start
  5599. Specify the start of a range where the output frame will be created as a
  5600. linear interpolation of two frames. The range is [@code{0}-@code{255}],
  5601. the default is @code{15}.
  5602. @item interp_end
  5603. Specify the end of a range where the output frame will be created as a
  5604. linear interpolation of two frames. The range is [@code{0}-@code{255}],
  5605. the default is @code{240}.
  5606. @item scene
  5607. Specify the level at which a scene change is detected as a value between
  5608. 0 and 100 to indicate a new scene; a low value reflects a low
  5609. probability for the current frame to introduce a new scene, while a higher
  5610. value means the current frame is more likely to be one.
  5611. The default is @code{7}.
  5612. @item flags
  5613. Specify flags influencing the filter process.
  5614. Available value for @var{flags} is:
  5615. @table @option
  5616. @item scene_change_detect, scd
  5617. Enable scene change detection using the value of the option @var{scene}.
  5618. This flag is enabled by default.
  5619. @end table
  5620. @end table
  5621. @section framestep
  5622. Select one frame every N-th frame.
  5623. This filter accepts the following option:
  5624. @table @option
  5625. @item step
  5626. Select frame after every @code{step} frames.
  5627. Allowed values are positive integers higher than 0. Default value is @code{1}.
  5628. @end table
  5629. @anchor{frei0r}
  5630. @section frei0r
  5631. Apply a frei0r effect to the input video.
  5632. To enable the compilation of this filter, you need to install the frei0r
  5633. header and configure FFmpeg with @code{--enable-frei0r}.
  5634. It accepts the following parameters:
  5635. @table @option
  5636. @item filter_name
  5637. The name of the frei0r effect to load. If the environment variable
  5638. @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
  5639. directories specified by the colon-separated list in @env{FREIOR_PATH}.
  5640. Otherwise, the standard frei0r paths are searched, in this order:
  5641. @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
  5642. @file{/usr/lib/frei0r-1/}.
  5643. @item filter_params
  5644. A '|'-separated list of parameters to pass to the frei0r effect.
  5645. @end table
  5646. A frei0r effect parameter can be a boolean (its value is either
  5647. "y" or "n"), a double, a color (specified as
  5648. @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
  5649. numbers between 0.0 and 1.0, inclusive) or by a color description specified in the "Color"
  5650. section in the ffmpeg-utils manual), a position (specified as @var{X}/@var{Y}, where
  5651. @var{X} and @var{Y} are floating point numbers) and/or a string.
  5652. The number and types of parameters depend on the loaded effect. If an
  5653. effect parameter is not specified, the default value is set.
  5654. @subsection Examples
  5655. @itemize
  5656. @item
  5657. Apply the distort0r effect, setting the first two double parameters:
  5658. @example
  5659. frei0r=filter_name=distort0r:filter_params=0.5|0.01
  5660. @end example
  5661. @item
  5662. Apply the colordistance effect, taking a color as the first parameter:
  5663. @example
  5664. frei0r=colordistance:0.2/0.3/0.4
  5665. frei0r=colordistance:violet
  5666. frei0r=colordistance:0x112233
  5667. @end example
  5668. @item
  5669. Apply the perspective effect, specifying the top left and top right image
  5670. positions:
  5671. @example
  5672. frei0r=perspective:0.2/0.2|0.8/0.2
  5673. @end example
  5674. @end itemize
  5675. For more information, see
  5676. @url{http://frei0r.dyne.org}
  5677. @section fspp
  5678. Apply fast and simple postprocessing. It is a faster version of @ref{spp}.
  5679. It splits (I)DCT into horizontal/vertical passes. Unlike the simple post-
  5680. processing filter, one of them is performed once per block, not per pixel.
  5681. This allows for much higher speed.
  5682. The filter accepts the following options:
  5683. @table @option
  5684. @item quality
  5685. Set quality. This option defines the number of levels for averaging. It accepts
  5686. an integer in the range 4-5. Default value is @code{4}.
  5687. @item qp
  5688. Force a constant quantization parameter. It accepts an integer in range 0-63.
  5689. If not set, the filter will use the QP from the video stream (if available).
  5690. @item strength
  5691. Set filter strength. It accepts an integer in range -15 to 32. Lower values mean
  5692. more details but also more artifacts, while higher values make the image smoother
  5693. but also blurrier. Default value is @code{0} − PSNR optimal.
  5694. @item use_bframe_qp
  5695. Enable the use of the QP from the B-Frames if set to @code{1}. Using this
  5696. option may cause flicker since the B-Frames have often larger QP. Default is
  5697. @code{0} (not enabled).
  5698. @end table
  5699. @section geq
  5700. The filter accepts the following options:
  5701. @table @option
  5702. @item lum_expr, lum
  5703. Set the luminance expression.
  5704. @item cb_expr, cb
  5705. Set the chrominance blue expression.
  5706. @item cr_expr, cr
  5707. Set the chrominance red expression.
  5708. @item alpha_expr, a
  5709. Set the alpha expression.
  5710. @item red_expr, r
  5711. Set the red expression.
  5712. @item green_expr, g
  5713. Set the green expression.
  5714. @item blue_expr, b
  5715. Set the blue expression.
  5716. @end table
  5717. The colorspace is selected according to the specified options. If one
  5718. of the @option{lum_expr}, @option{cb_expr}, or @option{cr_expr}
  5719. options is specified, the filter will automatically select a YCbCr
  5720. colorspace. If one of the @option{red_expr}, @option{green_expr}, or
  5721. @option{blue_expr} options is specified, it will select an RGB
  5722. colorspace.
  5723. If one of the chrominance expression is not defined, it falls back on the other
  5724. one. If no alpha expression is specified it will evaluate to opaque value.
  5725. If none of chrominance expressions are specified, they will evaluate
  5726. to the luminance expression.
  5727. The expressions can use the following variables and functions:
  5728. @table @option
  5729. @item N
  5730. The sequential number of the filtered frame, starting from @code{0}.
  5731. @item X
  5732. @item Y
  5733. The coordinates of the current sample.
  5734. @item W
  5735. @item H
  5736. The width and height of the image.
  5737. @item SW
  5738. @item SH
  5739. Width and height scale depending on the currently filtered plane. It is the
  5740. ratio between the corresponding luma plane number of pixels and the current
  5741. plane ones. E.g. for YUV4:2:0 the values are @code{1,1} for the luma plane, and
  5742. @code{0.5,0.5} for chroma planes.
  5743. @item T
  5744. Time of the current frame, expressed in seconds.
  5745. @item p(x, y)
  5746. Return the value of the pixel at location (@var{x},@var{y}) of the current
  5747. plane.
  5748. @item lum(x, y)
  5749. Return the value of the pixel at location (@var{x},@var{y}) of the luminance
  5750. plane.
  5751. @item cb(x, y)
  5752. Return the value of the pixel at location (@var{x},@var{y}) of the
  5753. blue-difference chroma plane. Return 0 if there is no such plane.
  5754. @item cr(x, y)
  5755. Return the value of the pixel at location (@var{x},@var{y}) of the
  5756. red-difference chroma plane. Return 0 if there is no such plane.
  5757. @item r(x, y)
  5758. @item g(x, y)
  5759. @item b(x, y)
  5760. Return the value of the pixel at location (@var{x},@var{y}) of the
  5761. red/green/blue component. Return 0 if there is no such component.
  5762. @item alpha(x, y)
  5763. Return the value of the pixel at location (@var{x},@var{y}) of the alpha
  5764. plane. Return 0 if there is no such plane.
  5765. @end table
  5766. For functions, if @var{x} and @var{y} are outside the area, the value will be
  5767. automatically clipped to the closer edge.
  5768. @subsection Examples
  5769. @itemize
  5770. @item
  5771. Flip the image horizontally:
  5772. @example
  5773. geq=p(W-X\,Y)
  5774. @end example
  5775. @item
  5776. Generate a bidimensional sine wave, with angle @code{PI/3} and a
  5777. wavelength of 100 pixels:
  5778. @example
  5779. geq=128 + 100*sin(2*(PI/100)*(cos(PI/3)*(X-50*T) + sin(PI/3)*Y)):128:128
  5780. @end example
  5781. @item
  5782. Generate a fancy enigmatic moving light:
  5783. @example
  5784. 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
  5785. @end example
  5786. @item
  5787. Generate a quick emboss effect:
  5788. @example
  5789. format=gray,geq=lum_expr='(p(X,Y)+(256-p(X-4,Y-4)))/2'
  5790. @end example
  5791. @item
  5792. Modify RGB components depending on pixel position:
  5793. @example
  5794. geq=r='X/W*r(X,Y)':g='(1-X/W)*g(X,Y)':b='(H-Y)/H*b(X,Y)'
  5795. @end example
  5796. @item
  5797. Create a radial gradient that is the same size as the input (also see
  5798. the @ref{vignette} filter):
  5799. @example
  5800. geq=lum=255*gauss((X/W-0.5)*3)*gauss((Y/H-0.5)*3)/gauss(0)/gauss(0),format=gray
  5801. @end example
  5802. @end itemize
  5803. @section gradfun
  5804. Fix the banding artifacts that are sometimes introduced into nearly flat
  5805. regions by truncation to 8bit color depth.
  5806. Interpolate the gradients that should go where the bands are, and
  5807. dither them.
  5808. It is designed for playback only. Do not use it prior to
  5809. lossy compression, because compression tends to lose the dither and
  5810. bring back the bands.
  5811. It accepts the following parameters:
  5812. @table @option
  5813. @item strength
  5814. The maximum amount by which the filter will change any one pixel. This is also
  5815. the threshold for detecting nearly flat regions. Acceptable values range from
  5816. .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
  5817. valid range.
  5818. @item radius
  5819. The neighborhood to fit the gradient to. A larger radius makes for smoother
  5820. gradients, but also prevents the filter from modifying the pixels near detailed
  5821. regions. Acceptable values are 8-32; the default value is 16. Out-of-range
  5822. values will be clipped to the valid range.
  5823. @end table
  5824. Alternatively, the options can be specified as a flat string:
  5825. @var{strength}[:@var{radius}]
  5826. @subsection Examples
  5827. @itemize
  5828. @item
  5829. Apply the filter with a @code{3.5} strength and radius of @code{8}:
  5830. @example
  5831. gradfun=3.5:8
  5832. @end example
  5833. @item
  5834. Specify radius, omitting the strength (which will fall-back to the default
  5835. value):
  5836. @example
  5837. gradfun=radius=8
  5838. @end example
  5839. @end itemize
  5840. @anchor{haldclut}
  5841. @section haldclut
  5842. Apply a Hald CLUT to a video stream.
  5843. First input is the video stream to process, and second one is the Hald CLUT.
  5844. The Hald CLUT input can be a simple picture or a complete video stream.
  5845. The filter accepts the following options:
  5846. @table @option
  5847. @item shortest
  5848. Force termination when the shortest input terminates. Default is @code{0}.
  5849. @item repeatlast
  5850. Continue applying the last CLUT after the end of the stream. A value of
  5851. @code{0} disable the filter after the last frame of the CLUT is reached.
  5852. Default is @code{1}.
  5853. @end table
  5854. @code{haldclut} also has the same interpolation options as @ref{lut3d} (both
  5855. filters share the same internals).
  5856. More information about the Hald CLUT can be found on Eskil Steenberg's website
  5857. (Hald CLUT author) at @url{http://www.quelsolaar.com/technology/clut.html}.
  5858. @subsection Workflow examples
  5859. @subsubsection Hald CLUT video stream
  5860. Generate an identity Hald CLUT stream altered with various effects:
  5861. @example
  5862. 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
  5863. @end example
  5864. Note: make sure you use a lossless codec.
  5865. Then use it with @code{haldclut} to apply it on some random stream:
  5866. @example
  5867. ffmpeg -f lavfi -i mandelbrot -i clut.nut -filter_complex '[0][1] haldclut' -t 20 mandelclut.mkv
  5868. @end example
  5869. The Hald CLUT will be applied to the 10 first seconds (duration of
  5870. @file{clut.nut}), then the latest picture of that CLUT stream will be applied
  5871. to the remaining frames of the @code{mandelbrot} stream.
  5872. @subsubsection Hald CLUT with preview
  5873. A Hald CLUT is supposed to be a squared image of @code{Level*Level*Level} by
  5874. @code{Level*Level*Level} pixels. For a given Hald CLUT, FFmpeg will select the
  5875. biggest possible square starting at the top left of the picture. The remaining
  5876. padding pixels (bottom or right) will be ignored. This area can be used to add
  5877. a preview of the Hald CLUT.
  5878. Typically, the following generated Hald CLUT will be supported by the
  5879. @code{haldclut} filter:
  5880. @example
  5881. ffmpeg -f lavfi -i @ref{haldclutsrc}=8 -vf "
  5882. pad=iw+320 [padded_clut];
  5883. smptebars=s=320x256, split [a][b];
  5884. [padded_clut][a] overlay=W-320:h, curves=color_negative [main];
  5885. [main][b] overlay=W-320" -frames:v 1 clut.png
  5886. @end example
  5887. It contains the original and a preview of the effect of the CLUT: SMPTE color
  5888. bars are displayed on the right-top, and below the same color bars processed by
  5889. the color changes.
  5890. Then, the effect of this Hald CLUT can be visualized with:
  5891. @example
  5892. ffplay input.mkv -vf "movie=clut.png, [in] haldclut"
  5893. @end example
  5894. @section hflip
  5895. Flip the input video horizontally.
  5896. For example, to horizontally flip the input video with @command{ffmpeg}:
  5897. @example
  5898. ffmpeg -i in.avi -vf "hflip" out.avi
  5899. @end example
  5900. @section histeq
  5901. This filter applies a global color histogram equalization on a
  5902. per-frame basis.
  5903. It can be used to correct video that has a compressed range of pixel
  5904. intensities. The filter redistributes the pixel intensities to
  5905. equalize their distribution across the intensity range. It may be
  5906. viewed as an "automatically adjusting contrast filter". This filter is
  5907. useful only for correcting degraded or poorly captured source
  5908. video.
  5909. The filter accepts the following options:
  5910. @table @option
  5911. @item strength
  5912. Determine the amount of equalization to be applied. As the strength
  5913. is reduced, the distribution of pixel intensities more-and-more
  5914. approaches that of the input frame. The value must be a float number
  5915. in the range [0,1] and defaults to 0.200.
  5916. @item intensity
  5917. Set the maximum intensity that can generated and scale the output
  5918. values appropriately. The strength should be set as desired and then
  5919. the intensity can be limited if needed to avoid washing-out. The value
  5920. must be a float number in the range [0,1] and defaults to 0.210.
  5921. @item antibanding
  5922. Set the antibanding level. If enabled the filter will randomly vary
  5923. the luminance of output pixels by a small amount to avoid banding of
  5924. the histogram. Possible values are @code{none}, @code{weak} or
  5925. @code{strong}. It defaults to @code{none}.
  5926. @end table
  5927. @section histogram
  5928. Compute and draw a color distribution histogram for the input video.
  5929. The computed histogram is a representation of the color component
  5930. distribution in an image.
  5931. Standard histogram displays the color components distribution in an image.
  5932. Displays color graph for each color component. Shows distribution of
  5933. the Y, U, V, A or R, G, B components, depending on input format, in the
  5934. current frame. Below each graph a color component scale meter is shown.
  5935. The filter accepts the following options:
  5936. @table @option
  5937. @item level_height
  5938. Set height of level. Default value is @code{200}.
  5939. Allowed range is [50, 2048].
  5940. @item scale_height
  5941. Set height of color scale. Default value is @code{12}.
  5942. Allowed range is [0, 40].
  5943. @item display_mode
  5944. Set display mode.
  5945. It accepts the following values:
  5946. @table @samp
  5947. @item parade
  5948. Per color component graphs are placed below each other.
  5949. @item overlay
  5950. Presents information identical to that in the @code{parade}, except
  5951. that the graphs representing color components are superimposed directly
  5952. over one another.
  5953. @end table
  5954. Default is @code{parade}.
  5955. @item levels_mode
  5956. Set mode. Can be either @code{linear}, or @code{logarithmic}.
  5957. Default is @code{linear}.
  5958. @item components
  5959. Set what color components to display.
  5960. Default is @code{7}.
  5961. @end table
  5962. @subsection Examples
  5963. @itemize
  5964. @item
  5965. Calculate and draw histogram:
  5966. @example
  5967. ffplay -i input -vf histogram
  5968. @end example
  5969. @end itemize
  5970. @anchor{hqdn3d}
  5971. @section hqdn3d
  5972. This is a high precision/quality 3d denoise filter. It aims to reduce
  5973. image noise, producing smooth images and making still images really
  5974. still. It should enhance compressibility.
  5975. It accepts the following optional parameters:
  5976. @table @option
  5977. @item luma_spatial
  5978. A non-negative floating point number which specifies spatial luma strength.
  5979. It defaults to 4.0.
  5980. @item chroma_spatial
  5981. A non-negative floating point number which specifies spatial chroma strength.
  5982. It defaults to 3.0*@var{luma_spatial}/4.0.
  5983. @item luma_tmp
  5984. A floating point number which specifies luma temporal strength. It defaults to
  5985. 6.0*@var{luma_spatial}/4.0.
  5986. @item chroma_tmp
  5987. A floating point number which specifies chroma temporal strength. It defaults to
  5988. @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
  5989. @end table
  5990. @section hqx
  5991. Apply a high-quality magnification filter designed for pixel art. This filter
  5992. was originally created by Maxim Stepin.
  5993. It accepts the following option:
  5994. @table @option
  5995. @item n
  5996. Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for
  5997. @code{hq3x} and @code{4} for @code{hq4x}.
  5998. Default is @code{3}.
  5999. @end table
  6000. @section hstack
  6001. Stack input videos horizontally.
  6002. All streams must be of same pixel format and of same height.
  6003. Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
  6004. to create same output.
  6005. The filter accept the following option:
  6006. @table @option
  6007. @item inputs
  6008. Set number of input streams. Default is 2.
  6009. @item shortest
  6010. If set to 1, force the output to terminate when the shortest input
  6011. terminates. Default value is 0.
  6012. @end table
  6013. @section hue
  6014. Modify the hue and/or the saturation of the input.
  6015. It accepts the following parameters:
  6016. @table @option
  6017. @item h
  6018. Specify the hue angle as a number of degrees. It accepts an expression,
  6019. and defaults to "0".
  6020. @item s
  6021. Specify the saturation in the [-10,10] range. It accepts an expression and
  6022. defaults to "1".
  6023. @item H
  6024. Specify the hue angle as a number of radians. It accepts an
  6025. expression, and defaults to "0".
  6026. @item b
  6027. Specify the brightness in the [-10,10] range. It accepts an expression and
  6028. defaults to "0".
  6029. @end table
  6030. @option{h} and @option{H} are mutually exclusive, and can't be
  6031. specified at the same time.
  6032. The @option{b}, @option{h}, @option{H} and @option{s} option values are
  6033. expressions containing the following constants:
  6034. @table @option
  6035. @item n
  6036. frame count of the input frame starting from 0
  6037. @item pts
  6038. presentation timestamp of the input frame expressed in time base units
  6039. @item r
  6040. frame rate of the input video, NAN if the input frame rate is unknown
  6041. @item t
  6042. timestamp expressed in seconds, NAN if the input timestamp is unknown
  6043. @item tb
  6044. time base of the input video
  6045. @end table
  6046. @subsection Examples
  6047. @itemize
  6048. @item
  6049. Set the hue to 90 degrees and the saturation to 1.0:
  6050. @example
  6051. hue=h=90:s=1
  6052. @end example
  6053. @item
  6054. Same command but expressing the hue in radians:
  6055. @example
  6056. hue=H=PI/2:s=1
  6057. @end example
  6058. @item
  6059. Rotate hue and make the saturation swing between 0
  6060. and 2 over a period of 1 second:
  6061. @example
  6062. hue="H=2*PI*t: s=sin(2*PI*t)+1"
  6063. @end example
  6064. @item
  6065. Apply a 3 seconds saturation fade-in effect starting at 0:
  6066. @example
  6067. hue="s=min(t/3\,1)"
  6068. @end example
  6069. The general fade-in expression can be written as:
  6070. @example
  6071. hue="s=min(0\, max((t-START)/DURATION\, 1))"
  6072. @end example
  6073. @item
  6074. Apply a 3 seconds saturation fade-out effect starting at 5 seconds:
  6075. @example
  6076. hue="s=max(0\, min(1\, (8-t)/3))"
  6077. @end example
  6078. The general fade-out expression can be written as:
  6079. @example
  6080. hue="s=max(0\, min(1\, (START+DURATION-t)/DURATION))"
  6081. @end example
  6082. @end itemize
  6083. @subsection Commands
  6084. This filter supports the following commands:
  6085. @table @option
  6086. @item b
  6087. @item s
  6088. @item h
  6089. @item H
  6090. Modify the hue and/or the saturation and/or brightness of the input video.
  6091. The command accepts the same syntax of the corresponding option.
  6092. If the specified expression is not valid, it is kept at its current
  6093. value.
  6094. @end table
  6095. @section idet
  6096. Detect video interlacing type.
  6097. This filter tries to detect if the input frames as interlaced, progressive,
  6098. top or bottom field first. It will also try and detect fields that are
  6099. repeated between adjacent frames (a sign of telecine).
  6100. Single frame detection considers only immediately adjacent frames when classifying each frame.
  6101. Multiple frame detection incorporates the classification history of previous frames.
  6102. The filter will log these metadata values:
  6103. @table @option
  6104. @item single.current_frame
  6105. Detected type of current frame using single-frame detection. One of:
  6106. ``tff'' (top field first), ``bff'' (bottom field first),
  6107. ``progressive'', or ``undetermined''
  6108. @item single.tff
  6109. Cumulative number of frames detected as top field first using single-frame detection.
  6110. @item multiple.tff
  6111. Cumulative number of frames detected as top field first using multiple-frame detection.
  6112. @item single.bff
  6113. Cumulative number of frames detected as bottom field first using single-frame detection.
  6114. @item multiple.current_frame
  6115. Detected type of current frame using multiple-frame detection. One of:
  6116. ``tff'' (top field first), ``bff'' (bottom field first),
  6117. ``progressive'', or ``undetermined''
  6118. @item multiple.bff
  6119. Cumulative number of frames detected as bottom field first using multiple-frame detection.
  6120. @item single.progressive
  6121. Cumulative number of frames detected as progressive using single-frame detection.
  6122. @item multiple.progressive
  6123. Cumulative number of frames detected as progressive using multiple-frame detection.
  6124. @item single.undetermined
  6125. Cumulative number of frames that could not be classified using single-frame detection.
  6126. @item multiple.undetermined
  6127. Cumulative number of frames that could not be classified using multiple-frame detection.
  6128. @item repeated.current_frame
  6129. Which field in the current frame is repeated from the last. One of ``neither'', ``top'', or ``bottom''.
  6130. @item repeated.neither
  6131. Cumulative number of frames with no repeated field.
  6132. @item repeated.top
  6133. Cumulative number of frames with the top field repeated from the previous frame's top field.
  6134. @item repeated.bottom
  6135. Cumulative number of frames with the bottom field repeated from the previous frame's bottom field.
  6136. @end table
  6137. The filter accepts the following options:
  6138. @table @option
  6139. @item intl_thres
  6140. Set interlacing threshold.
  6141. @item prog_thres
  6142. Set progressive threshold.
  6143. @item repeat_thres
  6144. Threshold for repeated field detection.
  6145. @item half_life
  6146. Number of frames after which a given frame's contribution to the
  6147. statistics is halved (i.e., it contributes only 0.5 to it's
  6148. classification). The default of 0 means that all frames seen are given
  6149. full weight of 1.0 forever.
  6150. @item analyze_interlaced_flag
  6151. When this is not 0 then idet will use the specified number of frames to determine
  6152. if the interlaced flag is accurate, it will not count undetermined frames.
  6153. If the flag is found to be accurate it will be used without any further
  6154. computations, if it is found to be inaccurate it will be cleared without any
  6155. further computations. This allows inserting the idet filter as a low computational
  6156. method to clean up the interlaced flag
  6157. @end table
  6158. @section il
  6159. Deinterleave or interleave fields.
  6160. This filter allows one to process interlaced images fields without
  6161. deinterlacing them. Deinterleaving splits the input frame into 2
  6162. fields (so called half pictures). Odd lines are moved to the top
  6163. half of the output image, even lines to the bottom half.
  6164. You can process (filter) them independently and then re-interleave them.
  6165. The filter accepts the following options:
  6166. @table @option
  6167. @item luma_mode, l
  6168. @item chroma_mode, c
  6169. @item alpha_mode, a
  6170. Available values for @var{luma_mode}, @var{chroma_mode} and
  6171. @var{alpha_mode} are:
  6172. @table @samp
  6173. @item none
  6174. Do nothing.
  6175. @item deinterleave, d
  6176. Deinterleave fields, placing one above the other.
  6177. @item interleave, i
  6178. Interleave fields. Reverse the effect of deinterleaving.
  6179. @end table
  6180. Default value is @code{none}.
  6181. @item luma_swap, ls
  6182. @item chroma_swap, cs
  6183. @item alpha_swap, as
  6184. Swap luma/chroma/alpha fields. Exchange even & odd lines. Default value is @code{0}.
  6185. @end table
  6186. @section inflate
  6187. Apply inflate effect to the video.
  6188. This filter replaces the pixel by the local(3x3) average by taking into account
  6189. only values higher than the pixel.
  6190. It accepts the following options:
  6191. @table @option
  6192. @item threshold0
  6193. @item threshold1
  6194. @item threshold2
  6195. @item threshold3
  6196. Limit the maximum change for each plane, default is 65535.
  6197. If 0, plane will remain unchanged.
  6198. @end table
  6199. @section interlace
  6200. Simple interlacing filter from progressive contents. This interleaves upper (or
  6201. lower) lines from odd frames with lower (or upper) lines from even frames,
  6202. halving the frame rate and preserving image height.
  6203. @example
  6204. Original Original New Frame
  6205. Frame 'j' Frame 'j+1' (tff)
  6206. ========== =========== ==================
  6207. Line 0 --------------------> Frame 'j' Line 0
  6208. Line 1 Line 1 ----> Frame 'j+1' Line 1
  6209. Line 2 ---------------------> Frame 'j' Line 2
  6210. Line 3 Line 3 ----> Frame 'j+1' Line 3
  6211. ... ... ...
  6212. New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
  6213. @end example
  6214. It accepts the following optional parameters:
  6215. @table @option
  6216. @item scan
  6217. This determines whether the interlaced frame is taken from the even
  6218. (tff - default) or odd (bff) lines of the progressive frame.
  6219. @item lowpass
  6220. Enable (default) or disable the vertical lowpass filter to avoid twitter
  6221. interlacing and reduce moire patterns.
  6222. @end table
  6223. @section kerndeint
  6224. Deinterlace input video by applying Donald Graft's adaptive kernel
  6225. deinterling. Work on interlaced parts of a video to produce
  6226. progressive frames.
  6227. The description of the accepted parameters follows.
  6228. @table @option
  6229. @item thresh
  6230. Set the threshold which affects the filter's tolerance when
  6231. determining if a pixel line must be processed. It must be an integer
  6232. in the range [0,255] and defaults to 10. A value of 0 will result in
  6233. applying the process on every pixels.
  6234. @item map
  6235. Paint pixels exceeding the threshold value to white if set to 1.
  6236. Default is 0.
  6237. @item order
  6238. Set the fields order. Swap fields if set to 1, leave fields alone if
  6239. 0. Default is 0.
  6240. @item sharp
  6241. Enable additional sharpening if set to 1. Default is 0.
  6242. @item twoway
  6243. Enable twoway sharpening if set to 1. Default is 0.
  6244. @end table
  6245. @subsection Examples
  6246. @itemize
  6247. @item
  6248. Apply default values:
  6249. @example
  6250. kerndeint=thresh=10:map=0:order=0:sharp=0:twoway=0
  6251. @end example
  6252. @item
  6253. Enable additional sharpening:
  6254. @example
  6255. kerndeint=sharp=1
  6256. @end example
  6257. @item
  6258. Paint processed pixels in white:
  6259. @example
  6260. kerndeint=map=1
  6261. @end example
  6262. @end itemize
  6263. @section lenscorrection
  6264. Correct radial lens distortion
  6265. This filter can be used to correct for radial distortion as can result from the use
  6266. of wide angle lenses, and thereby re-rectify the image. To find the right parameters
  6267. one can use tools available for example as part of opencv or simply trial-and-error.
  6268. To use opencv use the calibration sample (under samples/cpp) from the opencv sources
  6269. and extract the k1 and k2 coefficients from the resulting matrix.
  6270. Note that effectively the same filter is available in the open-source tools Krita and
  6271. Digikam from the KDE project.
  6272. In contrast to the @ref{vignette} filter, which can also be used to compensate lens errors,
  6273. this filter corrects the distortion of the image, whereas @ref{vignette} corrects the
  6274. brightness distribution, so you may want to use both filters together in certain
  6275. cases, though you will have to take care of ordering, i.e. whether vignetting should
  6276. be applied before or after lens correction.
  6277. @subsection Options
  6278. The filter accepts the following options:
  6279. @table @option
  6280. @item cx
  6281. Relative x-coordinate of the focal point of the image, and thereby the center of the
  6282. distortion. This value has a range [0,1] and is expressed as fractions of the image
  6283. width.
  6284. @item cy
  6285. Relative y-coordinate of the focal point of the image, and thereby the center of the
  6286. distortion. This value has a range [0,1] and is expressed as fractions of the image
  6287. height.
  6288. @item k1
  6289. Coefficient of the quadratic correction term. 0.5 means no correction.
  6290. @item k2
  6291. Coefficient of the double quadratic correction term. 0.5 means no correction.
  6292. @end table
  6293. The formula that generates the correction is:
  6294. @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)
  6295. where @var{r_0} is halve of the image diagonal and @var{r_src} and @var{r_tgt} are the
  6296. distances from the focal point in the source and target images, respectively.
  6297. @section loop, aloop
  6298. Loop video frames or audio samples.
  6299. Those filters accepts the following options:
  6300. @table @option
  6301. @item loop
  6302. Set the number of loops.
  6303. @item size
  6304. Set maximal size in number of frames for @code{loop} filter or maximal number
  6305. of samples in case of @code{aloop} filter.
  6306. @item start
  6307. Set first frame of loop for @code{loop} filter or first sample of loop in case
  6308. of @code{aloop} filter.
  6309. @end table
  6310. @anchor{lut3d}
  6311. @section lut3d
  6312. Apply a 3D LUT to an input video.
  6313. The filter accepts the following options:
  6314. @table @option
  6315. @item file
  6316. Set the 3D LUT file name.
  6317. Currently supported formats:
  6318. @table @samp
  6319. @item 3dl
  6320. AfterEffects
  6321. @item cube
  6322. Iridas
  6323. @item dat
  6324. DaVinci
  6325. @item m3d
  6326. Pandora
  6327. @end table
  6328. @item interp
  6329. Select interpolation mode.
  6330. Available values are:
  6331. @table @samp
  6332. @item nearest
  6333. Use values from the nearest defined point.
  6334. @item trilinear
  6335. Interpolate values using the 8 points defining a cube.
  6336. @item tetrahedral
  6337. Interpolate values using a tetrahedron.
  6338. @end table
  6339. @end table
  6340. @section lut, lutrgb, lutyuv
  6341. Compute a look-up table for binding each pixel component input value
  6342. to an output value, and apply it to the input video.
  6343. @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
  6344. to an RGB input video.
  6345. These filters accept the following parameters:
  6346. @table @option
  6347. @item c0
  6348. set first pixel component expression
  6349. @item c1
  6350. set second pixel component expression
  6351. @item c2
  6352. set third pixel component expression
  6353. @item c3
  6354. set fourth pixel component expression, corresponds to the alpha component
  6355. @item r
  6356. set red component expression
  6357. @item g
  6358. set green component expression
  6359. @item b
  6360. set blue component expression
  6361. @item a
  6362. alpha component expression
  6363. @item y
  6364. set Y/luminance component expression
  6365. @item u
  6366. set U/Cb component expression
  6367. @item v
  6368. set V/Cr component expression
  6369. @end table
  6370. Each of them specifies the expression to use for computing the lookup table for
  6371. the corresponding pixel component values.
  6372. The exact component associated to each of the @var{c*} options depends on the
  6373. format in input.
  6374. The @var{lut} filter requires either YUV or RGB pixel formats in input,
  6375. @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
  6376. The expressions can contain the following constants and functions:
  6377. @table @option
  6378. @item w
  6379. @item h
  6380. The input width and height.
  6381. @item val
  6382. The input value for the pixel component.
  6383. @item clipval
  6384. The input value, clipped to the @var{minval}-@var{maxval} range.
  6385. @item maxval
  6386. The maximum value for the pixel component.
  6387. @item minval
  6388. The minimum value for the pixel component.
  6389. @item negval
  6390. The negated value for the pixel component value, clipped to the
  6391. @var{minval}-@var{maxval} range; it corresponds to the expression
  6392. "maxval-clipval+minval".
  6393. @item clip(val)
  6394. The computed value in @var{val}, clipped to the
  6395. @var{minval}-@var{maxval} range.
  6396. @item gammaval(gamma)
  6397. The computed gamma correction value of the pixel component value,
  6398. clipped to the @var{minval}-@var{maxval} range. It corresponds to the
  6399. expression
  6400. "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
  6401. @end table
  6402. All expressions default to "val".
  6403. @subsection Examples
  6404. @itemize
  6405. @item
  6406. Negate input video:
  6407. @example
  6408. lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
  6409. lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
  6410. @end example
  6411. The above is the same as:
  6412. @example
  6413. lutrgb="r=negval:g=negval:b=negval"
  6414. lutyuv="y=negval:u=negval:v=negval"
  6415. @end example
  6416. @item
  6417. Negate luminance:
  6418. @example
  6419. lutyuv=y=negval
  6420. @end example
  6421. @item
  6422. Remove chroma components, turning the video into a graytone image:
  6423. @example
  6424. lutyuv="u=128:v=128"
  6425. @end example
  6426. @item
  6427. Apply a luma burning effect:
  6428. @example
  6429. lutyuv="y=2*val"
  6430. @end example
  6431. @item
  6432. Remove green and blue components:
  6433. @example
  6434. lutrgb="g=0:b=0"
  6435. @end example
  6436. @item
  6437. Set a constant alpha channel value on input:
  6438. @example
  6439. format=rgba,lutrgb=a="maxval-minval/2"
  6440. @end example
  6441. @item
  6442. Correct luminance gamma by a factor of 0.5:
  6443. @example
  6444. lutyuv=y=gammaval(0.5)
  6445. @end example
  6446. @item
  6447. Discard least significant bits of luma:
  6448. @example
  6449. lutyuv=y='bitand(val, 128+64+32)'
  6450. @end example
  6451. @end itemize
  6452. @section maskedmerge
  6453. Merge the first input stream with the second input stream using per pixel
  6454. weights in the third input stream.
  6455. A value of 0 in the third stream pixel component means that pixel component
  6456. from first stream is returned unchanged, while maximum value (eg. 255 for
  6457. 8-bit videos) means that pixel component from second stream is returned
  6458. unchanged. Intermediate values define the amount of merging between both
  6459. input stream's pixel components.
  6460. This filter accepts the following options:
  6461. @table @option
  6462. @item planes
  6463. Set which planes will be processed as bitmap, unprocessed planes will be
  6464. copied from first stream.
  6465. By default value 0xf, all planes will be processed.
  6466. @end table
  6467. @section mcdeint
  6468. Apply motion-compensation deinterlacing.
  6469. It needs one field per frame as input and must thus be used together
  6470. with yadif=1/3 or equivalent.
  6471. This filter accepts the following options:
  6472. @table @option
  6473. @item mode
  6474. Set the deinterlacing mode.
  6475. It accepts one of the following values:
  6476. @table @samp
  6477. @item fast
  6478. @item medium
  6479. @item slow
  6480. use iterative motion estimation
  6481. @item extra_slow
  6482. like @samp{slow}, but use multiple reference frames.
  6483. @end table
  6484. Default value is @samp{fast}.
  6485. @item parity
  6486. Set the picture field parity assumed for the input video. It must be
  6487. one of the following values:
  6488. @table @samp
  6489. @item 0, tff
  6490. assume top field first
  6491. @item 1, bff
  6492. assume bottom field first
  6493. @end table
  6494. Default value is @samp{bff}.
  6495. @item qp
  6496. Set per-block quantization parameter (QP) used by the internal
  6497. encoder.
  6498. Higher values should result in a smoother motion vector field but less
  6499. optimal individual vectors. Default value is 1.
  6500. @end table
  6501. @section mergeplanes
  6502. Merge color channel components from several video streams.
  6503. The filter accepts up to 4 input streams, and merge selected input
  6504. planes to the output video.
  6505. This filter accepts the following options:
  6506. @table @option
  6507. @item mapping
  6508. Set input to output plane mapping. Default is @code{0}.
  6509. The mappings is specified as a bitmap. It should be specified as a
  6510. hexadecimal number in the form 0xAa[Bb[Cc[Dd]]]. 'Aa' describes the
  6511. mapping for the first plane of the output stream. 'A' sets the number of
  6512. the input stream to use (from 0 to 3), and 'a' the plane number of the
  6513. corresponding input to use (from 0 to 3). The rest of the mappings is
  6514. similar, 'Bb' describes the mapping for the output stream second
  6515. plane, 'Cc' describes the mapping for the output stream third plane and
  6516. 'Dd' describes the mapping for the output stream fourth plane.
  6517. @item format
  6518. Set output pixel format. Default is @code{yuva444p}.
  6519. @end table
  6520. @subsection Examples
  6521. @itemize
  6522. @item
  6523. Merge three gray video streams of same width and height into single video stream:
  6524. @example
  6525. [a0][a1][a2]mergeplanes=0x001020:yuv444p
  6526. @end example
  6527. @item
  6528. Merge 1st yuv444p stream and 2nd gray video stream into yuva444p video stream:
  6529. @example
  6530. [a0][a1]mergeplanes=0x00010210:yuva444p
  6531. @end example
  6532. @item
  6533. Swap Y and A plane in yuva444p stream:
  6534. @example
  6535. format=yuva444p,mergeplanes=0x03010200:yuva444p
  6536. @end example
  6537. @item
  6538. Swap U and V plane in yuv420p stream:
  6539. @example
  6540. format=yuv420p,mergeplanes=0x000201:yuv420p
  6541. @end example
  6542. @item
  6543. Cast a rgb24 clip to yuv444p:
  6544. @example
  6545. format=rgb24,mergeplanes=0x000102:yuv444p
  6546. @end example
  6547. @end itemize
  6548. @section metadata, ametadata
  6549. Manipulate frame metadata.
  6550. This filter accepts the following options:
  6551. @table @option
  6552. @item mode
  6553. Set mode of operation of the filter.
  6554. Can be one of the following:
  6555. @table @samp
  6556. @item select
  6557. If both @code{value} and @code{key} is set, select frames
  6558. which have such metadata. If only @code{key} is set, select
  6559. every frame that has such key in metadata.
  6560. @item add
  6561. Add new metadata @code{key} and @code{value}. If key is already available
  6562. do nothing.
  6563. @item modify
  6564. Modify value of already present key.
  6565. @item delete
  6566. If @code{value} is set, delete only keys that have such value.
  6567. Otherwise, delete key.
  6568. @item print
  6569. Print key and its value if metadata was found. If @code{key} is not set print all
  6570. metadata values available in frame.
  6571. @end table
  6572. @item key
  6573. Set key used with all modes. Must be set for all modes except @code{print}.
  6574. @item value
  6575. Set metadata value which will be used. This option is mandatory for
  6576. @code{modify} and @code{add} mode.
  6577. @item function
  6578. Which function to use when comparing metadata value and @code{value}.
  6579. Can be one of following:
  6580. @table @samp
  6581. @item same_str
  6582. Values are interpreted as strings, returns true if metadata value is same as @code{value}.
  6583. @item starts_with
  6584. Values are interpreted as strings, returns true if metadata value starts with
  6585. the @code{value} option string.
  6586. @item less
  6587. Values are interpreted as floats, returns true if metadata value is less than @code{value}.
  6588. @item equal
  6589. Values are interpreted as floats, returns true if @code{value} is equal with metadata value.
  6590. @item greater
  6591. Values are interpreted as floats, returns true if metadata value is greater than @code{value}.
  6592. @item expr
  6593. Values are interpreted as floats, returns true if expression from option @code{expr}
  6594. evaluates to true.
  6595. @end table
  6596. @item expr
  6597. Set expression which is used when @code{function} is set to @code{expr}.
  6598. The expression is evaluated through the eval API and can contain the following
  6599. constants:
  6600. @table @option
  6601. @item VALUE1
  6602. Float representation of @code{value} from metadata key.
  6603. @item VALUE2
  6604. Float representation of @code{value} as supplied by user in @code{value} option.
  6605. @end table
  6606. @item file
  6607. If specified in @code{print} mode, output is written to the named file. When
  6608. filename equals "-" data is written to standard output.
  6609. If @code{file} option is not set, output is written to the log with AV_LOG_INFO
  6610. loglevel.
  6611. @end table
  6612. @subsection Examples
  6613. @itemize
  6614. @item
  6615. Print all metadata values for frames with key @code{lavfi.singnalstats.YDIF} with values
  6616. between 0 and 1.
  6617. @example
  6618. @end example
  6619. signalstats,metadata=print:key=lavfi.signalstats.YDIF:value=0:function=expr:expr='between(VALUE1,0,1)'
  6620. @end itemize
  6621. @section mpdecimate
  6622. Drop frames that do not differ greatly from the previous frame in
  6623. order to reduce frame rate.
  6624. The main use of this filter is for very-low-bitrate encoding
  6625. (e.g. streaming over dialup modem), but it could in theory be used for
  6626. fixing movies that were inverse-telecined incorrectly.
  6627. A description of the accepted options follows.
  6628. @table @option
  6629. @item max
  6630. Set the maximum number of consecutive frames which can be dropped (if
  6631. positive), or the minimum interval between dropped frames (if
  6632. negative). If the value is 0, the frame is dropped unregarding the
  6633. number of previous sequentially dropped frames.
  6634. Default value is 0.
  6635. @item hi
  6636. @item lo
  6637. @item frac
  6638. Set the dropping threshold values.
  6639. Values for @option{hi} and @option{lo} are for 8x8 pixel blocks and
  6640. represent actual pixel value differences, so a threshold of 64
  6641. corresponds to 1 unit of difference for each pixel, or the same spread
  6642. out differently over the block.
  6643. A frame is a candidate for dropping if no 8x8 blocks differ by more
  6644. than a threshold of @option{hi}, and if no more than @option{frac} blocks (1
  6645. meaning the whole image) differ by more than a threshold of @option{lo}.
  6646. Default value for @option{hi} is 64*12, default value for @option{lo} is
  6647. 64*5, and default value for @option{frac} is 0.33.
  6648. @end table
  6649. @section negate
  6650. Negate input video.
  6651. It accepts an integer in input; if non-zero it negates the
  6652. alpha component (if available). The default value in input is 0.
  6653. @section nnedi
  6654. Deinterlace video using neural network edge directed interpolation.
  6655. This filter accepts the following options:
  6656. @table @option
  6657. @item weights
  6658. Mandatory option, without binary file filter can not work.
  6659. Currently file can be found here:
  6660. https://github.com/dubhater/vapoursynth-nnedi3/blob/master/src/nnedi3_weights.bin
  6661. @item deint
  6662. Set which frames to deinterlace, by default it is @code{all}.
  6663. Can be @code{all} or @code{interlaced}.
  6664. @item field
  6665. Set mode of operation.
  6666. Can be one of the following:
  6667. @table @samp
  6668. @item af
  6669. Use frame flags, both fields.
  6670. @item a
  6671. Use frame flags, single field.
  6672. @item t
  6673. Use top field only.
  6674. @item b
  6675. Use bottom field only.
  6676. @item ft
  6677. Use both fields, top first.
  6678. @item fb
  6679. Use both fields, bottom first.
  6680. @end table
  6681. @item planes
  6682. Set which planes to process, by default filter process all frames.
  6683. @item nsize
  6684. Set size of local neighborhood around each pixel, used by the predictor neural
  6685. network.
  6686. Can be one of the following:
  6687. @table @samp
  6688. @item s8x6
  6689. @item s16x6
  6690. @item s32x6
  6691. @item s48x6
  6692. @item s8x4
  6693. @item s16x4
  6694. @item s32x4
  6695. @end table
  6696. @item nns
  6697. Set the number of neurons in predicctor neural network.
  6698. Can be one of the following:
  6699. @table @samp
  6700. @item n16
  6701. @item n32
  6702. @item n64
  6703. @item n128
  6704. @item n256
  6705. @end table
  6706. @item qual
  6707. Controls the number of different neural network predictions that are blended
  6708. together to compute the final output value. Can be @code{fast}, default or
  6709. @code{slow}.
  6710. @item etype
  6711. Set which set of weights to use in the predictor.
  6712. Can be one of the following:
  6713. @table @samp
  6714. @item a
  6715. weights trained to minimize absolute error
  6716. @item s
  6717. weights trained to minimize squared error
  6718. @end table
  6719. @item pscrn
  6720. Controls whether or not the prescreener neural network is used to decide
  6721. which pixels should be processed by the predictor neural network and which
  6722. can be handled by simple cubic interpolation.
  6723. The prescreener is trained to know whether cubic interpolation will be
  6724. sufficient for a pixel or whether it should be predicted by the predictor nn.
  6725. The computational complexity of the prescreener nn is much less than that of
  6726. the predictor nn. Since most pixels can be handled by cubic interpolation,
  6727. using the prescreener generally results in much faster processing.
  6728. The prescreener is pretty accurate, so the difference between using it and not
  6729. using it is almost always unnoticeable.
  6730. Can be one of the following:
  6731. @table @samp
  6732. @item none
  6733. @item original
  6734. @item new
  6735. @end table
  6736. Default is @code{new}.
  6737. @item fapprox
  6738. Set various debugging flags.
  6739. @end table
  6740. @section noformat
  6741. Force libavfilter not to use any of the specified pixel formats for the
  6742. input to the next filter.
  6743. It accepts the following parameters:
  6744. @table @option
  6745. @item pix_fmts
  6746. A '|'-separated list of pixel format names, such as
  6747. apix_fmts=yuv420p|monow|rgb24".
  6748. @end table
  6749. @subsection Examples
  6750. @itemize
  6751. @item
  6752. Force libavfilter to use a format different from @var{yuv420p} for the
  6753. input to the vflip filter:
  6754. @example
  6755. noformat=pix_fmts=yuv420p,vflip
  6756. @end example
  6757. @item
  6758. Convert the input video to any of the formats not contained in the list:
  6759. @example
  6760. noformat=yuv420p|yuv444p|yuv410p
  6761. @end example
  6762. @end itemize
  6763. @section noise
  6764. Add noise on video input frame.
  6765. The filter accepts the following options:
  6766. @table @option
  6767. @item all_seed
  6768. @item c0_seed
  6769. @item c1_seed
  6770. @item c2_seed
  6771. @item c3_seed
  6772. Set noise seed for specific pixel component or all pixel components in case
  6773. of @var{all_seed}. Default value is @code{123457}.
  6774. @item all_strength, alls
  6775. @item c0_strength, c0s
  6776. @item c1_strength, c1s
  6777. @item c2_strength, c2s
  6778. @item c3_strength, c3s
  6779. Set noise strength for specific pixel component or all pixel components in case
  6780. @var{all_strength}. Default value is @code{0}. Allowed range is [0, 100].
  6781. @item all_flags, allf
  6782. @item c0_flags, c0f
  6783. @item c1_flags, c1f
  6784. @item c2_flags, c2f
  6785. @item c3_flags, c3f
  6786. Set pixel component flags or set flags for all components if @var{all_flags}.
  6787. Available values for component flags are:
  6788. @table @samp
  6789. @item a
  6790. averaged temporal noise (smoother)
  6791. @item p
  6792. mix random noise with a (semi)regular pattern
  6793. @item t
  6794. temporal noise (noise pattern changes between frames)
  6795. @item u
  6796. uniform noise (gaussian otherwise)
  6797. @end table
  6798. @end table
  6799. @subsection Examples
  6800. Add temporal and uniform noise to input video:
  6801. @example
  6802. noise=alls=20:allf=t+u
  6803. @end example
  6804. @section null
  6805. Pass the video source unchanged to the output.
  6806. @section ocr
  6807. Optical Character Recognition
  6808. This filter uses Tesseract for optical character recognition.
  6809. It accepts the following options:
  6810. @table @option
  6811. @item datapath
  6812. Set datapath to tesseract data. Default is to use whatever was
  6813. set at installation.
  6814. @item language
  6815. Set language, default is "eng".
  6816. @item whitelist
  6817. Set character whitelist.
  6818. @item blacklist
  6819. Set character blacklist.
  6820. @end table
  6821. The filter exports recognized text as the frame metadata @code{lavfi.ocr.text}.
  6822. @section ocv
  6823. Apply a video transform using libopencv.
  6824. To enable this filter, install the libopencv library and headers and
  6825. configure FFmpeg with @code{--enable-libopencv}.
  6826. It accepts the following parameters:
  6827. @table @option
  6828. @item filter_name
  6829. The name of the libopencv filter to apply.
  6830. @item filter_params
  6831. The parameters to pass to the libopencv filter. If not specified, the default
  6832. values are assumed.
  6833. @end table
  6834. Refer to the official libopencv documentation for more precise
  6835. information:
  6836. @url{http://docs.opencv.org/master/modules/imgproc/doc/filtering.html}
  6837. Several libopencv filters are supported; see the following subsections.
  6838. @anchor{dilate}
  6839. @subsection dilate
  6840. Dilate an image by using a specific structuring element.
  6841. It corresponds to the libopencv function @code{cvDilate}.
  6842. It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
  6843. @var{struct_el} represents a structuring element, and has the syntax:
  6844. @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
  6845. @var{cols} and @var{rows} represent the number of columns and rows of
  6846. the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
  6847. point, and @var{shape} the shape for the structuring element. @var{shape}
  6848. must be "rect", "cross", "ellipse", or "custom".
  6849. If the value for @var{shape} is "custom", it must be followed by a
  6850. string of the form "=@var{filename}". The file with name
  6851. @var{filename} is assumed to represent a binary image, with each
  6852. printable character corresponding to a bright pixel. When a custom
  6853. @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
  6854. or columns and rows of the read file are assumed instead.
  6855. The default value for @var{struct_el} is "3x3+0x0/rect".
  6856. @var{nb_iterations} specifies the number of times the transform is
  6857. applied to the image, and defaults to 1.
  6858. Some examples:
  6859. @example
  6860. # Use the default values
  6861. ocv=dilate
  6862. # Dilate using a structuring element with a 5x5 cross, iterating two times
  6863. ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
  6864. # Read the shape from the file diamond.shape, iterating two times.
  6865. # The file diamond.shape may contain a pattern of characters like this
  6866. # *
  6867. # ***
  6868. # *****
  6869. # ***
  6870. # *
  6871. # The specified columns and rows are ignored
  6872. # but the anchor point coordinates are not
  6873. ocv=dilate:0x0+2x2/custom=diamond.shape|2
  6874. @end example
  6875. @subsection erode
  6876. Erode an image by using a specific structuring element.
  6877. It corresponds to the libopencv function @code{cvErode}.
  6878. It accepts the parameters: @var{struct_el}:@var{nb_iterations},
  6879. with the same syntax and semantics as the @ref{dilate} filter.
  6880. @subsection smooth
  6881. Smooth the input video.
  6882. The filter takes the following parameters:
  6883. @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
  6884. @var{type} is the type of smooth filter to apply, and must be one of
  6885. the following values: "blur", "blur_no_scale", "median", "gaussian",
  6886. or "bilateral". The default value is "gaussian".
  6887. The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
  6888. depend on the smooth type. @var{param1} and
  6889. @var{param2} accept integer positive values or 0. @var{param3} and
  6890. @var{param4} accept floating point values.
  6891. The default value for @var{param1} is 3. The default value for the
  6892. other parameters is 0.
  6893. These parameters correspond to the parameters assigned to the
  6894. libopencv function @code{cvSmooth}.
  6895. @anchor{overlay}
  6896. @section overlay
  6897. Overlay one video on top of another.
  6898. It takes two inputs and has one output. The first input is the "main"
  6899. video on which the second input is overlaid.
  6900. It accepts the following parameters:
  6901. A description of the accepted options follows.
  6902. @table @option
  6903. @item x
  6904. @item y
  6905. Set the expression for the x and y coordinates of the overlaid video
  6906. on the main video. Default value is "0" for both expressions. In case
  6907. the expression is invalid, it is set to a huge value (meaning that the
  6908. overlay will not be displayed within the output visible area).
  6909. @item eof_action
  6910. The action to take when EOF is encountered on the secondary input; it accepts
  6911. one of the following values:
  6912. @table @option
  6913. @item repeat
  6914. Repeat the last frame (the default).
  6915. @item endall
  6916. End both streams.
  6917. @item pass
  6918. Pass the main input through.
  6919. @end table
  6920. @item eval
  6921. Set when the expressions for @option{x}, and @option{y} are evaluated.
  6922. It accepts the following values:
  6923. @table @samp
  6924. @item init
  6925. only evaluate expressions once during the filter initialization or
  6926. when a command is processed
  6927. @item frame
  6928. evaluate expressions for each incoming frame
  6929. @end table
  6930. Default value is @samp{frame}.
  6931. @item shortest
  6932. If set to 1, force the output to terminate when the shortest input
  6933. terminates. Default value is 0.
  6934. @item format
  6935. Set the format for the output video.
  6936. It accepts the following values:
  6937. @table @samp
  6938. @item yuv420
  6939. force YUV420 output
  6940. @item yuv422
  6941. force YUV422 output
  6942. @item yuv444
  6943. force YUV444 output
  6944. @item rgb
  6945. force RGB output
  6946. @end table
  6947. Default value is @samp{yuv420}.
  6948. @item rgb @emph{(deprecated)}
  6949. If set to 1, force the filter to accept inputs in the RGB
  6950. color space. Default value is 0. This option is deprecated, use
  6951. @option{format} instead.
  6952. @item repeatlast
  6953. If set to 1, force the filter to draw the last overlay frame over the
  6954. main input until the end of the stream. A value of 0 disables this
  6955. behavior. Default value is 1.
  6956. @end table
  6957. The @option{x}, and @option{y} expressions can contain the following
  6958. parameters.
  6959. @table @option
  6960. @item main_w, W
  6961. @item main_h, H
  6962. The main input width and height.
  6963. @item overlay_w, w
  6964. @item overlay_h, h
  6965. The overlay input width and height.
  6966. @item x
  6967. @item y
  6968. The computed values for @var{x} and @var{y}. They are evaluated for
  6969. each new frame.
  6970. @item hsub
  6971. @item vsub
  6972. horizontal and vertical chroma subsample values of the output
  6973. format. For example for the pixel format "yuv422p" @var{hsub} is 2 and
  6974. @var{vsub} is 1.
  6975. @item n
  6976. the number of input frame, starting from 0
  6977. @item pos
  6978. the position in the file of the input frame, NAN if unknown
  6979. @item t
  6980. The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
  6981. @end table
  6982. Note that the @var{n}, @var{pos}, @var{t} variables are available only
  6983. when evaluation is done @emph{per frame}, and will evaluate to NAN
  6984. when @option{eval} is set to @samp{init}.
  6985. Be aware that frames are taken from each input video in timestamp
  6986. order, hence, if their initial timestamps differ, it is a good idea
  6987. to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
  6988. have them begin in the same zero timestamp, as the example for
  6989. the @var{movie} filter does.
  6990. You can chain together more overlays but you should test the
  6991. efficiency of such approach.
  6992. @subsection Commands
  6993. This filter supports the following commands:
  6994. @table @option
  6995. @item x
  6996. @item y
  6997. Modify the x and y of the overlay input.
  6998. The command accepts the same syntax of the corresponding option.
  6999. If the specified expression is not valid, it is kept at its current
  7000. value.
  7001. @end table
  7002. @subsection Examples
  7003. @itemize
  7004. @item
  7005. Draw the overlay at 10 pixels from the bottom right corner of the main
  7006. video:
  7007. @example
  7008. overlay=main_w-overlay_w-10:main_h-overlay_h-10
  7009. @end example
  7010. Using named options the example above becomes:
  7011. @example
  7012. overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
  7013. @end example
  7014. @item
  7015. Insert a transparent PNG logo in the bottom left corner of the input,
  7016. using the @command{ffmpeg} tool with the @code{-filter_complex} option:
  7017. @example
  7018. ffmpeg -i input -i logo -filter_complex 'overlay=10:main_h-overlay_h-10' output
  7019. @end example
  7020. @item
  7021. Insert 2 different transparent PNG logos (second logo on bottom
  7022. right corner) using the @command{ffmpeg} tool:
  7023. @example
  7024. 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
  7025. @end example
  7026. @item
  7027. Add a transparent color layer on top of the main video; @code{WxH}
  7028. must specify the size of the main input to the overlay filter:
  7029. @example
  7030. color=color=red@@.3:size=WxH [over]; [in][over] overlay [out]
  7031. @end example
  7032. @item
  7033. Play an original video and a filtered version (here with the deshake
  7034. filter) side by side using the @command{ffplay} tool:
  7035. @example
  7036. ffplay input.avi -vf 'split[a][b]; [a]pad=iw*2:ih[src]; [b]deshake[filt]; [src][filt]overlay=w'
  7037. @end example
  7038. The above command is the same as:
  7039. @example
  7040. ffplay input.avi -vf 'split[b], pad=iw*2[src], [b]deshake, [src]overlay=w'
  7041. @end example
  7042. @item
  7043. Make a sliding overlay appearing from the left to the right top part of the
  7044. screen starting since time 2:
  7045. @example
  7046. overlay=x='if(gte(t,2), -w+(t-2)*20, NAN)':y=0
  7047. @end example
  7048. @item
  7049. Compose output by putting two input videos side to side:
  7050. @example
  7051. ffmpeg -i left.avi -i right.avi -filter_complex "
  7052. nullsrc=size=200x100 [background];
  7053. [0:v] setpts=PTS-STARTPTS, scale=100x100 [left];
  7054. [1:v] setpts=PTS-STARTPTS, scale=100x100 [right];
  7055. [background][left] overlay=shortest=1 [background+left];
  7056. [background+left][right] overlay=shortest=1:x=100 [left+right]
  7057. "
  7058. @end example
  7059. @item
  7060. Mask 10-20 seconds of a video by applying the delogo filter to a section
  7061. @example
  7062. ffmpeg -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
  7063. -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]'
  7064. masked.avi
  7065. @end example
  7066. @item
  7067. Chain several overlays in cascade:
  7068. @example
  7069. nullsrc=s=200x200 [bg];
  7070. testsrc=s=100x100, split=4 [in0][in1][in2][in3];
  7071. [in0] lutrgb=r=0, [bg] overlay=0:0 [mid0];
  7072. [in1] lutrgb=g=0, [mid0] overlay=100:0 [mid1];
  7073. [in2] lutrgb=b=0, [mid1] overlay=0:100 [mid2];
  7074. [in3] null, [mid2] overlay=100:100 [out0]
  7075. @end example
  7076. @end itemize
  7077. @section owdenoise
  7078. Apply Overcomplete Wavelet denoiser.
  7079. The filter accepts the following options:
  7080. @table @option
  7081. @item depth
  7082. Set depth.
  7083. Larger depth values will denoise lower frequency components more, but
  7084. slow down filtering.
  7085. Must be an int in the range 8-16, default is @code{8}.
  7086. @item luma_strength, ls
  7087. Set luma strength.
  7088. Must be a double value in the range 0-1000, default is @code{1.0}.
  7089. @item chroma_strength, cs
  7090. Set chroma strength.
  7091. Must be a double value in the range 0-1000, default is @code{1.0}.
  7092. @end table
  7093. @anchor{pad}
  7094. @section pad
  7095. Add paddings to the input image, and place the original input at the
  7096. provided @var{x}, @var{y} coordinates.
  7097. It accepts the following parameters:
  7098. @table @option
  7099. @item width, w
  7100. @item height, h
  7101. Specify an expression for the size of the output image with the
  7102. paddings added. If the value for @var{width} or @var{height} is 0, the
  7103. corresponding input size is used for the output.
  7104. The @var{width} expression can reference the value set by the
  7105. @var{height} expression, and vice versa.
  7106. The default value of @var{width} and @var{height} is 0.
  7107. @item x
  7108. @item y
  7109. Specify the offsets to place the input image at within the padded area,
  7110. with respect to the top/left border of the output image.
  7111. The @var{x} expression can reference the value set by the @var{y}
  7112. expression, and vice versa.
  7113. The default value of @var{x} and @var{y} is 0.
  7114. @item color
  7115. Specify the color of the padded area. For the syntax of this option,
  7116. check the "Color" section in the ffmpeg-utils manual.
  7117. The default value of @var{color} is "black".
  7118. @end table
  7119. The value for the @var{width}, @var{height}, @var{x}, and @var{y}
  7120. options are expressions containing the following constants:
  7121. @table @option
  7122. @item in_w
  7123. @item in_h
  7124. The input video width and height.
  7125. @item iw
  7126. @item ih
  7127. These are the same as @var{in_w} and @var{in_h}.
  7128. @item out_w
  7129. @item out_h
  7130. The output width and height (the size of the padded area), as
  7131. specified by the @var{width} and @var{height} expressions.
  7132. @item ow
  7133. @item oh
  7134. These are the same as @var{out_w} and @var{out_h}.
  7135. @item x
  7136. @item y
  7137. The x and y offsets as specified by the @var{x} and @var{y}
  7138. expressions, or NAN if not yet specified.
  7139. @item a
  7140. same as @var{iw} / @var{ih}
  7141. @item sar
  7142. input sample aspect ratio
  7143. @item dar
  7144. input display aspect ratio, it is the same as (@var{iw} / @var{ih}) * @var{sar}
  7145. @item hsub
  7146. @item vsub
  7147. The horizontal and vertical chroma subsample values. For example for the
  7148. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  7149. @end table
  7150. @subsection Examples
  7151. @itemize
  7152. @item
  7153. Add paddings with the color "violet" to the input video. The output video
  7154. size is 640x480, and the top-left corner of the input video is placed at
  7155. column 0, row 40
  7156. @example
  7157. pad=640:480:0:40:violet
  7158. @end example
  7159. The example above is equivalent to the following command:
  7160. @example
  7161. pad=width=640:height=480:x=0:y=40:color=violet
  7162. @end example
  7163. @item
  7164. Pad the input to get an output with dimensions increased by 3/2,
  7165. and put the input video at the center of the padded area:
  7166. @example
  7167. pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
  7168. @end example
  7169. @item
  7170. Pad the input to get a squared output with size equal to the maximum
  7171. value between the input width and height, and put the input video at
  7172. the center of the padded area:
  7173. @example
  7174. pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
  7175. @end example
  7176. @item
  7177. Pad the input to get a final w/h ratio of 16:9:
  7178. @example
  7179. pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
  7180. @end example
  7181. @item
  7182. In case of anamorphic video, in order to set the output display aspect
  7183. correctly, it is necessary to use @var{sar} in the expression,
  7184. according to the relation:
  7185. @example
  7186. (ih * X / ih) * sar = output_dar
  7187. X = output_dar / sar
  7188. @end example
  7189. Thus the previous example needs to be modified to:
  7190. @example
  7191. pad="ih*16/9/sar:ih:(ow-iw)/2:(oh-ih)/2"
  7192. @end example
  7193. @item
  7194. Double the output size and put the input video in the bottom-right
  7195. corner of the output padded area:
  7196. @example
  7197. pad="2*iw:2*ih:ow-iw:oh-ih"
  7198. @end example
  7199. @end itemize
  7200. @anchor{palettegen}
  7201. @section palettegen
  7202. Generate one palette for a whole video stream.
  7203. It accepts the following options:
  7204. @table @option
  7205. @item max_colors
  7206. Set the maximum number of colors to quantize in the palette.
  7207. Note: the palette will still contain 256 colors; the unused palette entries
  7208. will be black.
  7209. @item reserve_transparent
  7210. Create a palette of 255 colors maximum and reserve the last one for
  7211. transparency. Reserving the transparency color is useful for GIF optimization.
  7212. If not set, the maximum of colors in the palette will be 256. You probably want
  7213. to disable this option for a standalone image.
  7214. Set by default.
  7215. @item stats_mode
  7216. Set statistics mode.
  7217. It accepts the following values:
  7218. @table @samp
  7219. @item full
  7220. Compute full frame histograms.
  7221. @item diff
  7222. Compute histograms only for the part that differs from previous frame. This
  7223. might be relevant to give more importance to the moving part of your input if
  7224. the background is static.
  7225. @end table
  7226. Default value is @var{full}.
  7227. @end table
  7228. The filter also exports the frame metadata @code{lavfi.color_quant_ratio}
  7229. (@code{nb_color_in / nb_color_out}) which you can use to evaluate the degree of
  7230. color quantization of the palette. This information is also visible at
  7231. @var{info} logging level.
  7232. @subsection Examples
  7233. @itemize
  7234. @item
  7235. Generate a representative palette of a given video using @command{ffmpeg}:
  7236. @example
  7237. ffmpeg -i input.mkv -vf palettegen palette.png
  7238. @end example
  7239. @end itemize
  7240. @section paletteuse
  7241. Use a palette to downsample an input video stream.
  7242. The filter takes two inputs: one video stream and a palette. The palette must
  7243. be a 256 pixels image.
  7244. It accepts the following options:
  7245. @table @option
  7246. @item dither
  7247. Select dithering mode. Available algorithms are:
  7248. @table @samp
  7249. @item bayer
  7250. Ordered 8x8 bayer dithering (deterministic)
  7251. @item heckbert
  7252. Dithering as defined by Paul Heckbert in 1982 (simple error diffusion).
  7253. Note: this dithering is sometimes considered "wrong" and is included as a
  7254. reference.
  7255. @item floyd_steinberg
  7256. Floyd and Steingberg dithering (error diffusion)
  7257. @item sierra2
  7258. Frankie Sierra dithering v2 (error diffusion)
  7259. @item sierra2_4a
  7260. Frankie Sierra dithering v2 "Lite" (error diffusion)
  7261. @end table
  7262. Default is @var{sierra2_4a}.
  7263. @item bayer_scale
  7264. When @var{bayer} dithering is selected, this option defines the scale of the
  7265. pattern (how much the crosshatch pattern is visible). A low value means more
  7266. visible pattern for less banding, and higher value means less visible pattern
  7267. at the cost of more banding.
  7268. The option must be an integer value in the range [0,5]. Default is @var{2}.
  7269. @item diff_mode
  7270. If set, define the zone to process
  7271. @table @samp
  7272. @item rectangle
  7273. Only the changing rectangle will be reprocessed. This is similar to GIF
  7274. cropping/offsetting compression mechanism. This option can be useful for speed
  7275. if only a part of the image is changing, and has use cases such as limiting the
  7276. scope of the error diffusal @option{dither} to the rectangle that bounds the
  7277. moving scene (it leads to more deterministic output if the scene doesn't change
  7278. much, and as a result less moving noise and better GIF compression).
  7279. @end table
  7280. Default is @var{none}.
  7281. @end table
  7282. @subsection Examples
  7283. @itemize
  7284. @item
  7285. Use a palette (generated for example with @ref{palettegen}) to encode a GIF
  7286. using @command{ffmpeg}:
  7287. @example
  7288. ffmpeg -i input.mkv -i palette.png -lavfi paletteuse output.gif
  7289. @end example
  7290. @end itemize
  7291. @section perspective
  7292. Correct perspective of video not recorded perpendicular to the screen.
  7293. A description of the accepted parameters follows.
  7294. @table @option
  7295. @item x0
  7296. @item y0
  7297. @item x1
  7298. @item y1
  7299. @item x2
  7300. @item y2
  7301. @item x3
  7302. @item y3
  7303. Set coordinates expression for top left, top right, bottom left and bottom right corners.
  7304. Default values are @code{0:0:W:0:0:H:W:H} with which perspective will remain unchanged.
  7305. If the @code{sense} option is set to @code{source}, then the specified points will be sent
  7306. to the corners of the destination. If the @code{sense} option is set to @code{destination},
  7307. then the corners of the source will be sent to the specified coordinates.
  7308. The expressions can use the following variables:
  7309. @table @option
  7310. @item W
  7311. @item H
  7312. the width and height of video frame.
  7313. @end table
  7314. @item interpolation
  7315. Set interpolation for perspective correction.
  7316. It accepts the following values:
  7317. @table @samp
  7318. @item linear
  7319. @item cubic
  7320. @end table
  7321. Default value is @samp{linear}.
  7322. @item sense
  7323. Set interpretation of coordinate options.
  7324. It accepts the following values:
  7325. @table @samp
  7326. @item 0, source
  7327. Send point in the source specified by the given coordinates to
  7328. the corners of the destination.
  7329. @item 1, destination
  7330. Send the corners of the source to the point in the destination specified
  7331. by the given coordinates.
  7332. Default value is @samp{source}.
  7333. @end table
  7334. @end table
  7335. @section phase
  7336. Delay interlaced video by one field time so that the field order changes.
  7337. The intended use is to fix PAL movies that have been captured with the
  7338. opposite field order to the film-to-video transfer.
  7339. A description of the accepted parameters follows.
  7340. @table @option
  7341. @item mode
  7342. Set phase mode.
  7343. It accepts the following values:
  7344. @table @samp
  7345. @item t
  7346. Capture field order top-first, transfer bottom-first.
  7347. Filter will delay the bottom field.
  7348. @item b
  7349. Capture field order bottom-first, transfer top-first.
  7350. Filter will delay the top field.
  7351. @item p
  7352. Capture and transfer with the same field order. This mode only exists
  7353. for the documentation of the other options to refer to, but if you
  7354. actually select it, the filter will faithfully do nothing.
  7355. @item a
  7356. Capture field order determined automatically by field flags, transfer
  7357. opposite.
  7358. Filter selects among @samp{t} and @samp{b} modes on a frame by frame
  7359. basis using field flags. If no field information is available,
  7360. then this works just like @samp{u}.
  7361. @item u
  7362. Capture unknown or varying, transfer opposite.
  7363. Filter selects among @samp{t} and @samp{b} on a frame by frame basis by
  7364. analyzing the images and selecting the alternative that produces best
  7365. match between the fields.
  7366. @item T
  7367. Capture top-first, transfer unknown or varying.
  7368. Filter selects among @samp{t} and @samp{p} using image analysis.
  7369. @item B
  7370. Capture bottom-first, transfer unknown or varying.
  7371. Filter selects among @samp{b} and @samp{p} using image analysis.
  7372. @item A
  7373. Capture determined by field flags, transfer unknown or varying.
  7374. Filter selects among @samp{t}, @samp{b} and @samp{p} using field flags and
  7375. image analysis. If no field information is available, then this works just
  7376. like @samp{U}. This is the default mode.
  7377. @item U
  7378. Both capture and transfer unknown or varying.
  7379. Filter selects among @samp{t}, @samp{b} and @samp{p} using image analysis only.
  7380. @end table
  7381. @end table
  7382. @section pixdesctest
  7383. Pixel format descriptor test filter, mainly useful for internal
  7384. testing. The output video should be equal to the input video.
  7385. For example:
  7386. @example
  7387. format=monow, pixdesctest
  7388. @end example
  7389. can be used to test the monowhite pixel format descriptor definition.
  7390. @section pp
  7391. Enable the specified chain of postprocessing subfilters using libpostproc. This
  7392. library should be automatically selected with a GPL build (@code{--enable-gpl}).
  7393. Subfilters must be separated by '/' and can be disabled by prepending a '-'.
  7394. Each subfilter and some options have a short and a long name that can be used
  7395. interchangeably, i.e. dr/dering are the same.
  7396. The filters accept the following options:
  7397. @table @option
  7398. @item subfilters
  7399. Set postprocessing subfilters string.
  7400. @end table
  7401. All subfilters share common options to determine their scope:
  7402. @table @option
  7403. @item a/autoq
  7404. Honor the quality commands for this subfilter.
  7405. @item c/chrom
  7406. Do chrominance filtering, too (default).
  7407. @item y/nochrom
  7408. Do luminance filtering only (no chrominance).
  7409. @item n/noluma
  7410. Do chrominance filtering only (no luminance).
  7411. @end table
  7412. These options can be appended after the subfilter name, separated by a '|'.
  7413. Available subfilters are:
  7414. @table @option
  7415. @item hb/hdeblock[|difference[|flatness]]
  7416. Horizontal deblocking filter
  7417. @table @option
  7418. @item difference
  7419. Difference factor where higher values mean more deblocking (default: @code{32}).
  7420. @item flatness
  7421. Flatness threshold where lower values mean more deblocking (default: @code{39}).
  7422. @end table
  7423. @item vb/vdeblock[|difference[|flatness]]
  7424. Vertical deblocking filter
  7425. @table @option
  7426. @item difference
  7427. Difference factor where higher values mean more deblocking (default: @code{32}).
  7428. @item flatness
  7429. Flatness threshold where lower values mean more deblocking (default: @code{39}).
  7430. @end table
  7431. @item ha/hadeblock[|difference[|flatness]]
  7432. Accurate horizontal deblocking filter
  7433. @table @option
  7434. @item difference
  7435. Difference factor where higher values mean more deblocking (default: @code{32}).
  7436. @item flatness
  7437. Flatness threshold where lower values mean more deblocking (default: @code{39}).
  7438. @end table
  7439. @item va/vadeblock[|difference[|flatness]]
  7440. Accurate vertical deblocking filter
  7441. @table @option
  7442. @item difference
  7443. Difference factor where higher values mean more deblocking (default: @code{32}).
  7444. @item flatness
  7445. Flatness threshold where lower values mean more deblocking (default: @code{39}).
  7446. @end table
  7447. @end table
  7448. The horizontal and vertical deblocking filters share the difference and
  7449. flatness values so you cannot set different horizontal and vertical
  7450. thresholds.
  7451. @table @option
  7452. @item h1/x1hdeblock
  7453. Experimental horizontal deblocking filter
  7454. @item v1/x1vdeblock
  7455. Experimental vertical deblocking filter
  7456. @item dr/dering
  7457. Deringing filter
  7458. @item tn/tmpnoise[|threshold1[|threshold2[|threshold3]]], temporal noise reducer
  7459. @table @option
  7460. @item threshold1
  7461. larger -> stronger filtering
  7462. @item threshold2
  7463. larger -> stronger filtering
  7464. @item threshold3
  7465. larger -> stronger filtering
  7466. @end table
  7467. @item al/autolevels[:f/fullyrange], automatic brightness / contrast correction
  7468. @table @option
  7469. @item f/fullyrange
  7470. Stretch luminance to @code{0-255}.
  7471. @end table
  7472. @item lb/linblenddeint
  7473. Linear blend deinterlacing filter that deinterlaces the given block by
  7474. filtering all lines with a @code{(1 2 1)} filter.
  7475. @item li/linipoldeint
  7476. Linear interpolating deinterlacing filter that deinterlaces the given block by
  7477. linearly interpolating every second line.
  7478. @item ci/cubicipoldeint
  7479. Cubic interpolating deinterlacing filter deinterlaces the given block by
  7480. cubically interpolating every second line.
  7481. @item md/mediandeint
  7482. Median deinterlacing filter that deinterlaces the given block by applying a
  7483. median filter to every second line.
  7484. @item fd/ffmpegdeint
  7485. FFmpeg deinterlacing filter that deinterlaces the given block by filtering every
  7486. second line with a @code{(-1 4 2 4 -1)} filter.
  7487. @item l5/lowpass5
  7488. Vertically applied FIR lowpass deinterlacing filter that deinterlaces the given
  7489. block by filtering all lines with a @code{(-1 2 6 2 -1)} filter.
  7490. @item fq/forceQuant[|quantizer]
  7491. Overrides the quantizer table from the input with the constant quantizer you
  7492. specify.
  7493. @table @option
  7494. @item quantizer
  7495. Quantizer to use
  7496. @end table
  7497. @item de/default
  7498. Default pp filter combination (@code{hb|a,vb|a,dr|a})
  7499. @item fa/fast
  7500. Fast pp filter combination (@code{h1|a,v1|a,dr|a})
  7501. @item ac
  7502. High quality pp filter combination (@code{ha|a|128|7,va|a,dr|a})
  7503. @end table
  7504. @subsection Examples
  7505. @itemize
  7506. @item
  7507. Apply horizontal and vertical deblocking, deringing and automatic
  7508. brightness/contrast:
  7509. @example
  7510. pp=hb/vb/dr/al
  7511. @end example
  7512. @item
  7513. Apply default filters without brightness/contrast correction:
  7514. @example
  7515. pp=de/-al
  7516. @end example
  7517. @item
  7518. Apply default filters and temporal denoiser:
  7519. @example
  7520. pp=default/tmpnoise|1|2|3
  7521. @end example
  7522. @item
  7523. Apply deblocking on luminance only, and switch vertical deblocking on or off
  7524. automatically depending on available CPU time:
  7525. @example
  7526. pp=hb|y/vb|a
  7527. @end example
  7528. @end itemize
  7529. @section pp7
  7530. Apply Postprocessing filter 7. It is variant of the @ref{spp} filter,
  7531. similar to spp = 6 with 7 point DCT, where only the center sample is
  7532. used after IDCT.
  7533. The filter accepts the following options:
  7534. @table @option
  7535. @item qp
  7536. Force a constant quantization parameter. It accepts an integer in range
  7537. 0 to 63. If not set, the filter will use the QP from the video stream
  7538. (if available).
  7539. @item mode
  7540. Set thresholding mode. Available modes are:
  7541. @table @samp
  7542. @item hard
  7543. Set hard thresholding.
  7544. @item soft
  7545. Set soft thresholding (better de-ringing effect, but likely blurrier).
  7546. @item medium
  7547. Set medium thresholding (good results, default).
  7548. @end table
  7549. @end table
  7550. @section psnr
  7551. Obtain the average, maximum and minimum PSNR (Peak Signal to Noise
  7552. Ratio) between two input videos.
  7553. This filter takes in input two input videos, the first input is
  7554. considered the "main" source and is passed unchanged to the
  7555. output. The second input is used as a "reference" video for computing
  7556. the PSNR.
  7557. Both video inputs must have the same resolution and pixel format for
  7558. this filter to work correctly. Also it assumes that both inputs
  7559. have the same number of frames, which are compared one by one.
  7560. The obtained average PSNR is printed through the logging system.
  7561. The filter stores the accumulated MSE (mean squared error) of each
  7562. frame, and at the end of the processing it is averaged across all frames
  7563. equally, and the following formula is applied to obtain the PSNR:
  7564. @example
  7565. PSNR = 10*log10(MAX^2/MSE)
  7566. @end example
  7567. Where MAX is the average of the maximum values of each component of the
  7568. image.
  7569. The description of the accepted parameters follows.
  7570. @table @option
  7571. @item stats_file, f
  7572. If specified the filter will use the named file to save the PSNR of
  7573. each individual frame. When filename equals "-" the data is sent to
  7574. standard output.
  7575. @end table
  7576. The file printed if @var{stats_file} is selected, contains a sequence of
  7577. key/value pairs of the form @var{key}:@var{value} for each compared
  7578. couple of frames.
  7579. A description of each shown parameter follows:
  7580. @table @option
  7581. @item n
  7582. sequential number of the input frame, starting from 1
  7583. @item mse_avg
  7584. Mean Square Error pixel-by-pixel average difference of the compared
  7585. frames, averaged over all the image components.
  7586. @item mse_y, mse_u, mse_v, mse_r, mse_g, mse_g, mse_a
  7587. Mean Square Error pixel-by-pixel average difference of the compared
  7588. frames for the component specified by the suffix.
  7589. @item psnr_y, psnr_u, psnr_v, psnr_r, psnr_g, psnr_b, psnr_a
  7590. Peak Signal to Noise ratio of the compared frames for the component
  7591. specified by the suffix.
  7592. @end table
  7593. For example:
  7594. @example
  7595. movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
  7596. [main][ref] psnr="stats_file=stats.log" [out]
  7597. @end example
  7598. On this example the input file being processed is compared with the
  7599. reference file @file{ref_movie.mpg}. The PSNR of each individual frame
  7600. is stored in @file{stats.log}.
  7601. @anchor{pullup}
  7602. @section pullup
  7603. Pulldown reversal (inverse telecine) filter, capable of handling mixed
  7604. hard-telecine, 24000/1001 fps progressive, and 30000/1001 fps progressive
  7605. content.
  7606. The pullup filter is designed to take advantage of future context in making
  7607. its decisions. This filter is stateless in the sense that it does not lock
  7608. onto a pattern to follow, but it instead looks forward to the following
  7609. fields in order to identify matches and rebuild progressive frames.
  7610. To produce content with an even framerate, insert the fps filter after
  7611. pullup, use @code{fps=24000/1001} if the input frame rate is 29.97fps,
  7612. @code{fps=24} for 30fps and the (rare) telecined 25fps input.
  7613. The filter accepts the following options:
  7614. @table @option
  7615. @item jl
  7616. @item jr
  7617. @item jt
  7618. @item jb
  7619. These options set the amount of "junk" to ignore at the left, right, top, and
  7620. bottom of the image, respectively. Left and right are in units of 8 pixels,
  7621. while top and bottom are in units of 2 lines.
  7622. The default is 8 pixels on each side.
  7623. @item sb
  7624. Set the strict breaks. Setting this option to 1 will reduce the chances of
  7625. filter generating an occasional mismatched frame, but it may also cause an
  7626. excessive number of frames to be dropped during high motion sequences.
  7627. Conversely, setting it to -1 will make filter match fields more easily.
  7628. This may help processing of video where there is slight blurring between
  7629. the fields, but may also cause there to be interlaced frames in the output.
  7630. Default value is @code{0}.
  7631. @item mp
  7632. Set the metric plane to use. It accepts the following values:
  7633. @table @samp
  7634. @item l
  7635. Use luma plane.
  7636. @item u
  7637. Use chroma blue plane.
  7638. @item v
  7639. Use chroma red plane.
  7640. @end table
  7641. This option may be set to use chroma plane instead of the default luma plane
  7642. for doing filter's computations. This may improve accuracy on very clean
  7643. source material, but more likely will decrease accuracy, especially if there
  7644. is chroma noise (rainbow effect) or any grayscale video.
  7645. The main purpose of setting @option{mp} to a chroma plane is to reduce CPU
  7646. load and make pullup usable in realtime on slow machines.
  7647. @end table
  7648. For best results (without duplicated frames in the output file) it is
  7649. necessary to change the output frame rate. For example, to inverse
  7650. telecine NTSC input:
  7651. @example
  7652. ffmpeg -i input -vf pullup -r 24000/1001 ...
  7653. @end example
  7654. @section qp
  7655. Change video quantization parameters (QP).
  7656. The filter accepts the following option:
  7657. @table @option
  7658. @item qp
  7659. Set expression for quantization parameter.
  7660. @end table
  7661. The expression is evaluated through the eval API and can contain, among others,
  7662. the following constants:
  7663. @table @var
  7664. @item known
  7665. 1 if index is not 129, 0 otherwise.
  7666. @item qp
  7667. Sequentional index starting from -129 to 128.
  7668. @end table
  7669. @subsection Examples
  7670. @itemize
  7671. @item
  7672. Some equation like:
  7673. @example
  7674. qp=2+2*sin(PI*qp)
  7675. @end example
  7676. @end itemize
  7677. @section random
  7678. Flush video frames from internal cache of frames into a random order.
  7679. No frame is discarded.
  7680. Inspired by @ref{frei0r} nervous filter.
  7681. @table @option
  7682. @item frames
  7683. Set size in number of frames of internal cache, in range from @code{2} to
  7684. @code{512}. Default is @code{30}.
  7685. @item seed
  7686. Set seed for random number generator, must be an integer included between
  7687. @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
  7688. less than @code{0}, the filter will try to use a good random seed on a
  7689. best effort basis.
  7690. @end table
  7691. @section removegrain
  7692. The removegrain filter is a spatial denoiser for progressive video.
  7693. @table @option
  7694. @item m0
  7695. Set mode for the first plane.
  7696. @item m1
  7697. Set mode for the second plane.
  7698. @item m2
  7699. Set mode for the third plane.
  7700. @item m3
  7701. Set mode for the fourth plane.
  7702. @end table
  7703. Range of mode is from 0 to 24. Description of each mode follows:
  7704. @table @var
  7705. @item 0
  7706. Leave input plane unchanged. Default.
  7707. @item 1
  7708. Clips the pixel with the minimum and maximum of the 8 neighbour pixels.
  7709. @item 2
  7710. Clips the pixel with the second minimum and maximum of the 8 neighbour pixels.
  7711. @item 3
  7712. Clips the pixel with the third minimum and maximum of the 8 neighbour pixels.
  7713. @item 4
  7714. Clips the pixel with the fourth minimum and maximum of the 8 neighbour pixels.
  7715. This is equivalent to a median filter.
  7716. @item 5
  7717. Line-sensitive clipping giving the minimal change.
  7718. @item 6
  7719. Line-sensitive clipping, intermediate.
  7720. @item 7
  7721. Line-sensitive clipping, intermediate.
  7722. @item 8
  7723. Line-sensitive clipping, intermediate.
  7724. @item 9
  7725. Line-sensitive clipping on a line where the neighbours pixels are the closest.
  7726. @item 10
  7727. Replaces the target pixel with the closest neighbour.
  7728. @item 11
  7729. [1 2 1] horizontal and vertical kernel blur.
  7730. @item 12
  7731. Same as mode 11.
  7732. @item 13
  7733. Bob mode, interpolates top field from the line where the neighbours
  7734. pixels are the closest.
  7735. @item 14
  7736. Bob mode, interpolates bottom field from the line where the neighbours
  7737. pixels are the closest.
  7738. @item 15
  7739. Bob mode, interpolates top field. Same as 13 but with a more complicated
  7740. interpolation formula.
  7741. @item 16
  7742. Bob mode, interpolates bottom field. Same as 14 but with a more complicated
  7743. interpolation formula.
  7744. @item 17
  7745. Clips the pixel with the minimum and maximum of respectively the maximum and
  7746. minimum of each pair of opposite neighbour pixels.
  7747. @item 18
  7748. Line-sensitive clipping using opposite neighbours whose greatest distance from
  7749. the current pixel is minimal.
  7750. @item 19
  7751. Replaces the pixel with the average of its 8 neighbours.
  7752. @item 20
  7753. Averages the 9 pixels ([1 1 1] horizontal and vertical blur).
  7754. @item 21
  7755. Clips pixels using the averages of opposite neighbour.
  7756. @item 22
  7757. Same as mode 21 but simpler and faster.
  7758. @item 23
  7759. Small edge and halo removal, but reputed useless.
  7760. @item 24
  7761. Similar as 23.
  7762. @end table
  7763. @section removelogo
  7764. Suppress a TV station logo, using an image file to determine which
  7765. pixels comprise the logo. It works by filling in the pixels that
  7766. comprise the logo with neighboring pixels.
  7767. The filter accepts the following options:
  7768. @table @option
  7769. @item filename, f
  7770. Set the filter bitmap file, which can be any image format supported by
  7771. libavformat. The width and height of the image file must match those of the
  7772. video stream being processed.
  7773. @end table
  7774. Pixels in the provided bitmap image with a value of zero are not
  7775. considered part of the logo, non-zero pixels are considered part of
  7776. the logo. If you use white (255) for the logo and black (0) for the
  7777. rest, you will be safe. For making the filter bitmap, it is
  7778. recommended to take a screen capture of a black frame with the logo
  7779. visible, and then using a threshold filter followed by the erode
  7780. filter once or twice.
  7781. If needed, little splotches can be fixed manually. Remember that if
  7782. logo pixels are not covered, the filter quality will be much
  7783. reduced. Marking too many pixels as part of the logo does not hurt as
  7784. much, but it will increase the amount of blurring needed to cover over
  7785. the image and will destroy more information than necessary, and extra
  7786. pixels will slow things down on a large logo.
  7787. @section repeatfields
  7788. This filter uses the repeat_field flag from the Video ES headers and hard repeats
  7789. fields based on its value.
  7790. @section reverse, areverse
  7791. Reverse a clip.
  7792. Warning: This filter requires memory to buffer the entire clip, so trimming
  7793. is suggested.
  7794. @subsection Examples
  7795. @itemize
  7796. @item
  7797. Take the first 5 seconds of a clip, and reverse it.
  7798. @example
  7799. trim=end=5,reverse
  7800. @end example
  7801. @end itemize
  7802. @section rotate
  7803. Rotate video by an arbitrary angle expressed in radians.
  7804. The filter accepts the following options:
  7805. A description of the optional parameters follows.
  7806. @table @option
  7807. @item angle, a
  7808. Set an expression for the angle by which to rotate the input video
  7809. clockwise, expressed as a number of radians. A negative value will
  7810. result in a counter-clockwise rotation. By default it is set to "0".
  7811. This expression is evaluated for each frame.
  7812. @item out_w, ow
  7813. Set the output width expression, default value is "iw".
  7814. This expression is evaluated just once during configuration.
  7815. @item out_h, oh
  7816. Set the output height expression, default value is "ih".
  7817. This expression is evaluated just once during configuration.
  7818. @item bilinear
  7819. Enable bilinear interpolation if set to 1, a value of 0 disables
  7820. it. Default value is 1.
  7821. @item fillcolor, c
  7822. Set the color used to fill the output area not covered by the rotated
  7823. image. For the general syntax of this option, check the "Color" section in the
  7824. ffmpeg-utils manual. If the special value "none" is selected then no
  7825. background is printed (useful for example if the background is never shown).
  7826. Default value is "black".
  7827. @end table
  7828. The expressions for the angle and the output size can contain the
  7829. following constants and functions:
  7830. @table @option
  7831. @item n
  7832. sequential number of the input frame, starting from 0. It is always NAN
  7833. before the first frame is filtered.
  7834. @item t
  7835. time in seconds of the input frame, it is set to 0 when the filter is
  7836. configured. It is always NAN before the first frame is filtered.
  7837. @item hsub
  7838. @item vsub
  7839. horizontal and vertical chroma subsample values. For example for the
  7840. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  7841. @item in_w, iw
  7842. @item in_h, ih
  7843. the input video width and height
  7844. @item out_w, ow
  7845. @item out_h, oh
  7846. the output width and height, that is the size of the padded area as
  7847. specified by the @var{width} and @var{height} expressions
  7848. @item rotw(a)
  7849. @item roth(a)
  7850. the minimal width/height required for completely containing the input
  7851. video rotated by @var{a} radians.
  7852. These are only available when computing the @option{out_w} and
  7853. @option{out_h} expressions.
  7854. @end table
  7855. @subsection Examples
  7856. @itemize
  7857. @item
  7858. Rotate the input by PI/6 radians clockwise:
  7859. @example
  7860. rotate=PI/6
  7861. @end example
  7862. @item
  7863. Rotate the input by PI/6 radians counter-clockwise:
  7864. @example
  7865. rotate=-PI/6
  7866. @end example
  7867. @item
  7868. Rotate the input by 45 degrees clockwise:
  7869. @example
  7870. rotate=45*PI/180
  7871. @end example
  7872. @item
  7873. Apply a constant rotation with period T, starting from an angle of PI/3:
  7874. @example
  7875. rotate=PI/3+2*PI*t/T
  7876. @end example
  7877. @item
  7878. Make the input video rotation oscillating with a period of T
  7879. seconds and an amplitude of A radians:
  7880. @example
  7881. rotate=A*sin(2*PI/T*t)
  7882. @end example
  7883. @item
  7884. Rotate the video, output size is chosen so that the whole rotating
  7885. input video is always completely contained in the output:
  7886. @example
  7887. rotate='2*PI*t:ow=hypot(iw,ih):oh=ow'
  7888. @end example
  7889. @item
  7890. Rotate the video, reduce the output size so that no background is ever
  7891. shown:
  7892. @example
  7893. rotate=2*PI*t:ow='min(iw,ih)/sqrt(2)':oh=ow:c=none
  7894. @end example
  7895. @end itemize
  7896. @subsection Commands
  7897. The filter supports the following commands:
  7898. @table @option
  7899. @item a, angle
  7900. Set the angle expression.
  7901. The command accepts the same syntax of the corresponding option.
  7902. If the specified expression is not valid, it is kept at its current
  7903. value.
  7904. @end table
  7905. @section sab
  7906. Apply Shape Adaptive Blur.
  7907. The filter accepts the following options:
  7908. @table @option
  7909. @item luma_radius, lr
  7910. Set luma blur filter strength, must be a value in range 0.1-4.0, default
  7911. value is 1.0. A greater value will result in a more blurred image, and
  7912. in slower processing.
  7913. @item luma_pre_filter_radius, lpfr
  7914. Set luma pre-filter radius, must be a value in the 0.1-2.0 range, default
  7915. value is 1.0.
  7916. @item luma_strength, ls
  7917. Set luma maximum difference between pixels to still be considered, must
  7918. be a value in the 0.1-100.0 range, default value is 1.0.
  7919. @item chroma_radius, cr
  7920. Set chroma blur filter strength, must be a value in range 0.1-4.0. A
  7921. greater value will result in a more blurred image, and in slower
  7922. processing.
  7923. @item chroma_pre_filter_radius, cpfr
  7924. Set chroma pre-filter radius, must be a value in the 0.1-2.0 range.
  7925. @item chroma_strength, cs
  7926. Set chroma maximum difference between pixels to still be considered,
  7927. must be a value in the 0.1-100.0 range.
  7928. @end table
  7929. Each chroma option value, if not explicitly specified, is set to the
  7930. corresponding luma option value.
  7931. @anchor{scale}
  7932. @section scale
  7933. Scale (resize) the input video, using the libswscale library.
  7934. The scale filter forces the output display aspect ratio to be the same
  7935. of the input, by changing the output sample aspect ratio.
  7936. If the input image format is different from the format requested by
  7937. the next filter, the scale filter will convert the input to the
  7938. requested format.
  7939. @subsection Options
  7940. The filter accepts the following options, or any of the options
  7941. supported by the libswscale scaler.
  7942. See @ref{scaler_options,,the ffmpeg-scaler manual,ffmpeg-scaler} for
  7943. the complete list of scaler options.
  7944. @table @option
  7945. @item width, w
  7946. @item height, h
  7947. Set the output video dimension expression. Default value is the input
  7948. dimension.
  7949. If the value is 0, the input width is used for the output.
  7950. If one of the values is -1, the scale filter will use a value that
  7951. maintains the aspect ratio of the input image, calculated from the
  7952. other specified dimension. If both of them are -1, the input size is
  7953. used
  7954. If one of the values is -n with n > 1, the scale filter will also use a value
  7955. that maintains the aspect ratio of the input image, calculated from the other
  7956. specified dimension. After that it will, however, make sure that the calculated
  7957. dimension is divisible by n and adjust the value if necessary.
  7958. See below for the list of accepted constants for use in the dimension
  7959. expression.
  7960. @item eval
  7961. Specify when to evaluate @var{width} and @var{height} expression. It accepts the following values:
  7962. @table @samp
  7963. @item init
  7964. Only evaluate expressions once during the filter initialization or when a command is processed.
  7965. @item frame
  7966. Evaluate expressions for each incoming frame.
  7967. @end table
  7968. Default value is @samp{init}.
  7969. @item interl
  7970. Set the interlacing mode. It accepts the following values:
  7971. @table @samp
  7972. @item 1
  7973. Force interlaced aware scaling.
  7974. @item 0
  7975. Do not apply interlaced scaling.
  7976. @item -1
  7977. Select interlaced aware scaling depending on whether the source frames
  7978. are flagged as interlaced or not.
  7979. @end table
  7980. Default value is @samp{0}.
  7981. @item flags
  7982. Set libswscale scaling flags. See
  7983. @ref{sws_flags,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
  7984. complete list of values. If not explicitly specified the filter applies
  7985. the default flags.
  7986. @item param0, param1
  7987. Set libswscale input parameters for scaling algorithms that need them. See
  7988. @ref{sws_params,,the ffmpeg-scaler manual,ffmpeg-scaler} for the
  7989. complete documentation. If not explicitly specified the filter applies
  7990. empty parameters.
  7991. @item size, s
  7992. Set the video size. For the syntax of this option, check the
  7993. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  7994. @item in_color_matrix
  7995. @item out_color_matrix
  7996. Set in/output YCbCr color space type.
  7997. This allows the autodetected value to be overridden as well as allows forcing
  7998. a specific value used for the output and encoder.
  7999. If not specified, the color space type depends on the pixel format.
  8000. Possible values:
  8001. @table @samp
  8002. @item auto
  8003. Choose automatically.
  8004. @item bt709
  8005. Format conforming to International Telecommunication Union (ITU)
  8006. Recommendation BT.709.
  8007. @item fcc
  8008. Set color space conforming to the United States Federal Communications
  8009. Commission (FCC) Code of Federal Regulations (CFR) Title 47 (2003) 73.682 (a).
  8010. @item bt601
  8011. Set color space conforming to:
  8012. @itemize
  8013. @item
  8014. ITU Radiocommunication Sector (ITU-R) Recommendation BT.601
  8015. @item
  8016. ITU-R Rec. BT.470-6 (1998) Systems B, B1, and G
  8017. @item
  8018. Society of Motion Picture and Television Engineers (SMPTE) ST 170:2004
  8019. @end itemize
  8020. @item smpte240m
  8021. Set color space conforming to SMPTE ST 240:1999.
  8022. @end table
  8023. @item in_range
  8024. @item out_range
  8025. Set in/output YCbCr sample range.
  8026. This allows the autodetected value to be overridden as well as allows forcing
  8027. a specific value used for the output and encoder. If not specified, the
  8028. range depends on the pixel format. Possible values:
  8029. @table @samp
  8030. @item auto
  8031. Choose automatically.
  8032. @item jpeg/full/pc
  8033. Set full range (0-255 in case of 8-bit luma).
  8034. @item mpeg/tv
  8035. Set "MPEG" range (16-235 in case of 8-bit luma).
  8036. @end table
  8037. @item force_original_aspect_ratio
  8038. Enable decreasing or increasing output video width or height if necessary to
  8039. keep the original aspect ratio. Possible values:
  8040. @table @samp
  8041. @item disable
  8042. Scale the video as specified and disable this feature.
  8043. @item decrease
  8044. The output video dimensions will automatically be decreased if needed.
  8045. @item increase
  8046. The output video dimensions will automatically be increased if needed.
  8047. @end table
  8048. One useful instance of this option is that when you know a specific device's
  8049. maximum allowed resolution, you can use this to limit the output video to
  8050. that, while retaining the aspect ratio. For example, device A allows
  8051. 1280x720 playback, and your video is 1920x800. Using this option (set it to
  8052. decrease) and specifying 1280x720 to the command line makes the output
  8053. 1280x533.
  8054. Please note that this is a different thing than specifying -1 for @option{w}
  8055. or @option{h}, you still need to specify the output resolution for this option
  8056. to work.
  8057. @end table
  8058. The values of the @option{w} and @option{h} options are expressions
  8059. containing the following constants:
  8060. @table @var
  8061. @item in_w
  8062. @item in_h
  8063. The input width and height
  8064. @item iw
  8065. @item ih
  8066. These are the same as @var{in_w} and @var{in_h}.
  8067. @item out_w
  8068. @item out_h
  8069. The output (scaled) width and height
  8070. @item ow
  8071. @item oh
  8072. These are the same as @var{out_w} and @var{out_h}
  8073. @item a
  8074. The same as @var{iw} / @var{ih}
  8075. @item sar
  8076. input sample aspect ratio
  8077. @item dar
  8078. The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
  8079. @item hsub
  8080. @item vsub
  8081. horizontal and vertical input chroma subsample values. For example for the
  8082. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  8083. @item ohsub
  8084. @item ovsub
  8085. horizontal and vertical output chroma subsample values. For example for the
  8086. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  8087. @end table
  8088. @subsection Examples
  8089. @itemize
  8090. @item
  8091. Scale the input video to a size of 200x100
  8092. @example
  8093. scale=w=200:h=100
  8094. @end example
  8095. This is equivalent to:
  8096. @example
  8097. scale=200:100
  8098. @end example
  8099. or:
  8100. @example
  8101. scale=200x100
  8102. @end example
  8103. @item
  8104. Specify a size abbreviation for the output size:
  8105. @example
  8106. scale=qcif
  8107. @end example
  8108. which can also be written as:
  8109. @example
  8110. scale=size=qcif
  8111. @end example
  8112. @item
  8113. Scale the input to 2x:
  8114. @example
  8115. scale=w=2*iw:h=2*ih
  8116. @end example
  8117. @item
  8118. The above is the same as:
  8119. @example
  8120. scale=2*in_w:2*in_h
  8121. @end example
  8122. @item
  8123. Scale the input to 2x with forced interlaced scaling:
  8124. @example
  8125. scale=2*iw:2*ih:interl=1
  8126. @end example
  8127. @item
  8128. Scale the input to half size:
  8129. @example
  8130. scale=w=iw/2:h=ih/2
  8131. @end example
  8132. @item
  8133. Increase the width, and set the height to the same size:
  8134. @example
  8135. scale=3/2*iw:ow
  8136. @end example
  8137. @item
  8138. Seek Greek harmony:
  8139. @example
  8140. scale=iw:1/PHI*iw
  8141. scale=ih*PHI:ih
  8142. @end example
  8143. @item
  8144. Increase the height, and set the width to 3/2 of the height:
  8145. @example
  8146. scale=w=3/2*oh:h=3/5*ih
  8147. @end example
  8148. @item
  8149. Increase the size, making the size a multiple of the chroma
  8150. subsample values:
  8151. @example
  8152. scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
  8153. @end example
  8154. @item
  8155. Increase the width to a maximum of 500 pixels,
  8156. keeping the same aspect ratio as the input:
  8157. @example
  8158. scale=w='min(500\, iw*3/2):h=-1'
  8159. @end example
  8160. @end itemize
  8161. @subsection Commands
  8162. This filter supports the following commands:
  8163. @table @option
  8164. @item width, w
  8165. @item height, h
  8166. Set the output video dimension expression.
  8167. The command accepts the same syntax of the corresponding option.
  8168. If the specified expression is not valid, it is kept at its current
  8169. value.
  8170. @end table
  8171. @section scale2ref
  8172. Scale (resize) the input video, based on a reference video.
  8173. See the scale filter for available options, scale2ref supports the same but
  8174. uses the reference video instead of the main input as basis.
  8175. @subsection Examples
  8176. @itemize
  8177. @item
  8178. Scale a subtitle stream to match the main video in size before overlaying
  8179. @example
  8180. 'scale2ref[b][a];[a][b]overlay'
  8181. @end example
  8182. @end itemize
  8183. @section selectivecolor
  8184. Adjust cyan, magenta, yellow and black (CMYK) to certain ranges of colors (such
  8185. as "reds", "yellows", "greens", "cyans", ...). The adjustment range is defined
  8186. by the "purity" of the color (that is, how saturated it already is).
  8187. This filter is similar to the Adobe Photoshop Selective Color tool.
  8188. The filter accepts the following options:
  8189. @table @option
  8190. @item correction_method
  8191. Select color correction method.
  8192. Available values are:
  8193. @table @samp
  8194. @item absolute
  8195. Specified adjustments are applied "as-is" (added/subtracted to original pixel
  8196. component value).
  8197. @item relative
  8198. Specified adjustments are relative to the original component value.
  8199. @end table
  8200. Default is @code{absolute}.
  8201. @item reds
  8202. Adjustments for red pixels (pixels where the red component is the maximum)
  8203. @item yellows
  8204. Adjustments for yellow pixels (pixels where the blue component is the minimum)
  8205. @item greens
  8206. Adjustments for green pixels (pixels where the green component is the maximum)
  8207. @item cyans
  8208. Adjustments for cyan pixels (pixels where the red component is the minimum)
  8209. @item blues
  8210. Adjustments for blue pixels (pixels where the blue component is the maximum)
  8211. @item magentas
  8212. Adjustments for magenta pixels (pixels where the green component is the minimum)
  8213. @item whites
  8214. Adjustments for white pixels (pixels where all components are greater than 128)
  8215. @item neutrals
  8216. Adjustments for all pixels except pure black and pure white
  8217. @item blacks
  8218. Adjustments for black pixels (pixels where all components are lesser than 128)
  8219. @item psfile
  8220. Specify a Photoshop selective color file (@code{.asv}) to import the settings from.
  8221. @end table
  8222. All the adjustment settings (@option{reds}, @option{yellows}, ...) accept up to
  8223. 4 space separated floating point adjustment values in the [-1,1] range,
  8224. respectively to adjust the amount of cyan, magenta, yellow and black for the
  8225. pixels of its range.
  8226. @subsection Examples
  8227. @itemize
  8228. @item
  8229. Increase cyan by 50% and reduce yellow by 33% in every green areas, and
  8230. increase magenta by 27% in blue areas:
  8231. @example
  8232. selectivecolor=greens=.5 0 -.33 0:blues=0 .27
  8233. @end example
  8234. @item
  8235. Use a Photoshop selective color preset:
  8236. @example
  8237. selectivecolor=psfile=MySelectiveColorPresets/Misty.asv
  8238. @end example
  8239. @end itemize
  8240. @section separatefields
  8241. The @code{separatefields} takes a frame-based video input and splits
  8242. each frame into its components fields, producing a new half height clip
  8243. with twice the frame rate and twice the frame count.
  8244. This filter use field-dominance information in frame to decide which
  8245. of each pair of fields to place first in the output.
  8246. If it gets it wrong use @ref{setfield} filter before @code{separatefields} filter.
  8247. @section setdar, setsar
  8248. The @code{setdar} filter sets the Display Aspect Ratio for the filter
  8249. output video.
  8250. This is done by changing the specified Sample (aka Pixel) Aspect
  8251. Ratio, according to the following equation:
  8252. @example
  8253. @var{DAR} = @var{HORIZONTAL_RESOLUTION} / @var{VERTICAL_RESOLUTION} * @var{SAR}
  8254. @end example
  8255. Keep in mind that the @code{setdar} filter does not modify the pixel
  8256. dimensions of the video frame. Also, the display aspect ratio set by
  8257. this filter may be changed by later filters in the filterchain,
  8258. e.g. in case of scaling or if another "setdar" or a "setsar" filter is
  8259. applied.
  8260. The @code{setsar} filter sets the Sample (aka Pixel) Aspect Ratio for
  8261. the filter output video.
  8262. Note that as a consequence of the application of this filter, the
  8263. output display aspect ratio will change according to the equation
  8264. above.
  8265. Keep in mind that the sample aspect ratio set by the @code{setsar}
  8266. filter may be changed by later filters in the filterchain, e.g. if
  8267. another "setsar" or a "setdar" filter is applied.
  8268. It accepts the following parameters:
  8269. @table @option
  8270. @item r, ratio, dar (@code{setdar} only), sar (@code{setsar} only)
  8271. Set the aspect ratio used by the filter.
  8272. The parameter can be a floating point number string, an expression, or
  8273. a string of the form @var{num}:@var{den}, where @var{num} and
  8274. @var{den} are the numerator and denominator of the aspect ratio. If
  8275. the parameter is not specified, it is assumed the value "0".
  8276. In case the form "@var{num}:@var{den}" is used, the @code{:} character
  8277. should be escaped.
  8278. @item max
  8279. Set the maximum integer value to use for expressing numerator and
  8280. denominator when reducing the expressed aspect ratio to a rational.
  8281. Default value is @code{100}.
  8282. @end table
  8283. The parameter @var{sar} is an expression containing
  8284. the following constants:
  8285. @table @option
  8286. @item E, PI, PHI
  8287. These are approximated values for the mathematical constants e
  8288. (Euler's number), pi (Greek pi), and phi (the golden ratio).
  8289. @item w, h
  8290. The input width and height.
  8291. @item a
  8292. These are the same as @var{w} / @var{h}.
  8293. @item sar
  8294. The input sample aspect ratio.
  8295. @item dar
  8296. The input display aspect ratio. It is the same as
  8297. (@var{w} / @var{h}) * @var{sar}.
  8298. @item hsub, vsub
  8299. Horizontal and vertical chroma subsample values. For example, for the
  8300. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  8301. @end table
  8302. @subsection Examples
  8303. @itemize
  8304. @item
  8305. To change the display aspect ratio to 16:9, specify one of the following:
  8306. @example
  8307. setdar=dar=1.77777
  8308. setdar=dar=16/9
  8309. setdar=dar=1.77777
  8310. @end example
  8311. @item
  8312. To change the sample aspect ratio to 10:11, specify:
  8313. @example
  8314. setsar=sar=10/11
  8315. @end example
  8316. @item
  8317. To set a display aspect ratio of 16:9, and specify a maximum integer value of
  8318. 1000 in the aspect ratio reduction, use the command:
  8319. @example
  8320. setdar=ratio=16/9:max=1000
  8321. @end example
  8322. @end itemize
  8323. @anchor{setfield}
  8324. @section setfield
  8325. Force field for the output video frame.
  8326. The @code{setfield} filter marks the interlace type field for the
  8327. output frames. It does not change the input frame, but only sets the
  8328. corresponding property, which affects how the frame is treated by
  8329. following filters (e.g. @code{fieldorder} or @code{yadif}).
  8330. The filter accepts the following options:
  8331. @table @option
  8332. @item mode
  8333. Available values are:
  8334. @table @samp
  8335. @item auto
  8336. Keep the same field property.
  8337. @item bff
  8338. Mark the frame as bottom-field-first.
  8339. @item tff
  8340. Mark the frame as top-field-first.
  8341. @item prog
  8342. Mark the frame as progressive.
  8343. @end table
  8344. @end table
  8345. @section showinfo
  8346. Show a line containing various information for each input video frame.
  8347. The input video is not modified.
  8348. The shown line contains a sequence of key/value pairs of the form
  8349. @var{key}:@var{value}.
  8350. The following values are shown in the output:
  8351. @table @option
  8352. @item n
  8353. The (sequential) number of the input frame, starting from 0.
  8354. @item pts
  8355. The Presentation TimeStamp of the input frame, expressed as a number of
  8356. time base units. The time base unit depends on the filter input pad.
  8357. @item pts_time
  8358. The Presentation TimeStamp of the input frame, expressed as a number of
  8359. seconds.
  8360. @item pos
  8361. The position of the frame in the input stream, or -1 if this information is
  8362. unavailable and/or meaningless (for example in case of synthetic video).
  8363. @item fmt
  8364. The pixel format name.
  8365. @item sar
  8366. The sample aspect ratio of the input frame, expressed in the form
  8367. @var{num}/@var{den}.
  8368. @item s
  8369. The size of the input frame. For the syntax of this option, check the
  8370. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  8371. @item i
  8372. The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
  8373. for bottom field first).
  8374. @item iskey
  8375. This is 1 if the frame is a key frame, 0 otherwise.
  8376. @item type
  8377. The picture type of the input frame ("I" for an I-frame, "P" for a
  8378. P-frame, "B" for a B-frame, or "?" for an unknown type).
  8379. Also refer to the documentation of the @code{AVPictureType} enum and of
  8380. the @code{av_get_picture_type_char} function defined in
  8381. @file{libavutil/avutil.h}.
  8382. @item checksum
  8383. The Adler-32 checksum (printed in hexadecimal) of all the planes of the input frame.
  8384. @item plane_checksum
  8385. The Adler-32 checksum (printed in hexadecimal) of each plane of the input frame,
  8386. expressed in the form "[@var{c0} @var{c1} @var{c2} @var{c3}]".
  8387. @end table
  8388. @section showpalette
  8389. Displays the 256 colors palette of each frame. This filter is only relevant for
  8390. @var{pal8} pixel format frames.
  8391. It accepts the following option:
  8392. @table @option
  8393. @item s
  8394. Set the size of the box used to represent one palette color entry. Default is
  8395. @code{30} (for a @code{30x30} pixel box).
  8396. @end table
  8397. @section shuffleframes
  8398. Reorder and/or duplicate video frames.
  8399. It accepts the following parameters:
  8400. @table @option
  8401. @item mapping
  8402. Set the destination indexes of input frames.
  8403. This is space or '|' separated list of indexes that maps input frames to output
  8404. frames. Number of indexes also sets maximal value that each index may have.
  8405. @end table
  8406. The first frame has the index 0. The default is to keep the input unchanged.
  8407. Swap second and third frame of every three frames of the input:
  8408. @example
  8409. ffmpeg -i INPUT -vf "shuffleframes=0 2 1" OUTPUT
  8410. @end example
  8411. @section shuffleplanes
  8412. Reorder and/or duplicate video planes.
  8413. It accepts the following parameters:
  8414. @table @option
  8415. @item map0
  8416. The index of the input plane to be used as the first output plane.
  8417. @item map1
  8418. The index of the input plane to be used as the second output plane.
  8419. @item map2
  8420. The index of the input plane to be used as the third output plane.
  8421. @item map3
  8422. The index of the input plane to be used as the fourth output plane.
  8423. @end table
  8424. The first plane has the index 0. The default is to keep the input unchanged.
  8425. Swap the second and third planes of the input:
  8426. @example
  8427. ffmpeg -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
  8428. @end example
  8429. @anchor{signalstats}
  8430. @section signalstats
  8431. Evaluate various visual metrics that assist in determining issues associated
  8432. with the digitization of analog video media.
  8433. By default the filter will log these metadata values:
  8434. @table @option
  8435. @item YMIN
  8436. Display the minimal Y value contained within the input frame. Expressed in
  8437. range of [0-255].
  8438. @item YLOW
  8439. Display the Y value at the 10% percentile within the input frame. Expressed in
  8440. range of [0-255].
  8441. @item YAVG
  8442. Display the average Y value within the input frame. Expressed in range of
  8443. [0-255].
  8444. @item YHIGH
  8445. Display the Y value at the 90% percentile within the input frame. Expressed in
  8446. range of [0-255].
  8447. @item YMAX
  8448. Display the maximum Y value contained within the input frame. Expressed in
  8449. range of [0-255].
  8450. @item UMIN
  8451. Display the minimal U value contained within the input frame. Expressed in
  8452. range of [0-255].
  8453. @item ULOW
  8454. Display the U value at the 10% percentile within the input frame. Expressed in
  8455. range of [0-255].
  8456. @item UAVG
  8457. Display the average U value within the input frame. Expressed in range of
  8458. [0-255].
  8459. @item UHIGH
  8460. Display the U value at the 90% percentile within the input frame. Expressed in
  8461. range of [0-255].
  8462. @item UMAX
  8463. Display the maximum U value contained within the input frame. Expressed in
  8464. range of [0-255].
  8465. @item VMIN
  8466. Display the minimal V value contained within the input frame. Expressed in
  8467. range of [0-255].
  8468. @item VLOW
  8469. Display the V value at the 10% percentile within the input frame. Expressed in
  8470. range of [0-255].
  8471. @item VAVG
  8472. Display the average V value within the input frame. Expressed in range of
  8473. [0-255].
  8474. @item VHIGH
  8475. Display the V value at the 90% percentile within the input frame. Expressed in
  8476. range of [0-255].
  8477. @item VMAX
  8478. Display the maximum V value contained within the input frame. Expressed in
  8479. range of [0-255].
  8480. @item SATMIN
  8481. Display the minimal saturation value contained within the input frame.
  8482. Expressed in range of [0-~181.02].
  8483. @item SATLOW
  8484. Display the saturation value at the 10% percentile within the input frame.
  8485. Expressed in range of [0-~181.02].
  8486. @item SATAVG
  8487. Display the average saturation value within the input frame. Expressed in range
  8488. of [0-~181.02].
  8489. @item SATHIGH
  8490. Display the saturation value at the 90% percentile within the input frame.
  8491. Expressed in range of [0-~181.02].
  8492. @item SATMAX
  8493. Display the maximum saturation value contained within the input frame.
  8494. Expressed in range of [0-~181.02].
  8495. @item HUEMED
  8496. Display the median value for hue within the input frame. Expressed in range of
  8497. [0-360].
  8498. @item HUEAVG
  8499. Display the average value for hue within the input frame. Expressed in range of
  8500. [0-360].
  8501. @item YDIF
  8502. Display the average of sample value difference between all values of the Y
  8503. plane in the current frame and corresponding values of the previous input frame.
  8504. Expressed in range of [0-255].
  8505. @item UDIF
  8506. Display the average of sample value difference between all values of the U
  8507. plane in the current frame and corresponding values of the previous input frame.
  8508. Expressed in range of [0-255].
  8509. @item VDIF
  8510. Display the average of sample value difference between all values of the V
  8511. plane in the current frame and corresponding values of the previous input frame.
  8512. Expressed in range of [0-255].
  8513. @end table
  8514. The filter accepts the following options:
  8515. @table @option
  8516. @item stat
  8517. @item out
  8518. @option{stat} specify an additional form of image analysis.
  8519. @option{out} output video with the specified type of pixel highlighted.
  8520. Both options accept the following values:
  8521. @table @samp
  8522. @item tout
  8523. Identify @var{temporal outliers} pixels. A @var{temporal outlier} is a pixel
  8524. unlike the neighboring pixels of the same field. Examples of temporal outliers
  8525. include the results of video dropouts, head clogs, or tape tracking issues.
  8526. @item vrep
  8527. Identify @var{vertical line repetition}. Vertical line repetition includes
  8528. similar rows of pixels within a frame. In born-digital video vertical line
  8529. repetition is common, but this pattern is uncommon in video digitized from an
  8530. analog source. When it occurs in video that results from the digitization of an
  8531. analog source it can indicate concealment from a dropout compensator.
  8532. @item brng
  8533. Identify pixels that fall outside of legal broadcast range.
  8534. @end table
  8535. @item color, c
  8536. Set the highlight color for the @option{out} option. The default color is
  8537. yellow.
  8538. @end table
  8539. @subsection Examples
  8540. @itemize
  8541. @item
  8542. Output data of various video metrics:
  8543. @example
  8544. ffprobe -f lavfi movie=example.mov,signalstats="stat=tout+vrep+brng" -show_frames
  8545. @end example
  8546. @item
  8547. Output specific data about the minimum and maximum values of the Y plane per frame:
  8548. @example
  8549. ffprobe -f lavfi movie=example.mov,signalstats -show_entries frame_tags=lavfi.signalstats.YMAX,lavfi.signalstats.YMIN
  8550. @end example
  8551. @item
  8552. Playback video while highlighting pixels that are outside of broadcast range in red.
  8553. @example
  8554. ffplay example.mov -vf signalstats="out=brng:color=red"
  8555. @end example
  8556. @item
  8557. Playback video with signalstats metadata drawn over the frame.
  8558. @example
  8559. ffplay example.mov -vf signalstats=stat=brng+vrep+tout,drawtext=fontfile=FreeSerif.ttf:textfile=signalstat_drawtext.txt
  8560. @end example
  8561. The contents of signalstat_drawtext.txt used in the command are:
  8562. @example
  8563. time %@{pts:hms@}
  8564. Y (%@{metadata:lavfi.signalstats.YMIN@}-%@{metadata:lavfi.signalstats.YMAX@})
  8565. U (%@{metadata:lavfi.signalstats.UMIN@}-%@{metadata:lavfi.signalstats.UMAX@})
  8566. V (%@{metadata:lavfi.signalstats.VMIN@}-%@{metadata:lavfi.signalstats.VMAX@})
  8567. saturation maximum: %@{metadata:lavfi.signalstats.SATMAX@}
  8568. @end example
  8569. @end itemize
  8570. @anchor{smartblur}
  8571. @section smartblur
  8572. Blur the input video without impacting the outlines.
  8573. It accepts the following options:
  8574. @table @option
  8575. @item luma_radius, lr
  8576. Set the luma radius. The option value must be a float number in
  8577. the range [0.1,5.0] that specifies the variance of the gaussian filter
  8578. used to blur the image (slower if larger). Default value is 1.0.
  8579. @item luma_strength, ls
  8580. Set the luma strength. The option value must be a float number
  8581. in the range [-1.0,1.0] that configures the blurring. A value included
  8582. in [0.0,1.0] will blur the image whereas a value included in
  8583. [-1.0,0.0] will sharpen the image. Default value is 1.0.
  8584. @item luma_threshold, lt
  8585. Set the luma threshold used as a coefficient to determine
  8586. whether a pixel should be blurred or not. The option value must be an
  8587. integer in the range [-30,30]. A value of 0 will filter all the image,
  8588. a value included in [0,30] will filter flat areas and a value included
  8589. in [-30,0] will filter edges. Default value is 0.
  8590. @item chroma_radius, cr
  8591. Set the chroma radius. The option value must be a float number in
  8592. the range [0.1,5.0] that specifies the variance of the gaussian filter
  8593. used to blur the image (slower if larger). Default value is 1.0.
  8594. @item chroma_strength, cs
  8595. Set the chroma strength. The option value must be a float number
  8596. in the range [-1.0,1.0] that configures the blurring. A value included
  8597. in [0.0,1.0] will blur the image whereas a value included in
  8598. [-1.0,0.0] will sharpen the image. Default value is 1.0.
  8599. @item chroma_threshold, ct
  8600. Set the chroma threshold used as a coefficient to determine
  8601. whether a pixel should be blurred or not. The option value must be an
  8602. integer in the range [-30,30]. A value of 0 will filter all the image,
  8603. a value included in [0,30] will filter flat areas and a value included
  8604. in [-30,0] will filter edges. Default value is 0.
  8605. @end table
  8606. If a chroma option is not explicitly set, the corresponding luma value
  8607. is set.
  8608. @section ssim
  8609. Obtain the SSIM (Structural SImilarity Metric) between two input videos.
  8610. This filter takes in input two input videos, the first input is
  8611. considered the "main" source and is passed unchanged to the
  8612. output. The second input is used as a "reference" video for computing
  8613. the SSIM.
  8614. Both video inputs must have the same resolution and pixel format for
  8615. this filter to work correctly. Also it assumes that both inputs
  8616. have the same number of frames, which are compared one by one.
  8617. The filter stores the calculated SSIM of each frame.
  8618. The description of the accepted parameters follows.
  8619. @table @option
  8620. @item stats_file, f
  8621. If specified the filter will use the named file to save the SSIM of
  8622. each individual frame. When filename equals "-" the data is sent to
  8623. standard output.
  8624. @end table
  8625. The file printed if @var{stats_file} is selected, contains a sequence of
  8626. key/value pairs of the form @var{key}:@var{value} for each compared
  8627. couple of frames.
  8628. A description of each shown parameter follows:
  8629. @table @option
  8630. @item n
  8631. sequential number of the input frame, starting from 1
  8632. @item Y, U, V, R, G, B
  8633. SSIM of the compared frames for the component specified by the suffix.
  8634. @item All
  8635. SSIM of the compared frames for the whole frame.
  8636. @item dB
  8637. Same as above but in dB representation.
  8638. @end table
  8639. For example:
  8640. @example
  8641. movie=ref_movie.mpg, setpts=PTS-STARTPTS [main];
  8642. [main][ref] ssim="stats_file=stats.log" [out]
  8643. @end example
  8644. On this example the input file being processed is compared with the
  8645. reference file @file{ref_movie.mpg}. The SSIM of each individual frame
  8646. is stored in @file{stats.log}.
  8647. Another example with both psnr and ssim at same time:
  8648. @example
  8649. ffmpeg -i main.mpg -i ref.mpg -lavfi "ssim;[0:v][1:v]psnr" -f null -
  8650. @end example
  8651. @section stereo3d
  8652. Convert between different stereoscopic image formats.
  8653. The filters accept the following options:
  8654. @table @option
  8655. @item in
  8656. Set stereoscopic image format of input.
  8657. Available values for input image formats are:
  8658. @table @samp
  8659. @item sbsl
  8660. side by side parallel (left eye left, right eye right)
  8661. @item sbsr
  8662. side by side crosseye (right eye left, left eye right)
  8663. @item sbs2l
  8664. side by side parallel with half width resolution
  8665. (left eye left, right eye right)
  8666. @item sbs2r
  8667. side by side crosseye with half width resolution
  8668. (right eye left, left eye right)
  8669. @item abl
  8670. above-below (left eye above, right eye below)
  8671. @item abr
  8672. above-below (right eye above, left eye below)
  8673. @item ab2l
  8674. above-below with half height resolution
  8675. (left eye above, right eye below)
  8676. @item ab2r
  8677. above-below with half height resolution
  8678. (right eye above, left eye below)
  8679. @item al
  8680. alternating frames (left eye first, right eye second)
  8681. @item ar
  8682. alternating frames (right eye first, left eye second)
  8683. @item irl
  8684. interleaved rows (left eye has top row, right eye starts on next row)
  8685. @item irr
  8686. interleaved rows (right eye has top row, left eye starts on next row)
  8687. @item icl
  8688. interleaved columns, left eye first
  8689. @item icr
  8690. interleaved columns, right eye first
  8691. Default value is @samp{sbsl}.
  8692. @end table
  8693. @item out
  8694. Set stereoscopic image format of output.
  8695. @table @samp
  8696. @item sbsl
  8697. side by side parallel (left eye left, right eye right)
  8698. @item sbsr
  8699. side by side crosseye (right eye left, left eye right)
  8700. @item sbs2l
  8701. side by side parallel with half width resolution
  8702. (left eye left, right eye right)
  8703. @item sbs2r
  8704. side by side crosseye with half width resolution
  8705. (right eye left, left eye right)
  8706. @item abl
  8707. above-below (left eye above, right eye below)
  8708. @item abr
  8709. above-below (right eye above, left eye below)
  8710. @item ab2l
  8711. above-below with half height resolution
  8712. (left eye above, right eye below)
  8713. @item ab2r
  8714. above-below with half height resolution
  8715. (right eye above, left eye below)
  8716. @item al
  8717. alternating frames (left eye first, right eye second)
  8718. @item ar
  8719. alternating frames (right eye first, left eye second)
  8720. @item irl
  8721. interleaved rows (left eye has top row, right eye starts on next row)
  8722. @item irr
  8723. interleaved rows (right eye has top row, left eye starts on next row)
  8724. @item arbg
  8725. anaglyph red/blue gray
  8726. (red filter on left eye, blue filter on right eye)
  8727. @item argg
  8728. anaglyph red/green gray
  8729. (red filter on left eye, green filter on right eye)
  8730. @item arcg
  8731. anaglyph red/cyan gray
  8732. (red filter on left eye, cyan filter on right eye)
  8733. @item arch
  8734. anaglyph red/cyan half colored
  8735. (red filter on left eye, cyan filter on right eye)
  8736. @item arcc
  8737. anaglyph red/cyan color
  8738. (red filter on left eye, cyan filter on right eye)
  8739. @item arcd
  8740. anaglyph red/cyan color optimized with the least squares projection of dubois
  8741. (red filter on left eye, cyan filter on right eye)
  8742. @item agmg
  8743. anaglyph green/magenta gray
  8744. (green filter on left eye, magenta filter on right eye)
  8745. @item agmh
  8746. anaglyph green/magenta half colored
  8747. (green filter on left eye, magenta filter on right eye)
  8748. @item agmc
  8749. anaglyph green/magenta colored
  8750. (green filter on left eye, magenta filter on right eye)
  8751. @item agmd
  8752. anaglyph green/magenta color optimized with the least squares projection of dubois
  8753. (green filter on left eye, magenta filter on right eye)
  8754. @item aybg
  8755. anaglyph yellow/blue gray
  8756. (yellow filter on left eye, blue filter on right eye)
  8757. @item aybh
  8758. anaglyph yellow/blue half colored
  8759. (yellow filter on left eye, blue filter on right eye)
  8760. @item aybc
  8761. anaglyph yellow/blue colored
  8762. (yellow filter on left eye, blue filter on right eye)
  8763. @item aybd
  8764. anaglyph yellow/blue color optimized with the least squares projection of dubois
  8765. (yellow filter on left eye, blue filter on right eye)
  8766. @item ml
  8767. mono output (left eye only)
  8768. @item mr
  8769. mono output (right eye only)
  8770. @item chl
  8771. checkerboard, left eye first
  8772. @item chr
  8773. checkerboard, right eye first
  8774. @item icl
  8775. interleaved columns, left eye first
  8776. @item icr
  8777. interleaved columns, right eye first
  8778. @end table
  8779. Default value is @samp{arcd}.
  8780. @end table
  8781. @subsection Examples
  8782. @itemize
  8783. @item
  8784. Convert input video from side by side parallel to anaglyph yellow/blue dubois:
  8785. @example
  8786. stereo3d=sbsl:aybd
  8787. @end example
  8788. @item
  8789. Convert input video from above below (left eye above, right eye below) to side by side crosseye.
  8790. @example
  8791. stereo3d=abl:sbsr
  8792. @end example
  8793. @end itemize
  8794. @section streamselect, astreamselect
  8795. Select video or audio streams.
  8796. The filter accepts the following options:
  8797. @table @option
  8798. @item inputs
  8799. Set number of inputs. Default is 2.
  8800. @item map
  8801. Set input indexes to remap to outputs.
  8802. @end table
  8803. @subsection Commands
  8804. The @code{streamselect} and @code{astreamselect} filter supports the following
  8805. commands:
  8806. @table @option
  8807. @item map
  8808. Set input indexes to remap to outputs.
  8809. @end table
  8810. @subsection Examples
  8811. @itemize
  8812. @item
  8813. Select first 5 seconds 1st stream and rest of time 2nd stream:
  8814. @example
  8815. sendcmd='5.0 streamselect map 1',streamselect=inputs=2:map=0
  8816. @end example
  8817. @item
  8818. Same as above, but for audio:
  8819. @example
  8820. asendcmd='5.0 astreamselect map 1',astreamselect=inputs=2:map=0
  8821. @end example
  8822. @end itemize
  8823. @anchor{spp}
  8824. @section spp
  8825. Apply a simple postprocessing filter that compresses and decompresses the image
  8826. at several (or - in the case of @option{quality} level @code{6} - all) shifts
  8827. and average the results.
  8828. The filter accepts the following options:
  8829. @table @option
  8830. @item quality
  8831. Set quality. This option defines the number of levels for averaging. It accepts
  8832. an integer in the range 0-6. If set to @code{0}, the filter will have no
  8833. effect. A value of @code{6} means the higher quality. For each increment of
  8834. that value the speed drops by a factor of approximately 2. Default value is
  8835. @code{3}.
  8836. @item qp
  8837. Force a constant quantization parameter. If not set, the filter will use the QP
  8838. from the video stream (if available).
  8839. @item mode
  8840. Set thresholding mode. Available modes are:
  8841. @table @samp
  8842. @item hard
  8843. Set hard thresholding (default).
  8844. @item soft
  8845. Set soft thresholding (better de-ringing effect, but likely blurrier).
  8846. @end table
  8847. @item use_bframe_qp
  8848. Enable the use of the QP from the B-Frames if set to @code{1}. Using this
  8849. option may cause flicker since the B-Frames have often larger QP. Default is
  8850. @code{0} (not enabled).
  8851. @end table
  8852. @anchor{subtitles}
  8853. @section subtitles
  8854. Draw subtitles on top of input video using the libass library.
  8855. To enable compilation of this filter you need to configure FFmpeg with
  8856. @code{--enable-libass}. This filter also requires a build with libavcodec and
  8857. libavformat to convert the passed subtitles file to ASS (Advanced Substation
  8858. Alpha) subtitles format.
  8859. The filter accepts the following options:
  8860. @table @option
  8861. @item filename, f
  8862. Set the filename of the subtitle file to read. It must be specified.
  8863. @item original_size
  8864. Specify the size of the original video, the video for which the ASS file
  8865. was composed. For the syntax of this option, check the
  8866. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  8867. Due to a misdesign in ASS aspect ratio arithmetic, this is necessary to
  8868. correctly scale the fonts if the aspect ratio has been changed.
  8869. @item fontsdir
  8870. Set a directory path containing fonts that can be used by the filter.
  8871. These fonts will be used in addition to whatever the font provider uses.
  8872. @item charenc
  8873. Set subtitles input character encoding. @code{subtitles} filter only. Only
  8874. useful if not UTF-8.
  8875. @item stream_index, si
  8876. Set subtitles stream index. @code{subtitles} filter only.
  8877. @item force_style
  8878. Override default style or script info parameters of the subtitles. It accepts a
  8879. string containing ASS style format @code{KEY=VALUE} couples separated by ",".
  8880. @end table
  8881. If the first key is not specified, it is assumed that the first value
  8882. specifies the @option{filename}.
  8883. For example, to render the file @file{sub.srt} on top of the input
  8884. video, use the command:
  8885. @example
  8886. subtitles=sub.srt
  8887. @end example
  8888. which is equivalent to:
  8889. @example
  8890. subtitles=filename=sub.srt
  8891. @end example
  8892. To render the default subtitles stream from file @file{video.mkv}, use:
  8893. @example
  8894. subtitles=video.mkv
  8895. @end example
  8896. To render the second subtitles stream from that file, use:
  8897. @example
  8898. subtitles=video.mkv:si=1
  8899. @end example
  8900. To make the subtitles stream from @file{sub.srt} appear in transparent green
  8901. @code{DejaVu Serif}, use:
  8902. @example
  8903. subtitles=sub.srt:force_style='FontName=DejaVu Serif,PrimaryColour=&HAA00FF00'
  8904. @end example
  8905. @section super2xsai
  8906. Scale the input by 2x and smooth using the Super2xSaI (Scale and
  8907. Interpolate) pixel art scaling algorithm.
  8908. Useful for enlarging pixel art images without reducing sharpness.
  8909. @section swaprect
  8910. Swap two rectangular objects in video.
  8911. This filter accepts the following options:
  8912. @table @option
  8913. @item w
  8914. Set object width.
  8915. @item h
  8916. Set object height.
  8917. @item x1
  8918. Set 1st rect x coordinate.
  8919. @item y1
  8920. Set 1st rect y coordinate.
  8921. @item x2
  8922. Set 2nd rect x coordinate.
  8923. @item y2
  8924. Set 2nd rect y coordinate.
  8925. All expressions are evaluated once for each frame.
  8926. @end table
  8927. The all options are expressions containing the following constants:
  8928. @table @option
  8929. @item w
  8930. @item h
  8931. The input width and height.
  8932. @item a
  8933. same as @var{w} / @var{h}
  8934. @item sar
  8935. input sample aspect ratio
  8936. @item dar
  8937. input display aspect ratio, it is the same as (@var{w} / @var{h}) * @var{sar}
  8938. @item n
  8939. The number of the input frame, starting from 0.
  8940. @item t
  8941. The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
  8942. @item pos
  8943. the position in the file of the input frame, NAN if unknown
  8944. @end table
  8945. @section swapuv
  8946. Swap U & V plane.
  8947. @section telecine
  8948. Apply telecine process to the video.
  8949. This filter accepts the following options:
  8950. @table @option
  8951. @item first_field
  8952. @table @samp
  8953. @item top, t
  8954. top field first
  8955. @item bottom, b
  8956. bottom field first
  8957. The default value is @code{top}.
  8958. @end table
  8959. @item pattern
  8960. A string of numbers representing the pulldown pattern you wish to apply.
  8961. The default value is @code{23}.
  8962. @end table
  8963. @example
  8964. Some typical patterns:
  8965. NTSC output (30i):
  8966. 27.5p: 32222
  8967. 24p: 23 (classic)
  8968. 24p: 2332 (preferred)
  8969. 20p: 33
  8970. 18p: 334
  8971. 16p: 3444
  8972. PAL output (25i):
  8973. 27.5p: 12222
  8974. 24p: 222222222223 ("Euro pulldown")
  8975. 16.67p: 33
  8976. 16p: 33333334
  8977. @end example
  8978. @section thumbnail
  8979. Select the most representative frame in a given sequence of consecutive frames.
  8980. The filter accepts the following options:
  8981. @table @option
  8982. @item n
  8983. Set the frames batch size to analyze; in a set of @var{n} frames, the filter
  8984. will pick one of them, and then handle the next batch of @var{n} frames until
  8985. the end. Default is @code{100}.
  8986. @end table
  8987. Since the filter keeps track of the whole frames sequence, a bigger @var{n}
  8988. value will result in a higher memory usage, so a high value is not recommended.
  8989. @subsection Examples
  8990. @itemize
  8991. @item
  8992. Extract one picture each 50 frames:
  8993. @example
  8994. thumbnail=50
  8995. @end example
  8996. @item
  8997. Complete example of a thumbnail creation with @command{ffmpeg}:
  8998. @example
  8999. ffmpeg -i in.avi -vf thumbnail,scale=300:200 -frames:v 1 out.png
  9000. @end example
  9001. @end itemize
  9002. @section tile
  9003. Tile several successive frames together.
  9004. The filter accepts the following options:
  9005. @table @option
  9006. @item layout
  9007. Set the grid size (i.e. the number of lines and columns). For the syntax of
  9008. this option, check the
  9009. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  9010. @item nb_frames
  9011. Set the maximum number of frames to render in the given area. It must be less
  9012. than or equal to @var{w}x@var{h}. The default value is @code{0}, meaning all
  9013. the area will be used.
  9014. @item margin
  9015. Set the outer border margin in pixels.
  9016. @item padding
  9017. Set the inner border thickness (i.e. the number of pixels between frames). For
  9018. more advanced padding options (such as having different values for the edges),
  9019. refer to the pad video filter.
  9020. @item color
  9021. Specify the color of the unused area. For the syntax of this option, check the
  9022. "Color" section in the ffmpeg-utils manual. The default value of @var{color}
  9023. is "black".
  9024. @end table
  9025. @subsection Examples
  9026. @itemize
  9027. @item
  9028. Produce 8x8 PNG tiles of all keyframes (@option{-skip_frame nokey}) in a movie:
  9029. @example
  9030. ffmpeg -skip_frame nokey -i file.avi -vf 'scale=128:72,tile=8x8' -an -vsync 0 keyframes%03d.png
  9031. @end example
  9032. The @option{-vsync 0} is necessary to prevent @command{ffmpeg} from
  9033. duplicating each output frame to accommodate the originally detected frame
  9034. rate.
  9035. @item
  9036. Display @code{5} pictures in an area of @code{3x2} frames,
  9037. with @code{7} pixels between them, and @code{2} pixels of initial margin, using
  9038. mixed flat and named options:
  9039. @example
  9040. tile=3x2:nb_frames=5:padding=7:margin=2
  9041. @end example
  9042. @end itemize
  9043. @section tinterlace
  9044. Perform various types of temporal field interlacing.
  9045. Frames are counted starting from 1, so the first input frame is
  9046. considered odd.
  9047. The filter accepts the following options:
  9048. @table @option
  9049. @item mode
  9050. Specify the mode of the interlacing. This option can also be specified
  9051. as a value alone. See below for a list of values for this option.
  9052. Available values are:
  9053. @table @samp
  9054. @item merge, 0
  9055. Move odd frames into the upper field, even into the lower field,
  9056. generating a double height frame at half frame rate.
  9057. @example
  9058. ------> time
  9059. Input:
  9060. Frame 1 Frame 2 Frame 3 Frame 4
  9061. 11111 22222 33333 44444
  9062. 11111 22222 33333 44444
  9063. 11111 22222 33333 44444
  9064. 11111 22222 33333 44444
  9065. Output:
  9066. 11111 33333
  9067. 22222 44444
  9068. 11111 33333
  9069. 22222 44444
  9070. 11111 33333
  9071. 22222 44444
  9072. 11111 33333
  9073. 22222 44444
  9074. @end example
  9075. @item drop_odd, 1
  9076. Only output even frames, odd frames are dropped, generating a frame with
  9077. unchanged height at half frame rate.
  9078. @example
  9079. ------> time
  9080. Input:
  9081. Frame 1 Frame 2 Frame 3 Frame 4
  9082. 11111 22222 33333 44444
  9083. 11111 22222 33333 44444
  9084. 11111 22222 33333 44444
  9085. 11111 22222 33333 44444
  9086. Output:
  9087. 22222 44444
  9088. 22222 44444
  9089. 22222 44444
  9090. 22222 44444
  9091. @end example
  9092. @item drop_even, 2
  9093. Only output odd frames, even frames are dropped, generating a frame with
  9094. unchanged height at half frame rate.
  9095. @example
  9096. ------> time
  9097. Input:
  9098. Frame 1 Frame 2 Frame 3 Frame 4
  9099. 11111 22222 33333 44444
  9100. 11111 22222 33333 44444
  9101. 11111 22222 33333 44444
  9102. 11111 22222 33333 44444
  9103. Output:
  9104. 11111 33333
  9105. 11111 33333
  9106. 11111 33333
  9107. 11111 33333
  9108. @end example
  9109. @item pad, 3
  9110. Expand each frame to full height, but pad alternate lines with black,
  9111. generating a frame with double height at the same input frame rate.
  9112. @example
  9113. ------> time
  9114. Input:
  9115. Frame 1 Frame 2 Frame 3 Frame 4
  9116. 11111 22222 33333 44444
  9117. 11111 22222 33333 44444
  9118. 11111 22222 33333 44444
  9119. 11111 22222 33333 44444
  9120. Output:
  9121. 11111 ..... 33333 .....
  9122. ..... 22222 ..... 44444
  9123. 11111 ..... 33333 .....
  9124. ..... 22222 ..... 44444
  9125. 11111 ..... 33333 .....
  9126. ..... 22222 ..... 44444
  9127. 11111 ..... 33333 .....
  9128. ..... 22222 ..... 44444
  9129. @end example
  9130. @item interleave_top, 4
  9131. Interleave the upper field from odd frames with the lower field from
  9132. even frames, generating a frame with unchanged height at half frame rate.
  9133. @example
  9134. ------> time
  9135. Input:
  9136. Frame 1 Frame 2 Frame 3 Frame 4
  9137. 11111<- 22222 33333<- 44444
  9138. 11111 22222<- 33333 44444<-
  9139. 11111<- 22222 33333<- 44444
  9140. 11111 22222<- 33333 44444<-
  9141. Output:
  9142. 11111 33333
  9143. 22222 44444
  9144. 11111 33333
  9145. 22222 44444
  9146. @end example
  9147. @item interleave_bottom, 5
  9148. Interleave the lower field from odd frames with the upper field from
  9149. even frames, generating a frame with unchanged height at half frame rate.
  9150. @example
  9151. ------> time
  9152. Input:
  9153. Frame 1 Frame 2 Frame 3 Frame 4
  9154. 11111 22222<- 33333 44444<-
  9155. 11111<- 22222 33333<- 44444
  9156. 11111 22222<- 33333 44444<-
  9157. 11111<- 22222 33333<- 44444
  9158. Output:
  9159. 22222 44444
  9160. 11111 33333
  9161. 22222 44444
  9162. 11111 33333
  9163. @end example
  9164. @item interlacex2, 6
  9165. Double frame rate with unchanged height. Frames are inserted each
  9166. containing the second temporal field from the previous input frame and
  9167. the first temporal field from the next input frame. This mode relies on
  9168. the top_field_first flag. Useful for interlaced video displays with no
  9169. field synchronisation.
  9170. @example
  9171. ------> time
  9172. Input:
  9173. Frame 1 Frame 2 Frame 3 Frame 4
  9174. 11111 22222 33333 44444
  9175. 11111 22222 33333 44444
  9176. 11111 22222 33333 44444
  9177. 11111 22222 33333 44444
  9178. Output:
  9179. 11111 22222 22222 33333 33333 44444 44444
  9180. 11111 11111 22222 22222 33333 33333 44444
  9181. 11111 22222 22222 33333 33333 44444 44444
  9182. 11111 11111 22222 22222 33333 33333 44444
  9183. @end example
  9184. @item mergex2, 7
  9185. Move odd frames into the upper field, even into the lower field,
  9186. generating a double height frame at same frame rate.
  9187. @example
  9188. ------> time
  9189. Input:
  9190. Frame 1 Frame 2 Frame 3 Frame 4
  9191. 11111 22222 33333 44444
  9192. 11111 22222 33333 44444
  9193. 11111 22222 33333 44444
  9194. 11111 22222 33333 44444
  9195. Output:
  9196. 11111 33333 33333 55555
  9197. 22222 22222 44444 44444
  9198. 11111 33333 33333 55555
  9199. 22222 22222 44444 44444
  9200. 11111 33333 33333 55555
  9201. 22222 22222 44444 44444
  9202. 11111 33333 33333 55555
  9203. 22222 22222 44444 44444
  9204. @end example
  9205. @end table
  9206. Numeric values are deprecated but are accepted for backward
  9207. compatibility reasons.
  9208. Default mode is @code{merge}.
  9209. @item flags
  9210. Specify flags influencing the filter process.
  9211. Available value for @var{flags} is:
  9212. @table @option
  9213. @item low_pass_filter, vlfp
  9214. Enable vertical low-pass filtering in the filter.
  9215. Vertical low-pass filtering is required when creating an interlaced
  9216. destination from a progressive source which contains high-frequency
  9217. vertical detail. Filtering will reduce interlace 'twitter' and Moire
  9218. patterning.
  9219. Vertical low-pass filtering can only be enabled for @option{mode}
  9220. @var{interleave_top} and @var{interleave_bottom}.
  9221. @end table
  9222. @end table
  9223. @section transpose
  9224. Transpose rows with columns in the input video and optionally flip it.
  9225. It accepts the following parameters:
  9226. @table @option
  9227. @item dir
  9228. Specify the transposition direction.
  9229. Can assume the following values:
  9230. @table @samp
  9231. @item 0, 4, cclock_flip
  9232. Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
  9233. @example
  9234. L.R L.l
  9235. . . -> . .
  9236. l.r R.r
  9237. @end example
  9238. @item 1, 5, clock
  9239. Rotate by 90 degrees clockwise, that is:
  9240. @example
  9241. L.R l.L
  9242. . . -> . .
  9243. l.r r.R
  9244. @end example
  9245. @item 2, 6, cclock
  9246. Rotate by 90 degrees counterclockwise, that is:
  9247. @example
  9248. L.R R.r
  9249. . . -> . .
  9250. l.r L.l
  9251. @end example
  9252. @item 3, 7, clock_flip
  9253. Rotate by 90 degrees clockwise and vertically flip, that is:
  9254. @example
  9255. L.R r.R
  9256. . . -> . .
  9257. l.r l.L
  9258. @end example
  9259. @end table
  9260. For values between 4-7, the transposition is only done if the input
  9261. video geometry is portrait and not landscape. These values are
  9262. deprecated, the @code{passthrough} option should be used instead.
  9263. Numerical values are deprecated, and should be dropped in favor of
  9264. symbolic constants.
  9265. @item passthrough
  9266. Do not apply the transposition if the input geometry matches the one
  9267. specified by the specified value. It accepts the following values:
  9268. @table @samp
  9269. @item none
  9270. Always apply transposition.
  9271. @item portrait
  9272. Preserve portrait geometry (when @var{height} >= @var{width}).
  9273. @item landscape
  9274. Preserve landscape geometry (when @var{width} >= @var{height}).
  9275. @end table
  9276. Default value is @code{none}.
  9277. @end table
  9278. For example to rotate by 90 degrees clockwise and preserve portrait
  9279. layout:
  9280. @example
  9281. transpose=dir=1:passthrough=portrait
  9282. @end example
  9283. The command above can also be specified as:
  9284. @example
  9285. transpose=1:portrait
  9286. @end example
  9287. @section trim
  9288. Trim the input so that the output contains one continuous subpart of the input.
  9289. It accepts the following parameters:
  9290. @table @option
  9291. @item start
  9292. Specify the time of the start of the kept section, i.e. the frame with the
  9293. timestamp @var{start} will be the first frame in the output.
  9294. @item end
  9295. Specify the time of the first frame that will be dropped, i.e. the frame
  9296. immediately preceding the one with the timestamp @var{end} will be the last
  9297. frame in the output.
  9298. @item start_pts
  9299. This is the same as @var{start}, except this option sets the start timestamp
  9300. in timebase units instead of seconds.
  9301. @item end_pts
  9302. This is the same as @var{end}, except this option sets the end timestamp
  9303. in timebase units instead of seconds.
  9304. @item duration
  9305. The maximum duration of the output in seconds.
  9306. @item start_frame
  9307. The number of the first frame that should be passed to the output.
  9308. @item end_frame
  9309. The number of the first frame that should be dropped.
  9310. @end table
  9311. @option{start}, @option{end}, and @option{duration} are expressed as time
  9312. duration specifications; see
  9313. @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
  9314. for the accepted syntax.
  9315. Note that the first two sets of the start/end options and the @option{duration}
  9316. option look at the frame timestamp, while the _frame variants simply count the
  9317. frames that pass through the filter. Also note that this filter does not modify
  9318. the timestamps. If you wish for the output timestamps to start at zero, insert a
  9319. setpts filter after the trim filter.
  9320. If multiple start or end options are set, this filter tries to be greedy and
  9321. keep all the frames that match at least one of the specified constraints. To keep
  9322. only the part that matches all the constraints at once, chain multiple trim
  9323. filters.
  9324. The defaults are such that all the input is kept. So it is possible to set e.g.
  9325. just the end values to keep everything before the specified time.
  9326. Examples:
  9327. @itemize
  9328. @item
  9329. Drop everything except the second minute of input:
  9330. @example
  9331. ffmpeg -i INPUT -vf trim=60:120
  9332. @end example
  9333. @item
  9334. Keep only the first second:
  9335. @example
  9336. ffmpeg -i INPUT -vf trim=duration=1
  9337. @end example
  9338. @end itemize
  9339. @anchor{unsharp}
  9340. @section unsharp
  9341. Sharpen or blur the input video.
  9342. It accepts the following parameters:
  9343. @table @option
  9344. @item luma_msize_x, lx
  9345. Set the luma matrix horizontal size. It must be an odd integer between
  9346. 3 and 63. The default value is 5.
  9347. @item luma_msize_y, ly
  9348. Set the luma matrix vertical size. It must be an odd integer between 3
  9349. and 63. The default value is 5.
  9350. @item luma_amount, la
  9351. Set the luma effect strength. It must be a floating point number, reasonable
  9352. values lay between -1.5 and 1.5.
  9353. Negative values will blur the input video, while positive values will
  9354. sharpen it, a value of zero will disable the effect.
  9355. Default value is 1.0.
  9356. @item chroma_msize_x, cx
  9357. Set the chroma matrix horizontal size. It must be an odd integer
  9358. between 3 and 63. The default value is 5.
  9359. @item chroma_msize_y, cy
  9360. Set the chroma matrix vertical size. It must be an odd integer
  9361. between 3 and 63. The default value is 5.
  9362. @item chroma_amount, ca
  9363. Set the chroma effect strength. It must be a floating point number, reasonable
  9364. values lay between -1.5 and 1.5.
  9365. Negative values will blur the input video, while positive values will
  9366. sharpen it, a value of zero will disable the effect.
  9367. Default value is 0.0.
  9368. @item opencl
  9369. If set to 1, specify using OpenCL capabilities, only available if
  9370. FFmpeg was configured with @code{--enable-opencl}. Default value is 0.
  9371. @end table
  9372. All parameters are optional and default to the equivalent of the
  9373. string '5:5:1.0:5:5:0.0'.
  9374. @subsection Examples
  9375. @itemize
  9376. @item
  9377. Apply strong luma sharpen effect:
  9378. @example
  9379. unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
  9380. @end example
  9381. @item
  9382. Apply a strong blur of both luma and chroma parameters:
  9383. @example
  9384. unsharp=7:7:-2:7:7:-2
  9385. @end example
  9386. @end itemize
  9387. @section uspp
  9388. Apply ultra slow/simple postprocessing filter that compresses and decompresses
  9389. the image at several (or - in the case of @option{quality} level @code{8} - all)
  9390. shifts and average the results.
  9391. The way this differs from the behavior of spp is that uspp actually encodes &
  9392. decodes each case with libavcodec Snow, whereas spp uses a simplified intra only 8x8
  9393. DCT similar to MJPEG.
  9394. The filter accepts the following options:
  9395. @table @option
  9396. @item quality
  9397. Set quality. This option defines the number of levels for averaging. It accepts
  9398. an integer in the range 0-8. If set to @code{0}, the filter will have no
  9399. effect. A value of @code{8} means the higher quality. For each increment of
  9400. that value the speed drops by a factor of approximately 2. Default value is
  9401. @code{3}.
  9402. @item qp
  9403. Force a constant quantization parameter. If not set, the filter will use the QP
  9404. from the video stream (if available).
  9405. @end table
  9406. @section vectorscope
  9407. Display 2 color component values in the two dimensional graph (which is called
  9408. a vectorscope).
  9409. This filter accepts the following options:
  9410. @table @option
  9411. @item mode, m
  9412. Set vectorscope mode.
  9413. It accepts the following values:
  9414. @table @samp
  9415. @item gray
  9416. Gray values are displayed on graph, higher brightness means more pixels have
  9417. same component color value on location in graph. This is the default mode.
  9418. @item color
  9419. Gray values are displayed on graph. Surrounding pixels values which are not
  9420. present in video frame are drawn in gradient of 2 color components which are
  9421. set by option @code{x} and @code{y}.
  9422. @item color2
  9423. Actual color components values present in video frame are displayed on graph.
  9424. @item color3
  9425. Similar as color2 but higher frequency of same values @code{x} and @code{y}
  9426. on graph increases value of another color component, which is luminance by
  9427. default values of @code{x} and @code{y}.
  9428. @item color4
  9429. Actual colors present in video frame are displayed on graph. If two different
  9430. colors map to same position on graph then color with higher value of component
  9431. not present in graph is picked.
  9432. @end table
  9433. @item x
  9434. Set which color component will be represented on X-axis. Default is @code{1}.
  9435. @item y
  9436. Set which color component will be represented on Y-axis. Default is @code{2}.
  9437. @item intensity, i
  9438. Set intensity, used by modes: gray, color and color3 for increasing brightness
  9439. of color component which represents frequency of (X, Y) location in graph.
  9440. @item envelope, e
  9441. @table @samp
  9442. @item none
  9443. No envelope, this is default.
  9444. @item instant
  9445. Instant envelope, even darkest single pixel will be clearly highlighted.
  9446. @item peak
  9447. Hold maximum and minimum values presented in graph over time. This way you
  9448. can still spot out of range values without constantly looking at vectorscope.
  9449. @item peak+instant
  9450. Peak and instant envelope combined together.
  9451. @end table
  9452. @end table
  9453. @anchor{vidstabdetect}
  9454. @section vidstabdetect
  9455. Analyze video stabilization/deshaking. Perform pass 1 of 2, see
  9456. @ref{vidstabtransform} for pass 2.
  9457. This filter generates a file with relative translation and rotation
  9458. transform information about subsequent frames, which is then used by
  9459. the @ref{vidstabtransform} filter.
  9460. To enable compilation of this filter you need to configure FFmpeg with
  9461. @code{--enable-libvidstab}.
  9462. This filter accepts the following options:
  9463. @table @option
  9464. @item result
  9465. Set the path to the file used to write the transforms information.
  9466. Default value is @file{transforms.trf}.
  9467. @item shakiness
  9468. Set how shaky the video is and how quick the camera is. It accepts an
  9469. integer in the range 1-10, a value of 1 means little shakiness, a
  9470. value of 10 means strong shakiness. Default value is 5.
  9471. @item accuracy
  9472. Set the accuracy of the detection process. It must be a value in the
  9473. range 1-15. A value of 1 means low accuracy, a value of 15 means high
  9474. accuracy. Default value is 15.
  9475. @item stepsize
  9476. Set stepsize of the search process. The region around minimum is
  9477. scanned with 1 pixel resolution. Default value is 6.
  9478. @item mincontrast
  9479. Set minimum contrast. Below this value a local measurement field is
  9480. discarded. Must be a floating point value in the range 0-1. Default
  9481. value is 0.3.
  9482. @item tripod
  9483. Set reference frame number for tripod mode.
  9484. If enabled, the motion of the frames is compared to a reference frame
  9485. in the filtered stream, identified by the specified number. The idea
  9486. is to compensate all movements in a more-or-less static scene and keep
  9487. the camera view absolutely still.
  9488. If set to 0, it is disabled. The frames are counted starting from 1.
  9489. @item show
  9490. Show fields and transforms in the resulting frames. It accepts an
  9491. integer in the range 0-2. Default value is 0, which disables any
  9492. visualization.
  9493. @end table
  9494. @subsection Examples
  9495. @itemize
  9496. @item
  9497. Use default values:
  9498. @example
  9499. vidstabdetect
  9500. @end example
  9501. @item
  9502. Analyze strongly shaky movie and put the results in file
  9503. @file{mytransforms.trf}:
  9504. @example
  9505. vidstabdetect=shakiness=10:accuracy=15:result="mytransforms.trf"
  9506. @end example
  9507. @item
  9508. Visualize the result of internal transformations in the resulting
  9509. video:
  9510. @example
  9511. vidstabdetect=show=1
  9512. @end example
  9513. @item
  9514. Analyze a video with medium shakiness using @command{ffmpeg}:
  9515. @example
  9516. ffmpeg -i input -vf vidstabdetect=shakiness=5:show=1 dummy.avi
  9517. @end example
  9518. @end itemize
  9519. @anchor{vidstabtransform}
  9520. @section vidstabtransform
  9521. Video stabilization/deshaking: pass 2 of 2,
  9522. see @ref{vidstabdetect} for pass 1.
  9523. Read a file with transform information for each frame and
  9524. apply/compensate them. Together with the @ref{vidstabdetect}
  9525. filter this can be used to deshake videos. See also
  9526. @url{http://public.hronopik.de/vid.stab}. It is important to also use
  9527. the @ref{unsharp} filter, see below.
  9528. To enable compilation of this filter you need to configure FFmpeg with
  9529. @code{--enable-libvidstab}.
  9530. @subsection Options
  9531. @table @option
  9532. @item input
  9533. Set path to the file used to read the transforms. Default value is
  9534. @file{transforms.trf}.
  9535. @item smoothing
  9536. Set the number of frames (value*2 + 1) used for lowpass filtering the
  9537. camera movements. Default value is 10.
  9538. For example a number of 10 means that 21 frames are used (10 in the
  9539. past and 10 in the future) to smoothen the motion in the video. A
  9540. larger value leads to a smoother video, but limits the acceleration of
  9541. the camera (pan/tilt movements). 0 is a special case where a static
  9542. camera is simulated.
  9543. @item optalgo
  9544. Set the camera path optimization algorithm.
  9545. Accepted values are:
  9546. @table @samp
  9547. @item gauss
  9548. gaussian kernel low-pass filter on camera motion (default)
  9549. @item avg
  9550. averaging on transformations
  9551. @end table
  9552. @item maxshift
  9553. Set maximal number of pixels to translate frames. Default value is -1,
  9554. meaning no limit.
  9555. @item maxangle
  9556. Set maximal angle in radians (degree*PI/180) to rotate frames. Default
  9557. value is -1, meaning no limit.
  9558. @item crop
  9559. Specify how to deal with borders that may be visible due to movement
  9560. compensation.
  9561. Available values are:
  9562. @table @samp
  9563. @item keep
  9564. keep image information from previous frame (default)
  9565. @item black
  9566. fill the border black
  9567. @end table
  9568. @item invert
  9569. Invert transforms if set to 1. Default value is 0.
  9570. @item relative
  9571. Consider transforms as relative to previous frame if set to 1,
  9572. absolute if set to 0. Default value is 0.
  9573. @item zoom
  9574. Set percentage to zoom. A positive value will result in a zoom-in
  9575. effect, a negative value in a zoom-out effect. Default value is 0 (no
  9576. zoom).
  9577. @item optzoom
  9578. Set optimal zooming to avoid borders.
  9579. Accepted values are:
  9580. @table @samp
  9581. @item 0
  9582. disabled
  9583. @item 1
  9584. optimal static zoom value is determined (only very strong movements
  9585. will lead to visible borders) (default)
  9586. @item 2
  9587. optimal adaptive zoom value is determined (no borders will be
  9588. visible), see @option{zoomspeed}
  9589. @end table
  9590. Note that the value given at zoom is added to the one calculated here.
  9591. @item zoomspeed
  9592. Set percent to zoom maximally each frame (enabled when
  9593. @option{optzoom} is set to 2). Range is from 0 to 5, default value is
  9594. 0.25.
  9595. @item interpol
  9596. Specify type of interpolation.
  9597. Available values are:
  9598. @table @samp
  9599. @item no
  9600. no interpolation
  9601. @item linear
  9602. linear only horizontal
  9603. @item bilinear
  9604. linear in both directions (default)
  9605. @item bicubic
  9606. cubic in both directions (slow)
  9607. @end table
  9608. @item tripod
  9609. Enable virtual tripod mode if set to 1, which is equivalent to
  9610. @code{relative=0:smoothing=0}. Default value is 0.
  9611. Use also @code{tripod} option of @ref{vidstabdetect}.
  9612. @item debug
  9613. Increase log verbosity if set to 1. Also the detected global motions
  9614. are written to the temporary file @file{global_motions.trf}. Default
  9615. value is 0.
  9616. @end table
  9617. @subsection Examples
  9618. @itemize
  9619. @item
  9620. Use @command{ffmpeg} for a typical stabilization with default values:
  9621. @example
  9622. ffmpeg -i inp.mpeg -vf vidstabtransform,unsharp=5:5:0.8:3:3:0.4 inp_stabilized.mpeg
  9623. @end example
  9624. Note the use of the @ref{unsharp} filter which is always recommended.
  9625. @item
  9626. Zoom in a bit more and load transform data from a given file:
  9627. @example
  9628. vidstabtransform=zoom=5:input="mytransforms.trf"
  9629. @end example
  9630. @item
  9631. Smoothen the video even more:
  9632. @example
  9633. vidstabtransform=smoothing=30
  9634. @end example
  9635. @end itemize
  9636. @section vflip
  9637. Flip the input video vertically.
  9638. For example, to vertically flip a video with @command{ffmpeg}:
  9639. @example
  9640. ffmpeg -i in.avi -vf "vflip" out.avi
  9641. @end example
  9642. @anchor{vignette}
  9643. @section vignette
  9644. Make or reverse a natural vignetting effect.
  9645. The filter accepts the following options:
  9646. @table @option
  9647. @item angle, a
  9648. Set lens angle expression as a number of radians.
  9649. The value is clipped in the @code{[0,PI/2]} range.
  9650. Default value: @code{"PI/5"}
  9651. @item x0
  9652. @item y0
  9653. Set center coordinates expressions. Respectively @code{"w/2"} and @code{"h/2"}
  9654. by default.
  9655. @item mode
  9656. Set forward/backward mode.
  9657. Available modes are:
  9658. @table @samp
  9659. @item forward
  9660. The larger the distance from the central point, the darker the image becomes.
  9661. @item backward
  9662. The larger the distance from the central point, the brighter the image becomes.
  9663. This can be used to reverse a vignette effect, though there is no automatic
  9664. detection to extract the lens @option{angle} and other settings (yet). It can
  9665. also be used to create a burning effect.
  9666. @end table
  9667. Default value is @samp{forward}.
  9668. @item eval
  9669. Set evaluation mode for the expressions (@option{angle}, @option{x0}, @option{y0}).
  9670. It accepts the following values:
  9671. @table @samp
  9672. @item init
  9673. Evaluate expressions only once during the filter initialization.
  9674. @item frame
  9675. Evaluate expressions for each incoming frame. This is way slower than the
  9676. @samp{init} mode since it requires all the scalers to be re-computed, but it
  9677. allows advanced dynamic expressions.
  9678. @end table
  9679. Default value is @samp{init}.
  9680. @item dither
  9681. Set dithering to reduce the circular banding effects. Default is @code{1}
  9682. (enabled).
  9683. @item aspect
  9684. Set vignette aspect. This setting allows one to adjust the shape of the vignette.
  9685. Setting this value to the SAR of the input will make a rectangular vignetting
  9686. following the dimensions of the video.
  9687. Default is @code{1/1}.
  9688. @end table
  9689. @subsection Expressions
  9690. The @option{alpha}, @option{x0} and @option{y0} expressions can contain the
  9691. following parameters.
  9692. @table @option
  9693. @item w
  9694. @item h
  9695. input width and height
  9696. @item n
  9697. the number of input frame, starting from 0
  9698. @item pts
  9699. the PTS (Presentation TimeStamp) time of the filtered video frame, expressed in
  9700. @var{TB} units, NAN if undefined
  9701. @item r
  9702. frame rate of the input video, NAN if the input frame rate is unknown
  9703. @item t
  9704. the PTS (Presentation TimeStamp) of the filtered video frame,
  9705. expressed in seconds, NAN if undefined
  9706. @item tb
  9707. time base of the input video
  9708. @end table
  9709. @subsection Examples
  9710. @itemize
  9711. @item
  9712. Apply simple strong vignetting effect:
  9713. @example
  9714. vignette=PI/4
  9715. @end example
  9716. @item
  9717. Make a flickering vignetting:
  9718. @example
  9719. vignette='PI/4+random(1)*PI/50':eval=frame
  9720. @end example
  9721. @end itemize
  9722. @section vstack
  9723. Stack input videos vertically.
  9724. All streams must be of same pixel format and of same width.
  9725. Note that this filter is faster than using @ref{overlay} and @ref{pad} filter
  9726. to create same output.
  9727. The filter accept the following option:
  9728. @table @option
  9729. @item inputs
  9730. Set number of input streams. Default is 2.
  9731. @item shortest
  9732. If set to 1, force the output to terminate when the shortest input
  9733. terminates. Default value is 0.
  9734. @end table
  9735. @section w3fdif
  9736. Deinterlace the input video ("w3fdif" stands for "Weston 3 Field
  9737. Deinterlacing Filter").
  9738. Based on the process described by Martin Weston for BBC R&D, and
  9739. implemented based on the de-interlace algorithm written by Jim
  9740. Easterbrook for BBC R&D, the Weston 3 field deinterlacing filter
  9741. uses filter coefficients calculated by BBC R&D.
  9742. There are two sets of filter coefficients, so called "simple":
  9743. and "complex". Which set of filter coefficients is used can
  9744. be set by passing an optional parameter:
  9745. @table @option
  9746. @item filter
  9747. Set the interlacing filter coefficients. Accepts one of the following values:
  9748. @table @samp
  9749. @item simple
  9750. Simple filter coefficient set.
  9751. @item complex
  9752. More-complex filter coefficient set.
  9753. @end table
  9754. Default value is @samp{complex}.
  9755. @item deint
  9756. Specify which frames to deinterlace. Accept one of the following values:
  9757. @table @samp
  9758. @item all
  9759. Deinterlace all frames,
  9760. @item interlaced
  9761. Only deinterlace frames marked as interlaced.
  9762. @end table
  9763. Default value is @samp{all}.
  9764. @end table
  9765. @section waveform
  9766. Video waveform monitor.
  9767. The waveform monitor plots color component intensity. By default luminance
  9768. only. Each column of the waveform corresponds to a column of pixels in the
  9769. source video.
  9770. It accepts the following options:
  9771. @table @option
  9772. @item mode, m
  9773. Can be either @code{row}, or @code{column}. Default is @code{column}.
  9774. In row mode, the graph on the left side represents color component value 0 and
  9775. the right side represents value = 255. In column mode, the top side represents
  9776. color component value = 0 and bottom side represents value = 255.
  9777. @item intensity, i
  9778. Set intensity. Smaller values are useful to find out how many values of the same
  9779. luminance are distributed across input rows/columns.
  9780. Default value is @code{0.04}. Allowed range is [0, 1].
  9781. @item mirror, r
  9782. Set mirroring mode. @code{0} means unmirrored, @code{1} means mirrored.
  9783. In mirrored mode, higher values will be represented on the left
  9784. side for @code{row} mode and at the top for @code{column} mode. Default is
  9785. @code{1} (mirrored).
  9786. @item display, d
  9787. Set display mode.
  9788. It accepts the following values:
  9789. @table @samp
  9790. @item overlay
  9791. Presents information identical to that in the @code{parade}, except
  9792. that the graphs representing color components are superimposed directly
  9793. over one another.
  9794. This display mode makes it easier to spot relative differences or similarities
  9795. in overlapping areas of the color components that are supposed to be identical,
  9796. such as neutral whites, grays, or blacks.
  9797. @item parade
  9798. Display separate graph for the color components side by side in
  9799. @code{row} mode or one below the other in @code{column} mode.
  9800. Using this display mode makes it easy to spot color casts in the highlights
  9801. and shadows of an image, by comparing the contours of the top and the bottom
  9802. graphs of each waveform. Since whites, grays, and blacks are characterized
  9803. by exactly equal amounts of red, green, and blue, neutral areas of the picture
  9804. should display three waveforms of roughly equal width/height. If not, the
  9805. correction is easy to perform by making level adjustments the three waveforms.
  9806. @end table
  9807. Default is @code{parade}.
  9808. @item components, c
  9809. Set which color components to display. Default is 1, which means only luminance
  9810. or red color component if input is in RGB colorspace. If is set for example to
  9811. 7 it will display all 3 (if) available color components.
  9812. @item envelope, e
  9813. @table @samp
  9814. @item none
  9815. No envelope, this is default.
  9816. @item instant
  9817. Instant envelope, minimum and maximum values presented in graph will be easily
  9818. visible even with small @code{step} value.
  9819. @item peak
  9820. Hold minimum and maximum values presented in graph across time. This way you
  9821. can still spot out of range values without constantly looking at waveforms.
  9822. @item peak+instant
  9823. Peak and instant envelope combined together.
  9824. @end table
  9825. @item filter, f
  9826. @table @samp
  9827. @item lowpass
  9828. No filtering, this is default.
  9829. @item flat
  9830. Luma and chroma combined together.
  9831. @item aflat
  9832. Similar as above, but shows difference between blue and red chroma.
  9833. @item chroma
  9834. Displays only chroma.
  9835. @item achroma
  9836. Similar as above, but shows difference between blue and red chroma.
  9837. @item color
  9838. Displays actual color value on waveform.
  9839. @end table
  9840. @end table
  9841. @section xbr
  9842. Apply the xBR high-quality magnification filter which is designed for pixel
  9843. art. It follows a set of edge-detection rules, see
  9844. @url{http://www.libretro.com/forums/viewtopic.php?f=6&t=134}.
  9845. It accepts the following option:
  9846. @table @option
  9847. @item n
  9848. Set the scaling dimension: @code{2} for @code{2xBR}, @code{3} for
  9849. @code{3xBR} and @code{4} for @code{4xBR}.
  9850. Default is @code{3}.
  9851. @end table
  9852. @anchor{yadif}
  9853. @section yadif
  9854. Deinterlace the input video ("yadif" means "yet another deinterlacing
  9855. filter").
  9856. It accepts the following parameters:
  9857. @table @option
  9858. @item mode
  9859. The interlacing mode to adopt. It accepts one of the following values:
  9860. @table @option
  9861. @item 0, send_frame
  9862. Output one frame for each frame.
  9863. @item 1, send_field
  9864. Output one frame for each field.
  9865. @item 2, send_frame_nospatial
  9866. Like @code{send_frame}, but it skips the spatial interlacing check.
  9867. @item 3, send_field_nospatial
  9868. Like @code{send_field}, but it skips the spatial interlacing check.
  9869. @end table
  9870. The default value is @code{send_frame}.
  9871. @item parity
  9872. The picture field parity assumed for the input interlaced video. It accepts one
  9873. of the following values:
  9874. @table @option
  9875. @item 0, tff
  9876. Assume the top field is first.
  9877. @item 1, bff
  9878. Assume the bottom field is first.
  9879. @item -1, auto
  9880. Enable automatic detection of field parity.
  9881. @end table
  9882. The default value is @code{auto}.
  9883. If the interlacing is unknown or the decoder does not export this information,
  9884. top field first will be assumed.
  9885. @item deint
  9886. Specify which frames to deinterlace. Accept one of the following
  9887. values:
  9888. @table @option
  9889. @item 0, all
  9890. Deinterlace all frames.
  9891. @item 1, interlaced
  9892. Only deinterlace frames marked as interlaced.
  9893. @end table
  9894. The default value is @code{all}.
  9895. @end table
  9896. @section zoompan
  9897. Apply Zoom & Pan effect.
  9898. This filter accepts the following options:
  9899. @table @option
  9900. @item zoom, z
  9901. Set the zoom expression. Default is 1.
  9902. @item x
  9903. @item y
  9904. Set the x and y expression. Default is 0.
  9905. @item d
  9906. Set the duration expression in number of frames.
  9907. This sets for how many number of frames effect will last for
  9908. single input image.
  9909. @item s
  9910. Set the output image size, default is 'hd720'.
  9911. @item fps
  9912. Set the output frame rate, default is '25'.
  9913. @end table
  9914. Each expression can contain the following constants:
  9915. @table @option
  9916. @item in_w, iw
  9917. Input width.
  9918. @item in_h, ih
  9919. Input height.
  9920. @item out_w, ow
  9921. Output width.
  9922. @item out_h, oh
  9923. Output height.
  9924. @item in
  9925. Input frame count.
  9926. @item on
  9927. Output frame count.
  9928. @item x
  9929. @item y
  9930. Last calculated 'x' and 'y' position from 'x' and 'y' expression
  9931. for current input frame.
  9932. @item px
  9933. @item py
  9934. 'x' and 'y' of last output frame of previous input frame or 0 when there was
  9935. not yet such frame (first input frame).
  9936. @item zoom
  9937. Last calculated zoom from 'z' expression for current input frame.
  9938. @item pzoom
  9939. Last calculated zoom of last output frame of previous input frame.
  9940. @item duration
  9941. Number of output frames for current input frame. Calculated from 'd' expression
  9942. for each input frame.
  9943. @item pduration
  9944. number of output frames created for previous input frame
  9945. @item a
  9946. Rational number: input width / input height
  9947. @item sar
  9948. sample aspect ratio
  9949. @item dar
  9950. display aspect ratio
  9951. @end table
  9952. @subsection Examples
  9953. @itemize
  9954. @item
  9955. Zoom-in up to 1.5 and pan at same time to some spot near center of picture:
  9956. @example
  9957. 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
  9958. @end example
  9959. @item
  9960. Zoom-in up to 1.5 and pan always at center of picture:
  9961. @example
  9962. zoompan=z='min(zoom+0.0015,1.5)':d=700:x='iw/2-(iw/zoom/2)':y='ih/2-(ih/zoom/2)'
  9963. @end example
  9964. @end itemize
  9965. @section zscale
  9966. Scale (resize) the input video, using the z.lib library:
  9967. https://github.com/sekrit-twc/zimg.
  9968. The zscale filter forces the output display aspect ratio to be the same
  9969. as the input, by changing the output sample aspect ratio.
  9970. If the input image format is different from the format requested by
  9971. the next filter, the zscale filter will convert the input to the
  9972. requested format.
  9973. @subsection Options
  9974. The filter accepts the following options.
  9975. @table @option
  9976. @item width, w
  9977. @item height, h
  9978. Set the output video dimension expression. Default value is the input
  9979. dimension.
  9980. If the @var{width} or @var{w} is 0, the input width is used for the output.
  9981. If the @var{height} or @var{h} is 0, the input height is used for the output.
  9982. If one of the values is -1, the zscale filter will use a value that
  9983. maintains the aspect ratio of the input image, calculated from the
  9984. other specified dimension. If both of them are -1, the input size is
  9985. used
  9986. If one of the values is -n with n > 1, the zscale filter will also use a value
  9987. that maintains the aspect ratio of the input image, calculated from the other
  9988. specified dimension. After that it will, however, make sure that the calculated
  9989. dimension is divisible by n and adjust the value if necessary.
  9990. See below for the list of accepted constants for use in the dimension
  9991. expression.
  9992. @item size, s
  9993. Set the video size. For the syntax of this option, check the
  9994. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  9995. @item dither, d
  9996. Set the dither type.
  9997. Possible values are:
  9998. @table @var
  9999. @item none
  10000. @item ordered
  10001. @item random
  10002. @item error_diffusion
  10003. @end table
  10004. Default is none.
  10005. @item filter, f
  10006. Set the resize filter type.
  10007. Possible values are:
  10008. @table @var
  10009. @item point
  10010. @item bilinear
  10011. @item bicubic
  10012. @item spline16
  10013. @item spline36
  10014. @item lanczos
  10015. @end table
  10016. Default is bilinear.
  10017. @item range, r
  10018. Set the color range.
  10019. Possible values are:
  10020. @table @var
  10021. @item input
  10022. @item limited
  10023. @item full
  10024. @end table
  10025. Default is same as input.
  10026. @item primaries, p
  10027. Set the color primaries.
  10028. Possible values are:
  10029. @table @var
  10030. @item input
  10031. @item 709
  10032. @item unspecified
  10033. @item 170m
  10034. @item 240m
  10035. @item 2020
  10036. @end table
  10037. Default is same as input.
  10038. @item transfer, t
  10039. Set the transfer characteristics.
  10040. Possible values are:
  10041. @table @var
  10042. @item input
  10043. @item 709
  10044. @item unspecified
  10045. @item 601
  10046. @item linear
  10047. @item 2020_10
  10048. @item 2020_12
  10049. @end table
  10050. Default is same as input.
  10051. @item matrix, m
  10052. Set the colorspace matrix.
  10053. Possible value are:
  10054. @table @var
  10055. @item input
  10056. @item 709
  10057. @item unspecified
  10058. @item 470bg
  10059. @item 170m
  10060. @item 2020_ncl
  10061. @item 2020_cl
  10062. @end table
  10063. Default is same as input.
  10064. @item rangein, rin
  10065. Set the input color range.
  10066. Possible values are:
  10067. @table @var
  10068. @item input
  10069. @item limited
  10070. @item full
  10071. @end table
  10072. Default is same as input.
  10073. @item primariesin, pin
  10074. Set the input color primaries.
  10075. Possible values are:
  10076. @table @var
  10077. @item input
  10078. @item 709
  10079. @item unspecified
  10080. @item 170m
  10081. @item 240m
  10082. @item 2020
  10083. @end table
  10084. Default is same as input.
  10085. @item transferin, tin
  10086. Set the input transfer characteristics.
  10087. Possible values are:
  10088. @table @var
  10089. @item input
  10090. @item 709
  10091. @item unspecified
  10092. @item 601
  10093. @item linear
  10094. @item 2020_10
  10095. @item 2020_12
  10096. @end table
  10097. Default is same as input.
  10098. @item matrixin, min
  10099. Set the input colorspace matrix.
  10100. Possible value are:
  10101. @table @var
  10102. @item input
  10103. @item 709
  10104. @item unspecified
  10105. @item 470bg
  10106. @item 170m
  10107. @item 2020_ncl
  10108. @item 2020_cl
  10109. @end table
  10110. @end table
  10111. The values of the @option{w} and @option{h} options are expressions
  10112. containing the following constants:
  10113. @table @var
  10114. @item in_w
  10115. @item in_h
  10116. The input width and height
  10117. @item iw
  10118. @item ih
  10119. These are the same as @var{in_w} and @var{in_h}.
  10120. @item out_w
  10121. @item out_h
  10122. The output (scaled) width and height
  10123. @item ow
  10124. @item oh
  10125. These are the same as @var{out_w} and @var{out_h}
  10126. @item a
  10127. The same as @var{iw} / @var{ih}
  10128. @item sar
  10129. input sample aspect ratio
  10130. @item dar
  10131. The input display aspect ratio. Calculated from @code{(iw / ih) * sar}.
  10132. @item hsub
  10133. @item vsub
  10134. horizontal and vertical input chroma subsample values. For example for the
  10135. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  10136. @item ohsub
  10137. @item ovsub
  10138. horizontal and vertical output chroma subsample values. For example for the
  10139. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  10140. @end table
  10141. @table @option
  10142. @end table
  10143. @c man end VIDEO FILTERS
  10144. @chapter Video Sources
  10145. @c man begin VIDEO SOURCES
  10146. Below is a description of the currently available video sources.
  10147. @section buffer
  10148. Buffer video frames, and make them available to the filter chain.
  10149. This source is mainly intended for a programmatic use, in particular
  10150. through the interface defined in @file{libavfilter/vsrc_buffer.h}.
  10151. It accepts the following parameters:
  10152. @table @option
  10153. @item video_size
  10154. Specify the size (width and height) of the buffered video frames. For the
  10155. syntax of this option, check the
  10156. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  10157. @item width
  10158. The input video width.
  10159. @item height
  10160. The input video height.
  10161. @item pix_fmt
  10162. A string representing the pixel format of the buffered video frames.
  10163. It may be a number corresponding to a pixel format, or a pixel format
  10164. name.
  10165. @item time_base
  10166. Specify the timebase assumed by the timestamps of the buffered frames.
  10167. @item frame_rate
  10168. Specify the frame rate expected for the video stream.
  10169. @item pixel_aspect, sar
  10170. The sample (pixel) aspect ratio of the input video.
  10171. @item sws_param
  10172. Specify the optional parameters to be used for the scale filter which
  10173. is automatically inserted when an input change is detected in the
  10174. input size or format.
  10175. @end table
  10176. For example:
  10177. @example
  10178. buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
  10179. @end example
  10180. will instruct the source to accept video frames with size 320x240 and
  10181. with format "yuv410p", assuming 1/24 as the timestamps timebase and
  10182. square pixels (1:1 sample aspect ratio).
  10183. Since the pixel format with name "yuv410p" corresponds to the number 6
  10184. (check the enum AVPixelFormat definition in @file{libavutil/pixfmt.h}),
  10185. this example corresponds to:
  10186. @example
  10187. buffer=size=320x240:pixfmt=6:time_base=1/24:pixel_aspect=1/1
  10188. @end example
  10189. Alternatively, the options can be specified as a flat string, but this
  10190. syntax is deprecated:
  10191. @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}]
  10192. @section cellauto
  10193. Create a pattern generated by an elementary cellular automaton.
  10194. The initial state of the cellular automaton can be defined through the
  10195. @option{filename}, and @option{pattern} options. If such options are
  10196. not specified an initial state is created randomly.
  10197. At each new frame a new row in the video is filled with the result of
  10198. the cellular automaton next generation. The behavior when the whole
  10199. frame is filled is defined by the @option{scroll} option.
  10200. This source accepts the following options:
  10201. @table @option
  10202. @item filename, f
  10203. Read the initial cellular automaton state, i.e. the starting row, from
  10204. the specified file.
  10205. In the file, each non-whitespace character is considered an alive
  10206. cell, a newline will terminate the row, and further characters in the
  10207. file will be ignored.
  10208. @item pattern, p
  10209. Read the initial cellular automaton state, i.e. the starting row, from
  10210. the specified string.
  10211. Each non-whitespace character in the string is considered an alive
  10212. cell, a newline will terminate the row, and further characters in the
  10213. string will be ignored.
  10214. @item rate, r
  10215. Set the video rate, that is the number of frames generated per second.
  10216. Default is 25.
  10217. @item random_fill_ratio, ratio
  10218. Set the random fill ratio for the initial cellular automaton row. It
  10219. is a floating point number value ranging from 0 to 1, defaults to
  10220. 1/PHI.
  10221. This option is ignored when a file or a pattern is specified.
  10222. @item random_seed, seed
  10223. Set the seed for filling randomly the initial row, must be an integer
  10224. included between 0 and UINT32_MAX. If not specified, or if explicitly
  10225. set to -1, the filter will try to use a good random seed on a best
  10226. effort basis.
  10227. @item rule
  10228. Set the cellular automaton rule, it is a number ranging from 0 to 255.
  10229. Default value is 110.
  10230. @item size, s
  10231. Set the size of the output video. For the syntax of this option, check the
  10232. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  10233. If @option{filename} or @option{pattern} is specified, the size is set
  10234. by default to the width of the specified initial state row, and the
  10235. height is set to @var{width} * PHI.
  10236. If @option{size} is set, it must contain the width of the specified
  10237. pattern string, and the specified pattern will be centered in the
  10238. larger row.
  10239. If a filename or a pattern string is not specified, the size value
  10240. defaults to "320x518" (used for a randomly generated initial state).
  10241. @item scroll
  10242. If set to 1, scroll the output upward when all the rows in the output
  10243. have been already filled. If set to 0, the new generated row will be
  10244. written over the top row just after the bottom row is filled.
  10245. Defaults to 1.
  10246. @item start_full, full
  10247. If set to 1, completely fill the output with generated rows before
  10248. outputting the first frame.
  10249. This is the default behavior, for disabling set the value to 0.
  10250. @item stitch
  10251. If set to 1, stitch the left and right row edges together.
  10252. This is the default behavior, for disabling set the value to 0.
  10253. @end table
  10254. @subsection Examples
  10255. @itemize
  10256. @item
  10257. Read the initial state from @file{pattern}, and specify an output of
  10258. size 200x400.
  10259. @example
  10260. cellauto=f=pattern:s=200x400
  10261. @end example
  10262. @item
  10263. Generate a random initial row with a width of 200 cells, with a fill
  10264. ratio of 2/3:
  10265. @example
  10266. cellauto=ratio=2/3:s=200x200
  10267. @end example
  10268. @item
  10269. Create a pattern generated by rule 18 starting by a single alive cell
  10270. centered on an initial row with width 100:
  10271. @example
  10272. cellauto=p=@@:s=100x400:full=0:rule=18
  10273. @end example
  10274. @item
  10275. Specify a more elaborated initial pattern:
  10276. @example
  10277. cellauto=p='@@@@ @@ @@@@':s=100x400:full=0:rule=18
  10278. @end example
  10279. @end itemize
  10280. @section mandelbrot
  10281. Generate a Mandelbrot set fractal, and progressively zoom towards the
  10282. point specified with @var{start_x} and @var{start_y}.
  10283. This source accepts the following options:
  10284. @table @option
  10285. @item end_pts
  10286. Set the terminal pts value. Default value is 400.
  10287. @item end_scale
  10288. Set the terminal scale value.
  10289. Must be a floating point value. Default value is 0.3.
  10290. @item inner
  10291. Set the inner coloring mode, that is the algorithm used to draw the
  10292. Mandelbrot fractal internal region.
  10293. It shall assume one of the following values:
  10294. @table @option
  10295. @item black
  10296. Set black mode.
  10297. @item convergence
  10298. Show time until convergence.
  10299. @item mincol
  10300. Set color based on point closest to the origin of the iterations.
  10301. @item period
  10302. Set period mode.
  10303. @end table
  10304. Default value is @var{mincol}.
  10305. @item bailout
  10306. Set the bailout value. Default value is 10.0.
  10307. @item maxiter
  10308. Set the maximum of iterations performed by the rendering
  10309. algorithm. Default value is 7189.
  10310. @item outer
  10311. Set outer coloring mode.
  10312. It shall assume one of following values:
  10313. @table @option
  10314. @item iteration_count
  10315. Set iteration cound mode.
  10316. @item normalized_iteration_count
  10317. set normalized iteration count mode.
  10318. @end table
  10319. Default value is @var{normalized_iteration_count}.
  10320. @item rate, r
  10321. Set frame rate, expressed as number of frames per second. Default
  10322. value is "25".
  10323. @item size, s
  10324. Set frame size. For the syntax of this option, check the "Video
  10325. size" section in the ffmpeg-utils manual. Default value is "640x480".
  10326. @item start_scale
  10327. Set the initial scale value. Default value is 3.0.
  10328. @item start_x
  10329. Set the initial x position. Must be a floating point value between
  10330. -100 and 100. Default value is -0.743643887037158704752191506114774.
  10331. @item start_y
  10332. Set the initial y position. Must be a floating point value between
  10333. -100 and 100. Default value is -0.131825904205311970493132056385139.
  10334. @end table
  10335. @section mptestsrc
  10336. Generate various test patterns, as generated by the MPlayer test filter.
  10337. The size of the generated video is fixed, and is 256x256.
  10338. This source is useful in particular for testing encoding features.
  10339. This source accepts the following options:
  10340. @table @option
  10341. @item rate, r
  10342. Specify the frame rate of the sourced video, as the number of frames
  10343. generated per second. It has to be a string in the format
  10344. @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
  10345. number or a valid video frame rate abbreviation. The default value is
  10346. "25".
  10347. @item duration, d
  10348. Set the duration of the sourced video. See
  10349. @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
  10350. for the accepted syntax.
  10351. If not specified, or the expressed duration is negative, the video is
  10352. supposed to be generated forever.
  10353. @item test, t
  10354. Set the number or the name of the test to perform. Supported tests are:
  10355. @table @option
  10356. @item dc_luma
  10357. @item dc_chroma
  10358. @item freq_luma
  10359. @item freq_chroma
  10360. @item amp_luma
  10361. @item amp_chroma
  10362. @item cbp
  10363. @item mv
  10364. @item ring1
  10365. @item ring2
  10366. @item all
  10367. @end table
  10368. Default value is "all", which will cycle through the list of all tests.
  10369. @end table
  10370. Some examples:
  10371. @example
  10372. mptestsrc=t=dc_luma
  10373. @end example
  10374. will generate a "dc_luma" test pattern.
  10375. @section frei0r_src
  10376. Provide a frei0r source.
  10377. To enable compilation of this filter you need to install the frei0r
  10378. header and configure FFmpeg with @code{--enable-frei0r}.
  10379. This source accepts the following parameters:
  10380. @table @option
  10381. @item size
  10382. The size of the video to generate. For the syntax of this option, check the
  10383. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  10384. @item framerate
  10385. The framerate of the generated video. It may be a string of the form
  10386. @var{num}/@var{den} or a frame rate abbreviation.
  10387. @item filter_name
  10388. The name to the frei0r source to load. For more information regarding frei0r and
  10389. how to set the parameters, read the @ref{frei0r} section in the video filters
  10390. documentation.
  10391. @item filter_params
  10392. A '|'-separated list of parameters to pass to the frei0r source.
  10393. @end table
  10394. For example, to generate a frei0r partik0l source with size 200x200
  10395. and frame rate 10 which is overlaid on the overlay filter main input:
  10396. @example
  10397. frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
  10398. @end example
  10399. @section life
  10400. Generate a life pattern.
  10401. This source is based on a generalization of John Conway's life game.
  10402. The sourced input represents a life grid, each pixel represents a cell
  10403. which can be in one of two possible states, alive or dead. Every cell
  10404. interacts with its eight neighbours, which are the cells that are
  10405. horizontally, vertically, or diagonally adjacent.
  10406. At each interaction the grid evolves according to the adopted rule,
  10407. which specifies the number of neighbor alive cells which will make a
  10408. cell stay alive or born. The @option{rule} option allows one to specify
  10409. the rule to adopt.
  10410. This source accepts the following options:
  10411. @table @option
  10412. @item filename, f
  10413. Set the file from which to read the initial grid state. In the file,
  10414. each non-whitespace character is considered an alive cell, and newline
  10415. is used to delimit the end of each row.
  10416. If this option is not specified, the initial grid is generated
  10417. randomly.
  10418. @item rate, r
  10419. Set the video rate, that is the number of frames generated per second.
  10420. Default is 25.
  10421. @item random_fill_ratio, ratio
  10422. Set the random fill ratio for the initial random grid. It is a
  10423. floating point number value ranging from 0 to 1, defaults to 1/PHI.
  10424. It is ignored when a file is specified.
  10425. @item random_seed, seed
  10426. Set the seed for filling the initial random grid, must be an integer
  10427. included between 0 and UINT32_MAX. If not specified, or if explicitly
  10428. set to -1, the filter will try to use a good random seed on a best
  10429. effort basis.
  10430. @item rule
  10431. Set the life rule.
  10432. A rule can be specified with a code of the kind "S@var{NS}/B@var{NB}",
  10433. where @var{NS} and @var{NB} are sequences of numbers in the range 0-8,
  10434. @var{NS} specifies the number of alive neighbor cells which make a
  10435. live cell stay alive, and @var{NB} the number of alive neighbor cells
  10436. which make a dead cell to become alive (i.e. to "born").
  10437. "s" and "b" can be used in place of "S" and "B", respectively.
  10438. Alternatively a rule can be specified by an 18-bits integer. The 9
  10439. high order bits are used to encode the next cell state if it is alive
  10440. for each number of neighbor alive cells, the low order bits specify
  10441. the rule for "borning" new cells. Higher order bits encode for an
  10442. higher number of neighbor cells.
  10443. For example the number 6153 = @code{(12<<9)+9} specifies a stay alive
  10444. rule of 12 and a born rule of 9, which corresponds to "S23/B03".
  10445. Default value is "S23/B3", which is the original Conway's game of life
  10446. rule, and will keep a cell alive if it has 2 or 3 neighbor alive
  10447. cells, and will born a new cell if there are three alive cells around
  10448. a dead cell.
  10449. @item size, s
  10450. Set the size of the output video. For the syntax of this option, check the
  10451. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  10452. If @option{filename} is specified, the size is set by default to the
  10453. same size of the input file. If @option{size} is set, it must contain
  10454. the size specified in the input file, and the initial grid defined in
  10455. that file is centered in the larger resulting area.
  10456. If a filename is not specified, the size value defaults to "320x240"
  10457. (used for a randomly generated initial grid).
  10458. @item stitch
  10459. If set to 1, stitch the left and right grid edges together, and the
  10460. top and bottom edges also. Defaults to 1.
  10461. @item mold
  10462. Set cell mold speed. If set, a dead cell will go from @option{death_color} to
  10463. @option{mold_color} with a step of @option{mold}. @option{mold} can have a
  10464. value from 0 to 255.
  10465. @item life_color
  10466. Set the color of living (or new born) cells.
  10467. @item death_color
  10468. Set the color of dead cells. If @option{mold} is set, this is the first color
  10469. used to represent a dead cell.
  10470. @item mold_color
  10471. Set mold color, for definitely dead and moldy cells.
  10472. For the syntax of these 3 color options, check the "Color" section in the
  10473. ffmpeg-utils manual.
  10474. @end table
  10475. @subsection Examples
  10476. @itemize
  10477. @item
  10478. Read a grid from @file{pattern}, and center it on a grid of size
  10479. 300x300 pixels:
  10480. @example
  10481. life=f=pattern:s=300x300
  10482. @end example
  10483. @item
  10484. Generate a random grid of size 200x200, with a fill ratio of 2/3:
  10485. @example
  10486. life=ratio=2/3:s=200x200
  10487. @end example
  10488. @item
  10489. Specify a custom rule for evolving a randomly generated grid:
  10490. @example
  10491. life=rule=S14/B34
  10492. @end example
  10493. @item
  10494. Full example with slow death effect (mold) using @command{ffplay}:
  10495. @example
  10496. ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16
  10497. @end example
  10498. @end itemize
  10499. @anchor{allrgb}
  10500. @anchor{allyuv}
  10501. @anchor{color}
  10502. @anchor{haldclutsrc}
  10503. @anchor{nullsrc}
  10504. @anchor{rgbtestsrc}
  10505. @anchor{smptebars}
  10506. @anchor{smptehdbars}
  10507. @anchor{testsrc}
  10508. @section allrgb, allyuv, color, haldclutsrc, nullsrc, rgbtestsrc, smptebars, smptehdbars, testsrc
  10509. The @code{allrgb} source returns frames of size 4096x4096 of all rgb colors.
  10510. The @code{allyuv} source returns frames of size 4096x4096 of all yuv colors.
  10511. The @code{color} source provides an uniformly colored input.
  10512. The @code{haldclutsrc} source provides an identity Hald CLUT. See also
  10513. @ref{haldclut} filter.
  10514. The @code{nullsrc} source returns unprocessed video frames. It is
  10515. mainly useful to be employed in analysis / debugging tools, or as the
  10516. source for filters which ignore the input data.
  10517. The @code{rgbtestsrc} source generates an RGB test pattern useful for
  10518. detecting RGB vs BGR issues. You should see a red, green and blue
  10519. stripe from top to bottom.
  10520. The @code{smptebars} source generates a color bars pattern, based on
  10521. the SMPTE Engineering Guideline EG 1-1990.
  10522. The @code{smptehdbars} source generates a color bars pattern, based on
  10523. the SMPTE RP 219-2002.
  10524. The @code{testsrc} source generates a test video pattern, showing a
  10525. color pattern, a scrolling gradient and a timestamp. This is mainly
  10526. intended for testing purposes.
  10527. The sources accept the following parameters:
  10528. @table @option
  10529. @item color, c
  10530. Specify the color of the source, only available in the @code{color}
  10531. source. For the syntax of this option, check the "Color" section in the
  10532. ffmpeg-utils manual.
  10533. @item level
  10534. Specify the level of the Hald CLUT, only available in the @code{haldclutsrc}
  10535. source. A level of @code{N} generates a picture of @code{N*N*N} by @code{N*N*N}
  10536. pixels to be used as identity matrix for 3D lookup tables. Each component is
  10537. coded on a @code{1/(N*N)} scale.
  10538. @item size, s
  10539. Specify the size of the sourced video. For the syntax of this option, check the
  10540. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  10541. The default value is @code{320x240}.
  10542. This option is not available with the @code{haldclutsrc} filter.
  10543. @item rate, r
  10544. Specify the frame rate of the sourced video, as the number of frames
  10545. generated per second. It has to be a string in the format
  10546. @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
  10547. number or a valid video frame rate abbreviation. The default value is
  10548. "25".
  10549. @item sar
  10550. Set the sample aspect ratio of the sourced video.
  10551. @item duration, d
  10552. Set the duration of the sourced video. See
  10553. @ref{time duration syntax,,the Time duration section in the ffmpeg-utils(1) manual,ffmpeg-utils}
  10554. for the accepted syntax.
  10555. If not specified, or the expressed duration is negative, the video is
  10556. supposed to be generated forever.
  10557. @item decimals, n
  10558. Set the number of decimals to show in the timestamp, only available in the
  10559. @code{testsrc} source.
  10560. The displayed timestamp value will correspond to the original
  10561. timestamp value multiplied by the power of 10 of the specified
  10562. value. Default value is 0.
  10563. @end table
  10564. For example the following:
  10565. @example
  10566. testsrc=duration=5.3:size=qcif:rate=10
  10567. @end example
  10568. will generate a video with a duration of 5.3 seconds, with size
  10569. 176x144 and a frame rate of 10 frames per second.
  10570. The following graph description will generate a red source
  10571. with an opacity of 0.2, with size "qcif" and a frame rate of 10
  10572. frames per second.
  10573. @example
  10574. color=c=red@@0.2:s=qcif:r=10
  10575. @end example
  10576. If the input content is to be ignored, @code{nullsrc} can be used. The
  10577. following command generates noise in the luminance plane by employing
  10578. the @code{geq} filter:
  10579. @example
  10580. nullsrc=s=256x256, geq=random(1)*255:128:128
  10581. @end example
  10582. @subsection Commands
  10583. The @code{color} source supports the following commands:
  10584. @table @option
  10585. @item c, color
  10586. Set the color of the created image. Accepts the same syntax of the
  10587. corresponding @option{color} option.
  10588. @end table
  10589. @c man end VIDEO SOURCES
  10590. @chapter Video Sinks
  10591. @c man begin VIDEO SINKS
  10592. Below is a description of the currently available video sinks.
  10593. @section buffersink
  10594. Buffer video frames, and make them available to the end of the filter
  10595. graph.
  10596. This sink is mainly intended for programmatic use, in particular
  10597. through the interface defined in @file{libavfilter/buffersink.h}
  10598. or the options system.
  10599. It accepts a pointer to an AVBufferSinkContext structure, which
  10600. defines the incoming buffers' formats, to be passed as the opaque
  10601. parameter to @code{avfilter_init_filter} for initialization.
  10602. @section nullsink
  10603. Null video sink: do absolutely nothing with the input video. It is
  10604. mainly useful as a template and for use in analysis / debugging
  10605. tools.
  10606. @c man end VIDEO SINKS
  10607. @chapter Multimedia Filters
  10608. @c man begin MULTIMEDIA FILTERS
  10609. Below is a description of the currently available multimedia filters.
  10610. @section ahistogram
  10611. Convert input audio to a video output, displaying the volume histogram.
  10612. The filter accepts the following options:
  10613. @table @option
  10614. @item dmode
  10615. Specify how histogram is calculated.
  10616. It accepts the following values:
  10617. @table @samp
  10618. @item single
  10619. Use single histogram for all channels.
  10620. @item separate
  10621. Use separate histogram for each channel.
  10622. @end table
  10623. Default is @code{single}.
  10624. @item rate, r
  10625. Set frame rate, expressed as number of frames per second. Default
  10626. value is "25".
  10627. @item size, s
  10628. Specify the video size for the output. For the syntax of this option, check the
  10629. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  10630. Default value is @code{hd720}.
  10631. @item scale
  10632. Set display scale.
  10633. It accepts the following values:
  10634. @table @samp
  10635. @item log
  10636. logarithmic
  10637. @item sqrt
  10638. square root
  10639. @item cbrt
  10640. cubic root
  10641. @item lin
  10642. linear
  10643. @item rlog
  10644. reverse logarithmic
  10645. @end table
  10646. Default is @code{log}.
  10647. @item ascale
  10648. Set amplitude scale.
  10649. It accepts the following values:
  10650. @table @samp
  10651. @item log
  10652. logarithmic
  10653. @item lin
  10654. linear
  10655. @end table
  10656. Default is @code{log}.
  10657. @item acount
  10658. Set how much frames to accumulate in histogram.
  10659. Defauls is 1. Setting this to -1 accumulates all frames.
  10660. @item rheight
  10661. Set histogram ratio of window height.
  10662. @item slide
  10663. Set sonogram sliding.
  10664. It accepts the following values:
  10665. @table @samp
  10666. @item replace
  10667. replace old rows with new ones.
  10668. @item scroll
  10669. scroll from top to bottom.
  10670. @end table
  10671. Default is @code{replace}.
  10672. @end table
  10673. @section aphasemeter
  10674. Convert input audio to a video output, displaying the audio phase.
  10675. The filter accepts the following options:
  10676. @table @option
  10677. @item rate, r
  10678. Set the output frame rate. Default value is @code{25}.
  10679. @item size, s
  10680. Set the video size for the output. For the syntax of this option, check the
  10681. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  10682. Default value is @code{800x400}.
  10683. @item rc
  10684. @item gc
  10685. @item bc
  10686. Specify the red, green, blue contrast. Default values are @code{2},
  10687. @code{7} and @code{1}.
  10688. Allowed range is @code{[0, 255]}.
  10689. @item mpc
  10690. Set color which will be used for drawing median phase. If color is
  10691. @code{none} which is default, no median phase value will be drawn.
  10692. @end table
  10693. The filter also exports the frame metadata @code{lavfi.aphasemeter.phase} which
  10694. represents mean phase of current audio frame. Value is in range @code{[-1, 1]}.
  10695. The @code{-1} means left and right channels are completely out of phase and
  10696. @code{1} means channels are in phase.
  10697. @section avectorscope
  10698. Convert input audio to a video output, representing the audio vector
  10699. scope.
  10700. The filter is used to measure the difference between channels of stereo
  10701. audio stream. A monoaural signal, consisting of identical left and right
  10702. signal, results in straight vertical line. Any stereo separation is visible
  10703. as a deviation from this line, creating a Lissajous figure.
  10704. If the straight (or deviation from it) but horizontal line appears this
  10705. indicates that the left and right channels are out of phase.
  10706. The filter accepts the following options:
  10707. @table @option
  10708. @item mode, m
  10709. Set the vectorscope mode.
  10710. Available values are:
  10711. @table @samp
  10712. @item lissajous
  10713. Lissajous rotated by 45 degrees.
  10714. @item lissajous_xy
  10715. Same as above but not rotated.
  10716. @item polar
  10717. Shape resembling half of circle.
  10718. @end table
  10719. Default value is @samp{lissajous}.
  10720. @item size, s
  10721. Set the video size for the output. For the syntax of this option, check the
  10722. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  10723. Default value is @code{400x400}.
  10724. @item rate, r
  10725. Set the output frame rate. Default value is @code{25}.
  10726. @item rc
  10727. @item gc
  10728. @item bc
  10729. @item ac
  10730. Specify the red, green, blue and alpha contrast. Default values are @code{40},
  10731. @code{160}, @code{80} and @code{255}.
  10732. Allowed range is @code{[0, 255]}.
  10733. @item rf
  10734. @item gf
  10735. @item bf
  10736. @item af
  10737. Specify the red, green, blue and alpha fade. Default values are @code{15},
  10738. @code{10}, @code{5} and @code{5}.
  10739. Allowed range is @code{[0, 255]}.
  10740. @item zoom
  10741. Set the zoom factor. Default value is @code{1}. Allowed range is @code{[1, 10]}.
  10742. @item draw
  10743. Set the vectorscope drawing mode.
  10744. Available values are:
  10745. @table @samp
  10746. @item dot
  10747. Draw dot for each sample.
  10748. @item line
  10749. Draw line between previous and current sample.
  10750. @end table
  10751. Default value is @samp{dot}.
  10752. @end table
  10753. @subsection Examples
  10754. @itemize
  10755. @item
  10756. Complete example using @command{ffplay}:
  10757. @example
  10758. ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
  10759. [a] avectorscope=zoom=1.3:rc=2:gc=200:bc=10:rf=1:gf=8:bf=7 [out0]'
  10760. @end example
  10761. @end itemize
  10762. @section concat
  10763. Concatenate audio and video streams, joining them together one after the
  10764. other.
  10765. The filter works on segments of synchronized video and audio streams. All
  10766. segments must have the same number of streams of each type, and that will
  10767. also be the number of streams at output.
  10768. The filter accepts the following options:
  10769. @table @option
  10770. @item n
  10771. Set the number of segments. Default is 2.
  10772. @item v
  10773. Set the number of output video streams, that is also the number of video
  10774. streams in each segment. Default is 1.
  10775. @item a
  10776. Set the number of output audio streams, that is also the number of audio
  10777. streams in each segment. Default is 0.
  10778. @item unsafe
  10779. Activate unsafe mode: do not fail if segments have a different format.
  10780. @end table
  10781. The filter has @var{v}+@var{a} outputs: first @var{v} video outputs, then
  10782. @var{a} audio outputs.
  10783. There are @var{n}x(@var{v}+@var{a}) inputs: first the inputs for the first
  10784. segment, in the same order as the outputs, then the inputs for the second
  10785. segment, etc.
  10786. Related streams do not always have exactly the same duration, for various
  10787. reasons including codec frame size or sloppy authoring. For that reason,
  10788. related synchronized streams (e.g. a video and its audio track) should be
  10789. concatenated at once. The concat filter will use the duration of the longest
  10790. stream in each segment (except the last one), and if necessary pad shorter
  10791. audio streams with silence.
  10792. For this filter to work correctly, all segments must start at timestamp 0.
  10793. All corresponding streams must have the same parameters in all segments; the
  10794. filtering system will automatically select a common pixel format for video
  10795. streams, and a common sample format, sample rate and channel layout for
  10796. audio streams, but other settings, such as resolution, must be converted
  10797. explicitly by the user.
  10798. Different frame rates are acceptable but will result in variable frame rate
  10799. at output; be sure to configure the output file to handle it.
  10800. @subsection Examples
  10801. @itemize
  10802. @item
  10803. Concatenate an opening, an episode and an ending, all in bilingual version
  10804. (video in stream 0, audio in streams 1 and 2):
  10805. @example
  10806. ffmpeg -i opening.mkv -i episode.mkv -i ending.mkv -filter_complex \
  10807. '[0:0] [0:1] [0:2] [1:0] [1:1] [1:2] [2:0] [2:1] [2:2]
  10808. concat=n=3:v=1:a=2 [v] [a1] [a2]' \
  10809. -map '[v]' -map '[a1]' -map '[a2]' output.mkv
  10810. @end example
  10811. @item
  10812. Concatenate two parts, handling audio and video separately, using the
  10813. (a)movie sources, and adjusting the resolution:
  10814. @example
  10815. movie=part1.mp4, scale=512:288 [v1] ; amovie=part1.mp4 [a1] ;
  10816. movie=part2.mp4, scale=512:288 [v2] ; amovie=part2.mp4 [a2] ;
  10817. [v1] [v2] concat [outv] ; [a1] [a2] concat=v=0:a=1 [outa]
  10818. @end example
  10819. Note that a desync will happen at the stitch if the audio and video streams
  10820. do not have exactly the same duration in the first file.
  10821. @end itemize
  10822. @anchor{ebur128}
  10823. @section ebur128
  10824. EBU R128 scanner filter. This filter takes an audio stream as input and outputs
  10825. it unchanged. By default, it logs a message at a frequency of 10Hz with the
  10826. Momentary loudness (identified by @code{M}), Short-term loudness (@code{S}),
  10827. Integrated loudness (@code{I}) and Loudness Range (@code{LRA}).
  10828. The filter also has a video output (see the @var{video} option) with a real
  10829. time graph to observe the loudness evolution. The graphic contains the logged
  10830. message mentioned above, so it is not printed anymore when this option is set,
  10831. unless the verbose logging is set. The main graphing area contains the
  10832. short-term loudness (3 seconds of analysis), and the gauge on the right is for
  10833. the momentary loudness (400 milliseconds).
  10834. More information about the Loudness Recommendation EBU R128 on
  10835. @url{http://tech.ebu.ch/loudness}.
  10836. The filter accepts the following options:
  10837. @table @option
  10838. @item video
  10839. Activate the video output. The audio stream is passed unchanged whether this
  10840. option is set or no. The video stream will be the first output stream if
  10841. activated. Default is @code{0}.
  10842. @item size
  10843. Set the video size. This option is for video only. For the syntax of this
  10844. option, check the
  10845. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  10846. Default and minimum resolution is @code{640x480}.
  10847. @item meter
  10848. Set the EBU scale meter. Default is @code{9}. Common values are @code{9} and
  10849. @code{18}, respectively for EBU scale meter +9 and EBU scale meter +18. Any
  10850. other integer value between this range is allowed.
  10851. @item metadata
  10852. Set metadata injection. If set to @code{1}, the audio input will be segmented
  10853. into 100ms output frames, each of them containing various loudness information
  10854. in metadata. All the metadata keys are prefixed with @code{lavfi.r128.}.
  10855. Default is @code{0}.
  10856. @item framelog
  10857. Force the frame logging level.
  10858. Available values are:
  10859. @table @samp
  10860. @item info
  10861. information logging level
  10862. @item verbose
  10863. verbose logging level
  10864. @end table
  10865. By default, the logging level is set to @var{info}. If the @option{video} or
  10866. the @option{metadata} options are set, it switches to @var{verbose}.
  10867. @item peak
  10868. Set peak mode(s).
  10869. Available modes can be cumulated (the option is a @code{flag} type). Possible
  10870. values are:
  10871. @table @samp
  10872. @item none
  10873. Disable any peak mode (default).
  10874. @item sample
  10875. Enable sample-peak mode.
  10876. Simple peak mode looking for the higher sample value. It logs a message
  10877. for sample-peak (identified by @code{SPK}).
  10878. @item true
  10879. Enable true-peak mode.
  10880. If enabled, the peak lookup is done on an over-sampled version of the input
  10881. stream for better peak accuracy. It logs a message for true-peak.
  10882. (identified by @code{TPK}) and true-peak per frame (identified by @code{FTPK}).
  10883. This mode requires a build with @code{libswresample}.
  10884. @end table
  10885. @item dualmono
  10886. Treat mono input files as "dual mono". If a mono file is intended for playback
  10887. on a stereo system, its EBU R128 measurement will be perceptually incorrect.
  10888. If set to @code{true}, this option will compensate for this effect.
  10889. Multi-channel input files are not affected by this option.
  10890. @item panlaw
  10891. Set a specific pan law to be used for the measurement of dual mono files.
  10892. This parameter is optional, and has a default value of -3.01dB.
  10893. @end table
  10894. @subsection Examples
  10895. @itemize
  10896. @item
  10897. Real-time graph using @command{ffplay}, with a EBU scale meter +18:
  10898. @example
  10899. ffplay -f lavfi -i "amovie=input.mp3,ebur128=video=1:meter=18 [out0][out1]"
  10900. @end example
  10901. @item
  10902. Run an analysis with @command{ffmpeg}:
  10903. @example
  10904. ffmpeg -nostats -i input.mp3 -filter_complex ebur128 -f null -
  10905. @end example
  10906. @end itemize
  10907. @section interleave, ainterleave
  10908. Temporally interleave frames from several inputs.
  10909. @code{interleave} works with video inputs, @code{ainterleave} with audio.
  10910. These filters read frames from several inputs and send the oldest
  10911. queued frame to the output.
  10912. Input streams must have a well defined, monotonically increasing frame
  10913. timestamp values.
  10914. In order to submit one frame to output, these filters need to enqueue
  10915. at least one frame for each input, so they cannot work in case one
  10916. input is not yet terminated and will not receive incoming frames.
  10917. For example consider the case when one input is a @code{select} filter
  10918. which always drop input frames. The @code{interleave} filter will keep
  10919. reading from that input, but it will never be able to send new frames
  10920. to output until the input will send an end-of-stream signal.
  10921. Also, depending on inputs synchronization, the filters will drop
  10922. frames in case one input receives more frames than the other ones, and
  10923. the queue is already filled.
  10924. These filters accept the following options:
  10925. @table @option
  10926. @item nb_inputs, n
  10927. Set the number of different inputs, it is 2 by default.
  10928. @end table
  10929. @subsection Examples
  10930. @itemize
  10931. @item
  10932. Interleave frames belonging to different streams using @command{ffmpeg}:
  10933. @example
  10934. ffmpeg -i bambi.avi -i pr0n.mkv -filter_complex "[0:v][1:v] interleave" out.avi
  10935. @end example
  10936. @item
  10937. Add flickering blur effect:
  10938. @example
  10939. select='if(gt(random(0), 0.2), 1, 2)':n=2 [tmp], boxblur=2:2, [tmp] interleave
  10940. @end example
  10941. @end itemize
  10942. @section perms, aperms
  10943. Set read/write permissions for the output frames.
  10944. These filters are mainly aimed at developers to test direct path in the
  10945. following filter in the filtergraph.
  10946. The filters accept the following options:
  10947. @table @option
  10948. @item mode
  10949. Select the permissions mode.
  10950. It accepts the following values:
  10951. @table @samp
  10952. @item none
  10953. Do nothing. This is the default.
  10954. @item ro
  10955. Set all the output frames read-only.
  10956. @item rw
  10957. Set all the output frames directly writable.
  10958. @item toggle
  10959. Make the frame read-only if writable, and writable if read-only.
  10960. @item random
  10961. Set each output frame read-only or writable randomly.
  10962. @end table
  10963. @item seed
  10964. Set the seed for the @var{random} mode, must be an integer included between
  10965. @code{0} and @code{UINT32_MAX}. If not specified, or if explicitly set to
  10966. @code{-1}, the filter will try to use a good random seed on a best effort
  10967. basis.
  10968. @end table
  10969. Note: in case of auto-inserted filter between the permission filter and the
  10970. following one, the permission might not be received as expected in that
  10971. following filter. Inserting a @ref{format} or @ref{aformat} filter before the
  10972. perms/aperms filter can avoid this problem.
  10973. @section realtime, arealtime
  10974. Slow down filtering to match real time approximatively.
  10975. These filters will pause the filtering for a variable amount of time to
  10976. match the output rate with the input timestamps.
  10977. They are similar to the @option{re} option to @code{ffmpeg}.
  10978. They accept the following options:
  10979. @table @option
  10980. @item limit
  10981. Time limit for the pauses. Any pause longer than that will be considered
  10982. a timestamp discontinuity and reset the timer. Default is 2 seconds.
  10983. @end table
  10984. @section select, aselect
  10985. Select frames to pass in output.
  10986. This filter accepts the following options:
  10987. @table @option
  10988. @item expr, e
  10989. Set expression, which is evaluated for each input frame.
  10990. If the expression is evaluated to zero, the frame is discarded.
  10991. If the evaluation result is negative or NaN, the frame is sent to the
  10992. first output; otherwise it is sent to the output with index
  10993. @code{ceil(val)-1}, assuming that the input index starts from 0.
  10994. For example a value of @code{1.2} corresponds to the output with index
  10995. @code{ceil(1.2)-1 = 2-1 = 1}, that is the second output.
  10996. @item outputs, n
  10997. Set the number of outputs. The output to which to send the selected
  10998. frame is based on the result of the evaluation. Default value is 1.
  10999. @end table
  11000. The expression can contain the following constants:
  11001. @table @option
  11002. @item n
  11003. The (sequential) number of the filtered frame, starting from 0.
  11004. @item selected_n
  11005. The (sequential) number of the selected frame, starting from 0.
  11006. @item prev_selected_n
  11007. The sequential number of the last selected frame. It's NAN if undefined.
  11008. @item TB
  11009. The timebase of the input timestamps.
  11010. @item pts
  11011. The PTS (Presentation TimeStamp) of the filtered video frame,
  11012. expressed in @var{TB} units. It's NAN if undefined.
  11013. @item t
  11014. The PTS of the filtered video frame,
  11015. expressed in seconds. It's NAN if undefined.
  11016. @item prev_pts
  11017. The PTS of the previously filtered video frame. It's NAN if undefined.
  11018. @item prev_selected_pts
  11019. The PTS of the last previously filtered video frame. It's NAN if undefined.
  11020. @item prev_selected_t
  11021. The PTS of the last previously selected video frame. It's NAN if undefined.
  11022. @item start_pts
  11023. The PTS of the first video frame in the video. It's NAN if undefined.
  11024. @item start_t
  11025. The time of the first video frame in the video. It's NAN if undefined.
  11026. @item pict_type @emph{(video only)}
  11027. The type of the filtered frame. It can assume one of the following
  11028. values:
  11029. @table @option
  11030. @item I
  11031. @item P
  11032. @item B
  11033. @item S
  11034. @item SI
  11035. @item SP
  11036. @item BI
  11037. @end table
  11038. @item interlace_type @emph{(video only)}
  11039. The frame interlace type. It can assume one of the following values:
  11040. @table @option
  11041. @item PROGRESSIVE
  11042. The frame is progressive (not interlaced).
  11043. @item TOPFIRST
  11044. The frame is top-field-first.
  11045. @item BOTTOMFIRST
  11046. The frame is bottom-field-first.
  11047. @end table
  11048. @item consumed_sample_n @emph{(audio only)}
  11049. the number of selected samples before the current frame
  11050. @item samples_n @emph{(audio only)}
  11051. the number of samples in the current frame
  11052. @item sample_rate @emph{(audio only)}
  11053. the input sample rate
  11054. @item key
  11055. This is 1 if the filtered frame is a key-frame, 0 otherwise.
  11056. @item pos
  11057. the position in the file of the filtered frame, -1 if the information
  11058. is not available (e.g. for synthetic video)
  11059. @item scene @emph{(video only)}
  11060. value between 0 and 1 to indicate a new scene; a low value reflects a low
  11061. probability for the current frame to introduce a new scene, while a higher
  11062. value means the current frame is more likely to be one (see the example below)
  11063. @item concatdec_select
  11064. The concat demuxer can select only part of a concat input file by setting an
  11065. inpoint and an outpoint, but the output packets may not be entirely contained
  11066. in the selected interval. By using this variable, it is possible to skip frames
  11067. generated by the concat demuxer which are not exactly contained in the selected
  11068. interval.
  11069. This works by comparing the frame pts against the @var{lavf.concat.start_time}
  11070. and the @var{lavf.concat.duration} packet metadata values which are also
  11071. present in the decoded frames.
  11072. The @var{concatdec_select} variable is -1 if the frame pts is at least
  11073. start_time and either the duration metadata is missing or the frame pts is less
  11074. than start_time + duration, 0 otherwise, and NaN if the start_time metadata is
  11075. missing.
  11076. That basically means that an input frame is selected if its pts is within the
  11077. interval set by the concat demuxer.
  11078. @end table
  11079. The default value of the select expression is "1".
  11080. @subsection Examples
  11081. @itemize
  11082. @item
  11083. Select all frames in input:
  11084. @example
  11085. select
  11086. @end example
  11087. The example above is the same as:
  11088. @example
  11089. select=1
  11090. @end example
  11091. @item
  11092. Skip all frames:
  11093. @example
  11094. select=0
  11095. @end example
  11096. @item
  11097. Select only I-frames:
  11098. @example
  11099. select='eq(pict_type\,I)'
  11100. @end example
  11101. @item
  11102. Select one frame every 100:
  11103. @example
  11104. select='not(mod(n\,100))'
  11105. @end example
  11106. @item
  11107. Select only frames contained in the 10-20 time interval:
  11108. @example
  11109. select=between(t\,10\,20)
  11110. @end example
  11111. @item
  11112. Select only I frames contained in the 10-20 time interval:
  11113. @example
  11114. select=between(t\,10\,20)*eq(pict_type\,I)
  11115. @end example
  11116. @item
  11117. Select frames with a minimum distance of 10 seconds:
  11118. @example
  11119. select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
  11120. @end example
  11121. @item
  11122. Use aselect to select only audio frames with samples number > 100:
  11123. @example
  11124. aselect='gt(samples_n\,100)'
  11125. @end example
  11126. @item
  11127. Create a mosaic of the first scenes:
  11128. @example
  11129. ffmpeg -i video.avi -vf select='gt(scene\,0.4)',scale=160:120,tile -frames:v 1 preview.png
  11130. @end example
  11131. Comparing @var{scene} against a value between 0.3 and 0.5 is generally a sane
  11132. choice.
  11133. @item
  11134. Send even and odd frames to separate outputs, and compose them:
  11135. @example
  11136. select=n=2:e='mod(n, 2)+1' [odd][even]; [odd] pad=h=2*ih [tmp]; [tmp][even] overlay=y=h
  11137. @end example
  11138. @item
  11139. Select useful frames from an ffconcat file which is using inpoints and
  11140. outpoints but where the source files are not intra frame only.
  11141. @example
  11142. ffmpeg -copyts -vsync 0 -segment_time_metadata 1 -i input.ffconcat -vf select=concatdec_select -af aselect=concatdec_select output.avi
  11143. @end example
  11144. @end itemize
  11145. @section sendcmd, asendcmd
  11146. Send commands to filters in the filtergraph.
  11147. These filters read commands to be sent to other filters in the
  11148. filtergraph.
  11149. @code{sendcmd} must be inserted between two video filters,
  11150. @code{asendcmd} must be inserted between two audio filters, but apart
  11151. from that they act the same way.
  11152. The specification of commands can be provided in the filter arguments
  11153. with the @var{commands} option, or in a file specified by the
  11154. @var{filename} option.
  11155. These filters accept the following options:
  11156. @table @option
  11157. @item commands, c
  11158. Set the commands to be read and sent to the other filters.
  11159. @item filename, f
  11160. Set the filename of the commands to be read and sent to the other
  11161. filters.
  11162. @end table
  11163. @subsection Commands syntax
  11164. A commands description consists of a sequence of interval
  11165. specifications, comprising a list of commands to be executed when a
  11166. particular event related to that interval occurs. The occurring event
  11167. is typically the current frame time entering or leaving a given time
  11168. interval.
  11169. An interval is specified by the following syntax:
  11170. @example
  11171. @var{START}[-@var{END}] @var{COMMANDS};
  11172. @end example
  11173. The time interval is specified by the @var{START} and @var{END} times.
  11174. @var{END} is optional and defaults to the maximum time.
  11175. The current frame time is considered within the specified interval if
  11176. it is included in the interval [@var{START}, @var{END}), that is when
  11177. the time is greater or equal to @var{START} and is lesser than
  11178. @var{END}.
  11179. @var{COMMANDS} consists of a sequence of one or more command
  11180. specifications, separated by ",", relating to that interval. The
  11181. syntax of a command specification is given by:
  11182. @example
  11183. [@var{FLAGS}] @var{TARGET} @var{COMMAND} @var{ARG}
  11184. @end example
  11185. @var{FLAGS} is optional and specifies the type of events relating to
  11186. the time interval which enable sending the specified command, and must
  11187. be a non-null sequence of identifier flags separated by "+" or "|" and
  11188. enclosed between "[" and "]".
  11189. The following flags are recognized:
  11190. @table @option
  11191. @item enter
  11192. The command is sent when the current frame timestamp enters the
  11193. specified interval. In other words, the command is sent when the
  11194. previous frame timestamp was not in the given interval, and the
  11195. current is.
  11196. @item leave
  11197. The command is sent when the current frame timestamp leaves the
  11198. specified interval. In other words, the command is sent when the
  11199. previous frame timestamp was in the given interval, and the
  11200. current is not.
  11201. @end table
  11202. If @var{FLAGS} is not specified, a default value of @code{[enter]} is
  11203. assumed.
  11204. @var{TARGET} specifies the target of the command, usually the name of
  11205. the filter class or a specific filter instance name.
  11206. @var{COMMAND} specifies the name of the command for the target filter.
  11207. @var{ARG} is optional and specifies the optional list of argument for
  11208. the given @var{COMMAND}.
  11209. Between one interval specification and another, whitespaces, or
  11210. sequences of characters starting with @code{#} until the end of line,
  11211. are ignored and can be used to annotate comments.
  11212. A simplified BNF description of the commands specification syntax
  11213. follows:
  11214. @example
  11215. @var{COMMAND_FLAG} ::= "enter" | "leave"
  11216. @var{COMMAND_FLAGS} ::= @var{COMMAND_FLAG} [(+|"|")@var{COMMAND_FLAG}]
  11217. @var{COMMAND} ::= ["[" @var{COMMAND_FLAGS} "]"] @var{TARGET} @var{COMMAND} [@var{ARG}]
  11218. @var{COMMANDS} ::= @var{COMMAND} [,@var{COMMANDS}]
  11219. @var{INTERVAL} ::= @var{START}[-@var{END}] @var{COMMANDS}
  11220. @var{INTERVALS} ::= @var{INTERVAL}[;@var{INTERVALS}]
  11221. @end example
  11222. @subsection Examples
  11223. @itemize
  11224. @item
  11225. Specify audio tempo change at second 4:
  11226. @example
  11227. asendcmd=c='4.0 atempo tempo 1.5',atempo
  11228. @end example
  11229. @item
  11230. Specify a list of drawtext and hue commands in a file.
  11231. @example
  11232. # show text in the interval 5-10
  11233. 5.0-10.0 [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=hello world',
  11234. [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=';
  11235. # desaturate the image in the interval 15-20
  11236. 15.0-20.0 [enter] hue s 0,
  11237. [enter] drawtext reinit 'fontfile=FreeSerif.ttf:text=nocolor',
  11238. [leave] hue s 1,
  11239. [leave] drawtext reinit 'fontfile=FreeSerif.ttf:text=color';
  11240. # apply an exponential saturation fade-out effect, starting from time 25
  11241. 25 [enter] hue s exp(25-t)
  11242. @end example
  11243. A filtergraph allowing to read and process the above command list
  11244. stored in a file @file{test.cmd}, can be specified with:
  11245. @example
  11246. sendcmd=f=test.cmd,drawtext=fontfile=FreeSerif.ttf:text='',hue
  11247. @end example
  11248. @end itemize
  11249. @anchor{setpts}
  11250. @section setpts, asetpts
  11251. Change the PTS (presentation timestamp) of the input frames.
  11252. @code{setpts} works on video frames, @code{asetpts} on audio frames.
  11253. This filter accepts the following options:
  11254. @table @option
  11255. @item expr
  11256. The expression which is evaluated for each frame to construct its timestamp.
  11257. @end table
  11258. The expression is evaluated through the eval API and can contain the following
  11259. constants:
  11260. @table @option
  11261. @item FRAME_RATE
  11262. frame rate, only defined for constant frame-rate video
  11263. @item PTS
  11264. The presentation timestamp in input
  11265. @item N
  11266. The count of the input frame for video or the number of consumed samples,
  11267. not including the current frame for audio, starting from 0.
  11268. @item NB_CONSUMED_SAMPLES
  11269. The number of consumed samples, not including the current frame (only
  11270. audio)
  11271. @item NB_SAMPLES, S
  11272. The number of samples in the current frame (only audio)
  11273. @item SAMPLE_RATE, SR
  11274. The audio sample rate.
  11275. @item STARTPTS
  11276. The PTS of the first frame.
  11277. @item STARTT
  11278. the time in seconds of the first frame
  11279. @item INTERLACED
  11280. State whether the current frame is interlaced.
  11281. @item T
  11282. the time in seconds of the current frame
  11283. @item POS
  11284. original position in the file of the frame, or undefined if undefined
  11285. for the current frame
  11286. @item PREV_INPTS
  11287. The previous input PTS.
  11288. @item PREV_INT
  11289. previous input time in seconds
  11290. @item PREV_OUTPTS
  11291. The previous output PTS.
  11292. @item PREV_OUTT
  11293. previous output time in seconds
  11294. @item RTCTIME
  11295. The wallclock (RTC) time in microseconds. This is deprecated, use time(0)
  11296. instead.
  11297. @item RTCSTART
  11298. The wallclock (RTC) time at the start of the movie in microseconds.
  11299. @item TB
  11300. The timebase of the input timestamps.
  11301. @end table
  11302. @subsection Examples
  11303. @itemize
  11304. @item
  11305. Start counting PTS from zero
  11306. @example
  11307. setpts=PTS-STARTPTS
  11308. @end example
  11309. @item
  11310. Apply fast motion effect:
  11311. @example
  11312. setpts=0.5*PTS
  11313. @end example
  11314. @item
  11315. Apply slow motion effect:
  11316. @example
  11317. setpts=2.0*PTS
  11318. @end example
  11319. @item
  11320. Set fixed rate of 25 frames per second:
  11321. @example
  11322. setpts=N/(25*TB)
  11323. @end example
  11324. @item
  11325. Set fixed rate 25 fps with some jitter:
  11326. @example
  11327. setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
  11328. @end example
  11329. @item
  11330. Apply an offset of 10 seconds to the input PTS:
  11331. @example
  11332. setpts=PTS+10/TB
  11333. @end example
  11334. @item
  11335. Generate timestamps from a "live source" and rebase onto the current timebase:
  11336. @example
  11337. setpts='(RTCTIME - RTCSTART) / (TB * 1000000)'
  11338. @end example
  11339. @item
  11340. Generate timestamps by counting samples:
  11341. @example
  11342. asetpts=N/SR/TB
  11343. @end example
  11344. @end itemize
  11345. @section settb, asettb
  11346. Set the timebase to use for the output frames timestamps.
  11347. It is mainly useful for testing timebase configuration.
  11348. It accepts the following parameters:
  11349. @table @option
  11350. @item expr, tb
  11351. The expression which is evaluated into the output timebase.
  11352. @end table
  11353. The value for @option{tb} is an arithmetic expression representing a
  11354. rational. The expression can contain the constants "AVTB" (the default
  11355. timebase), "intb" (the input timebase) and "sr" (the sample rate,
  11356. audio only). Default value is "intb".
  11357. @subsection Examples
  11358. @itemize
  11359. @item
  11360. Set the timebase to 1/25:
  11361. @example
  11362. settb=expr=1/25
  11363. @end example
  11364. @item
  11365. Set the timebase to 1/10:
  11366. @example
  11367. settb=expr=0.1
  11368. @end example
  11369. @item
  11370. Set the timebase to 1001/1000:
  11371. @example
  11372. settb=1+0.001
  11373. @end example
  11374. @item
  11375. Set the timebase to 2*intb:
  11376. @example
  11377. settb=2*intb
  11378. @end example
  11379. @item
  11380. Set the default timebase value:
  11381. @example
  11382. settb=AVTB
  11383. @end example
  11384. @end itemize
  11385. @section showcqt
  11386. Convert input audio to a video output representing frequency spectrum
  11387. logarithmically using Brown-Puckette constant Q transform algorithm with
  11388. direct frequency domain coefficient calculation (but the transform itself
  11389. is not really constant Q, instead the Q factor is actually variable/clamped),
  11390. with musical tone scale, from E0 to D#10.
  11391. The filter accepts the following options:
  11392. @table @option
  11393. @item size, s
  11394. Specify the video size for the output. It must be even. For the syntax of this option,
  11395. check the @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  11396. Default value is @code{1920x1080}.
  11397. @item fps, rate, r
  11398. Set the output frame rate. Default value is @code{25}.
  11399. @item bar_h
  11400. Set the bargraph height. It must be even. Default value is @code{-1} which
  11401. computes the bargraph height automatically.
  11402. @item axis_h
  11403. Set the axis height. It must be even. Default value is @code{-1} which computes
  11404. the axis height automatically.
  11405. @item sono_h
  11406. Set the sonogram height. It must be even. Default value is @code{-1} which
  11407. computes the sonogram height automatically.
  11408. @item fullhd
  11409. Set the fullhd resolution. This option is deprecated, use @var{size}, @var{s}
  11410. instead. Default value is @code{1}.
  11411. @item sono_v, volume
  11412. Specify the sonogram volume expression. It can contain variables:
  11413. @table @option
  11414. @item bar_v
  11415. the @var{bar_v} evaluated expression
  11416. @item frequency, freq, f
  11417. the frequency where it is evaluated
  11418. @item timeclamp, tc
  11419. the value of @var{timeclamp} option
  11420. @end table
  11421. and functions:
  11422. @table @option
  11423. @item a_weighting(f)
  11424. A-weighting of equal loudness
  11425. @item b_weighting(f)
  11426. B-weighting of equal loudness
  11427. @item c_weighting(f)
  11428. C-weighting of equal loudness.
  11429. @end table
  11430. Default value is @code{16}.
  11431. @item bar_v, volume2
  11432. Specify the bargraph volume expression. It can contain variables:
  11433. @table @option
  11434. @item sono_v
  11435. the @var{sono_v} evaluated expression
  11436. @item frequency, freq, f
  11437. the frequency where it is evaluated
  11438. @item timeclamp, tc
  11439. the value of @var{timeclamp} option
  11440. @end table
  11441. and functions:
  11442. @table @option
  11443. @item a_weighting(f)
  11444. A-weighting of equal loudness
  11445. @item b_weighting(f)
  11446. B-weighting of equal loudness
  11447. @item c_weighting(f)
  11448. C-weighting of equal loudness.
  11449. @end table
  11450. Default value is @code{sono_v}.
  11451. @item sono_g, gamma
  11452. Specify the sonogram gamma. Lower gamma makes the spectrum more contrast,
  11453. higher gamma makes the spectrum having more range. Default value is @code{3}.
  11454. Acceptable range is @code{[1, 7]}.
  11455. @item bar_g, gamma2
  11456. Specify the bargraph gamma. Default value is @code{1}. Acceptable range is
  11457. @code{[1, 7]}.
  11458. @item timeclamp, tc
  11459. Specify the transform timeclamp. At low frequency, there is trade-off between
  11460. accuracy in time domain and frequency domain. If timeclamp is lower,
  11461. event in time domain is represented more accurately (such as fast bass drum),
  11462. otherwise event in frequency domain is represented more accurately
  11463. (such as bass guitar). Acceptable range is @code{[0.1, 1]}. Default value is @code{0.17}.
  11464. @item basefreq
  11465. Specify the transform base frequency. Default value is @code{20.01523126408007475},
  11466. which is frequency 50 cents below E0. Acceptable range is @code{[10, 100000]}.
  11467. @item endfreq
  11468. Specify the transform end frequency. Default value is @code{20495.59681441799654},
  11469. which is frequency 50 cents above D#10. Acceptable range is @code{[10, 100000]}.
  11470. @item coeffclamp
  11471. This option is deprecated and ignored.
  11472. @item tlength
  11473. Specify the transform length in time domain. Use this option to control accuracy
  11474. trade-off between time domain and frequency domain at every frequency sample.
  11475. It can contain variables:
  11476. @table @option
  11477. @item frequency, freq, f
  11478. the frequency where it is evaluated
  11479. @item timeclamp, tc
  11480. the value of @var{timeclamp} option.
  11481. @end table
  11482. Default value is @code{384*tc/(384+tc*f)}.
  11483. @item count
  11484. Specify the transform count for every video frame. Default value is @code{6}.
  11485. Acceptable range is @code{[1, 30]}.
  11486. @item fcount
  11487. Specify the transform count for every single pixel. Default value is @code{0},
  11488. which makes it computed automatically. Acceptable range is @code{[0, 10]}.
  11489. @item fontfile
  11490. Specify font file for use with freetype to draw the axis. If not specified,
  11491. use embedded font. Note that drawing with font file or embedded font is not
  11492. implemented with custom @var{basefreq} and @var{endfreq}, use @var{axisfile}
  11493. option instead.
  11494. @item fontcolor
  11495. Specify font color expression. This is arithmetic expression that should return
  11496. integer value 0xRRGGBB. It can contain variables:
  11497. @table @option
  11498. @item frequency, freq, f
  11499. the frequency where it is evaluated
  11500. @item timeclamp, tc
  11501. the value of @var{timeclamp} option
  11502. @end table
  11503. and functions:
  11504. @table @option
  11505. @item midi(f)
  11506. midi number of frequency f, some midi numbers: E0(16), C1(24), C2(36), A4(69)
  11507. @item r(x), g(x), b(x)
  11508. red, green, and blue value of intensity x.
  11509. @end table
  11510. Default value is @code{st(0, (midi(f)-59.5)/12);
  11511. st(1, if(between(ld(0),0,1), 0.5-0.5*cos(2*PI*ld(0)), 0));
  11512. r(1-ld(1)) + b(ld(1))}.
  11513. @item axisfile
  11514. Specify image file to draw the axis. This option override @var{fontfile} and
  11515. @var{fontcolor} option.
  11516. @item axis, text
  11517. Enable/disable drawing text to the axis. If it is set to @code{0}, drawing to
  11518. the axis is disabled, ignoring @var{fontfile} and @var{axisfile} option.
  11519. Default value is @code{1}.
  11520. @end table
  11521. @subsection Examples
  11522. @itemize
  11523. @item
  11524. Playing audio while showing the spectrum:
  11525. @example
  11526. ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt [out0]'
  11527. @end example
  11528. @item
  11529. Same as above, but with frame rate 30 fps:
  11530. @example
  11531. ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=fps=30:count=5 [out0]'
  11532. @end example
  11533. @item
  11534. Playing at 1280x720:
  11535. @example
  11536. ffplay -f lavfi 'amovie=a.mp3, asplit [a][out1]; [a] showcqt=s=1280x720:count=4 [out0]'
  11537. @end example
  11538. @item
  11539. Disable sonogram display:
  11540. @example
  11541. sono_h=0
  11542. @end example
  11543. @item
  11544. A1 and its harmonics: A1, A2, (near)E3, A3:
  11545. @example
  11546. 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),
  11547. asplit[a][out1]; [a] showcqt [out0]'
  11548. @end example
  11549. @item
  11550. Same as above, but with more accuracy in frequency domain:
  11551. @example
  11552. 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),
  11553. asplit[a][out1]; [a] showcqt=timeclamp=0.5 [out0]'
  11554. @end example
  11555. @item
  11556. Custom volume:
  11557. @example
  11558. bar_v=10:sono_v=bar_v*a_weighting(f)
  11559. @end example
  11560. @item
  11561. Custom gamma, now spectrum is linear to the amplitude.
  11562. @example
  11563. bar_g=2:sono_g=2
  11564. @end example
  11565. @item
  11566. Custom tlength equation:
  11567. @example
  11568. 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)))'
  11569. @end example
  11570. @item
  11571. Custom fontcolor and fontfile, C-note is colored green, others are colored blue:
  11572. @example
  11573. fontcolor='if(mod(floor(midi(f)+0.5),12), 0x0000FF, g(1))':fontfile=myfont.ttf
  11574. @end example
  11575. @item
  11576. Custom frequency range with custom axis using image file:
  11577. @example
  11578. axisfile=myaxis.png:basefreq=40:endfreq=10000
  11579. @end example
  11580. @end itemize
  11581. @section showfreqs
  11582. Convert input audio to video output representing the audio power spectrum.
  11583. Audio amplitude is on Y-axis while frequency is on X-axis.
  11584. The filter accepts the following options:
  11585. @table @option
  11586. @item size, s
  11587. Specify size of video. For the syntax of this option, check the
  11588. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  11589. Default is @code{1024x512}.
  11590. @item mode
  11591. Set display mode.
  11592. This set how each frequency bin will be represented.
  11593. It accepts the following values:
  11594. @table @samp
  11595. @item line
  11596. @item bar
  11597. @item dot
  11598. @end table
  11599. Default is @code{bar}.
  11600. @item ascale
  11601. Set amplitude scale.
  11602. It accepts the following values:
  11603. @table @samp
  11604. @item lin
  11605. Linear scale.
  11606. @item sqrt
  11607. Square root scale.
  11608. @item cbrt
  11609. Cubic root scale.
  11610. @item log
  11611. Logarithmic scale.
  11612. @end table
  11613. Default is @code{log}.
  11614. @item fscale
  11615. Set frequency scale.
  11616. It accepts the following values:
  11617. @table @samp
  11618. @item lin
  11619. Linear scale.
  11620. @item log
  11621. Logarithmic scale.
  11622. @item rlog
  11623. Reverse logarithmic scale.
  11624. @end table
  11625. Default is @code{lin}.
  11626. @item win_size
  11627. Set window size.
  11628. It accepts the following values:
  11629. @table @samp
  11630. @item w16
  11631. @item w32
  11632. @item w64
  11633. @item w128
  11634. @item w256
  11635. @item w512
  11636. @item w1024
  11637. @item w2048
  11638. @item w4096
  11639. @item w8192
  11640. @item w16384
  11641. @item w32768
  11642. @item w65536
  11643. @end table
  11644. Default is @code{w2048}
  11645. @item win_func
  11646. Set windowing function.
  11647. It accepts the following values:
  11648. @table @samp
  11649. @item rect
  11650. @item bartlett
  11651. @item hanning
  11652. @item hamming
  11653. @item blackman
  11654. @item welch
  11655. @item flattop
  11656. @item bharris
  11657. @item bnuttall
  11658. @item bhann
  11659. @item sine
  11660. @item nuttall
  11661. @item lanczos
  11662. @item gauss
  11663. @item tukey
  11664. @end table
  11665. Default is @code{hanning}.
  11666. @item overlap
  11667. Set window overlap. In range @code{[0, 1]}. Default is @code{1},
  11668. which means optimal overlap for selected window function will be picked.
  11669. @item averaging
  11670. Set time averaging. Setting this to 0 will display current maximal peaks.
  11671. Default is @code{1}, which means time averaging is disabled.
  11672. @item colors
  11673. Specify list of colors separated by space or by '|' which will be used to
  11674. draw channel frequencies. Unrecognized or missing colors will be replaced
  11675. by white color.
  11676. @item cmode
  11677. Set channel display mode.
  11678. It accepts the following values:
  11679. @table @samp
  11680. @item combined
  11681. @item separate
  11682. @end table
  11683. Default is @code{combined}.
  11684. @end table
  11685. @anchor{showspectrum}
  11686. @section showspectrum
  11687. Convert input audio to a video output, representing the audio frequency
  11688. spectrum.
  11689. The filter accepts the following options:
  11690. @table @option
  11691. @item size, s
  11692. Specify the video size for the output. For the syntax of this option, check the
  11693. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  11694. Default value is @code{640x512}.
  11695. @item slide
  11696. Specify how the spectrum should slide along the window.
  11697. It accepts the following values:
  11698. @table @samp
  11699. @item replace
  11700. the samples start again on the left when they reach the right
  11701. @item scroll
  11702. the samples scroll from right to left
  11703. @item rscroll
  11704. the samples scroll from left to right
  11705. @item fullframe
  11706. frames are only produced when the samples reach the right
  11707. @end table
  11708. Default value is @code{replace}.
  11709. @item mode
  11710. Specify display mode.
  11711. It accepts the following values:
  11712. @table @samp
  11713. @item combined
  11714. all channels are displayed in the same row
  11715. @item separate
  11716. all channels are displayed in separate rows
  11717. @end table
  11718. Default value is @samp{combined}.
  11719. @item color
  11720. Specify display color mode.
  11721. It accepts the following values:
  11722. @table @samp
  11723. @item channel
  11724. each channel is displayed in a separate color
  11725. @item intensity
  11726. each channel is displayed using the same color scheme
  11727. @item rainbow
  11728. each channel is displayed using the rainbow color scheme
  11729. @item moreland
  11730. each channel is displayed using the moreland color scheme
  11731. @item nebulae
  11732. each channel is displayed using the nebulae color scheme
  11733. @item fire
  11734. each channel is displayed using the fire color scheme
  11735. @item fiery
  11736. each channel is displayed using the fiery color scheme
  11737. @item fruit
  11738. each channel is displayed using the fruit color scheme
  11739. @item cool
  11740. each channel is displayed using the cool color scheme
  11741. @end table
  11742. Default value is @samp{channel}.
  11743. @item scale
  11744. Specify scale used for calculating intensity color values.
  11745. It accepts the following values:
  11746. @table @samp
  11747. @item lin
  11748. linear
  11749. @item sqrt
  11750. square root, default
  11751. @item cbrt
  11752. cubic root
  11753. @item 4thrt
  11754. 4th root
  11755. @item 5thrt
  11756. 5th root
  11757. @item log
  11758. logarithmic
  11759. @end table
  11760. Default value is @samp{sqrt}.
  11761. @item saturation
  11762. Set saturation modifier for displayed colors. Negative values provide
  11763. alternative color scheme. @code{0} is no saturation at all.
  11764. Saturation must be in [-10.0, 10.0] range.
  11765. Default value is @code{1}.
  11766. @item win_func
  11767. Set window function.
  11768. It accepts the following values:
  11769. @table @samp
  11770. @item rect
  11771. @item bartlett
  11772. @item hann
  11773. @item hanning
  11774. @item hamming
  11775. @item blackman
  11776. @item welch
  11777. @item flattop
  11778. @item bharris
  11779. @item bnuttall
  11780. @item bhann
  11781. @item sine
  11782. @item nuttall
  11783. @item lanczos
  11784. @item gauss
  11785. @item tukey
  11786. @end table
  11787. Default value is @code{hann}.
  11788. @item orientation
  11789. Set orientation of time vs frequency axis. Can be @code{vertical} or
  11790. @code{horizontal}. Default is @code{vertical}.
  11791. @item overlap
  11792. Set ratio of overlap window. Default value is @code{0}.
  11793. When value is @code{1} overlap is set to recommended size for specific
  11794. window function currently used.
  11795. @item gain
  11796. Set scale gain for calculating intensity color values.
  11797. Default value is @code{1}.
  11798. @item data
  11799. Set which data to display. Can be @code{magnitude}, default or @code{phase}.
  11800. @end table
  11801. The usage is very similar to the showwaves filter; see the examples in that
  11802. section.
  11803. @subsection Examples
  11804. @itemize
  11805. @item
  11806. Large window with logarithmic color scaling:
  11807. @example
  11808. showspectrum=s=1280x480:scale=log
  11809. @end example
  11810. @item
  11811. Complete example for a colored and sliding spectrum per channel using @command{ffplay}:
  11812. @example
  11813. ffplay -f lavfi 'amovie=input.mp3, asplit [a][out1];
  11814. [a] showspectrum=mode=separate:color=intensity:slide=1:scale=cbrt [out0]'
  11815. @end example
  11816. @end itemize
  11817. @section showspectrumpic
  11818. Convert input audio to a single video frame, representing the audio frequency
  11819. spectrum.
  11820. The filter accepts the following options:
  11821. @table @option
  11822. @item size, s
  11823. Specify the video size for the output. For the syntax of this option, check the
  11824. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  11825. Default value is @code{4096x2048}.
  11826. @item mode
  11827. Specify display mode.
  11828. It accepts the following values:
  11829. @table @samp
  11830. @item combined
  11831. all channels are displayed in the same row
  11832. @item separate
  11833. all channels are displayed in separate rows
  11834. @end table
  11835. Default value is @samp{combined}.
  11836. @item color
  11837. Specify display color mode.
  11838. It accepts the following values:
  11839. @table @samp
  11840. @item channel
  11841. each channel is displayed in a separate color
  11842. @item intensity
  11843. each channel is displayed using the same color scheme
  11844. @item rainbow
  11845. each channel is displayed using the rainbow color scheme
  11846. @item moreland
  11847. each channel is displayed using the moreland color scheme
  11848. @item nebulae
  11849. each channel is displayed using the nebulae color scheme
  11850. @item fire
  11851. each channel is displayed using the fire color scheme
  11852. @item fiery
  11853. each channel is displayed using the fiery color scheme
  11854. @item fruit
  11855. each channel is displayed using the fruit color scheme
  11856. @item cool
  11857. each channel is displayed using the cool color scheme
  11858. @end table
  11859. Default value is @samp{intensity}.
  11860. @item scale
  11861. Specify scale used for calculating intensity color values.
  11862. It accepts the following values:
  11863. @table @samp
  11864. @item lin
  11865. linear
  11866. @item sqrt
  11867. square root, default
  11868. @item cbrt
  11869. cubic root
  11870. @item 4thrt
  11871. 4th root
  11872. @item 5thrt
  11873. 5th root
  11874. @item log
  11875. logarithmic
  11876. @end table
  11877. Default value is @samp{log}.
  11878. @item saturation
  11879. Set saturation modifier for displayed colors. Negative values provide
  11880. alternative color scheme. @code{0} is no saturation at all.
  11881. Saturation must be in [-10.0, 10.0] range.
  11882. Default value is @code{1}.
  11883. @item win_func
  11884. Set window function.
  11885. It accepts the following values:
  11886. @table @samp
  11887. @item rect
  11888. @item bartlett
  11889. @item hann
  11890. @item hanning
  11891. @item hamming
  11892. @item blackman
  11893. @item welch
  11894. @item flattop
  11895. @item bharris
  11896. @item bnuttall
  11897. @item bhann
  11898. @item sine
  11899. @item nuttall
  11900. @item lanczos
  11901. @item gauss
  11902. @item tukey
  11903. @end table
  11904. Default value is @code{hann}.
  11905. @item orientation
  11906. Set orientation of time vs frequency axis. Can be @code{vertical} or
  11907. @code{horizontal}. Default is @code{vertical}.
  11908. @item gain
  11909. Set scale gain for calculating intensity color values.
  11910. Default value is @code{1}.
  11911. @item legend
  11912. Draw time and frequency axes and legends. Default is enabled.
  11913. @end table
  11914. @subsection Examples
  11915. @itemize
  11916. @item
  11917. Extract an audio spectrogram of a whole audio track
  11918. in a 1024x1024 picture using @command{ffmpeg}:
  11919. @example
  11920. ffmpeg -i audio.flac -lavfi showspectrumpic=s=1024x1024 spectrogram.png
  11921. @end example
  11922. @end itemize
  11923. @section showvolume
  11924. Convert input audio volume to a video output.
  11925. The filter accepts the following options:
  11926. @table @option
  11927. @item rate, r
  11928. Set video rate.
  11929. @item b
  11930. Set border width, allowed range is [0, 5]. Default is 1.
  11931. @item w
  11932. Set channel width, allowed range is [80, 1080]. Default is 400.
  11933. @item h
  11934. Set channel height, allowed range is [1, 100]. Default is 20.
  11935. @item f
  11936. Set fade, allowed range is [0.001, 1]. Default is 0.95.
  11937. @item c
  11938. Set volume color expression.
  11939. The expression can use the following variables:
  11940. @table @option
  11941. @item VOLUME
  11942. Current max volume of channel in dB.
  11943. @item CHANNEL
  11944. Current channel number, starting from 0.
  11945. @end table
  11946. @item t
  11947. If set, displays channel names. Default is enabled.
  11948. @item v
  11949. If set, displays volume values. Default is enabled.
  11950. @end table
  11951. @section showwaves
  11952. Convert input audio to a video output, representing the samples waves.
  11953. The filter accepts the following options:
  11954. @table @option
  11955. @item size, s
  11956. Specify the video size for the output. For the syntax of this option, check the
  11957. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  11958. Default value is @code{600x240}.
  11959. @item mode
  11960. Set display mode.
  11961. Available values are:
  11962. @table @samp
  11963. @item point
  11964. Draw a point for each sample.
  11965. @item line
  11966. Draw a vertical line for each sample.
  11967. @item p2p
  11968. Draw a point for each sample and a line between them.
  11969. @item cline
  11970. Draw a centered vertical line for each sample.
  11971. @end table
  11972. Default value is @code{point}.
  11973. @item n
  11974. Set the number of samples which are printed on the same column. A
  11975. larger value will decrease the frame rate. Must be a positive
  11976. integer. This option can be set only if the value for @var{rate}
  11977. is not explicitly specified.
  11978. @item rate, r
  11979. Set the (approximate) output frame rate. This is done by setting the
  11980. option @var{n}. Default value is "25".
  11981. @item split_channels
  11982. Set if channels should be drawn separately or overlap. Default value is 0.
  11983. @item colors
  11984. Set colors separated by '|' which are going to be used for drawing of each channel.
  11985. @item scale
  11986. Set amplitude scale. Can be linear @code{lin} or logarithmic @code{log}.
  11987. Default is linear.
  11988. @end table
  11989. @subsection Examples
  11990. @itemize
  11991. @item
  11992. Output the input file audio and the corresponding video representation
  11993. at the same time:
  11994. @example
  11995. amovie=a.mp3,asplit[out0],showwaves[out1]
  11996. @end example
  11997. @item
  11998. Create a synthetic signal and show it with showwaves, forcing a
  11999. frame rate of 30 frames per second:
  12000. @example
  12001. aevalsrc=sin(1*2*PI*t)*sin(880*2*PI*t):cos(2*PI*200*t),asplit[out0],showwaves=r=30[out1]
  12002. @end example
  12003. @end itemize
  12004. @section showwavespic
  12005. Convert input audio to a single video frame, representing the samples waves.
  12006. The filter accepts the following options:
  12007. @table @option
  12008. @item size, s
  12009. Specify the video size for the output. For the syntax of this option, check the
  12010. @ref{video size syntax,,"Video size" section in the ffmpeg-utils manual,ffmpeg-utils}.
  12011. Default value is @code{600x240}.
  12012. @item split_channels
  12013. Set if channels should be drawn separately or overlap. Default value is 0.
  12014. @item colors
  12015. Set colors separated by '|' which are going to be used for drawing of each channel.
  12016. @item scale
  12017. Set amplitude scale. Can be linear @code{lin} or logarithmic @code{log}.
  12018. Default is linear.
  12019. @end table
  12020. @subsection Examples
  12021. @itemize
  12022. @item
  12023. Extract a channel split representation of the wave form of a whole audio track
  12024. in a 1024x800 picture using @command{ffmpeg}:
  12025. @example
  12026. ffmpeg -i audio.flac -lavfi showwavespic=split_channels=1:s=1024x800 waveform.png
  12027. @end example
  12028. @item
  12029. Colorize the waveform with colorchannelmixer. This example will make
  12030. the waveform a green color approximately RGB(66,217,150). Additional
  12031. channels will be shades of this color.
  12032. @example
  12033. ffmpeg -i audio.mp3 -filter_complex "showwavespic,colorchannelmixer=rr=66/255:gg=217/255:bb=150/255" waveform.png
  12034. @end example
  12035. @end itemize
  12036. @section spectrumsynth
  12037. Sythesize audio from 2 input video spectrums, first input stream represents
  12038. magnitude across time and second represents phase across time.
  12039. The filter will transform from frequency domain as displayed in videos back
  12040. to time domain as presented in audio output.
  12041. This filter is primarly created for reversing processed @ref{showspectrum}
  12042. filter outputs, but can synthesize sound from other spectrograms too.
  12043. But in such case results are going to be poor if the phase data is not
  12044. available, because in such cases phase data need to be recreated, usually
  12045. its just recreated from random noise.
  12046. For best results use gray only output (@code{channel} color mode in
  12047. @ref{showspectrum} filter) and @code{log} scale for magnitude video and
  12048. @code{lin} scale for phase video. To produce phase, for 2nd video, use
  12049. @code{data} option. Inputs videos should generally use @code{fullframe}
  12050. slide mode as that saves resources needed for decoding video.
  12051. The filter accepts the following options:
  12052. @table @option
  12053. @item sample_rate
  12054. Specify sample rate of output audio, the sample rate of audio from which
  12055. spectrum was generated may differ.
  12056. @item channels
  12057. Set number of channels represented in input video spectrums.
  12058. @item scale
  12059. Set scale which was used when generating magnitude input spectrum.
  12060. Can be @code{lin} or @code{log}. Default is @code{log}.
  12061. @item slide
  12062. Set slide which was used when generating inputs spectrums.
  12063. Can be @code{replace}, @code{scroll}, @code{fullframe} or @code{rscroll}.
  12064. Default is @code{fullframe}.
  12065. @item win_func
  12066. Set window function used for resynthesis.
  12067. @item overlap
  12068. Set window overlap. In range @code{[0, 1]}. Default is @code{1},
  12069. which means optimal overlap for selected window function will be picked.
  12070. @item orientation
  12071. Set orientation of input videos. Can be @code{vertical} or @code{horizontal}.
  12072. Default is @code{vertical}.
  12073. @end table
  12074. @subsection Examples
  12075. @itemize
  12076. @item
  12077. First create magnitude and phase videos from audio, assuming audio is stereo with 44100 sample rate,
  12078. then resynthesize videos back to audio with spectrumsynth:
  12079. @example
  12080. 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
  12081. 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
  12082. ffmpeg -i magnitude.nut -i phase.nut -lavfi spectrumsynth=channels=2:sample_rate=44100:win_func=hann:overlap=0.875:slide=fullframe output.flac
  12083. @end example
  12084. @end itemize
  12085. @section split, asplit
  12086. Split input into several identical outputs.
  12087. @code{asplit} works with audio input, @code{split} with video.
  12088. The filter accepts a single parameter which specifies the number of outputs. If
  12089. unspecified, it defaults to 2.
  12090. @subsection Examples
  12091. @itemize
  12092. @item
  12093. Create two separate outputs from the same input:
  12094. @example
  12095. [in] split [out0][out1]
  12096. @end example
  12097. @item
  12098. To create 3 or more outputs, you need to specify the number of
  12099. outputs, like in:
  12100. @example
  12101. [in] asplit=3 [out0][out1][out2]
  12102. @end example
  12103. @item
  12104. Create two separate outputs from the same input, one cropped and
  12105. one padded:
  12106. @example
  12107. [in] split [splitout1][splitout2];
  12108. [splitout1] crop=100:100:0:0 [cropout];
  12109. [splitout2] pad=200:200:100:100 [padout];
  12110. @end example
  12111. @item
  12112. Create 5 copies of the input audio with @command{ffmpeg}:
  12113. @example
  12114. ffmpeg -i INPUT -filter_complex asplit=5 OUTPUT
  12115. @end example
  12116. @end itemize
  12117. @section zmq, azmq
  12118. Receive commands sent through a libzmq client, and forward them to
  12119. filters in the filtergraph.
  12120. @code{zmq} and @code{azmq} work as a pass-through filters. @code{zmq}
  12121. must be inserted between two video filters, @code{azmq} between two
  12122. audio filters.
  12123. To enable these filters you need to install the libzmq library and
  12124. headers and configure FFmpeg with @code{--enable-libzmq}.
  12125. For more information about libzmq see:
  12126. @url{http://www.zeromq.org/}
  12127. The @code{zmq} and @code{azmq} filters work as a libzmq server, which
  12128. receives messages sent through a network interface defined by the
  12129. @option{bind_address} option.
  12130. The received message must be in the form:
  12131. @example
  12132. @var{TARGET} @var{COMMAND} [@var{ARG}]
  12133. @end example
  12134. @var{TARGET} specifies the target of the command, usually the name of
  12135. the filter class or a specific filter instance name.
  12136. @var{COMMAND} specifies the name of the command for the target filter.
  12137. @var{ARG} is optional and specifies the optional argument list for the
  12138. given @var{COMMAND}.
  12139. Upon reception, the message is processed and the corresponding command
  12140. is injected into the filtergraph. Depending on the result, the filter
  12141. will send a reply to the client, adopting the format:
  12142. @example
  12143. @var{ERROR_CODE} @var{ERROR_REASON}
  12144. @var{MESSAGE}
  12145. @end example
  12146. @var{MESSAGE} is optional.
  12147. @subsection Examples
  12148. Look at @file{tools/zmqsend} for an example of a zmq client which can
  12149. be used to send commands processed by these filters.
  12150. Consider the following filtergraph generated by @command{ffplay}
  12151. @example
  12152. ffplay -dumpgraph 1 -f lavfi "
  12153. color=s=100x100:c=red [l];
  12154. color=s=100x100:c=blue [r];
  12155. nullsrc=s=200x100, zmq [bg];
  12156. [bg][l] overlay [bg+l];
  12157. [bg+l][r] overlay=x=100 "
  12158. @end example
  12159. To change the color of the left side of the video, the following
  12160. command can be used:
  12161. @example
  12162. echo Parsed_color_0 c yellow | tools/zmqsend
  12163. @end example
  12164. To change the right side:
  12165. @example
  12166. echo Parsed_color_1 c pink | tools/zmqsend
  12167. @end example
  12168. @c man end MULTIMEDIA FILTERS
  12169. @chapter Multimedia Sources
  12170. @c man begin MULTIMEDIA SOURCES
  12171. Below is a description of the currently available multimedia sources.
  12172. @section amovie
  12173. This is the same as @ref{movie} source, except it selects an audio
  12174. stream by default.
  12175. @anchor{movie}
  12176. @section movie
  12177. Read audio and/or video stream(s) from a movie container.
  12178. It accepts the following parameters:
  12179. @table @option
  12180. @item filename
  12181. The name of the resource to read (not necessarily a file; it can also be a
  12182. device or a stream accessed through some protocol).
  12183. @item format_name, f
  12184. Specifies the format assumed for the movie to read, and can be either
  12185. the name of a container or an input device. If not specified, the
  12186. format is guessed from @var{movie_name} or by probing.
  12187. @item seek_point, sp
  12188. Specifies the seek point in seconds. The frames will be output
  12189. starting from this seek point. The parameter is evaluated with
  12190. @code{av_strtod}, so the numerical value may be suffixed by an IS
  12191. postfix. The default value is "0".
  12192. @item streams, s
  12193. Specifies the streams to read. Several streams can be specified,
  12194. separated by "+". The source will then have as many outputs, in the
  12195. same order. The syntax is explained in the ``Stream specifiers''
  12196. section in the ffmpeg manual. Two special names, "dv" and "da" specify
  12197. respectively the default (best suited) video and audio stream. Default
  12198. is "dv", or "da" if the filter is called as "amovie".
  12199. @item stream_index, si
  12200. Specifies the index of the video stream to read. If the value is -1,
  12201. the most suitable video stream will be automatically selected. The default
  12202. value is "-1". Deprecated. If the filter is called "amovie", it will select
  12203. audio instead of video.
  12204. @item loop
  12205. Specifies how many times to read the stream in sequence.
  12206. If the value is less than 1, the stream will be read again and again.
  12207. Default value is "1".
  12208. Note that when the movie is looped the source timestamps are not
  12209. changed, so it will generate non monotonically increasing timestamps.
  12210. @end table
  12211. It allows overlaying a second video on top of the main input of
  12212. a filtergraph, as shown in this graph:
  12213. @example
  12214. input -----------> deltapts0 --> overlay --> output
  12215. ^
  12216. |
  12217. movie --> scale--> deltapts1 -------+
  12218. @end example
  12219. @subsection Examples
  12220. @itemize
  12221. @item
  12222. Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
  12223. on top of the input labelled "in":
  12224. @example
  12225. movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [over];
  12226. [in] setpts=PTS-STARTPTS [main];
  12227. [main][over] overlay=16:16 [out]
  12228. @end example
  12229. @item
  12230. Read from a video4linux2 device, and overlay it on top of the input
  12231. labelled "in":
  12232. @example
  12233. movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [over];
  12234. [in] setpts=PTS-STARTPTS [main];
  12235. [main][over] overlay=16:16 [out]
  12236. @end example
  12237. @item
  12238. Read the first video stream and the audio stream with id 0x81 from
  12239. dvd.vob; the video is connected to the pad named "video" and the audio is
  12240. connected to the pad named "audio":
  12241. @example
  12242. movie=dvd.vob:s=v:0+#0x81 [video] [audio]
  12243. @end example
  12244. @end itemize
  12245. @c man end MULTIMEDIA SOURCES