2019-04-14, 01:22
Hi, I have "Show Movie Sets" option enabled for entire movie library, but for some video nodes, I want movies in there are not grouped together in movie set. Is this possible?
(2019-04-15, 15:27)DaVu Wrote: The "Show movie sets" is a global setting. It might be possible to do that by modifying the skin. But I´m not sure about that.Thanks. I think skin just lists all ListItems returned from Kodi, they can't control what to return from Kodi. Couldn't find a skin which provides this feature. Is it possible to add this feature to Kodi, like adding an attribute to video node file to control this behavior?
(2019-04-17, 06:08)xodi Wrote:(2019-04-15, 15:27)DaVu Wrote: The "Show movie sets" is a global setting. It might be possible to do that by modifying the skin. But I´m not sure about that.Thanks. I think skin just lists all ListItems returned from Kodi, they can't control what to return from Kodi. Couldn't find a skin which provides this feature. Is it possible to add this feature to Kodi, like adding an attribute to video node file to control this behavior?
(2019-04-18, 02:01)scott967 Wrote: Certainly there is a default video node of movie sets. I don't know if other custom nodes could be created with filter rules if you don't want sets for all movies.
scott s.
.
xml:<?xml version='1.0' encoding='UTF-8'?>
<node order="3" type="filter">
<name>a</name>
<content>tvshows</content>
<match>one</match>
<rule field="title" operator="startswith">
<value>a</value>
</rule>
<rule field="title" operator="startswith">
<value>the a</value>
</rule>
</node>
(2019-04-18, 05:16)the_other_guy Wrote: you can even make smart playlists and convert to a node
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="movies">
<name>Adventure</name>
<match>all</match>
<rule field="genre" operator="is">
<value>Adventure</value>
</rule>
<order direction="ascending">sorttitle</order>
</smartplaylist>
xml:<?xml version='1.0' encoding='UTF-8'?>
<node order="3" type="filter">
<name>a</name>
<content>tvshows</content>
<match>one</match>
<rule field="title" operator="startswith">
<value>a</value>
</rule>
<rule field="title" operator="startswith">
<value>the a</value>
</rule>
</node>
by changing <smartplaylist type="movies"> to <node order="3" type="filter"> and </smartplaylist> to </node>
xml:<?xml version='1.0' encoding='UTF-8'?>
<node type="filter">
<label>test</label>
<content>movies</content>
<rule field="mpaarating" operator="is">
<value>rated g</value>
</rule>
<group>sets</group>
</node>
(2019-06-25, 09:28)the_other_guy Wrote: this can be done with library node editorAhh thank you. I didn't know I could set Group By to None instead of Default in playlists to disable Movie Sets in certain playlist. But I guess I still don't know what's the difference between library nodes and smart playlists? Right now I just customize my Aeon Nox main Menu to include a "Family" menu which just points to a smart playlist with the filters (genres, ratings) I need. Should I be using Node editor instead?
you could start with mpaa rating
add content movies
xml:<?xml version='1.0' encoding='UTF-8'?>
<node type="filter">
<label>test</label>
<content>movies</content>
<rule field="mpaarating" operator="is">
<value>rated g</value>
</rule>
<group>sets</group>
</node>