SongKong Jaikoz

SongKong and Jaikoz Music Tagger Community Forum

Copy Release Date and Album to Sort Album

I have a load of Big Finish audio dramas that I don’t want to autotag because some do exist on musicbrainz and/or discogs but some don’t and I like the way I have them tagged now.

I would like to change or populate the Sort Album tag with the contents of Release Date followed by Album.

So if Release Date is “1999-07-01” and Album is “The Sirens of Time” then Sort Album should become “1999-07-01 The Sirens of Time”. Without changing anything else.

The files are a mixture of mp3 and flac

Is that something songkong can help me with?

Hi, yes you can do with Scripter task

Go to Preferences:Scripter and select Add
Create script with name and save it, the following script should work for you

if(year.length>0 && album.length>0)
{
   albumsort=year + ' ' + album
}

e.g

To run it select your folder then select the Scripter task and the Default profile

Select your created script from Scripts combo and select Add to Overall Script

Then select Start and it will porcess the files and create a report at end.

Then if you run again with Default profile that will now be set up with that script.

Perfect thank you very much.

1 Like