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.

12880 lines
352KB

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