Page 1 of 1

Removing Featured Artists

Posted: 07 Mar 2019, 19:55
by Arsia
I'm currently using

Code: Select all

musicFormat="music/{artist}/{album+'/'}{pi.pad(2)} - {t}" 
with amc script. I'm noticing it includes featured artists in the initial {artist}. What can I do to remove that? It's resulting in multiple directories from the same artist for the same album. Here's an example

Image

Thanks so much! One of the best purchases I made in 2018.

Re: Removing Featured Artists

Posted: 07 Mar 2019, 21:29
by rednoah
What do the ID3 tags say for these particular files?
viewtopic.php?f=5&t=4285

Is there a tag that contains only the artist value we want?

Re: Removing Featured Artists

Posted: 08 Mar 2019, 02:01
by kim

Code: Select all

music/{artist.before('feat.')}/{album+'/'}{media.TrackPosition.pad(2)} - {t}

Re: Removing Featured Artists

Posted: 09 Mar 2019, 15:02
by Arsia
Thank you!!