diff options
author | Paul B Mahol <onemda@gmail.com> | 2019-10-09 19:03:45 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2019-10-09 19:03:45 +0200 |
commit | 1cdb7c58398464da815808134c8be039dabb9428 (patch) | |
tree | d722d058cde61bb43162bf1dedc5d6582e555f13 /doc | |
parent | 3d262f9f326f9131e68164f1edfcb5d8273926f6 (diff) | |
download | ffmpeg-1cdb7c58398464da815808134c8be039dabb9428.tar.gz |
doc/filters: add more examples for afftfilt
Diffstat (limited to 'doc')
-rw-r--r-- | doc/filters.texi | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 5d2b6692aa..55a8ebae56 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -1153,6 +1153,18 @@ Leave almost only low frequencies in audio: @example afftfilt="'real=re * (1-clip((b/nb)*b,0,1))':imag='im * (1-clip((b/nb)*b,0,1))'" @end example + +@item +Apply robotize effect: +@example +afftfilt="real='hypot(re,im)*sin(0)':imag='hypot(re,im)*cos(0)':win_size=512:overlap=0.75" +@end example + +@item +Apply whisper effect: +@example +afftfilt="real='hypot(re,im)*cos((random(0)*2-1)*2*3.14)':imag='hypot(re,im)*sin((random(1)*2-1)*2*3.14)':win_size=128:overlap=0.8" +@end example @end itemize @anchor{afir} |