Kodi Community Forum
Create a playlist of movies without rating - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: General Support (https://forum.kodi.tv/forumdisplay.php?fid=111)
+---- Forum: OS independent / Other (https://forum.kodi.tv/forumdisplay.php?fid=228)
+---- Thread: Create a playlist of movies without rating (/showthread.php?tid=346957)



Create a playlist of movies without rating - firewater - 2019-09-05

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...


RE: Create a playlist of movies without rating - firewater - 2019-09-05

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>



RE: Create a playlist of movies without rating - scott967 - 2019-09-07

(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.
.