2019-02-08, 07:26
Hello, I'm trying to use smart playlists to separate my movies into shorts (anything shorter than 40mins) and features (anything 40mins or longer), and I can't figure out how to combine AND and OR conditions. For example, I want to create a playlist of all unwatched features which would require the rule
and one of the following rules:
Unfortunately I only seem able to match=all or match=one of the rules. The closest hack I can come up with is using a rule with time greaterthan 39:59 and hoping nothing falls into the 1 second gap. If anyone has a better way of achieving this I'd be happy to hear.
xml:<rule field="playcount" operator="is">
<value>0</value>
</rule>
and one of the following rules:
orxml:<rule field="time" operator="greaterthan">
<value>40:00</value>
</rule>
xml:<rule field="time" operator="is">
<value>40:00</value>
</rule>
Unfortunately I only seem able to match=all or match=one of the rules. The closest hack I can come up with is using a rule with time greaterthan 39:59 and hoping nothing falls into the 1 second gap. If anyone has a better way of achieving this I'd be happy to hear.