diff options
author | Stefano Sabatini <stefasab@gmail.com> | 2013-09-21 20:36:12 +0200 |
---|---|---|
committer | Stefano Sabatini <stefasab@gmail.com> | 2013-09-22 23:54:39 +0200 |
commit | 21f6ff3801639c99df3fb2454adcb433d07d425b (patch) | |
tree | 8073cfa138a7304986a4c3b901d1628595a81eb9 /doc | |
parent | 57618d80af251f9194b38cfd1e647d335fe2aba4 (diff) | |
download | ffmpeg-21f6ff3801639c99df3fb2454adcb433d07d425b.tar.gz |
doc/filters: use between() function in select examples
Simplify.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/filters.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/filters.texi b/doc/filters.texi index 4a05242621..eaf46cf99f 100644 --- a/doc/filters.texi +++ b/doc/filters.texi @@ -9181,13 +9181,13 @@ select='not(mod(n\,100))' @item Select only frames contained in the 10-20 time interval: @example -select='gte(t\,10)*lte(t\,20)' +select=between(t\,10\,20) @end example @item Select only I frames contained in the 10-20 time interval: @example -select='gte(t\,10)*lte(t\,20)*eq(pict_type\,I)' +select=between(t\,10\,20)*eq(pict_type\,I) @end example @item |