1
0
mirror of https://github.com/FFmpeg/FFmpeg.git synced 2025-08-15 14:13:16 +02:00

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

Simplify.
This commit is contained in:
Stefano Sabatini
2013-09-21 20:36:12 +02:00
parent 57618d80af
commit 21f6ff3801

View File

@@ -9181,13 +9181,13 @@ select='not(mod(n\,100))'
@item @item
Select only frames contained in the 10-20 time interval: Select only frames contained in the 10-20 time interval:
@example @example
select='gte(t\,10)*lte(t\,20)' select=between(t\,10\,20)
@end example @end example
@item @item
Select only I frames contained in the 10-20 time interval: Select only I frames contained in the 10-20 time interval:
@example @example
select='gte(t\,10)*lte(t\,20)*eq(pict_type\,I)' select=between(t\,10\,20)*eq(pict_type\,I)
@end example @end example
@item @item