Excluding compilations in album view?
#1
Hi,

Am probably overlooking something obvious, but how can I get kodi to just show standard "single artist" albums without showing "various artist" compilation albums?

I can go into the music library and click "compilations", which then displays just compilations. Is there a way to do the reverse and exclude compilations and show non compilations instead.
I've tried messing around with smart playlists as I have done for my video collection, but can't seem to find a rule that will work unless I choose mixed as the "type" but then every single song
is displayed seperately and not the album!

Thanks
Reply
#2
In v17 a folder type custom node will do what you want.
Something like:
Code:
<?xml version='1.0' encoding='UTF-8'?>
<node type="folder">
    <label>Albums (No Compilations)</label>
    <icon>DefaultMusicAlbums.png</icon>
    <path>musicdb://albums/?compilation=false</path>
</node>
or you can use the node editor addon to create this. See http://forum.kodi.tv/showthread.php?tid=222148 for discussion of custom nodes.

That will show all abums except those that are flagged as compilations. Albums with album artist(s) other than "various artists" can be compilations e.g anthologies, it all depends on how you have tagged them. See http://forum.kodi.tv/showthread.php?tid=290477 for discussion.
Reply
#3
Thanks Dave,

Copied your code to an .xml file in library/music folder and it worked like a charm!

Many thanks

Neil
Reply
#4
I also added this to the node example thread so it helps others.

http://forum.kodi.tv/showthread.php?tid=257378
Reply

Logout Mark Read Team Forum Stats Members Help
Excluding compilations in album view?0