SongKong Jaikoz

SongKong and Jaikoz Music Tagger Community Forum

Tutorial 24: Modifying Display at Album Level using Display Format

Previous
Next

MinimServers tagFormat option (on the advanced tab of MinimServers configuration) lets you change what is displayed when playing music using the displayFormat option. Essentially it lets you configure certain fields so that they display different data

For example we might like to add the conductor to the display of the group to display the conductor and then the group.

We can do this as follows:

indexValues:conductor
tagFormat:Group.displayFormat={$conductor$group}

Now we can see the conductor name is displayed as part of the group field.

But it would be nice if we could display it using the same ': ’ separator as we use on the album name. We can do that using this value instead.

tagFormat:Group.displayFormat={$conductor^^: $group}

This replaces the default ', ’ separator with ': ’ . (The ^^ indicate a prefix and suffix, we do not set them to anything so they are just left as an empty value).

The displayFormat option can be used for the following fields:

Album
Artist
Comment
Genre
Group
Label
Title

Previous
Next