diff options
author | Mark Himsley <mark@mdsh.com> | 2011-11-09 01:35:31 +0100 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2011-11-10 01:31:13 +0100 |
commit | 8c1fb50d077d5f954784b554489cd9915d876b74 (patch) | |
tree | 96b26cc100ddc45667cbe708cdfc440e3542dc17 /doc | |
parent | 0d602615ab58b14859dc915b94385cd79e21a87e (diff) | |
download | ffmpeg-8c1fb50d077d5f954784b554489cd9915d876b74.tar.gz |
vf_fade: add alpha option and alpha fading support
Signed-off-by: Stefano Sabatini <stefasab@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/filters.texi | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 2741f96e4f..b45df573f7 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -1166,6 +1166,9 @@ See @var{start_frame}. @item nb_frames, n See @var{nb_frames}. +@item alpha +If set to 1, fade only alpha channel, if one exists on the input. +Default value is 0. @end table A few usage examples follow, usable too as test scenarios. @@ -1181,6 +1184,9 @@ fade=in:0:25, fade=out:975:25 # make first 5 frames black, then fade in from frame 5-24 fade=in:5:20 + +# fade in alpha over first 25 frames of video +fade=in:0:25:alpha=1 @end example @section fieldorder |