diff options
author | Paul B Mahol <onemda@gmail.com> | 2015-08-24 20:00:59 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2015-08-26 11:16:51 +0000 |
commit | 319440e54f47891a1ab27ffb73d783895f225fe8 (patch) | |
tree | 1b818bf732864458358e4d1ac28eb688e1f9d35c /doc | |
parent | 0190c372ef79740ddc546e9ce1877a908475d3e1 (diff) | |
download | ffmpeg-streaming-319440e54f47891a1ab27ffb73d783895f225fe8.zip ffmpeg-streaming-319440e54f47891a1ab27ffb73d783895f225fe8.tar.gz |
avfilter: add hstack & vstack filter
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/filters.texi | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 2f7b0fa..178252f 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -6589,6 +6589,21 @@ Set the scaling dimension: @code{2} for @code{hq2x}, @code{3} for Default is @code{3}. @end table +@section hstack +Stack input videos horizontally. + +All streams must be of same pixel format and of same height. + +Note that this filter is faster than using @ref{overlay} and @ref{pad} filter +to create same output. + +The filter accept the following option: + +@table @option +@item nb_inputs +Set number of input streams. Default is 2. +@end table + @section hue Modify the hue and/or the saturation of the input. @@ -7736,6 +7751,7 @@ Set chroma strength. Must be a double value in the range 0-1000, default is @code{1.0}. @end table +@anchor{pad} @section pad Add paddings to the input image, and place the original input at the @@ -10892,6 +10908,21 @@ vignette='PI/4+random(1)*PI/50':eval=frame @end itemize +@section vstack +Stack input videos vertically. + +All streams must be of same pixel format and of same width. + +Note that this filter is faster than using @ref{overlay} and @ref{pad} filter +to create same output. + +The filter accept the following option: + +@table @option +@item nb_inputs +Set number of input streams. Default is 2. +@end table + @section w3fdif Deinterlace the input video ("w3fdif" stands for "Weston 3 Field |