Posts: 20
Joined: Jan 2022
Reputation:
0
Thanks I'll take a look. As a work around as I have limited genres anyway it seems I can make individual genre nodes in a parent node and then create a widget displaying these nodes and its snappy as expected. But that seems an unsustainable fudge.
Posts: 20
Joined: Jan 2022
Reputation:
0
How does Edit Visibility work in the library node editor? Can you specify nodes to be hidden in a library view and still be linked to in other ways? What are the kind of things you can do with edit visibility?
Posts: 529
Joined: Mar 2022
Reputation:
32
Hi, can anybody post an example of a TV Episodes in progress node please?
Posts: 835
Joined: Apr 2013
Reputation:
46
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<node order="6" type="filter" visible="True">
<label>Incomplete</label>
<icon>DefaultInProgressShows.png</icon>
<content>episodes</content>
<match>all</match>
<rule field="inprogress" operator="true">
<value></value>
</rule>
<limit>50</limit>
<order direction="descending">lastplayed</order>
</node>
Posts: 1
Joined: Jan 2024
Reputation:
0
Hello all! Sorry if this is in the wrong location.
I have had Kodi up and running for years now, and the wife is filling up our media server with TV-Shows that are all based on a particular single 'pilot' show...i.e. Star Trek for instance.
I was wondering if there is a way to create a folder on the media server for just Star Trek based TV-Shows, and place all the spin-offs into that folder along with the episodes in their respective shows.
Example hard drive layout:
Mediaserver Drive -|
|- Star Trek-|
| |- TOS-|
| | |-Season 1 with episodes
| | |-Season 2 " "
| | |-Season 3 " "
| |
| |- TNG-|
| |-Season 1 " "
| |-Season 2 " "
|-Walking Dead-|
| |- Walking Dead-|
| | |-Season 1 " "
| | |-Season 2 " "
| |
| |- Fear the Walking Dead-|
| | |-Season 1 " "
| | |-Season 2 " "
Then when going to TV-Shows on the Kodi main menu, see the Parent folder 'Star Trek' & 'Walking Dead'. Selecting one of those shows the spin-off shows, select the spin-off, and see the seasons.
Is it possible to do? Thanks.
Posts: 17
Joined: May 2012
Reputation:
0
Hi,
trying to make a node with several movies universes, Like MCU, Godzilla, etc.
standard I have option movie set on (like it if the movie sets are shown in library view).
But when I go to a specific universe I would like to hav ethe movies show in the order I want them to be shown AND if more movies belong to a set it shouldn't be shown as a set.
When I use this:
<node type="filter">
<label>Marvel</label>
<content>movies</content>
<rule field="filename" operator="contains">
<value>MCU</value>
</rule>
<order direction="ascending">filename</order>
</node>
When I user this:
I get a list with the movies (no movie sets are shown, but it is sorted in alphabetal order and not sorted by filename, so I am losing my prefred order
<node type="filter">
<label>Marvel</label>
<content>movies</content>
<rule field="filename" operator="contains">
<value>MCU</value>
</rule>
<order direction="ascending">filename</order>
<group>none</group>
</node>
Anyone suggestions how to get it working: movie sets shown in library view, but when using a node, I want the list sorted based on the prefix I use in the filenames: PREFIX000-filename.mkv.
Posts: 17
Joined: May 2012
Reputation:
0
Hi,
thanks for the example. I tried it..., but also with your code I get moviesets (e.g. Captain America).
I also tried to use the smart playlist as part of the node, but also in that case: movie sets are shown. Although when using just the smartlist I don't get the moviesets and the movies are shown in preferred order.
So node is defined as (movies like Captain America are shown as sets):
<node type="filter">
<label>List</label>
<content>movies</content>
<rule field="playlist" operator="is">
<value>MCU Universe</value>
</rule>
</node>
Smartlist defined as (if I just use the smartlist directly everything is show the way I want is):
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="movies">
<name></name>
<match>all</match>
<rule field="filename" operator="contains">
<value>MCU</value>
</rule>
<group>none</group>
<order direction="ascending">file</order>
</smartplaylist>
(Probably an open door, but, if you test this, please be sure that the have movies that will be combined as moviesets in the library).