[FFmpeg-cvslog] doc/filters: use between() function in select examples

Stefano Sabatini git at videolan.org
Sun Sep 22 23:56:48 CEST 2013


ffmpeg | branch: master | Stefano Sabatini <stefasab at gmail.com> | Sat Sep 21 20:36:12 2013 +0200| [21f6ff3801639c99df3fb2454adcb433d07d425b] | committer: Stefano Sabatini

doc/filters: use between() function in select examples

Simplify.

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=21f6ff3801639c99df3fb2454adcb433d07d425b
---

 doc/filters.texi |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/doc/filters.texi b/doc/filters.texi
index 4a05242..eaf46cf 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



More information about the ffmpeg-cvslog mailing list