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.

3048 lines
83KB

  1. @chapter Filtergraph description
  2. @c man begin FILTERGRAPH DESCRIPTION
  3. A filtergraph is a directed graph of connected filters. It can contain
  4. cycles, and there can be multiple links between a pair of
  5. filters. Each link has one input pad on one side connecting it to one
  6. filter from which it takes its input, and one output pad on the other
  7. side connecting it to one filter accepting its output.
  8. Each filter in a filtergraph is an instance of a filter class
  9. registered in the application, which defines the features and the
  10. number of input and output pads of the filter.
  11. A filter with no input pads is called a "source", and a filter with no
  12. output pads is called a "sink".
  13. @anchor{Filtergraph syntax}
  14. @section Filtergraph syntax
  15. A filtergraph has a textual representation, which is
  16. recognized by the @option{-filter}/@option{-vf} and @option{-filter_complex}
  17. options in @command{avconv} and @option{-vf} in @command{avplay}, and by the
  18. @code{avfilter_graph_parse()}/@code{avfilter_graph_parse2()} functions defined in
  19. @file{libavfilter/avfilter.h}.
  20. A filterchain consists of a sequence of connected filters, each one
  21. connected to the previous one in the sequence. A filterchain is
  22. represented by a list of ","-separated filter descriptions.
  23. A filtergraph consists of a sequence of filterchains. A sequence of
  24. filterchains is represented by a list of ";"-separated filterchain
  25. descriptions.
  26. A filter is represented by a string of the form:
  27. [@var{in_link_1}]...[@var{in_link_N}]@var{filter_name}=@var{arguments}[@var{out_link_1}]...[@var{out_link_M}]
  28. @var{filter_name} is the name of the filter class of which the
  29. described filter is an instance of, and has to be the name of one of
  30. the filter classes registered in the program.
  31. The name of the filter class is optionally followed by a string
  32. "=@var{arguments}".
  33. @var{arguments} is a string which contains the parameters used to
  34. initialize the filter instance. It may have one of two forms:
  35. @itemize
  36. @item
  37. A ':'-separated list of @var{key=value} pairs.
  38. @item
  39. A ':'-separated list of @var{value}. In this case, the keys are assumed to be
  40. the option names in the order they are declared. E.g. the @code{fade} filter
  41. declares three options in this order -- @option{type}, @option{start_frame} and
  42. @option{nb_frames}. Then the parameter list @var{in:0:30} means that the value
  43. @var{in} is assigned to the option @option{type}, @var{0} to
  44. @option{start_frame} and @var{30} to @option{nb_frames}.
  45. @end itemize
  46. If the option value itself is a list of items (e.g. the @code{format} filter
  47. takes a list of pixel formats), the items in the list are usually separated by
  48. '|'.
  49. The list of arguments can be quoted using the character "'" as initial
  50. and ending mark, and the character '\' for escaping the characters
  51. within the quoted text; otherwise the argument string is considered
  52. terminated when the next special character (belonging to the set
  53. "[]=;,") is encountered.
  54. The name and arguments of the filter are optionally preceded and
  55. followed by a list of link labels.
  56. A link label allows to name a link and associate it to a filter output
  57. or input pad. The preceding labels @var{in_link_1}
  58. ... @var{in_link_N}, are associated to the filter input pads,
  59. the following labels @var{out_link_1} ... @var{out_link_M}, are
  60. associated to the output pads.
  61. When two link labels with the same name are found in the
  62. filtergraph, a link between the corresponding input and output pad is
  63. created.
  64. If an output pad is not labelled, it is linked by default to the first
  65. unlabelled input pad of the next filter in the filterchain.
  66. For example in the filterchain
  67. @example
  68. nullsrc, split[L1], [L2]overlay, nullsink
  69. @end example
  70. the split filter instance has two output pads, and the overlay filter
  71. instance two input pads. The first output pad of split is labelled
  72. "L1", the first input pad of overlay is labelled "L2", and the second
  73. output pad of split is linked to the second input pad of overlay,
  74. which are both unlabelled.
  75. In a complete filterchain all the unlabelled filter input and output
  76. pads must be connected. A filtergraph is considered valid if all the
  77. filter input and output pads of all the filterchains are connected.
  78. Libavfilter will automatically insert @ref{scale} filters where format
  79. conversion is required. It is possible to specify swscale flags
  80. for those automatically inserted scalers by prepending
  81. @code{sws_flags=@var{flags};}
  82. to the filtergraph description.
  83. Here is a BNF description of the filtergraph syntax:
  84. @example
  85. @var{NAME} ::= sequence of alphanumeric characters and '_'
  86. @var{LINKLABEL} ::= "[" @var{NAME} "]"
  87. @var{LINKLABELS} ::= @var{LINKLABEL} [@var{LINKLABELS}]
  88. @var{FILTER_ARGUMENTS} ::= sequence of chars (possibly quoted)
  89. @var{FILTER} ::= [@var{LINKLABELS}] @var{NAME} ["=" @var{FILTER_ARGUMENTS}] [@var{LINKLABELS}]
  90. @var{FILTERCHAIN} ::= @var{FILTER} [,@var{FILTERCHAIN}]
  91. @var{FILTERGRAPH} ::= [sws_flags=@var{flags};] @var{FILTERCHAIN} [;@var{FILTERGRAPH}]
  92. @end example
  93. @c man end FILTERGRAPH DESCRIPTION
  94. @chapter Audio Filters
  95. @c man begin AUDIO FILTERS
  96. When you configure your Libav build, you can disable any of the
  97. existing filters using --disable-filters.
  98. The configure output will show the audio filters included in your
  99. build.
  100. Below is a description of the currently available audio filters.
  101. @section aformat
  102. Convert the input audio to one of the specified formats. The framework will
  103. negotiate the most appropriate format to minimize conversions.
  104. It accepts the following parameters:
  105. @table @option
  106. @item sample_fmts
  107. A '|'-separated list of requested sample formats.
  108. @item sample_rates
  109. A '|'-separated list of requested sample rates.
  110. @item channel_layouts
  111. A '|'-separated list of requested channel layouts.
  112. @end table
  113. If a parameter is omitted, all values are allowed.
  114. Force the output to either unsigned 8-bit or signed 16-bit stereo
  115. @example
  116. aformat=sample_fmts=u8|s16:channel_layouts=stereo
  117. @end example
  118. @section amix
  119. Mixes multiple audio inputs into a single output.
  120. For example
  121. @example
  122. avconv -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex amix=inputs=3:duration=first:dropout_transition=3 OUTPUT
  123. @end example
  124. will mix 3 input audio streams to a single output with the same duration as the
  125. first input and a dropout transition time of 3 seconds.
  126. It accepts the following parameters:
  127. @table @option
  128. @item inputs
  129. The number of inputs. If unspecified, it defaults to 2.
  130. @item duration
  131. How to determine the end-of-stream.
  132. @table @option
  133. @item longest
  134. The duration of the longest input. (default)
  135. @item shortest
  136. The duration of the shortest input.
  137. @item first
  138. The duration of the first input.
  139. @end table
  140. @item dropout_transition
  141. The transition time, in seconds, for volume renormalization when an input
  142. stream ends. The default value is 2 seconds.
  143. @end table
  144. @section anull
  145. Pass the audio source unchanged to the output.
  146. @section asetpts
  147. Change the PTS (presentation timestamp) of the input audio frames.
  148. It accepts the following parameters:
  149. @table @option
  150. @item expr
  151. The expression which is evaluated for each frame to construct its timestamp.
  152. @end table
  153. The expression is evaluated through the eval API and can contain the following
  154. constants:
  155. @table @option
  156. @item PTS
  157. the presentation timestamp in input
  158. @item E, PI, PHI
  159. These are approximated values for the mathematical constants e
  160. (Euler's number), pi (Greek pi), and phi (the golden ratio).
  161. @item N
  162. The number of audio samples passed through the filter so far, starting at 0.
  163. @item S
  164. The number of audio samples in the current frame.
  165. @item SR
  166. The audio sample rate.
  167. @item STARTPTS
  168. The PTS of the first frame.
  169. @item PREV_INPTS
  170. The previous input PTS.
  171. @item PREV_OUTPTS
  172. The previous output PTS.
  173. @item RTCTIME
  174. The wallclock (RTC) time in microseconds.
  175. @item RTCSTART
  176. The wallclock (RTC) time at the start of the movie in microseconds.
  177. @end table
  178. Some examples:
  179. @example
  180. # Start counting PTS from zero
  181. asetpts=expr=PTS-STARTPTS
  182. # Generate timestamps by counting samples
  183. asetpts=expr=N/SR/TB
  184. # Generate timestamps from a "live source" and rebase onto the current timebase
  185. asetpts='(RTCTIME - RTCSTART) / (TB * 1000000)"
  186. @end example
  187. @section asettb
  188. Set the timebase to use for the output frames timestamps.
  189. It is mainly useful for testing timebase configuration.
  190. This filter accepts the following parameters:
  191. @table @option
  192. @item expr
  193. The expression which is evaluated into the output timebase.
  194. @end table
  195. The expression can contain the constants @var{PI}, @var{E}, @var{PHI}, @var{AVTB} (the
  196. default timebase), @var{intb} (the input timebase), and @var{sr} (the sample rate,
  197. audio only).
  198. The default value for the input is @var{intb}.
  199. Some examples:
  200. @example
  201. # Set the timebase to 1/25:
  202. settb=1/25
  203. # Set the timebase to 1/10:
  204. settb=0.1
  205. # Set the timebase to 1001/1000:
  206. settb=1+0.001
  207. # Set the timebase to 2*intb:
  208. settb=2*intb
  209. # Set the default timebase value:
  210. settb=AVTB
  211. # Set the timebase to twice the sample rate:
  212. asettb=sr*2
  213. @end example
  214. @section ashowinfo
  215. Show a line containing various information for each input audio frame.
  216. The input audio is not modified.
  217. The shown line contains a sequence of key/value pairs of the form
  218. @var{key}:@var{value}.
  219. It accepts the following parameters:
  220. @table @option
  221. @item n
  222. The (sequential) number of the input frame, starting from 0.
  223. @item pts
  224. The presentation timestamp of the input frame, in time base units; the time base
  225. depends on the filter input pad, and is usually 1/@var{sample_rate}.
  226. @item pts_time
  227. The presentation timestamp of the input frame in seconds.
  228. @item fmt
  229. The sample format.
  230. @item chlayout
  231. The channel layout.
  232. @item rate
  233. The sample rate for the audio frame.
  234. @item nb_samples
  235. The number of samples (per channel) in the frame.
  236. @item checksum
  237. The Adler-32 checksum (printed in hexadecimal) of the audio data. For planar
  238. audio, the data is treated as if all the planes were concatenated.
  239. @item plane_checksums
  240. A list of Adler-32 checksums for each data plane.
  241. @end table
  242. @section asplit
  243. Split input audio into several identical outputs.
  244. It accepts a single parameter, which specifies the number of outputs. If
  245. unspecified, it defaults to 2.
  246. For example,
  247. @example
  248. avconv -i INPUT -filter_complex asplit=5 OUTPUT
  249. @end example
  250. will create 5 copies of the input audio.
  251. @section asyncts
  252. Synchronize audio data with timestamps by squeezing/stretching it and/or
  253. dropping samples/adding silence when needed.
  254. It accepts the following parameters:
  255. @table @option
  256. @item compensate
  257. Enable stretching/squeezing the data to make it match the timestamps. Disabled
  258. by default. When disabled, time gaps are covered with silence.
  259. @item min_delta
  260. The minimum difference between timestamps and audio data (in seconds) to trigger
  261. adding/dropping samples. The default value is 0.1. If you get an imperfect
  262. sync with this filter, try setting this parameter to 0.
  263. @item max_comp
  264. The maximum compensation in samples per second. Only relevant with compensate=1.
  265. The default value is 500.
  266. @item first_pts
  267. Assume that the first PTS should be this value. The time base is 1 / sample
  268. rate. This allows for padding/trimming at the start of the stream. By default,
  269. no assumption is made about the first frame's expected PTS, so no padding or
  270. trimming is done. For example, this could be set to 0 to pad the beginning with
  271. silence if an audio stream starts after the video stream or to trim any samples
  272. with a negative PTS due to encoder delay.
  273. @end table
  274. @section atrim
  275. Trim the input so that the output contains one continuous subpart of the input.
  276. It accepts the following parameters:
  277. @table @option
  278. @item start
  279. Timestamp (in seconds) of the start of the section to keep. I.e. the audio
  280. sample with the timestamp @var{start} will be the first sample in the output.
  281. @item end
  282. Timestamp (in seconds) of the first audio sample that will be dropped. I.e. the
  283. audio sample immediately preceding the one with the timestamp @var{end} will be
  284. the last sample in the output.
  285. @item start_pts
  286. Same as @var{start}, except this option sets the start timestamp in samples
  287. instead of seconds.
  288. @item end_pts
  289. Same as @var{end}, except this option sets the end timestamp in samples instead
  290. of seconds.
  291. @item duration
  292. The maximum duration of the output in seconds.
  293. @item start_sample
  294. The number of the first sample that should be output.
  295. @item end_sample
  296. The number of the first sample that should be dropped.
  297. @end table
  298. Note that the first two sets of the start/end options and the @option{duration}
  299. option look at the frame timestamp, while the _sample options simply count the
  300. samples that pass through the filter. So start/end_pts and start/end_sample will
  301. give different results when the timestamps are wrong, inexact or do not start at
  302. zero. Also note that this filter does not modify the timestamps. If you wish
  303. to have the output timestamps start at zero, insert the asetpts filter after the
  304. atrim filter.
  305. If multiple start or end options are set, this filter tries to be greedy and
  306. keep all samples that match at least one of the specified constraints. To keep
  307. only the part that matches all the constraints at once, chain multiple atrim
  308. filters.
  309. The defaults are such that all the input is kept. So it is possible to set e.g.
  310. just the end values to keep everything before the specified time.
  311. Examples:
  312. @itemize
  313. @item
  314. Drop everything except the second minute of input:
  315. @example
  316. avconv -i INPUT -af atrim=60:120
  317. @end example
  318. @item
  319. Keep only the first 1000 samples:
  320. @example
  321. avconv -i INPUT -af atrim=end_sample=1000
  322. @end example
  323. @end itemize
  324. @section channelsplit
  325. Split each channel from an input audio stream into a separate output stream.
  326. It accepts the following parameters:
  327. @table @option
  328. @item channel_layout
  329. The channel layout of the input stream. The default is "stereo".
  330. @end table
  331. For example, assuming a stereo input MP3 file,
  332. @example
  333. avconv -i in.mp3 -filter_complex channelsplit out.mkv
  334. @end example
  335. will create an output Matroska file with two audio streams, one containing only
  336. the left channel and the other the right channel.
  337. Split a 5.1 WAV file into per-channel files:
  338. @example
  339. avconv -i in.wav -filter_complex
  340. 'channelsplit=channel_layout=5.1[FL][FR][FC][LFE][SL][SR]'
  341. -map '[FL]' front_left.wav -map '[FR]' front_right.wav -map '[FC]'
  342. front_center.wav -map '[LFE]' lfe.wav -map '[SL]' side_left.wav -map '[SR]'
  343. side_right.wav
  344. @end example
  345. @section channelmap
  346. Remap input channels to new locations.
  347. It accepts the following parameters:
  348. @table @option
  349. @item channel_layout
  350. The channel layout of the output stream.
  351. @item map
  352. Map channels from input to output. The argument is a '|'-separated list of
  353. mappings, each in the @code{@var{in_channel}-@var{out_channel}} or
  354. @var{in_channel} form. @var{in_channel} can be either the name of the input
  355. channel (e.g. FL for front left) or its index in the input channel layout.
  356. @var{out_channel} is the name of the output channel or its index in the output
  357. channel layout. If @var{out_channel} is not given then it is implicitly an
  358. index, starting with zero and increasing by one for each mapping.
  359. @end table
  360. If no mapping is present, the filter will implicitly map input channels to
  361. output channels, preserving indices.
  362. For example, assuming a 5.1+downmix input MOV file,
  363. @example
  364. avconv -i in.mov -filter 'channelmap=map=DL-FL|DR-FR' out.wav
  365. @end example
  366. will create an output WAV file tagged as stereo from the downmix channels of
  367. the input.
  368. To fix a 5.1 WAV improperly encoded in AAC's native channel order
  369. @example
  370. avconv -i in.wav -filter 'channelmap=1|2|0|5|3|4:channel_layout=5.1' out.wav
  371. @end example
  372. @section compand
  373. Compress or expand the audio's dynamic range.
  374. It accepts the following parameters:
  375. @table @option
  376. @item attacks
  377. @item decays
  378. A list of times in seconds for each channel over which the instantaneous level
  379. of the input signal is averaged to determine its volume. @var{attacks} refers to
  380. increase of volume and @var{decays} refers to decrease of volume. For most
  381. situations, the attack time (response to the audio getting louder) should be
  382. shorter than the decay time, because the human ear is more sensitive to sudden
  383. loud audio than sudden soft audio. A typical value for attack is 0.3 seconds and
  384. a typical value for decay is 0.8 seconds.
  385. @item points
  386. A list of points for the transfer function, specified in dB relative to the
  387. maximum possible signal amplitude. Each key points list must be defined using
  388. the following syntax: @code{x0/y0|x1/y1|x2/y2|....}
  389. The input values must be in strictly increasing order but the transfer function
  390. does not have to be monotonically rising. The point @code{0/0} is assumed but
  391. may be overridden (by @code{0/out-dBn}). Typical values for the transfer
  392. function are @code{-70/-70|-60/-20}.
  393. @item soft-knee
  394. Set the curve radius in dB for all joints. It defaults to 0.01.
  395. @item gain
  396. Set the additional gain in dB to be applied at all points on the transfer
  397. function. This allows for easy adjustment of the overall gain.
  398. It defaults to 0.
  399. @item volume
  400. Set an initial volume, in dB, to be assumed for each channel when filtering
  401. starts. This permits the user to supply a nominal level initially, so that, for
  402. example, a very large gain is not applied to initial signal levels before the
  403. companding has begun to operate. A typical value for audio which is initially
  404. quiet is -90 dB. It defaults to 0.
  405. @item delay
  406. Set a delay, in seconds. The input audio is analyzed immediately, but audio is
  407. delayed before being fed to the volume adjuster. Specifying a delay
  408. approximately equal to the attack/decay times allows the filter to effectively
  409. operate in predictive rather than reactive mode. It defaults to 0.
  410. @end table
  411. @subsection Examples
  412. @itemize
  413. @item
  414. Make music with both quiet and loud passages suitable for listening to in a
  415. noisy environment:
  416. @example
  417. compand=.3|.3:1|1:-90/-60|-60/-40|-40/-30|-20/-20:6:0:-90:0.2
  418. @end example
  419. @item
  420. A noise gate for when the noise is at a lower level than the signal:
  421. @example
  422. compand=.1|.1:.2|.2:-900/-900|-50.1/-900|-50/-50:.01:0:-90:.1
  423. @end example
  424. @item
  425. Here is another noise gate, this time for when the noise is at a higher level
  426. than the signal (making it, in some ways, similar to squelch):
  427. @example
  428. compand=.1|.1:.1|.1:-45.1/-45.1|-45/-900|0/-900:.01:45:-90:.1
  429. @end example
  430. @end itemize
  431. @section join
  432. Join multiple input streams into one multi-channel stream.
  433. It accepts the following parameters:
  434. @table @option
  435. @item inputs
  436. The number of input streams. It defaults to 2.
  437. @item channel_layout
  438. The desired output channel layout. It defaults to stereo.
  439. @item map
  440. Map channels from inputs to output. The argument is a '|'-separated list of
  441. mappings, each in the @code{@var{input_idx}.@var{in_channel}-@var{out_channel}}
  442. form. @var{input_idx} is the 0-based index of the input stream. @var{in_channel}
  443. can be either the name of the input channel (e.g. FL for front left) or its
  444. index in the specified input stream. @var{out_channel} is the name of the output
  445. channel.
  446. @end table
  447. The filter will attempt to guess the mappings when they are not specified
  448. explicitly. It does so by first trying to find an unused matching input channel
  449. and if that fails it picks the first unused input channel.
  450. Join 3 inputs (with properly set channel layouts):
  451. @example
  452. avconv -i INPUT1 -i INPUT2 -i INPUT3 -filter_complex join=inputs=3 OUTPUT
  453. @end example
  454. Build a 5.1 output from 6 single-channel streams:
  455. @example
  456. avconv -i fl -i fr -i fc -i sl -i sr -i lfe -filter_complex
  457. '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'
  458. out
  459. @end example
  460. @section resample
  461. Convert the audio sample format, sample rate and channel layout. It is
  462. not meant to be used directly; it is inserted automatically by libavfilter
  463. whenever conversion is needed. Use the @var{aformat} filter to force a specific
  464. conversion.
  465. @section volume
  466. Adjust the input audio volume.
  467. It accepts the following parameters:
  468. @table @option
  469. @item volume
  470. This expresses how the audio volume will be increased or decreased.
  471. Output values are clipped to the maximum value.
  472. The output audio volume is given by the relation:
  473. @example
  474. @var{output_volume} = @var{volume} * @var{input_volume}
  475. @end example
  476. The default value for @var{volume} is 1.0.
  477. @item precision
  478. This parameter represents the mathematical precision.
  479. It determines which input sample formats will be allowed, which affects the
  480. precision of the volume scaling.
  481. @table @option
  482. @item fixed
  483. 8-bit fixed-point; this limits input sample format to U8, S16, and S32.
  484. @item float
  485. 32-bit floating-point; this limits input sample format to FLT. (default)
  486. @item double
  487. 64-bit floating-point; this limits input sample format to DBL.
  488. @end table
  489. @item replaygain
  490. Choose the behaviour on encountering ReplayGain side data in input frames.
  491. @table @option
  492. @item drop
  493. Remove ReplayGain side data, ignoring its contents (the default).
  494. @item ignore
  495. Ignore ReplayGain side data, but leave it in the frame.
  496. @item track
  497. Prefer the track gain, if present.
  498. @item album
  499. Prefer the album gain, if present.
  500. @end table
  501. @item replaygain_preamp
  502. Pre-amplification gain in dB to apply to the selected replaygain gain.
  503. Default value for @var{replaygain_preamp} is 0.0.
  504. @item replaygain_noclip
  505. Prevent clipping by limiting the gain applied.
  506. Default value for @var{replaygain_noclip} is 1.
  507. @end table
  508. @subsection Examples
  509. @itemize
  510. @item
  511. Halve the input audio volume:
  512. @example
  513. volume=volume=0.5
  514. volume=volume=1/2
  515. volume=volume=-6.0206dB
  516. @end example
  517. @item
  518. Increase input audio power by 6 decibels using fixed-point precision:
  519. @example
  520. volume=volume=6dB:precision=fixed
  521. @end example
  522. @end itemize
  523. @c man end AUDIO FILTERS
  524. @chapter Audio Sources
  525. @c man begin AUDIO SOURCES
  526. Below is a description of the currently available audio sources.
  527. @section anullsrc
  528. The null audio source; it never returns audio frames. It is mainly useful as a
  529. template and for use in analysis / debugging tools.
  530. It accepts, as an optional parameter, a string of the form
  531. @var{sample_rate}:@var{channel_layout}.
  532. @var{sample_rate} specifies the sample rate, and defaults to 44100.
  533. @var{channel_layout} specifies the channel layout, and can be either an
  534. integer or a string representing a channel layout. The default value
  535. of @var{channel_layout} is 3, which corresponds to CH_LAYOUT_STEREO.
  536. Check the channel_layout_map definition in
  537. @file{libavutil/channel_layout.c} for the mapping between strings and
  538. channel layout values.
  539. Some examples:
  540. @example
  541. # Set the sample rate to 48000 Hz and the channel layout to CH_LAYOUT_MONO
  542. anullsrc=48000:4
  543. # The same as above
  544. anullsrc=48000:mono
  545. @end example
  546. @section abuffer
  547. Buffer audio frames, and make them available to the filter chain.
  548. This source is not intended to be part of user-supplied graph descriptions; it
  549. is for insertion by calling programs, through the interface defined in
  550. @file{libavfilter/buffersrc.h}.
  551. It accepts the following parameters:
  552. @table @option
  553. @item time_base
  554. The timebase which will be used for timestamps of submitted frames. It must be
  555. either a floating-point number or in @var{numerator}/@var{denominator} form.
  556. @item sample_rate
  557. The audio sample rate.
  558. @item sample_fmt
  559. The name of the sample format, as returned by @code{av_get_sample_fmt_name()}.
  560. @item channel_layout
  561. The channel layout of the audio data, in the form that can be accepted by
  562. @code{av_get_channel_layout()}.
  563. @end table
  564. All the parameters need to be explicitly defined.
  565. @c man end AUDIO SOURCES
  566. @chapter Audio Sinks
  567. @c man begin AUDIO SINKS
  568. Below is a description of the currently available audio sinks.
  569. @section anullsink
  570. Null audio sink; do absolutely nothing with the input audio. It is
  571. mainly useful as a template and for use in analysis / debugging
  572. tools.
  573. @section abuffersink
  574. This sink is intended for programmatic use. Frames that arrive on this sink can
  575. be retrieved by the calling program, using the interface defined in
  576. @file{libavfilter/buffersink.h}.
  577. It does not accept any parameters.
  578. @c man end AUDIO SINKS
  579. @chapter Video Filters
  580. @c man begin VIDEO FILTERS
  581. When you configure your Libav build, you can disable any of the
  582. existing filters using --disable-filters.
  583. The configure output will show the video filters included in your
  584. build.
  585. Below is a description of the currently available video filters.
  586. @section blackframe
  587. Detect frames that are (almost) completely black. Can be useful to
  588. detect chapter transitions or commercials. Output lines consist of
  589. the frame number of the detected frame, the percentage of blackness,
  590. the position in the file if known or -1 and the timestamp in seconds.
  591. In order to display the output lines, you need to set the loglevel at
  592. least to the AV_LOG_INFO value.
  593. It accepts the following parameters:
  594. @table @option
  595. @item amount
  596. The percentage of the pixels that have to be below the threshold; it defaults to
  597. 98.
  598. @item threshold
  599. The threshold below which a pixel value is considered black; it defaults to 32.
  600. @end table
  601. @section boxblur
  602. Apply a boxblur algorithm to the input video.
  603. It accepts the following parameters:
  604. @table @option
  605. @item luma_radius
  606. @item luma_power
  607. @item chroma_radius
  608. @item chroma_power
  609. @item alpha_radius
  610. @item alpha_power
  611. @end table
  612. The chroma and alpha parameters are optional. If not specified, they default
  613. to the corresponding values set for @var{luma_radius} and
  614. @var{luma_power}.
  615. @var{luma_radius}, @var{chroma_radius}, and @var{alpha_radius} represent
  616. the radius in pixels of the box used for blurring the corresponding
  617. input plane. They are expressions, and can contain the following
  618. constants:
  619. @table @option
  620. @item w, h
  621. The input width and height in pixels.
  622. @item cw, ch
  623. The input chroma image width and height in pixels.
  624. @item hsub, vsub
  625. The horizontal and vertical chroma subsample values. For example, for the
  626. pixel format "yuv422p", @var{hsub} is 2 and @var{vsub} is 1.
  627. @end table
  628. The radius must be a non-negative number, and must not be greater than
  629. the value of the expression @code{min(w,h)/2} for the luma and alpha planes,
  630. and of @code{min(cw,ch)/2} for the chroma planes.
  631. @var{luma_power}, @var{chroma_power}, and @var{alpha_power} represent
  632. how many times the boxblur filter is applied to the corresponding
  633. plane.
  634. Some examples:
  635. @itemize
  636. @item
  637. Apply a boxblur filter with the luma, chroma, and alpha radii
  638. set to 2:
  639. @example
  640. boxblur=luma_radius=2:luma_power=1
  641. @end example
  642. @item
  643. Set the luma radius to 2, and alpha and chroma radius to 0:
  644. @example
  645. boxblur=2:1:0:0:0:0
  646. @end example
  647. @item
  648. Set the luma and chroma radii to a fraction of the video dimension:
  649. @example
  650. boxblur=luma_radius=min(h\,w)/10:luma_power=1:chroma_radius=min(cw\,ch)/10:chroma_power=1
  651. @end example
  652. @end itemize
  653. @section copy
  654. Copy the input source unchanged to the output. This is mainly useful for
  655. testing purposes.
  656. @section crop
  657. Crop the input video to given dimensions.
  658. It accepts the following parameters:
  659. @table @option
  660. @item out_w
  661. The width of the output video.
  662. @item out_h
  663. The height of the output video.
  664. @item x
  665. The horizontal position, in the input video, of the left edge of the output
  666. video.
  667. @item y
  668. The vertical position, in the input video, of the top edge of the output video.
  669. @end table
  670. The parameters are expressions containing the following constants:
  671. @table @option
  672. @item E, PI, PHI
  673. These are approximated values for the mathematical constants e
  674. (Euler's number), pi (Greek pi), and phi (the golden ratio).
  675. @item x, y
  676. The computed values for @var{x} and @var{y}. They are evaluated for
  677. each new frame.
  678. @item in_w, in_h
  679. The input width and height.
  680. @item iw, ih
  681. These are the same as @var{in_w} and @var{in_h}.
  682. @item out_w, out_h
  683. The output (cropped) width and height.
  684. @item ow, oh
  685. These are the same as @var{out_w} and @var{out_h}.
  686. @item n
  687. The number of the input frame, starting from 0.
  688. @item t
  689. The timestamp expressed in seconds. It's NAN if the input timestamp is unknown.
  690. @end table
  691. The @var{out_w} and @var{out_h} parameters specify the expressions for
  692. the width and height of the output (cropped) video. They are only
  693. evaluated during the configuration of the filter.
  694. The default value of @var{out_w} is "in_w", and the default value of
  695. @var{out_h} is "in_h".
  696. The expression for @var{out_w} may depend on the value of @var{out_h},
  697. and the expression for @var{out_h} may depend on @var{out_w}, but they
  698. cannot depend on @var{x} and @var{y}, as @var{x} and @var{y} are
  699. evaluated after @var{out_w} and @var{out_h}.
  700. The @var{x} and @var{y} parameters specify the expressions for the
  701. position of the top-left corner of the output (non-cropped) area. They
  702. are evaluated for each frame. If the evaluated value is not valid, it
  703. is approximated to the nearest valid value.
  704. The default value of @var{x} is "(in_w-out_w)/2", and the default
  705. value for @var{y} is "(in_h-out_h)/2", which set the cropped area at
  706. the center of the input image.
  707. The expression for @var{x} may depend on @var{y}, and the expression
  708. for @var{y} may depend on @var{x}.
  709. Some examples:
  710. @example
  711. # Crop the central input area with size 100x100
  712. crop=out_w=100:out_h=100
  713. # Crop the central input area with size 2/3 of the input video
  714. "crop=out_w=2/3*in_w:out_h=2/3*in_h"
  715. # Crop the input video central square
  716. crop=out_w=in_h
  717. # Delimit the rectangle with the top-left corner placed at position
  718. # 100:100 and the right-bottom corner corresponding to the right-bottom
  719. # corner of the input image
  720. crop=out_w=in_w-100:out_h=in_h-100:x=100:y=100
  721. # Crop 10 pixels from the left and right borders, and 20 pixels from
  722. # the top and bottom borders
  723. "crop=out_w=in_w-2*10:out_h=in_h-2*20"
  724. # Keep only the bottom right quarter of the input image
  725. "crop=out_w=in_w/2:out_h=in_h/2:x=in_w/2:y=in_h/2"
  726. # Crop height for getting Greek harmony
  727. "crop=out_w=in_w:out_h=1/PHI*in_w"
  728. # Trembling effect
  729. "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)"
  730. # Erratic camera effect depending on timestamp
  731. "crop=out_w=in_w/2:out_h=in_h/2:x=(in_w-out_w)/2+((in_w-out_w)/2)*sin(t*10):y=(in_h-out_h)/2 +((in_h-out_h)/2)*sin(t*13)"
  732. # Set x depending on the value of y
  733. "crop=in_w/2:in_h/2:y:10+10*sin(n/10)"
  734. @end example
  735. @section cropdetect
  736. Auto-detect the crop size.
  737. It calculates the necessary cropping parameters and prints the
  738. recommended parameters via the logging system. The detected dimensions
  739. correspond to the non-black area of the input video.
  740. It accepts the following parameters:
  741. @table @option
  742. @item limit
  743. The threshold, an optional parameter between nothing (0) and
  744. everything (255). It defaults to 24.
  745. @item round
  746. The value which the width/height should be divisible by. It defaults to
  747. 16. The offset is automatically adjusted to center the video. Use 2 to
  748. get only even dimensions (needed for 4:2:2 video). 16 is best when
  749. encoding to most video codecs.
  750. @item reset
  751. A counter that determines how many frames cropdetect will reset
  752. the previously detected largest video area after. It will then start over
  753. and detect the current optimal crop area. It defaults to 0.
  754. This can be useful when channel logos distort the video area. 0
  755. indicates 'never reset', and returns the largest area encountered during
  756. playback.
  757. @end table
  758. @section delogo
  759. Suppress a TV station logo by a simple interpolation of the surrounding
  760. pixels. Just set a rectangle covering the logo and watch it disappear
  761. (and sometimes something even uglier appear - your mileage may vary).
  762. It accepts the following parameters:
  763. @table @option
  764. @item x, y
  765. Specify the top left corner coordinates of the logo. They must be
  766. specified.
  767. @item w, h
  768. Specify the width and height of the logo to clear. They must be
  769. specified.
  770. @item band, t
  771. Specify the thickness of the fuzzy edge of the rectangle (added to
  772. @var{w} and @var{h}). The default value is 4.
  773. @item show
  774. When set to 1, a green rectangle is drawn on the screen to simplify
  775. finding the right @var{x}, @var{y}, @var{w}, @var{h} parameters, and
  776. @var{band} is set to 4. The default value is 0.
  777. @end table
  778. An example:
  779. @itemize
  780. @item
  781. Set a rectangle covering the area with top left corner coordinates 0,0
  782. and size 100x77, and a band of size 10:
  783. @example
  784. delogo=x=0:y=0:w=100:h=77:band=10
  785. @end example
  786. @end itemize
  787. @section drawbox
  788. Draw a colored box on the input image.
  789. It accepts the following parameters:
  790. @table @option
  791. @item x, y
  792. Specify the top left corner coordinates of the box. It defaults to 0.
  793. @item width, height
  794. Specify the width and height of the box; if 0 they are interpreted as
  795. the input width and height. It defaults to 0.
  796. @item color
  797. Specify the color of the box to write. It can be the name of a color
  798. (case insensitive match) or a 0xRRGGBB[AA] sequence.
  799. @end table
  800. Some examples:
  801. @example
  802. # Draw a black box around the edge of the input image
  803. drawbox
  804. # Draw a box with color red and an opacity of 50%
  805. drawbox=x=10:y=20:width=200:height=60:color=red@@0.5"
  806. @end example
  807. @section drawtext
  808. Draw a text string or text from a specified file on top of a video, using the
  809. libfreetype library.
  810. To enable compilation of this filter, you need to configure Libav with
  811. @code{--enable-libfreetype}.
  812. To enable default font fallback and the @var{font} option you need to
  813. configure Libav with @code{--enable-libfontconfig}.
  814. The filter also recognizes strftime() sequences in the provided text
  815. and expands them accordingly. Check the documentation of strftime().
  816. It accepts the following parameters:
  817. @table @option
  818. @item font
  819. The font family to be used for drawing text. By default Sans.
  820. @item fontfile
  821. The font file to be used for drawing text. The path must be included.
  822. This parameter is mandatory if the fontconfig support is disabled.
  823. @item text
  824. The text string to be drawn. The text must be a sequence of UTF-8
  825. encoded characters.
  826. This parameter is mandatory if no file is specified with the parameter
  827. @var{textfile}.
  828. @item textfile
  829. A text file containing text to be drawn. The text must be a sequence
  830. of UTF-8 encoded characters.
  831. This parameter is mandatory if no text string is specified with the
  832. parameter @var{text}.
  833. If both text and textfile are specified, an error is thrown.
  834. @item x, y
  835. The offsets where text will be drawn within the video frame.
  836. It is relative to the top/left border of the output image.
  837. They accept expressions similar to the @ref{overlay} filter:
  838. @table @option
  839. @item x, y
  840. The computed values for @var{x} and @var{y}. They are evaluated for
  841. each new frame.
  842. @item main_w, main_h
  843. The main input width and height.
  844. @item W, H
  845. These are the same as @var{main_w} and @var{main_h}.
  846. @item text_w, text_h
  847. The rendered text's width and height.
  848. @item w, h
  849. These are the same as @var{text_w} and @var{text_h}.
  850. @item n
  851. The number of frames processed, starting from 0.
  852. @item t
  853. The timestamp, expressed in seconds. It's NAN if the input timestamp is unknown.
  854. @end table
  855. The default value of @var{x} and @var{y} is 0.
  856. @item fontsize
  857. The font size to be used for drawing text.
  858. The default value of @var{fontsize} is 16.
  859. @item fontcolor
  860. The color to be used for drawing fonts.
  861. It is either a string (e.g. "red"), or in 0xRRGGBB[AA] format
  862. (e.g. "0xff000033"), possibly followed by an alpha specifier.
  863. The default value of @var{fontcolor} is "black".
  864. @item boxcolor
  865. The color to be used for drawing box around text.
  866. It is either a string (e.g. "yellow") or in 0xRRGGBB[AA] format
  867. (e.g. "0xff00ff"), possibly followed by an alpha specifier.
  868. The default value of @var{boxcolor} is "white".
  869. @item box
  870. Used to draw a box around text using the background color.
  871. The value must be either 1 (enable) or 0 (disable).
  872. The default value of @var{box} is 0.
  873. @item shadowx, shadowy
  874. The x and y offsets for the text shadow position with respect to the
  875. position of the text. They can be either positive or negative
  876. values. The default value for both is "0".
  877. @item shadowcolor
  878. The color to be used for drawing a shadow behind the drawn text. It
  879. can be a color name (e.g. "yellow") or a string in the 0xRRGGBB[AA]
  880. form (e.g. "0xff00ff"), possibly followed by an alpha specifier.
  881. The default value of @var{shadowcolor} is "black".
  882. @item ft_load_flags
  883. The flags to be used for loading the fonts.
  884. The flags map the corresponding flags supported by libfreetype, and are
  885. a combination of the following values:
  886. @table @var
  887. @item default
  888. @item no_scale
  889. @item no_hinting
  890. @item render
  891. @item no_bitmap
  892. @item vertical_layout
  893. @item force_autohint
  894. @item crop_bitmap
  895. @item pedantic
  896. @item ignore_global_advance_width
  897. @item no_recurse
  898. @item ignore_transform
  899. @item monochrome
  900. @item linear_design
  901. @item no_autohint
  902. @item end table
  903. @end table
  904. Default value is "render".
  905. For more information consult the documentation for the FT_LOAD_*
  906. libfreetype flags.
  907. @item tabsize
  908. The size in number of spaces to use for rendering the tab.
  909. Default value is 4.
  910. @item fix_bounds
  911. If true, check and fix text coords to avoid clipping.
  912. @end table
  913. For example the command:
  914. @example
  915. drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text'"
  916. @end example
  917. will draw "Test Text" with font FreeSerif, using the default values
  918. for the optional parameters.
  919. The command:
  920. @example
  921. drawtext="fontfile=/usr/share/fonts/truetype/freefont/FreeSerif.ttf: text='Test Text':\
  922. x=100: y=50: fontsize=24: fontcolor=yellow@@0.2: box=1: boxcolor=red@@0.2"
  923. @end example
  924. will draw 'Test Text' with font FreeSerif of size 24 at position x=100
  925. and y=50 (counting from the top-left corner of the screen), text is
  926. yellow with a red box around it. Both the text and the box have an
  927. opacity of 20%.
  928. Note that the double quotes are not necessary if spaces are not used
  929. within the parameter list.
  930. For more information about libfreetype, check:
  931. @url{http://www.freetype.org/}.
  932. @section fade
  933. Apply a fade-in/out effect to the input video.
  934. It accepts the following parameters:
  935. @table @option
  936. @item type
  937. The effect type can be either "in" for a fade-in, or "out" for a fade-out
  938. effect.
  939. @item start_frame
  940. The number of the frame to start applying the fade effect at.
  941. @item nb_frames
  942. The number of frames that the fade effect lasts. At the end of the
  943. fade-in effect, the output video will have the same intensity as the input video.
  944. At the end of the fade-out transition, the output video will be completely black.
  945. @end table
  946. Some examples:
  947. @example
  948. # Fade in the first 30 frames of video
  949. fade=type=in:nb_frames=30
  950. # Fade out the last 45 frames of a 200-frame video
  951. fade=type=out:start_frame=155:nb_frames=45
  952. # Fade in the first 25 frames and fade out the last 25 frames of a 1000-frame video
  953. fade=type=in:start_frame=0:nb_frames=25, fade=type=out:start_frame=975:nb_frames=25
  954. # Make the first 5 frames black, then fade in from frame 5-24
  955. fade=type=in:start_frame=5:nb_frames=20
  956. @end example
  957. @section fieldorder
  958. Transform the field order of the input video.
  959. It accepts the following parameters:
  960. @table @option
  961. @item order
  962. The output field order. Valid values are @var{tff} for top field first or @var{bff}
  963. for bottom field first.
  964. @end table
  965. The default value is "tff".
  966. The transformation is done by shifting the picture content up or down
  967. by one line, and filling the remaining line with appropriate picture content.
  968. This method is consistent with most broadcast field order converters.
  969. If the input video is not flagged as being interlaced, or it is already
  970. flagged as being of the required output field order, then this filter does
  971. not alter the incoming video.
  972. It is very useful when converting to or from PAL DV material,
  973. which is bottom field first.
  974. For example:
  975. @example
  976. ./avconv -i in.vob -vf "fieldorder=order=bff" out.dv
  977. @end example
  978. @section fifo
  979. Buffer input images and send them when they are requested.
  980. It is mainly useful when auto-inserted by the libavfilter
  981. framework.
  982. It does not take parameters.
  983. @section format
  984. Convert the input video to one of the specified pixel formats.
  985. Libavfilter will try to pick one that is suitable as input to
  986. the next filter.
  987. It accepts the following parameters:
  988. @table @option
  989. @item pix_fmts
  990. A '|'-separated list of pixel format names, such as
  991. "pix_fmts=yuv420p|monow|rgb24".
  992. @end table
  993. Some examples:
  994. @example
  995. # Convert the input video to the "yuv420p" format
  996. format=pix_fmts=yuv420p
  997. # Convert the input video to any of the formats in the list
  998. format=pix_fmts=yuv420p|yuv444p|yuv410p
  999. @end example
  1000. @anchor{fps}
  1001. @section fps
  1002. Convert the video to specified constant framerate by duplicating or dropping
  1003. frames as necessary.
  1004. It accepts the following parameters:
  1005. @table @option
  1006. @item fps
  1007. The desired output framerate.
  1008. @item start_time
  1009. Assume the first PTS should be the given value, in seconds. This allows for
  1010. padding/trimming at the start of stream. By default, no assumption is made
  1011. about the first frame's expected PTS, so no padding or trimming is done.
  1012. For example, this could be set to 0 to pad the beginning with duplicates of
  1013. the first frame if a video stream starts after the audio stream or to trim any
  1014. frames with a negative PTS.
  1015. @end table
  1016. @section framepack
  1017. Pack two different video streams into a stereoscopic video, setting proper
  1018. metadata on supported codecs. The two views should have the same size and
  1019. framerate and processing will stop when the shorter video ends. Please note
  1020. that you may conveniently adjust view properties with the @ref{scale} and
  1021. @ref{fps} filters.
  1022. It accepts the following parameters:
  1023. @table @option
  1024. @item format
  1025. The desired packing format. Supported values are:
  1026. @table @option
  1027. @item sbs
  1028. The views are next to each other (default).
  1029. @item tab
  1030. The views are on top of each other.
  1031. @item lines
  1032. The views are packed by line.
  1033. @item columns
  1034. The views are packed by column.
  1035. @item frameseq
  1036. The views are temporally interleaved.
  1037. @end table
  1038. @end table
  1039. Some examples:
  1040. @example
  1041. # Convert left and right views into a frame-sequential video
  1042. avconv -i LEFT -i RIGHT -filter_complex framepack=frameseq OUTPUT
  1043. # Convert views into a side-by-side video with the same output resolution as the input
  1044. avconv -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
  1045. @end example
  1046. @anchor{frei0r}
  1047. @section frei0r
  1048. Apply a frei0r effect to the input video.
  1049. To enable the compilation of this filter, you need to install the frei0r
  1050. header and configure Libav with --enable-frei0r.
  1051. It accepts the following parameters:
  1052. @table @option
  1053. @item filter_name
  1054. The name of the frei0r effect to load. If the environment variable
  1055. @env{FREI0R_PATH} is defined, the frei0r effect is searched for in each of the
  1056. directories specified by the colon-separated list in @env{FREIOR_PATH}.
  1057. Otherwise, the standard frei0r paths are searched, in this order:
  1058. @file{HOME/.frei0r-1/lib/}, @file{/usr/local/lib/frei0r-1/},
  1059. @file{/usr/lib/frei0r-1/}.
  1060. @item filter_params
  1061. A '|'-separated list of parameters to pass to the frei0r effect.
  1062. @end table
  1063. A frei0r effect parameter can be a boolean (its value is either
  1064. "y" or "n"), a double, a color (specified as
  1065. @var{R}/@var{G}/@var{B}, where @var{R}, @var{G}, and @var{B} are floating point
  1066. numbers between 0.0 and 1.0, inclusive) or by an @code{av_parse_color()} color
  1067. description), a position (specified as @var{X}/@var{Y}, where
  1068. @var{X} and @var{Y} are floating point numbers) and/or a string.
  1069. The number and types of parameters depend on the loaded effect. If an
  1070. effect parameter is not specified, the default value is set.
  1071. Some examples:
  1072. @example
  1073. # Apply the distort0r effect, setting the first two double parameters
  1074. frei0r=filter_name=distort0r:filter_params=0.5|0.01
  1075. # Apply the colordistance effect, taking a color as the first parameter
  1076. frei0r=colordistance:0.2/0.3/0.4
  1077. frei0r=colordistance:violet
  1078. frei0r=colordistance:0x112233
  1079. # Apply the perspective effect, specifying the top left and top right
  1080. # image positions
  1081. frei0r=perspective:0.2/0.2|0.8/0.2
  1082. @end example
  1083. For more information, see
  1084. @url{http://piksel.org/frei0r}
  1085. @section gradfun
  1086. Fix the banding artifacts that are sometimes introduced into nearly flat
  1087. regions by truncation to 8bit colordepth.
  1088. Interpolate the gradients that should go where the bands are, and
  1089. dither them.
  1090. It is designed for playback only. Do not use it prior to
  1091. lossy compression, because compression tends to lose the dither and
  1092. bring back the bands.
  1093. It accepts the following parameters:
  1094. @table @option
  1095. @item strength
  1096. The maximum amount by which the filter will change any one pixel. This is also
  1097. the threshold for detecting nearly flat regions. Acceptable values range from
  1098. .51 to 64; the default value is 1.2. Out-of-range values will be clipped to the
  1099. valid range.
  1100. @item radius
  1101. The neighborhood to fit the gradient to. A larger radius makes for smoother
  1102. gradients, but also prevents the filter from modifying the pixels near detailed
  1103. regions. Acceptable values are 8-32; the default value is 16. Out-of-range
  1104. values will be clipped to the valid range.
  1105. @end table
  1106. @example
  1107. # Default parameters
  1108. gradfun=strength=1.2:radius=16
  1109. # Omitting the radius
  1110. gradfun=1.2
  1111. @end example
  1112. @section hflip
  1113. Flip the input video horizontally.
  1114. For example, to horizontally flip the input video with @command{avconv}:
  1115. @example
  1116. avconv -i in.avi -vf "hflip" out.avi
  1117. @end example
  1118. @section hqdn3d
  1119. This is a high precision/quality 3d denoise filter. It aims to reduce
  1120. image noise, producing smooth images and making still images really
  1121. still. It should enhance compressibility.
  1122. It accepts the following optional parameters:
  1123. @table @option
  1124. @item luma_spatial
  1125. A non-negative floating point number which specifies spatial luma strength.
  1126. It defaults to 4.0.
  1127. @item chroma_spatial
  1128. A non-negative floating point number which specifies spatial chroma strength.
  1129. It defaults to 3.0*@var{luma_spatial}/4.0.
  1130. @item luma_tmp
  1131. A floating point number which specifies luma temporal strength. It defaults to
  1132. 6.0*@var{luma_spatial}/4.0.
  1133. @item chroma_tmp
  1134. A floating point number which specifies chroma temporal strength. It defaults to
  1135. @var{luma_tmp}*@var{chroma_spatial}/@var{luma_spatial}.
  1136. @end table
  1137. @section interlace
  1138. Simple interlacing filter from progressive contents. This interleaves upper (or
  1139. lower) lines from odd frames with lower (or upper) lines from even frames,
  1140. halving the frame rate and preserving image height. A vertical lowpass filter
  1141. is always applied in order to avoid twitter effects and reduce moiré patterns.
  1142. @example
  1143. Original Original New Frame
  1144. Frame 'j' Frame 'j+1' (tff)
  1145. ========== =========== ==================
  1146. Line 0 --------------------> Frame 'j' Line 0
  1147. Line 1 Line 1 ----> Frame 'j+1' Line 1
  1148. Line 2 ---------------------> Frame 'j' Line 2
  1149. Line 3 Line 3 ----> Frame 'j+1' Line 3
  1150. ... ... ...
  1151. New Frame + 1 will be generated by Frame 'j+2' and Frame 'j+3' and so on
  1152. @end example
  1153. It accepts the following optional parameters:
  1154. @table @option
  1155. @item scan
  1156. This determines whether the interlaced frame is taken from the even
  1157. (tff - default) or odd (bff) lines of the progressive frame.
  1158. @end table
  1159. @section lut, lutrgb, lutyuv
  1160. Compute a look-up table for binding each pixel component input value
  1161. to an output value, and apply it to the input video.
  1162. @var{lutyuv} applies a lookup table to a YUV input video, @var{lutrgb}
  1163. to an RGB input video.
  1164. These filters accept the following parameters:
  1165. @table @option
  1166. @item @var{c0} (first pixel component)
  1167. @item @var{c1} (second pixel component)
  1168. @item @var{c2} (third pixel component)
  1169. @item @var{c3} (fourth pixel component, corresponds to the alpha component)
  1170. @item @var{r} (red component)
  1171. @item @var{g} (green component)
  1172. @item @var{b} (blue component)
  1173. @item @var{a} (alpha component)
  1174. @item @var{y} (Y/luminance component)
  1175. @item @var{u} (U/Cb component)
  1176. @item @var{v} (V/Cr component)
  1177. @end table
  1178. Each of them specifies the expression to use for computing the lookup table for
  1179. the corresponding pixel component values.
  1180. The exact component associated to each of the @var{c*} options depends on the
  1181. format in input.
  1182. The @var{lut} filter requires either YUV or RGB pixel formats in input,
  1183. @var{lutrgb} requires RGB pixel formats in input, and @var{lutyuv} requires YUV.
  1184. The expressions can contain the following constants and functions:
  1185. @table @option
  1186. @item E, PI, PHI
  1187. These are approximated values for the mathematical constants e
  1188. (Euler's number), pi (Greek pi), and phi (the golden ratio).
  1189. @item w, h
  1190. The input width and height.
  1191. @item val
  1192. The input value for the pixel component.
  1193. @item clipval
  1194. The input value, clipped to the @var{minval}-@var{maxval} range.
  1195. @item maxval
  1196. The maximum value for the pixel component.
  1197. @item minval
  1198. The minimum value for the pixel component.
  1199. @item negval
  1200. The negated value for the pixel component value, clipped to the
  1201. @var{minval}-@var{maxval} range; it corresponds to the expression
  1202. "maxval-clipval+minval".
  1203. @item clip(val)
  1204. The computed value in @var{val}, clipped to the
  1205. @var{minval}-@var{maxval} range.
  1206. @item gammaval(gamma)
  1207. The computed gamma correction value of the pixel component value,
  1208. clipped to the @var{minval}-@var{maxval} range. It corresponds to the
  1209. expression
  1210. "pow((clipval-minval)/(maxval-minval)\,@var{gamma})*(maxval-minval)+minval"
  1211. @end table
  1212. All expressions default to "val".
  1213. Some examples:
  1214. @example
  1215. # Negate input video
  1216. lutrgb="r=maxval+minval-val:g=maxval+minval-val:b=maxval+minval-val"
  1217. lutyuv="y=maxval+minval-val:u=maxval+minval-val:v=maxval+minval-val"
  1218. # The above is the same as
  1219. lutrgb="r=negval:g=negval:b=negval"
  1220. lutyuv="y=negval:u=negval:v=negval"
  1221. # Negate luminance
  1222. lutyuv=negval
  1223. # Remove chroma components, turning the video into a graytone image
  1224. lutyuv="u=128:v=128"
  1225. # Apply a luma burning effect
  1226. lutyuv="y=2*val"
  1227. # Remove green and blue components
  1228. lutrgb="g=0:b=0"
  1229. # Set a constant alpha channel value on input
  1230. format=rgba,lutrgb=a="maxval-minval/2"
  1231. # Correct luminance gamma by a factor of 0.5
  1232. lutyuv=y=gammaval(0.5)
  1233. @end example
  1234. @section negate
  1235. Negate input video.
  1236. It accepts an integer in input; if non-zero it negates the
  1237. alpha component (if available). The default value in input is 0.
  1238. @section noformat
  1239. Force libavfilter not to use any of the specified pixel formats for the
  1240. input to the next filter.
  1241. It accepts the following parameters:
  1242. @table @option
  1243. @item pix_fmts
  1244. A '|'-separated list of pixel format names, such as
  1245. apix_fmts=yuv420p|monow|rgb24".
  1246. @end table
  1247. Some examples:
  1248. @example
  1249. # Force libavfilter to use a format different from "yuv420p" for the
  1250. # input to the vflip filter
  1251. noformat=pix_fmts=yuv420p,vflip
  1252. # Convert the input video to any of the formats not contained in the list
  1253. noformat=yuv420p|yuv444p|yuv410p
  1254. @end example
  1255. @section null
  1256. Pass the video source unchanged to the output.
  1257. @section ocv
  1258. Apply a video transform using libopencv.
  1259. To enable this filter, install the libopencv library and headers and
  1260. configure Libav with --enable-libopencv.
  1261. It accepts the following parameters:
  1262. @table @option
  1263. @item filter_name
  1264. The name of the libopencv filter to apply.
  1265. @item filter_params
  1266. The parameters to pass to the libopencv filter. If not specified, the default
  1267. values are assumed.
  1268. @end table
  1269. Refer to the official libopencv documentation for more precise
  1270. information:
  1271. @url{http://opencv.willowgarage.com/documentation/c/image_filtering.html}
  1272. Several libopencv filters are supported; see the following subsections.
  1273. @anchor{dilate}
  1274. @subsection dilate
  1275. Dilate an image by using a specific structuring element.
  1276. It corresponds to the libopencv function @code{cvDilate}.
  1277. It accepts the parameters: @var{struct_el}|@var{nb_iterations}.
  1278. @var{struct_el} represents a structuring element, and has the syntax:
  1279. @var{cols}x@var{rows}+@var{anchor_x}x@var{anchor_y}/@var{shape}
  1280. @var{cols} and @var{rows} represent the number of columns and rows of
  1281. the structuring element, @var{anchor_x} and @var{anchor_y} the anchor
  1282. point, and @var{shape} the shape for the structuring element. @var{shape}
  1283. must be "rect", "cross", "ellipse", or "custom".
  1284. If the value for @var{shape} is "custom", it must be followed by a
  1285. string of the form "=@var{filename}". The file with name
  1286. @var{filename} is assumed to represent a binary image, with each
  1287. printable character corresponding to a bright pixel. When a custom
  1288. @var{shape} is used, @var{cols} and @var{rows} are ignored, the number
  1289. or columns and rows of the read file are assumed instead.
  1290. The default value for @var{struct_el} is "3x3+0x0/rect".
  1291. @var{nb_iterations} specifies the number of times the transform is
  1292. applied to the image, and defaults to 1.
  1293. Some examples:
  1294. @example
  1295. # Use the default values
  1296. ocv=dilate
  1297. # Dilate using a structuring element with a 5x5 cross, iterating two times
  1298. ocv=filter_name=dilate:filter_params=5x5+2x2/cross|2
  1299. # Read the shape from the file diamond.shape, iterating two times.
  1300. # The file diamond.shape may contain a pattern of characters like this
  1301. # *
  1302. # ***
  1303. # *****
  1304. # ***
  1305. # *
  1306. # The specified columns and rows are ignored
  1307. # but the anchor point coordinates are not
  1308. ocv=dilate:0x0+2x2/custom=diamond.shape|2
  1309. @end example
  1310. @subsection erode
  1311. Erode an image by using a specific structuring element.
  1312. It corresponds to the libopencv function @code{cvErode}.
  1313. It accepts the parameters: @var{struct_el}:@var{nb_iterations},
  1314. with the same syntax and semantics as the @ref{dilate} filter.
  1315. @subsection smooth
  1316. Smooth the input video.
  1317. The filter takes the following parameters:
  1318. @var{type}|@var{param1}|@var{param2}|@var{param3}|@var{param4}.
  1319. @var{type} is the type of smooth filter to apply, and must be one of
  1320. the following values: "blur", "blur_no_scale", "median", "gaussian",
  1321. or "bilateral". The default value is "gaussian".
  1322. The meaning of @var{param1}, @var{param2}, @var{param3}, and @var{param4}
  1323. depend on the smooth type. @var{param1} and
  1324. @var{param2} accept integer positive values or 0. @var{param3} and
  1325. @var{param4} accept floating point values.
  1326. The default value for @var{param1} is 3. The default value for the
  1327. other parameters is 0.
  1328. These parameters correspond to the parameters assigned to the
  1329. libopencv function @code{cvSmooth}.
  1330. @anchor{overlay}
  1331. @section overlay
  1332. Overlay one video on top of another.
  1333. It takes two inputs and has one output. The first input is the "main"
  1334. video on which the second input is overlayed.
  1335. It accepts the following parameters:
  1336. @table @option
  1337. @item x
  1338. The horizontal position of the left edge of the overlaid video on the main video.
  1339. @item y
  1340. The vertical position of the top edge of the overlaid video on the main video.
  1341. @end table
  1342. The parameters are expressions containing the following parameters:
  1343. @table @option
  1344. @item main_w, main_h
  1345. The main input width and height.
  1346. @item W, H
  1347. These are the same as @var{main_w} and @var{main_h}.
  1348. @item overlay_w, overlay_h
  1349. The overlay input width and height.
  1350. @item w, h
  1351. These are the same as @var{overlay_w} and @var{overlay_h}.
  1352. @item eof_action
  1353. The action to take when EOF is encountered on the secondary input; it accepts
  1354. one of the following values:
  1355. @table @option
  1356. @item repeat
  1357. Repeat the last frame (the default).
  1358. @item endall
  1359. End both streams.
  1360. @item pass
  1361. Pass the main input through.
  1362. @end table
  1363. @end table
  1364. Be aware that frames are taken from each input video in timestamp
  1365. order, hence, if their initial timestamps differ, it is a a good idea
  1366. to pass the two inputs through a @var{setpts=PTS-STARTPTS} filter to
  1367. have them begin in the same zero timestamp, as the example for
  1368. the @var{movie} filter does.
  1369. Some examples:
  1370. @example
  1371. # Draw the overlay at 10 pixels from the bottom right
  1372. # corner of the main video
  1373. overlay=x=main_w-overlay_w-10:y=main_h-overlay_h-10
  1374. # Insert a transparent PNG logo in the bottom left corner of the input
  1375. avconv -i input -i logo -filter_complex 'overlay=x=10:y=main_h-overlay_h-10' output
  1376. # Insert 2 different transparent PNG logos (second logo on bottom
  1377. # right corner)
  1378. avconv -i input -i logo1 -i logo2 -filter_complex
  1379. 'overlay=x=10:y=H-h-10,overlay=x=W-w-10:y=H-h-10' output
  1380. # Add a transparent color layer on top of the main video;
  1381. # WxH specifies the size of the main input to the overlay filter
  1382. color=red@.3:WxH [over]; [in][over] overlay [out]
  1383. # Mask 10-20 seconds of a video by applying the delogo filter to a section
  1384. avconv -i test.avi -codec:v:0 wmv2 -ar 11025 -b:v 9000k
  1385. -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]'
  1386. masked.avi
  1387. @end example
  1388. You can chain together more overlays but the efficiency of such
  1389. approach is yet to be tested.
  1390. @section pad
  1391. Add paddings to the input image, and place the original input at the
  1392. provided @var{x}, @var{y} coordinates.
  1393. It accepts the following parameters:
  1394. @table @option
  1395. @item width, height
  1396. Specify the size of the output image with the paddings added. If the
  1397. value for @var{width} or @var{height} is 0, the corresponding input size
  1398. is used for the output.
  1399. The @var{width} expression can reference the value set by the
  1400. @var{height} expression, and vice versa.
  1401. The default value of @var{width} and @var{height} is 0.
  1402. @item x, y
  1403. Specify the offsets to place the input image at within the padded area,
  1404. with respect to the top/left border of the output image.
  1405. The @var{x} expression can reference the value set by the @var{y}
  1406. expression, and vice versa.
  1407. The default value of @var{x} and @var{y} is 0.
  1408. @item color
  1409. Specify the color of the padded area. It can be the name of a color
  1410. (case insensitive match) or an 0xRRGGBB[AA] sequence.
  1411. The default value of @var{color} is "black".
  1412. @end table
  1413. The parameters @var{width}, @var{height}, @var{x}, and @var{y} are
  1414. expressions containing the following constants:
  1415. @table @option
  1416. @item E, PI, PHI
  1417. These are approximated values for the mathematical constants e
  1418. (Euler's number), pi (Greek pi), and phi (the golden ratio).
  1419. @item in_w, in_h
  1420. The input video width and height.
  1421. @item iw, ih
  1422. These are the same as @var{in_w} and @var{in_h}.
  1423. @item out_w, out_h
  1424. The output width and height (the size of the padded area), as
  1425. specified by the @var{width} and @var{height} expressions.
  1426. @item ow, oh
  1427. These are the same as @var{out_w} and @var{out_h}.
  1428. @item x, y
  1429. The x and y offsets as specified by the @var{x} and @var{y}
  1430. expressions, or NAN if not yet specified.
  1431. @item a
  1432. The input display aspect ratio, same as @var{iw} / @var{ih}.
  1433. @item hsub, vsub
  1434. The horizontal and vertical chroma subsample values. For example for the
  1435. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  1436. @end table
  1437. Some examples:
  1438. @example
  1439. # Add paddings with the color "violet" to the input video. The output video
  1440. # size is 640x480, and the top-left corner of the input video is placed at
  1441. # column 0, row 40
  1442. pad=width=640:height=480:x=0:y=40:color=violet
  1443. # Pad the input to get an output with dimensions increased by 3/2,
  1444. # and put the input video at the center of the padded area
  1445. pad="3/2*iw:3/2*ih:(ow-iw)/2:(oh-ih)/2"
  1446. # Pad the input to get a squared output with size equal to the maximum
  1447. # value between the input width and height, and put the input video at
  1448. # the center of the padded area
  1449. pad="max(iw\,ih):ow:(ow-iw)/2:(oh-ih)/2"
  1450. # Pad the input to get a final w/h ratio of 16:9
  1451. pad="ih*16/9:ih:(ow-iw)/2:(oh-ih)/2"
  1452. # Double the output size and put the input video in the bottom-right
  1453. # corner of the output padded area
  1454. pad="2*iw:2*ih:ow-iw:oh-ih"
  1455. @end example
  1456. @section pixdesctest
  1457. Pixel format descriptor test filter, mainly useful for internal
  1458. testing. The output video should be equal to the input video.
  1459. For example:
  1460. @example
  1461. format=monow, pixdesctest
  1462. @end example
  1463. can be used to test the monowhite pixel format descriptor definition.
  1464. @anchor{scale}
  1465. @section scale
  1466. Scale the input video and/or convert the image format.
  1467. It accepts the following parameters:
  1468. @table @option
  1469. @item w
  1470. The output video width.
  1471. @item h
  1472. The output video height.
  1473. @end table
  1474. The parameters @var{w} and @var{h} are expressions containing
  1475. the following constants:
  1476. @table @option
  1477. @item E, PI, PHI
  1478. These are approximated values for the mathematical constants e
  1479. (Euler's number), pi (Greek pi), and phi (the golden ratio).
  1480. @item in_w, in_h
  1481. The input width and height.
  1482. @item iw, ih
  1483. These are the same as @var{in_w} and @var{in_h}.
  1484. @item out_w, out_h
  1485. The output (cropped) width and height.
  1486. @item ow, oh
  1487. These are the same as @var{out_w} and @var{out_h}.
  1488. @item a
  1489. This is the same as @var{iw} / @var{ih}.
  1490. @item sar
  1491. input sample aspect ratio
  1492. @item dar
  1493. The input display aspect ratio; it is the same as
  1494. (@var{iw} / @var{ih}) * @var{sar}.
  1495. @item hsub, vsub
  1496. The horizontal and vertical chroma subsample values. For example, for the
  1497. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  1498. @end table
  1499. If the input image format is different from the format requested by
  1500. the next filter, the scale filter will convert the input to the
  1501. requested format.
  1502. If the value for @var{w} or @var{h} is 0, the respective input
  1503. size is used for the output.
  1504. If the value for @var{w} or @var{h} is -1, the scale filter will use, for the
  1505. respective output size, a value that maintains the aspect ratio of the input
  1506. image.
  1507. The default value of @var{w} and @var{h} is 0.
  1508. Some examples:
  1509. @example
  1510. # Scale the input video to a size of 200x100
  1511. scale=w=200:h=100
  1512. # Scale the input to 2x
  1513. scale=w=2*iw:h=2*ih
  1514. # The above is the same as
  1515. scale=2*in_w:2*in_h
  1516. # Scale the input to half the original size
  1517. scale=w=iw/2:h=ih/2
  1518. # Increase the width, and set the height to the same size
  1519. scale=3/2*iw:ow
  1520. # Seek Greek harmony
  1521. scale=iw:1/PHI*iw
  1522. scale=ih*PHI:ih
  1523. # Increase the height, and set the width to 3/2 of the height
  1524. scale=w=3/2*oh:h=3/5*ih
  1525. # Increase the size, making the size a multiple of the chroma
  1526. scale="trunc(3/2*iw/hsub)*hsub:trunc(3/2*ih/vsub)*vsub"
  1527. # Increase the width to a maximum of 500 pixels,
  1528. # keeping the same aspect ratio as the input
  1529. scale=w='min(500\, iw*3/2):h=-1'
  1530. @end example
  1531. @section select
  1532. Select frames to pass in output.
  1533. It accepts the following parameters:
  1534. @table @option
  1535. @item expr
  1536. An expression, which is evaluated for each input frame. If the expression is
  1537. evaluated to a non-zero value, the frame is selected and passed to the output,
  1538. otherwise it is discarded.
  1539. @end table
  1540. The expression can contain the following constants:
  1541. @table @option
  1542. @item E, PI, PHI
  1543. These are approximated values for the mathematical constants e
  1544. (Euler's number), pi (Greek pi), and phi (the golden ratio).
  1545. @item n
  1546. The (sequential) number of the filtered frame, starting from 0.
  1547. @item selected_n
  1548. The (sequential) number of the selected frame, starting from 0.
  1549. @item prev_selected_n
  1550. The sequential number of the last selected frame. It's NAN if undefined.
  1551. @item TB
  1552. The timebase of the input timestamps.
  1553. @item pts
  1554. The PTS (Presentation TimeStamp) of the filtered video frame,
  1555. expressed in @var{TB} units. It's NAN if undefined.
  1556. @item t
  1557. The PTS of the filtered video frame,
  1558. expressed in seconds. It's NAN if undefined.
  1559. @item prev_pts
  1560. The PTS of the previously filtered video frame. It's NAN if undefined.
  1561. @item prev_selected_pts
  1562. The PTS of the last previously filtered video frame. It's NAN if undefined.
  1563. @item prev_selected_t
  1564. The PTS of the last previously selected video frame. It's NAN if undefined.
  1565. @item start_pts
  1566. The PTS of the first video frame in the video. It's NAN if undefined.
  1567. @item start_t
  1568. The time of the first video frame in the video. It's NAN if undefined.
  1569. @item pict_type
  1570. The type of the filtered frame. It can assume one of the following
  1571. values:
  1572. @table @option
  1573. @item I
  1574. @item P
  1575. @item B
  1576. @item S
  1577. @item SI
  1578. @item SP
  1579. @item BI
  1580. @end table
  1581. @item interlace_type
  1582. The frame interlace type. It can assume one of the following values:
  1583. @table @option
  1584. @item PROGRESSIVE
  1585. The frame is progressive (not interlaced).
  1586. @item TOPFIRST
  1587. The frame is top-field-first.
  1588. @item BOTTOMFIRST
  1589. The frame is bottom-field-first.
  1590. @end table
  1591. @item key
  1592. This is 1 if the filtered frame is a key-frame, 0 otherwise.
  1593. @end table
  1594. The default value of the select expression is "1".
  1595. Some examples:
  1596. @example
  1597. # Select all the frames in input
  1598. select
  1599. # The above is the same as
  1600. select=expr=1
  1601. # Skip all frames
  1602. select=expr=0
  1603. # Select only I-frames
  1604. select='expr=eq(pict_type\,I)'
  1605. # Select one frame per 100
  1606. select='not(mod(n\,100))'
  1607. # Select only frames contained in the 10-20 time interval
  1608. select='gte(t\,10)*lte(t\,20)'
  1609. # Select only I frames contained in the 10-20 time interval
  1610. select='gte(t\,10)*lte(t\,20)*eq(pict_type\,I)'
  1611. # Select frames with a minimum distance of 10 seconds
  1612. select='isnan(prev_selected_t)+gte(t-prev_selected_t\,10)'
  1613. @end example
  1614. @anchor{setdar}
  1615. @section setdar
  1616. Set the Display Aspect Ratio for the filter output video.
  1617. This is done by changing the specified Sample (aka Pixel) Aspect
  1618. Ratio, according to the following equation:
  1619. @math{DAR = HORIZONTAL_RESOLUTION / VERTICAL_RESOLUTION * SAR}
  1620. Keep in mind that this filter does not modify the pixel dimensions of
  1621. the video frame. Also, the display aspect ratio set by this filter may
  1622. be changed by later filters in the filterchain, e.g. in case of
  1623. scaling or if another "setdar" or a "setsar" filter is applied.
  1624. It accepts the following parameters:
  1625. @table @option
  1626. @item dar
  1627. The output display aspect ratio.
  1628. @end table
  1629. The parameter @var{dar} is an expression containing
  1630. the following constants:
  1631. @table @option
  1632. @item E, PI, PHI
  1633. These are approximated values for the mathematical constants e
  1634. (Euler's number), pi (Greek pi), and phi (the golden ratio).
  1635. @item w, h
  1636. The input width and height.
  1637. @item a
  1638. This is the same as @var{w} / @var{h}.
  1639. @item sar
  1640. The input sample aspect ratio.
  1641. @item dar
  1642. The input display aspect ratio. It is the same as
  1643. (@var{w} / @var{h}) * @var{sar}.
  1644. @item hsub, vsub
  1645. The horizontal and vertical chroma subsample values. For example, for the
  1646. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  1647. @end table
  1648. To change the display aspect ratio to 16:9, specify:
  1649. @example
  1650. setdar=dar=16/9
  1651. # The above is equivalent to
  1652. setdar=dar=1.77777
  1653. @end example
  1654. Also see the the @ref{setsar} filter documentation.
  1655. @section setpts
  1656. Change the PTS (presentation timestamp) of the input video frames.
  1657. It accepts the following parameters:
  1658. @table @option
  1659. @item expr
  1660. The expression which is evaluated for each frame to construct its timestamp.
  1661. @end table
  1662. The expression is evaluated through the eval API and can contain the following
  1663. constants:
  1664. @table @option
  1665. @item PTS
  1666. The presentation timestamp in input.
  1667. @item E, PI, PHI
  1668. These are approximated values for the mathematical constants e
  1669. (Euler's number), pi (Greek pi), and phi (the golden ratio).
  1670. @item N
  1671. The count of the input frame, starting from 0.
  1672. @item STARTPTS
  1673. The PTS of the first video frame.
  1674. @item INTERLACED
  1675. State whether the current frame is interlaced.
  1676. @item PREV_INPTS
  1677. The previous input PTS.
  1678. @item PREV_OUTPTS
  1679. The previous output PTS.
  1680. @item RTCTIME
  1681. The wallclock (RTC) time in microseconds.
  1682. @item RTCSTART
  1683. The wallclock (RTC) time at the start of the movie in microseconds.
  1684. @item TB
  1685. The timebase of the input timestamps.
  1686. @end table
  1687. Some examples:
  1688. @example
  1689. # Start counting the PTS from zero
  1690. setpts=expr=PTS-STARTPTS
  1691. # Fast motion
  1692. setpts=expr=0.5*PTS
  1693. # Slow motion
  1694. setpts=2.0*PTS
  1695. # Fixed rate 25 fps
  1696. setpts=N/(25*TB)
  1697. # Fixed rate 25 fps with some jitter
  1698. setpts='1/(25*TB) * (N + 0.05 * sin(N*2*PI/25))'
  1699. # Generate timestamps from a "live source" and rebase onto the current timebase
  1700. setpts='(RTCTIME - RTCSTART) / (TB * 1000000)"
  1701. @end example
  1702. @anchor{setsar}
  1703. @section setsar
  1704. Set the Sample (aka Pixel) Aspect Ratio for the filter output video.
  1705. Note that as a consequence of the application of this filter, the
  1706. output display aspect ratio will change according to the following
  1707. equation:
  1708. @math{DAR = HORIZONTAL_RESOLUTION / VERTICAL_RESOLUTION * SAR}
  1709. Keep in mind that the sample aspect ratio set by this filter may be
  1710. changed by later filters in the filterchain, e.g. if another "setsar"
  1711. or a "setdar" filter is applied.
  1712. It accepts the following parameters:
  1713. @table @option
  1714. @item sar
  1715. The output sample aspect ratio.
  1716. @end table
  1717. The parameter @var{sar} is an expression containing
  1718. the following constants:
  1719. @table @option
  1720. @item E, PI, PHI
  1721. These are approximated values for the mathematical constants e
  1722. (Euler's number), pi (Greek pi), and phi (the golden ratio).
  1723. @item w, h
  1724. The input width and height.
  1725. @item a
  1726. These are the same as @var{w} / @var{h}.
  1727. @item sar
  1728. The input sample aspect ratio.
  1729. @item dar
  1730. The input display aspect ratio. It is the same as
  1731. (@var{w} / @var{h}) * @var{sar}.
  1732. @item hsub, vsub
  1733. Horizontal and vertical chroma subsample values. For example, for the
  1734. pixel format "yuv422p" @var{hsub} is 2 and @var{vsub} is 1.
  1735. @end table
  1736. To change the sample aspect ratio to 10:11, specify:
  1737. @example
  1738. setsar=sar=10/11
  1739. @end example
  1740. @section settb
  1741. Set the timebase to use for the output frames timestamps.
  1742. It is mainly useful for testing timebase configuration.
  1743. It accepts the following parameters:
  1744. @table @option
  1745. @item expr
  1746. The expression which is evaluated into the output timebase.
  1747. @end table
  1748. The expression can contain the constants "PI", "E", "PHI", "AVTB" (the
  1749. default timebase), and "intb" (the input timebase).
  1750. The default value for the input is "intb".
  1751. Some examples:
  1752. @example
  1753. # Set the timebase to 1/25
  1754. settb=expr=1/25
  1755. # Set the timebase to 1/10
  1756. settb=expr=0.1
  1757. # Set the timebase to 1001/1000
  1758. settb=1+0.001
  1759. #Set the timebase to 2*intb
  1760. settb=2*intb
  1761. #Set the default timebase value
  1762. settb=AVTB
  1763. @end example
  1764. @section showinfo
  1765. Show a line containing various information for each input video frame.
  1766. The input video is not modified.
  1767. The shown line contains a sequence of key/value pairs of the form
  1768. @var{key}:@var{value}.
  1769. It accepts the following parameters:
  1770. @table @option
  1771. @item n
  1772. The (sequential) number of the input frame, starting from 0.
  1773. @item pts
  1774. The Presentation TimeStamp of the input frame, expressed as a number of
  1775. time base units. The time base unit depends on the filter input pad.
  1776. @item pts_time
  1777. The Presentation TimeStamp of the input frame, expressed as a number of
  1778. seconds.
  1779. @item pos
  1780. The position of the frame in the input stream, or -1 if this information is
  1781. unavailable and/or meaningless (for example in case of synthetic video).
  1782. @item fmt
  1783. The pixel format name.
  1784. @item sar
  1785. The sample aspect ratio of the input frame, expressed in the form
  1786. @var{num}/@var{den}.
  1787. @item s
  1788. The size of the input frame, expressed in the form
  1789. @var{width}x@var{height}.
  1790. @item i
  1791. The type of interlaced mode ("P" for "progressive", "T" for top field first, "B"
  1792. for bottom field first).
  1793. @item iskey
  1794. This is 1 if the frame is a key frame, 0 otherwise.
  1795. @item type
  1796. The picture type of the input frame ("I" for an I-frame, "P" for a
  1797. P-frame, "B" for a B-frame, or "?" for an unknown type).
  1798. Also refer to the documentation of the @code{AVPictureType} enum and of
  1799. the @code{av_get_picture_type_char} function defined in
  1800. @file{libavutil/avutil.h}.
  1801. @item checksum
  1802. The Adler-32 checksum of all the planes of the input frame.
  1803. @item plane_checksum
  1804. The Adler-32 checksum of each plane of the input frame, expressed in the form
  1805. "[@var{c0} @var{c1} @var{c2} @var{c3}]".
  1806. @end table
  1807. @section shuffleplanes
  1808. Reorder and/or duplicate video planes.
  1809. It accepts the following parameters:
  1810. @table @option
  1811. @item map0
  1812. The index of the input plane to be used as the first output plane.
  1813. @item map1
  1814. The index of the input plane to be used as the second output plane.
  1815. @item map2
  1816. The index of the input plane to be used as the third output plane.
  1817. @item map3
  1818. The index of the input plane to be used as the fourth output plane.
  1819. @end table
  1820. The first plane has the index 0. The default is to keep the input unchanged.
  1821. Swap the second and third planes of the input:
  1822. @example
  1823. avconv -i INPUT -vf shuffleplanes=0:2:1:3 OUTPUT
  1824. @end example
  1825. @section split
  1826. Split input video into several identical outputs.
  1827. It accepts a single parameter, which specifies the number of outputs. If
  1828. unspecified, it defaults to 2.
  1829. Create 5 copies of the input video:
  1830. @example
  1831. avconv -i INPUT -filter_complex split=5 OUTPUT
  1832. @end example
  1833. @section transpose
  1834. Transpose rows with columns in the input video and optionally flip it.
  1835. It accepts the following parameters:
  1836. @table @option
  1837. @item dir
  1838. The direction of the transpose.
  1839. @end table
  1840. The direction can assume the following values:
  1841. @table @samp
  1842. @item cclock_flip
  1843. Rotate by 90 degrees counterclockwise and vertically flip (default), that is:
  1844. @example
  1845. L.R L.l
  1846. . . -> . .
  1847. l.r R.r
  1848. @end example
  1849. @item clock
  1850. Rotate by 90 degrees clockwise, that is:
  1851. @example
  1852. L.R l.L
  1853. . . -> . .
  1854. l.r r.R
  1855. @end example
  1856. @item cclock
  1857. Rotate by 90 degrees counterclockwise, that is:
  1858. @example
  1859. L.R R.r
  1860. . . -> . .
  1861. l.r L.l
  1862. @end example
  1863. @item clock_flip
  1864. Rotate by 90 degrees clockwise and vertically flip, that is:
  1865. @example
  1866. L.R r.R
  1867. . . -> . .
  1868. l.r l.L
  1869. @end example
  1870. @end table
  1871. @section trim
  1872. Trim the input so that the output contains one continuous subpart of the input.
  1873. It accepts the following parameters:
  1874. @table @option
  1875. @item start
  1876. The timestamp (in seconds) of the start of the kept section. The frame with the
  1877. timestamp @var{start} will be the first frame in the output.
  1878. @item end
  1879. The timestamp (in seconds) of the first frame that will be dropped. The frame
  1880. immediately preceding the one with the timestamp @var{end} will be the last
  1881. frame in the output.
  1882. @item start_pts
  1883. This is the same as @var{start}, except this option sets the start timestamp
  1884. in timebase units instead of seconds.
  1885. @item end_pts
  1886. This is the same as @var{end}, except this option sets the end timestamp
  1887. in timebase units instead of seconds.
  1888. @item duration
  1889. The maximum duration of the output in seconds.
  1890. @item start_frame
  1891. The number of the first frame that should be passed to the output.
  1892. @item end_frame
  1893. The number of the first frame that should be dropped.
  1894. @end table
  1895. Note that the first two sets of the start/end options and the @option{duration}
  1896. option look at the frame timestamp, while the _frame variants simply count the
  1897. frames that pass through the filter. Also note that this filter does not modify
  1898. the timestamps. If you wish for the output timestamps to start at zero, insert a
  1899. setpts filter after the trim filter.
  1900. If multiple start or end options are set, this filter tries to be greedy and
  1901. keep all the frames that match at least one of the specified constraints. To keep
  1902. only the part that matches all the constraints at once, chain multiple trim
  1903. filters.
  1904. The defaults are such that all the input is kept. So it is possible to set e.g.
  1905. just the end values to keep everything before the specified time.
  1906. Examples:
  1907. @itemize
  1908. @item
  1909. Drop everything except the second minute of input:
  1910. @example
  1911. avconv -i INPUT -vf trim=60:120
  1912. @end example
  1913. @item
  1914. Keep only the first second:
  1915. @example
  1916. avconv -i INPUT -vf trim=duration=1
  1917. @end example
  1918. @end itemize
  1919. @section unsharp
  1920. Sharpen or blur the input video.
  1921. It accepts the following parameters:
  1922. @table @option
  1923. @item luma_msize_x
  1924. Set the luma matrix horizontal size. It must be an integer between 3
  1925. and 13. The default value is 5.
  1926. @item luma_msize_y
  1927. Set the luma matrix vertical size. It must be an integer between 3
  1928. and 13. The default value is 5.
  1929. @item luma_amount
  1930. Set the luma effect strength. It must be a floating point number between -2.0
  1931. and 5.0. The default value is 1.0.
  1932. @item chroma_msize_x
  1933. Set the chroma matrix horizontal size. It must be an integer between 3
  1934. and 13. The default value is 5.
  1935. @item chroma_msize_y
  1936. Set the chroma matrix vertical size. It must be an integer between 3
  1937. and 13. The default value is 5.
  1938. @item chroma_amount
  1939. Set the chroma effect strength. It must be a floating point number between -2.0
  1940. and 5.0. The default value is 0.0.
  1941. @end table
  1942. Negative values for the amount will blur the input video, while positive
  1943. values will sharpen. All parameters are optional and default to the
  1944. equivalent of the string '5:5:1.0:5:5:0.0'.
  1945. @example
  1946. # Strong luma sharpen effect parameters
  1947. unsharp=luma_msize_x=7:luma_msize_y=7:luma_amount=2.5
  1948. # A strong blur of both luma and chroma parameters
  1949. unsharp=7:7:-2:7:7:-2
  1950. # Use the default values with @command{avconv}
  1951. ./avconv -i in.avi -vf "unsharp" out.mp4
  1952. @end example
  1953. @section vflip
  1954. Flip the input video vertically.
  1955. @example
  1956. ./avconv -i in.avi -vf "vflip" out.avi
  1957. @end example
  1958. @section yadif
  1959. Deinterlace the input video ("yadif" means "yet another deinterlacing
  1960. filter").
  1961. It accepts the following parameters:
  1962. @table @option
  1963. @item mode
  1964. The interlacing mode to adopt. It accepts one of the following values:
  1965. @table @option
  1966. @item 0
  1967. Output one frame for each frame.
  1968. @item 1
  1969. Output one frame for each field.
  1970. @item 2
  1971. Like 0, but it skips the spatial interlacing check.
  1972. @item 3
  1973. Like 1, but it skips the spatial interlacing check.
  1974. @end table
  1975. The default value is 0.
  1976. @item parity
  1977. The picture field parity assumed for the input interlaced video. It accepts one
  1978. of the following values:
  1979. @table @option
  1980. @item 0
  1981. Assume the top field is first.
  1982. @item 1
  1983. Assume the bottom field is first.
  1984. @item -1
  1985. Enable automatic detection of field parity.
  1986. @end table
  1987. The default value is -1.
  1988. If the interlacing is unknown or the decoder does not export this information,
  1989. top field first will be assumed.
  1990. @item auto
  1991. Whether the deinterlacer should trust the interlaced flag and only deinterlace
  1992. frames marked as interlaced.
  1993. @table @option
  1994. @item 0
  1995. Deinterlace all frames.
  1996. @item 1
  1997. Only deinterlace frames marked as interlaced.
  1998. @end table
  1999. The default value is 0.
  2000. @end table
  2001. @c man end VIDEO FILTERS
  2002. @chapter Video Sources
  2003. @c man begin VIDEO SOURCES
  2004. Below is a description of the currently available video sources.
  2005. @section buffer
  2006. Buffer video frames, and make them available to the filter chain.
  2007. This source is mainly intended for a programmatic use, in particular
  2008. through the interface defined in @file{libavfilter/vsrc_buffer.h}.
  2009. It accepts the following parameters:
  2010. @table @option
  2011. @item width
  2012. The input video width.
  2013. @item height
  2014. The input video height.
  2015. @item pix_fmt
  2016. The name of the input video pixel format.
  2017. @item time_base
  2018. The time base used for input timestamps.
  2019. @item sar
  2020. The sample (pixel) aspect ratio of the input video.
  2021. @end table
  2022. For example:
  2023. @example
  2024. buffer=width=320:height=240:pix_fmt=yuv410p:time_base=1/24:sar=1
  2025. @end example
  2026. will instruct the source to accept video frames with size 320x240 and
  2027. with format "yuv410p", assuming 1/24 as the timestamps timebase and
  2028. square pixels (1:1 sample aspect ratio).
  2029. @section color
  2030. Provide an uniformly colored input.
  2031. It accepts the following parameters:
  2032. @table @option
  2033. @item color
  2034. Specify the color of the source. It can be the name of a color (case
  2035. insensitive match) or a 0xRRGGBB[AA] sequence, possibly followed by an
  2036. alpha specifier. The default value is "black".
  2037. @item size
  2038. Specify the size of the sourced video, it may be a string of the form
  2039. @var{width}x@var{height}, or the name of a size abbreviation. The
  2040. default value is "320x240".
  2041. @item framerate
  2042. Specify the frame rate of the sourced video, as the number of frames
  2043. generated per second. It has to be a string in the format
  2044. @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
  2045. number or a valid video frame rate abbreviation. The default value is
  2046. "25".
  2047. @end table
  2048. The following graph description will generate a red source
  2049. with an opacity of 0.2, with size "qcif" and a frame rate of 10
  2050. frames per second, which will be overlayed over the source connected
  2051. to the pad with identifier "in":
  2052. @example
  2053. "color=red@@0.2:qcif:10 [color]; [in][color] overlay [out]"
  2054. @end example
  2055. @section movie
  2056. Read a video stream from a movie container.
  2057. Note that this source is a hack that bypasses the standard input path. It can be
  2058. useful in applications that do not support arbitrary filter graphs, but its use
  2059. is discouraged in those that do. It should never be used with
  2060. @command{avconv}; the @option{-filter_complex} option fully replaces it.
  2061. It accepts the following parameters:
  2062. @table @option
  2063. @item filename
  2064. The name of the resource to read (not necessarily a file; it can also be a
  2065. device or a stream accessed through some protocol).
  2066. @item format_name, f
  2067. Specifies the format assumed for the movie to read, and can be either
  2068. the name of a container or an input device. If not specified, the
  2069. format is guessed from @var{movie_name} or by probing.
  2070. @item seek_point, sp
  2071. Specifies the seek point in seconds. The frames will be output
  2072. starting from this seek point. The parameter is evaluated with
  2073. @code{av_strtod}, so the numerical value may be suffixed by an IS
  2074. postfix. The default value is "0".
  2075. @item stream_index, si
  2076. Specifies the index of the video stream to read. If the value is -1,
  2077. the most suitable video stream will be automatically selected. The default
  2078. value is "-1".
  2079. @end table
  2080. It allows overlaying a second video on top of the main input of
  2081. a filtergraph, as shown in this graph:
  2082. @example
  2083. input -----------> deltapts0 --> overlay --> output
  2084. ^
  2085. |
  2086. movie --> scale--> deltapts1 -------+
  2087. @end example
  2088. Some examples:
  2089. @example
  2090. # Skip 3.2 seconds from the start of the AVI file in.avi, and overlay it
  2091. # on top of the input labelled "in"
  2092. movie=in.avi:seek_point=3.2, scale=180:-1, setpts=PTS-STARTPTS [movie];
  2093. [in] setpts=PTS-STARTPTS, [movie] overlay=16:16 [out]
  2094. # Read from a video4linux2 device, and overlay it on top of the input
  2095. # labelled "in"
  2096. movie=/dev/video0:f=video4linux2, scale=180:-1, setpts=PTS-STARTPTS [movie];
  2097. [in] setpts=PTS-STARTPTS, [movie] overlay=16:16 [out]
  2098. @end example
  2099. @section nullsrc
  2100. Null video source: never return images. It is mainly useful as a
  2101. template and to be employed in analysis / debugging tools.
  2102. It accepts a string of the form
  2103. @var{width}:@var{height}:@var{timebase} as an optional parameter.
  2104. @var{width} and @var{height} specify the size of the configured
  2105. source. The default values of @var{width} and @var{height} are
  2106. respectively 352 and 288 (corresponding to the CIF size format).
  2107. @var{timebase} specifies an arithmetic expression representing a
  2108. timebase. The expression can contain the constants "PI", "E", "PHI", and
  2109. "AVTB" (the default timebase), and defaults to the value "AVTB".
  2110. @section frei0r_src
  2111. Provide a frei0r source.
  2112. To enable compilation of this filter you need to install the frei0r
  2113. header and configure Libav with --enable-frei0r.
  2114. This source accepts the following parameters:
  2115. @table @option
  2116. @item size
  2117. The size of the video to generate. It may be a string of the form
  2118. @var{width}x@var{height} or a frame size abbreviation.
  2119. @item framerate
  2120. The framerate of the generated video. It may be a string of the form
  2121. @var{num}/@var{den} or a frame rate abbreviation.
  2122. @item filter_name
  2123. The name to the frei0r source to load. For more information regarding frei0r and
  2124. how to set the parameters, read the @ref{frei0r} section in the video filters
  2125. documentation.
  2126. @item filter_params
  2127. A '|'-separated list of parameters to pass to the frei0r source.
  2128. @end table
  2129. An example:
  2130. @example
  2131. # Generate a frei0r partik0l source with size 200x200 and framerate 10
  2132. # which is overlayed on the overlay filter main input
  2133. frei0r_src=size=200x200:framerate=10:filter_name=partik0l:filter_params=1234 [overlay]; [in][overlay] overlay
  2134. @end example
  2135. @section rgbtestsrc, testsrc
  2136. The @code{rgbtestsrc} source generates an RGB test pattern useful for
  2137. detecting RGB vs BGR issues. You should see a red, green and blue
  2138. stripe from top to bottom.
  2139. The @code{testsrc} source generates a test video pattern, showing a
  2140. color pattern, a scrolling gradient and a timestamp. This is mainly
  2141. intended for testing purposes.
  2142. The sources accept the following parameters:
  2143. @table @option
  2144. @item size, s
  2145. Specify the size of the sourced video, it may be a string of the form
  2146. @var{width}x@var{height}, or the name of a size abbreviation. The
  2147. default value is "320x240".
  2148. @item rate, r
  2149. Specify the frame rate of the sourced video, as the number of frames
  2150. generated per second. It has to be a string in the format
  2151. @var{frame_rate_num}/@var{frame_rate_den}, an integer number, a floating point
  2152. number or a valid video frame rate abbreviation. The default value is
  2153. "25".
  2154. @item sar
  2155. Set the sample aspect ratio of the sourced video.
  2156. @item duration
  2157. Set the video duration of the sourced video. The accepted syntax is:
  2158. @example
  2159. [-]HH[:MM[:SS[.m...]]]
  2160. [-]S+[.m...]
  2161. @end example
  2162. Also see the the @code{av_parse_time()} function.
  2163. If not specified, or the expressed duration is negative, the video is
  2164. supposed to be generated forever.
  2165. @end table
  2166. For example the following:
  2167. @example
  2168. testsrc=duration=5.3:size=qcif:rate=10
  2169. @end example
  2170. will generate a video with a duration of 5.3 seconds, with size
  2171. 176x144 and a framerate of 10 frames per second.
  2172. @c man end VIDEO SOURCES
  2173. @chapter Video Sinks
  2174. @c man begin VIDEO SINKS
  2175. Below is a description of the currently available video sinks.
  2176. @section buffersink
  2177. Buffer video frames, and make them available to the end of the filter
  2178. graph.
  2179. This sink is intended for programmatic use through the interface defined in
  2180. @file{libavfilter/buffersink.h}.
  2181. @section nullsink
  2182. Null video sink: do absolutely nothing with the input video. It is
  2183. mainly useful as a template and for use in analysis / debugging
  2184. tools.
  2185. @c man end VIDEO SINKS