diff options
author | Paul B Mahol <onemda@gmail.com> | 2013-09-13 11:36:52 +0000 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2013-09-16 14:33:07 +0000 |
commit | 9d05de2258769993c289395d3f8bf41b7a3138af (patch) | |
tree | 7940025f6ab34546113a91c930fe95db248113fd /doc | |
parent | 42b8f5fba1f067c55231791039283e41b5167247 (diff) | |
download | ffmpeg-9d05de2258769993c289395d3f8bf41b7a3138af.tar.gz |
avfilter: add adelay filter
Signed-off-by: Paul B Mahol <onemda@gmail.com>
Diffstat (limited to 'doc')
-rw-r--r-- | doc/filters.texi | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 7f8d1b2a93..3404f8b4d8 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -347,6 +347,33 @@ aconvert=u8:auto @end example @end itemize +@section adelay + +Delay one or more audio channels. + +Samples in delayed channel are filled with silence. + +The filter accepts the following option: + +@table @option +@item delays +Set list of delays in milliseconds for each channel separated by '|'. +At least one delay greater than 0 should be provided. +Unused delays will be silently ignored. If number of given delays is +smaller than number of channels all remaining channels will not be delayed. +@end table + +@subsection Examples + +@itemize +@item +Delay first channel by 1.5 seconds, the third channel by 0.5 seconds and leave +the second channel (and any other channels that may be present) unchanged. +@example +adelay=1500:0:500 +@end example +@end itemize + @section aecho Apply echoing to the input audio. |