diff options
author | Nicolas George <george@nsup.org> | 2015-10-25 17:31:58 +0100 |
---|---|---|
committer | Nicolas George <george@nsup.org> | 2015-11-07 16:04:07 +0100 |
commit | 7037f9430b6223ec74080ecb2e58b25426f5f47d (patch) | |
tree | a20e25e9766c986085e4b11ef2aba2f6ec619077 /doc/filters.texi | |
parent | 432e27e6e7b653c2aafc05cd5f1bb74dc758a081 (diff) | |
download | ffmpeg-7037f9430b6223ec74080ecb2e58b25426f5f47d.tar.gz |
lavfi: add realtime filter.
Similar to the -re option in ffmpeg that only works for input files.
Can be used at any place in the filter graph.
Diffstat (limited to 'doc/filters.texi')
-rw-r--r-- | doc/filters.texi | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 15ea77a90d..a1147fff89 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -13068,6 +13068,22 @@ 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 realtime, arealtime + +Slow down filtering to match real time approximatively. + +These filters will pause the filtering for a variable amount of time to +match the output rate with the input timestamps. +They are similar to the @option{re} option to @code{ffmpeg}. + +They accept the following options: + +@table @option +@item limit +Time limit for the pauses. Any pause longer than that will be considered +a timestamp discontinuity and reset the timer. Default is 2 seconds. +@end table + @section select, aselect Select frames to pass in output. |