Page 1 of 1

how to search property length

Posted: 28 Dec 2018 10:24
by yusef88

Code: Select all

Length: >= 01:00
I used to use this pattern but it no longer works

Re: how to search property length

Posted: 28 Dec 2018 11:50
by jupe
It doesn't work because you are missing the first 2 00's in your pattern. ie 00:01:00, anyway for future reference these should all work:

Code: Select all

Length: >= 00:01:00

Code: Select all

prop:*length: >= 00:01:00
or maybe

Code: Select all

prop:#27: >= 00:01:00
or replace 00:01:00 in the above examples with 01:00:00 if required.

Re: how to search property length

Posted: 28 Dec 2018 12:10
by yusef88
Thank you so much :tup: