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.

11738 lines
320KB

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