Guest - Testers are needed for the reworked CDateTime core component. See... https://forum.kodi.tv/showthread.php?tid=378981 (September 29) x
Create a playlist of movies without rating
#1
I did this once so I know it's possible, but I don't remember and can't get it to work.

xml:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="movies">
    <name>Queue</name>
    <match>all</match>
    <rule field="userrating" operator="false">
    </rule>
    <order direction="ascending">sorttitle</order>
</smartplaylist>

Something like that. But working...
Reply
#2
I got it. Its:

xml:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="movies">
    <name>Queue</name>
    <match>all</match>
    <rule field="userrating" operator="doesnotcontain">
        <value>1</value>
    </rule>
    <rule field="userrating" operator="doesnotcontain">
        <value>2</value>
    </rule>
    <rule field="userrating" operator="doesnotcontain">
        <value>3</value>
    </rule>
    <rule field="userrating" operator="doesnotcontain">
        <value>4</value>
    </rule>
     <rule field="userrating" operator="doesnotcontain">
        <value>5</value>
    </rule>
     <rule field="userrating" operator="doesnotcontain">
        <value>6</value>
    </rule>
     <rule field="userrating" operator="doesnotcontain">
        <value>7</value>
    </rule>
     <rule field="userrating" operator="doesnotcontain">
        <value>8</value>
    </rule>
     <rule field="userrating" operator="doesnotcontain">
        <value>9</value>
    </rule>
     <rule field="userrating" operator="doesnotcontain">
        <value>10</value>
    </rule>
</smartplaylist>
Reply
#3
(2019-09-05, 03:43)firewater Wrote: I got it. Its:

xml:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="movies">
    <name>Queue</name>
    <match>all</match>
    <rule field="userrating" operator="doesnotcontain">
        <value>1</value>
    </rule>
    <rule field="userrating" operator="doesnotcontain">
        <value>2</value>
    </rule>
    <rule field="userrating" operator="doesnotcontain">
        <value>3</value>
    </rule>
    <rule field="userrating" operator="doesnotcontain">
        <value>4</value>
    </rule>
     <rule field="userrating" operator="doesnotcontain">
        <value>5</value>
    </rule>
     <rule field="userrating" operator="doesnotcontain">
        <value>6</value>
    </rule>
     <rule field="userrating" operator="doesnotcontain">
        <value>7</value>
    </rule>
     <rule field="userrating" operator="doesnotcontain">
        <value>8</value>
    </rule>
     <rule field="userrating" operator="doesnotcontain">
        <value>9</value>
    </rule>
     <rule field="userrating" operator="doesnotcontain">
        <value>10</value>
    </rule>
</smartplaylist>
I think the issue is that a newly added movie has a "null" user rating but I don't know how to use that in a rule.

scott s.
.
Reply

Logout Mark Read Team Forum Stats Members Help
Create a playlist of movies without rating0