diff options
author | Rudolf Polzer <divverent@xonotic.org> | 2013-02-01 16:33:17 +0100 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2013-02-04 13:37:43 +0000 |
commit | 81f2549ec9ab236727abe5dfe19d5dfd1478c2b2 (patch) | |
tree | f43be8bdbed67a3a66a87453cc5e88693b5151db /doc/filters.texi | |
parent | 353bd158f5d497c9acab98c22d10b99ca92f45d6 (diff) | |
download | ffmpeg-81f2549ec9ab236727abe5dfe19d5dfd1478c2b2.tar.gz |
lavfi/showspectrum: display multiple channels in separate row
The showspectrum filter gets multiple channel (any count) support.
Signed-off-by: Rudolf Polzer <divverent@xonotic.org>
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index baa344d93d..37b7a46a9c 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -6055,6 +6055,34 @@ Specify the video size for the output. Default value is @code{640x512}. @item slide Specify if the spectrum should slide along the window. Default value is @code{0}. +@item mode +Specify display mode. Can be either @code{combined}: all channels are +displayed in the same row, or @code{separate}: all channels are displayed +in separate rows. Default value is @code{combined}. +@item color +Specify display color mode. Can be either @code{channel}: each channel +is displayed in a separate color, or @code{intensity}: each channel is +displayed using the same color scheme. Default value is @code{channel}. +@item scale +Specify scale used for calculating intensity color values. + +It accepts the following values: +@table @option +@item{lin} +linear +@item{sqrt} +square root, default +@item{cbrt} +cubic root +@item{log} +logarithmic +@end table + +@item saturation +Set saturation modifier for displayed colors. Negative values provide +alternative color scheme. @code{0} is no saturation at all. +Saturation must be in [-10.0, 10.0] range. +Default value is @code{1}. @end table The usage is very similar to the showwaves filter; see the examples in that |