Kodi Community Forum
Playlist that excludes movies in movie sets? - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Discussions (https://forum.kodi.tv/forumdisplay.php?fid=222)
+--- Forum: Kodi related discussions (https://forum.kodi.tv/forumdisplay.php?fid=6)
+--- Thread: Playlist that excludes movies in movie sets? (/showthread.php?tid=357721)



Playlist that excludes movies in movie sets? - montymaverick - 2020-10-15

Kinda a funny one, but I have a separate list for movies that are in sets...now I'm trying to create a list with the rest of the movies.

Does anyone know how to exclude movies contained in sets from a list?


RE: Playlist that excludes movies in movie sets? - Karellen - 2020-10-15

Easy...

xml:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="movies">
<name>No Sets</name>
<match>all</match>
<rule field="set" operator="doesnotcontain">
<value>Collection</value>
</rule>
<order direction="ascending">lastplayed</order>
</smartplaylist>



RE: Playlist that excludes movies in movie sets? - montymaverick - 2020-10-16

(2020-10-15, 09:25)Karellen Wrote: Easy...

xml:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="movies">
<name>No Sets</name>
<match>all</match>
<rule field="set" operator="doesnotcontain">
<value>Collection</value>
</rule>
<order direction="ascending">lastplayed</order>
</smartplaylist>
Maybe for you easy. ;-) Thanks so much! This was the final smartlist to complete my collection.