diff options
author | Paul B Mahol <onemda@gmail.com> | 2016-08-11 21:42:56 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2016-08-11 21:46:06 +0200 |
commit | b5314333dee195a53f3dd84c7394fd3c3ee82bb4 (patch) | |
tree | b3eb247dff1ed9523a416f98eeb526dfb1f88aa4 /doc | |
parent | 0ed5c3ce81811dcd93f21cdd1204d4c68bca9654 (diff) | |
download | ffmpeg-b5314333dee195a53f3dd84c7394fd3c3ee82bb4.tar.gz |
avfilter/af_adelay: make it possible to delay channels by exact number of samples
Diffstat (limited to 'doc')
-rw-r--r-- | doc/filters.texi | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 8cef0a0345..f43465d05d 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -513,6 +513,7 @@ 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. +If you want to delay exact number of samples, append 'S' to number. @end table @subsection Examples @@ -524,6 +525,13 @@ the second channel (and any other channels that may be present) unchanged. @example adelay=1500|0|500 @end example + +@item +Delay second channel by 500 samples, the third channel by 700 samples and leave +the first channel (and any other channels that may be present) unchanged. +@example +adelay=0|500S|700S +@end example @end itemize @section aecho |