Commit 21f6ff38 authored by Stefano Sabatini's avatar Stefano Sabatini

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

Simplify.
parent 57618d80
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment