Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/FFmpeg/FFmpeg.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRudolf Polzer <divverent@xonotic.org>2013-02-01 19:33:17 +0400
committerPaul B Mahol <onemda@gmail.com>2013-02-04 17:37:43 +0400
commit81f2549ec9ab236727abe5dfe19d5dfd1478c2b2 (patch)
treef43be8bdbed67a3a66a87453cc5e88693b5151db /doc/filters.texi
parent353bd158f5d497c9acab98c22d10b99ca92f45d6 (diff)
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.texi28
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