Removing Featured Artists

Any questions? Need some help?
Post Reply
Arsia
Posts: 18
Joined: 05 Oct 2018, 02:08

Removing Featured Artists

Post 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.
User avatar
rednoah
The Source
Posts: 22923
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Removing Featured Artists

Post 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?
:idea: Please read the FAQ and How to Request Help.
kim
Power User
Posts: 1251
Joined: 15 May 2014, 16:17

Re: Removing Featured Artists

Post by kim »

Code: Select all

music/{artist.before('feat.')}/{album+'/'}{media.TrackPosition.pad(2)} - {t}
Arsia
Posts: 18
Joined: 05 Oct 2018, 02:08

Re: Removing Featured Artists

Post by Arsia »

Thank you!!
Post Reply