Music Renaming CD01/CD02 and featuring?

Support for Windows users
Post Reply
winecountrymedia
Posts: 26
Joined: 06 Sep 2023, 04:22

Music Renaming CD01/CD02 and featuring?

Post by winecountrymedia »

Ok so Im renaming music and I am 90% there.

Ive been reading for a couple hours on this forum and google and so far nothing is working.

So this is one of the files in question.

Code: Select all

Alan Jackson, Jimmy Buffett - The Essential Alan Jackson (2012) - 14 - It's Five O'Clock Somewhere
This is what Im using,

Format: Select all

{ n.split(',').first().trim() } - {album} ({y}) - {pi.pad(2)} - {t}
It's Gives me This,

Code: Select all

Alan Jackson - The Essential Alan Jackson (2012) - 14 - It's Five O'Clock Somewhere
What I want

Code: Select all

Alan Jackson - The Essential Alan Jackson (2012) (CD02) - 14 - It's Five O'Clock Somewhere (feat. Jimmy Buffett)
So I want to add the disc to the title not in its own folder and only if it has more than 1 disc, but Im ok with every title saying CD01, CD02 etc if need be. And add any additional artist to the Feat. section at the end and not in the main artist title. Sometimes theres also more than one additional artist Id like them to all be included in the featuring section.

Any advice you could provide would be amazing. Thanks in advance.
User avatar
rednoah
The Source
Posts: 24507
Joined: 16 Nov 2011, 08:59
Location: Taipei
Contact:

Re: Music Renaming CD01/CD02 and featuring?

Post by rednoah »

:?: What does the MediaInfo table say for the file at hand?



winecountrymedia wrote: 04 Apr 2026, 03:55 So I want to add the disc to the title not in its own folder and only if it has more than 1 disc, but Im ok with every title saying CD01, CD02 etc if need be. And add any additional artist to the Feat. section at the end and not in the main artist title. Sometimes theres also more than one additional artist Id like them to all be included in the featuring section.
Easy if that piece of information is readily available. Tricky if not. But if the information is there somehow (e.g. CD index being part of the album name, feat. being part of the artist, etc) then you can always match that information from there.

e.g.

Format: Select all

{ ' (CD' + medium.pad(2) + ')' }
:idea: Please read the FAQ and How to Request Help.
Post Reply