diff options
author | Paul B Mahol <onemda@gmail.com> | 2020-04-25 12:35:22 +0200 |
---|---|---|
committer | Paul B Mahol <onemda@gmail.com> | 2020-04-25 12:35:22 +0200 |
commit | b29b934e4fd3de69dc45a23bb779a22b2fecd194 (patch) | |
tree | d6030581c1fc1f5fecc47d9cdd84b5ba0a804114 /doc | |
parent | 6cfb33f976812a52bceba29b3db3bbdb84ab7c32 (diff) | |
download | ffmpeg-b29b934e4fd3de69dc45a23bb779a22b2fecd194.tar.gz |
avfilter/f_interleave: add duration option
Diffstat (limited to 'doc')
-rw-r--r-- | doc/filters.texi | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 80c33f5edb..71a6787289 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -23316,6 +23316,21 @@ These filters accept the following options: @table @option @item nb_inputs, n Set the number of different inputs, it is 2 by default. + +@item duration +How to determine the end-of-stream. + +@table @option +@item longest +The duration of the longest input. (default) + +@item shortest +The duration of the shortest input. + +@item first +The duration of the first input. +@end table + @end table @subsection Examples |