diff options
author | Paul B Mahol <onemda@gmail.com> | 2013-03-30 04:03:39 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2013-04-03 08:33:59 +0000 |
commit | bf65752848ec5799c72e1c38c574fd88c917fbe1 (patch) | |
tree | 0b4e3c6dadad274ca6a09dee1b76d6ffcb566596 /doc/filters.texi | |
parent | 83e22172218af521df1101f40f6d56578c56cf56 (diff) | |
download | ffmpeg-bf65752848ec5799c72e1c38c574fd88c917fbe1.tar.gz |
aphaser filter
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 401125b0ad..08c1945e1a 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -6266,6 +6266,43 @@ following one, the permission might not be received as expected in that following filter. Inserting a @ref{format} or @ref{aformat} filter before the perms/aperms filter can avoid this problem. +@section aphaser +Add a phasing effect to the input audio. + +A phaser filter creates series of peaks and troughs in the frequency spectrum. +The position of the peaks and troughs are modulated so that they vary over time, creating a sweeping effect. + +The filter accepts parameters as a list of @var{key}=@var{value} +pairs, separated by ":". + +A description of the accepted parameters follows. + +@table @option +@item in_gain +Set input gain. Default is 0.4. + +@item out_gain +Set output gain. Default is 0.74 + +@item delay +Set delay in milliseconds. Default is 3.0. + +@item decay +Set decay. Default is 0.4. + +@item speed +Set modulation speed in Hz. Default is 0.5. + +@item type +Set modulation type. Default is triangular. + +It accepts the following values: +@table @samp +@item triangular, t +@item sinusoidal, s +@end table +@end table + @section aselect, select Select frames to pass in output. |