diff options
author | Clément Bœsch <ubitux@gmail.com> | 2011-12-09 02:33:01 +0100 |
---|---|---|
committer | Clément Bœsch <ubitux@gmail.com> | 2011-12-11 14:14:01 +0100 |
commit | cc2355817d70e1e1ca92a48012309e5f05675788 (patch) | |
tree | 08b8af159e6808213ee844d39e223636ec65a797 /doc | |
parent | c88d6b18ceb817e4309c9e5710234aa197f91b6e (diff) | |
download | ffmpeg-cc2355817d70e1e1ca92a48012309e5f05675788.tar.gz |
life: add mold, mold_color, life_color and death_color options.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/filters.texi | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 09ef5985d7..0980fe67c5 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -2978,6 +2978,21 @@ If a filename is not specified, the size value defaults to "320x240" @item stitch If set to 1, stitch the left and right grid edges together, and the top and bottom edges also. Defaults to 1. + +@item mold +Set cell mold speed. If set, a dead cell will go from @option{death_color} to +@option{mold_color} with a step of @option{mold}. @option{mold} can have a +value from 0 to 255. + +@item life_color +Set the color of living (or new born) cells. + +@item death_color +Set the color of dead cells. If @option{mold} is set, this is the first color +used to represent a dead cell. + +@item mold_color +Set mold color, for definitely dead and moldy cells. @end table @subsection Examples @@ -3002,6 +3017,11 @@ Specify a custom rule for evolving a randomly generated grid: life=rule=S14/B34 @end example +@item +Full example with slow death effect (mold) using @command{ffplay}: +@example +ffplay -f lavfi life=s=300x200:mold=10:r=60:ratio=0.1:death_color=#C83232:life_color=#00ff00,scale=1200:800:flags=16 +@end example @end itemize @section nullsrc, rgbtestsrc, testsrc |