2024-02-16, 17:28
I can't seem to create a Smart Playlist to filter out episodes that are shorter than 35 minutes
It look to be an issue if you have more than 1 rule, even when I set Match All
This doesn't work
This does work
It look to be an issue if you have more than 1 rule, even when I set Match All
This doesn't work
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="episodes">
<name>Short TV Shows</name>
<match>all</match>
<rule field="playcount" operator="is">
<value>0</value>
</rule>
<rule field="time" operator="lessthan">
<value>35:00</value>
</rule>
</smartplaylist>
This does work
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="episodes">
<name>Short TV Shows</name>
<match>all</match>
<rule field="time" operator="lessthan">
<value>35:00</value>
</rule>
</smartplaylist>