Kodi Community Forum

Full Version: Combining Playlist - any update to create easier combos?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Will there be an update anytime soon to make creating these easier? Creating multiple, ten one to combine is a a pain, and also, seems like hack.

Hopfully the ability to have a single PL using OR (not required) and AND (required) list such...

<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="movies">
<name>Family Movies Rated PG</name>
<match>all</match>
<rule field="genre" required="yes"operator="contains">Family</rule>
<rule field="mpaarating" operator="is" required="no">Rated PG</rule>
<rule field="mpaarating" operator="is" required="yes">Rated G</rule>
<order direction="ascending">title</order>
</smartplaylist>

... this would essentially make 'Family' and 'Rated G' the minimum requirement, and 'Rated PG' as optional... thus, including an AND and an OR.