2019-12-08, 14:07
Hi there...
I've got the following question:
I have 2 main music paths (/media/music & /media/audioplays) which are all in one DB. The library has multiple sources for those 2 paths (Reggae, Pop, Soundtrack as examples for Music & Comedy, Audiobooks, Podcasts as examples for Audioplays).
I'd like to split up those 2 main paths within Kodi for to not have Music cluttered with Audioplays and vice versa.
I created nodes like this:
Problem is, as this is a "filter" type, it creates a query on the DB which takes ages (multiple minutes) as it's a large DB (250MB).
Together with this, the above node results in duplicate artists with exactly the same albums underneath!?
I tried using folder type nodes, but don't know how to restrict them by path?!
Together with this, the standard nodes sometimes have or
Question: what's it about with these "visible" flags? Where and when to use them? Can't find any info on it.
So, what would your approach be to split the audio DB into 2 without creating everlasting queries?
I've got the following question:
I have 2 main music paths (/media/music & /media/audioplays) which are all in one DB. The library has multiple sources for those 2 paths (Reggae, Pop, Soundtrack as examples for Music & Comedy, Audiobooks, Podcasts as examples for Audioplays).
I'd like to split up those 2 main paths within Kodi for to not have Music cluttered with Audioplays and vice versa.
I created nodes like this:
Code:
<?xml version='1.0' encoding='UTF-8'?>
<node order="20" type="filter">
<label>Interpreten</label>
<icon>DefaultMusicArtists.png</icon>
<content>artists</content>
<rule field="path" operator="contains">
<value>audioplay</value>
</rule>
</node>
Problem is, as this is a "filter" type, it creates a query on the DB which takes ages (multiple minutes) as it's a large DB (250MB).
Together with this, the above node results in duplicate artists with exactly the same albums underneath!?
I tried using folder type nodes, but don't know how to restrict them by path?!
Together with this, the standard nodes sometimes have
Code:
visible="Library.HasContent(Music)"
Code:
visible="Library.HasContent(Compilations)"
So, what would your approach be to split the audio DB into 2 without creating everlasting queries?