MinimServer Forum
Display Albums as [Album Name] [Artist] - Printable Version

+- MinimServer Forum (https://forum.minimserver.com)
+-- Forum: MinimServer (/forumdisplay.php?fid=1)
+--- Forum: Music Tagging (/forumdisplay.php?fid=9)
+--- Thread: Display Albums as [Album Name] [Artist] (/showthread.php?tid=732)



Display Albums as [Album Name] [Artist] - markhp - 16-08-2013 16:41

Under the [n] albums, how does one display the album name followed by the album artist?

Sorry if this is a bit of a dumb question!

Many thanks.


RE: Display Albums as [Album Name] [Artist] - simoncn - 16-08-2013 22:13

(16-08-2013 16:41)markhp Wrote:  Under the [n] albums, how does one display the album name followed by the album artist?

Sorry if this is a bit of a dumb question!

Many thanks.

Please post an example of exactly how you want this to look (including any punctuation), and I'll post the format string that you need to use.


RE: Display Albums as [Album Name] [Artist] - markhp - 17-08-2013 09:15

(16-08-2013 22:13)simoncn Wrote:  
(16-08-2013 16:41)markhp Wrote:  Under the [n] albums, how does one display the album name followed by the album artist?

Sorry if this is a bit of a dumb question!

Many thanks.

Please post an example of exactly how you want this to look (including any punctuation), and I'll post the format string that you need to use.

Sure, how about ALBUM - ALBUMARTIST

Many thanks


RE: Display Albums as [Album Name] [Artist] - winxi - 17-08-2013 10:32

(17-08-2013 09:15)markhp Wrote:  
(16-08-2013 22:13)simoncn Wrote:  Please post an example of exactly how you want this to look (including any punctuation), and I'll post the format string that you need to use.

Sure, how about ALBUM - ALBUMARTIST

Many thanks

You can do this by adding

Code:
Album.displayFormat={$album^^ - ^$albumartist}

to the tagFormat property. Please note that for this to work, you must have 'AlbumArtist' either in indexTags or in itemTags.


RE: Display Albums as [Album Name] [Artist] - simoncn - 17-08-2013 10:57

(17-08-2013 10:32)winxi Wrote:  You can do this by adding

Code:
Album.displayFormat={$album^^ - ^$albumartist}

to the tagFormat property. Please note that for this to work, you must have 'AlbumArtist' either in indexTags or in itemTags.

A slightly better option would be:

Album.displayFormat={$album^$albumartist^ - }

This uses the string ' - ' as a prefix for $albumartist instead of as a suffix for $album. This means that any albums that don't have an AlbumArtist tag will be displayed without appending a ' - ' string.


RE: Display Albums as [Album Name] [Artist] - markhp - 17-08-2013 17:10

(17-08-2013 10:57)simoncn Wrote:  
(17-08-2013 10:32)winxi Wrote:  You can do this by adding

Code:
Album.displayFormat={$album^^ - ^$albumartist}

to the tagFormat property. Please note that for this to work, you must have 'AlbumArtist' either in indexTags or in itemTags.

A slightly better option would be:

Album.displayFormat={$album^$albumartist^ - }

This uses the string ' - ' as a prefix for $albumartist instead of as a suffix for $album. This means that any albums that don't have an AlbumArtist tag will be displayed without appending a ' - ' string.

Excellent, many thanks again for your help.