SongKong Jaikoz

SongKong and Jaikoz Music Tagger Community Forum

Renaming to Artist-Title-Album

Hello,
Sorry fo the newbie question, but java is a little bit like Greek to me.
I would like to run SongKong in a way that I had the files renamed to Artist-Title-Album. I don�t want the track number and I want all of the files to be moved to a root folder, let�s say “MyMusic”. All of the songs inside sub folders should be moved to that root folder. I don�t like too many folders. I want just one folder will all my songs inside it. Is it too hard to be done? If not, could someone post the code here?

Example:
AC-DC - Hells Bells - Back In Black

Thanks,
Ademar

Hi, yes we nearly have a mask for that

Go to File Naming tab
Select AlbumArtistorArtist - Album - Track - Title from the Filename masks list
Select Edit next to Filename masks
Change Mask from

ifnotempty2(albumartist,artist,' - ')
+ ifnotempty(album,' - ')
+ ifmultidisc(ifnotempty(pad(discno,2),' - '))
+ ifnotempty(pad(trackno,2),' - ')
+ title

to

ifnotempty2(albumartist,artist,' - ')
+ ifmultidisc(ifnotempty(pad(discno,2),' - '))
+ ifnotempty(pad(trackno,2),' - ')
+ title

(You just delete the second line)
Select Ok
Set Rename Mask to AlbumArtistorArtist - Album - Track - Title
Set Compilation Rename Mask to AlbumArtistorArtist - Album - Track - Title

thats it, done :slight_smile: