2016-01-22, 11:47
This is a thread dedicated to showing off examples of nodes that you have created for Kodi.
A node is basically a filtered library. So for example only show Kids Movies, or browse music by composer or a particular year.
Nodes work for both Video and Audio now. Any smart playlist can be turned into a node. They use a very similar xml format.
http://kodi.wiki/view/Video_nodes
http://kodi.wiki/view/Audio_nodes
To test out these nodes, you will need to create an XML text file, and copy it to your userdata/library folder.
Top IMDB 250 video node
Notes: Simply put all your IMDB movies in a single folder called for example C:\Movies\IMDB Top250
Electronic Music audio only
Notes: As you can see this is just a very simple Genre node. Don't forget you can add as many rules as you like to filter it more.
Those are just 2 examples, please post your own below.
A node is basically a filtered library. So for example only show Kids Movies, or browse music by composer or a particular year.
Nodes work for both Video and Audio now. Any smart playlist can be turned into a node. They use a very similar xml format.
http://kodi.wiki/view/Video_nodes
http://kodi.wiki/view/Audio_nodes
To test out these nodes, you will need to create an XML text file, and copy it to your userdata/library folder.
Top IMDB 250 video node
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<node order="1" type="filter">
<label>IMDB Top 250</label>
<content>movies</content>
<match>all</match>
<icon>IMDB.png</icon>
<limit>250</limit>
<rule field="path" operator="contains"><value>Top250</value></rule>
</node>
Electronic Music audio only
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<node order="10" type="filter">
<label>Genre Electronic</label>
<content>artists</content>
<match>all</match>
<rule field="genre" operator="is">
<value>Electronic</value>
</rule>
</node>
Those are just 2 examples, please post your own below.