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.

3007 lines
81KB

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