SongKong Jaikoz

SongKong and Jaikoz Music Tagger Community Forum

Help with mask editing

I’ve spent a lot of time trying to edit the masks and I’m not being successful at all! I’ve run "my versions) a few times and managed to mess things up. I’m not remotely a coder…Any chance you can create some scripts that I can plug in? Here’s what I’m looking to do…

AlbumArtist or Artist/Year - Album/Disc # (if multi) - Disc Name (if it exists)/Disc#-Track#-Title

For example - Bob Dylan/1985 - Biograph/Disc 1 - “The Early Years” /1-01 Lay Lady Lay

Additionally, for Compilations that ARE NOT by the same artist (ie Various Artists), I’m trying to do this -

Various Artists/2005 - 3 Decades of Rock/Disc 1 - “The 90’s”/1-01 Song Title

Thanks so much for any help you might be able to provide!!

You can create a new mask and use this for both

ifnotempty(albumartist,'/')
+ ifnotempty(year,' - ')
+ ifnotempty(album,'/')
+ 'Disc ' + discno
+ ifnotempty(discsubtitle,'')
+ '/'
+ ifnotempty(discno,'-')
+ ifnotempty(pad(trackno,2),' ')

because the AlbumArtist will be the artist you want for single artist releases and “Various Artist” for Various Artist releases, and as far as I can see no other differences are reuired by you.

However if did need to handle Various Artist compilations different to Single Artist Compilations and Single Artist non compilations for your compilation rename mask you could use the following logic for your compilation rename mask

if(albumartist.localeCompare("Various Artists")==0)
(
    #Put Various Artist Compilation mask here
)
else
(
    #Put Single artist Compilation mask here
)