v17 Multiple movie libraries
#16
Been struggling for a while.
Probably it's just something small I forgot or did not do correctly.
But atm I'm clueless.

Thanks for your help though. Appreciated.
Reply
#17
@TRaSH,

Sorry to reply this way but I cannot send PM's.
I'm not allowed to send PM's.

Jazeker/Indeed I'm Dutch as well. Smile
Reply
#18
Any one that can help me out?
Reply
#19
I'll show you how i've done it,
This is my main movies playlist i use after removing the main one that show everything added to the library.
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="movies">
    <name>MOVIES</name>
    <match>all</match>
    <rule field="path" operator="doesnotcontain">
        <value>nfs://192.168.2.200/Kids/</value>
    </rule>
    <order direction="ascending">sorttitle</order>
</smartplaylist>

This is my entry i use for the Kids section

Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="movies">
    <name>CARTOONS</name>
    <match>all</match>
    <rule field="path" operator="contains">
        <value>nfs://192.168.2.200/Kids/</value>
    </rule>
    <order direction="ascending">sorttitle</order>
</smartplaylist>

Latest added unseen movies

Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="movies">
    <name>UnSeen-Movies</name>
    <match>all</match>
    <rule field="path" operator="doesnotcontain">
        <value>nfs://192.168.2.200/Kimberley/</value>
    </rule>
    <rule field="playcount" operator="lessthan">
        <value>1</value>
    </rule>
    <order direction="descending">dateadded</order>
</smartplaylist>

latest unseen kids movies

Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="movies">
    <name>UnSeen-Cartoon</name>
    <match>all</match>
    <rule field="path" operator="doesnotcontain">
        <value>nfs://192.168.2.200/Movies/</value>
    </rule>
    <rule field="playcount" operator="lessthan">
        <value>1</value>
    </rule>
    <order direction="descending">dateadded</order>
</smartplaylist>
LibreElec Kodi | Aeon MQ ?
Reply
#20
Thanks!
I'll have a look when I'm behind the kodi machine.
Cheers
Reply
#21
@TRaSH

Thanks a bunch for your playlist XML's.
I finally managed to get it to work with your posted config.

Super bedankt!
Reply
#22
Np,
I also have them for sets

Verstuurd vanaf mijn GT-I9505 met Tapatalk
LibreElec Kodi | Aeon MQ ?
Reply
#23
Cool!
If you could post them as well. That would be nice. Big Grin
Reply
#24
Will do when I get home from work this evening.

Verstuurd vanaf mijn GT-I9505 met Tapatalk
LibreElec Kodi | Aeon MQ ?
Reply
#25
Coolio!
Reply
#26
Movie-Sets

Code:
<?xml version='1.0' encoding='UTF-8'?>
<node order="13" type="filter" visible="Library.HasContent(MovieSets)">
    <label>sets-movies</label>
    <icon>DefaultSets.png</icon>
    <content>movies</content>
    <group>sets</group>
    <rule field="path" operator="doesnotcontain">nfs://192.168.2.200/Kids/</rule>
</node>

Cartoon/Kids Set

Code:
<?xml version='1.0' encoding='UTF-8'?>
<node order="14" type="filter" visible="Library.HasContent(MovieSets)">
    <label>sets-cartoons</label>
    <icon>DefaultSets.png</icon>
    <content>movies</content>
    <group>sets</group>
    <rule field="path" operator="contains">nfs://192.168.2.200/Kids/</rule>
</node>

BTW this are nodes,
But should work with a playlist also
LibreElec Kodi | Aeon MQ ?
Reply
#27
Thanks!!
Reply
#28
I'm using the 'Horizon' Skin which doesn't appear to support the smart playlists you reference.  Is there any other method where this filtering could be achieved?
Reply
#29
Custom Home Items might be what you are looking for... https://kodi.wiki/view/Custom_home_items
My Signature
Links to : Official:Forum rules (wiki) | Official:Forum rules/Banned add-ons (wiki) | Debug Log (wiki)
Links to : HOW-TO:Create Music Library (wiki) | HOW-TO:Create_Video_Library (wiki)  ||  Artwork (wiki) | Basic controls (wiki) | Import-export library (wiki) | Movie sets (wiki) | Movie universe (wiki) | NFO files (wiki) | Quick start guide (wiki)
Reply
#30
(2018-06-18, 12:13)benfolkman Wrote: I'm using the 'Horizon' Skin which doesn't appear to support the smart playlists you reference.  Is there any other method where this filtering could be achieved?
Horizon uses script.skinshortcuts, so it supports custom menus.
Reply

Logout Mark Read Team Forum Stats Members Help
Multiple movie libraries1