![]() |
|
DisplayFormat, Help Wanted - Printable Version +- MinimServer Forum (https://forum.minimserver.com) +-- Forum: MinimServer (/forumdisplay.php?fid=1) +--- Forum: Support (/forumdisplay.php?fid=4) +--- Thread: DisplayFormat, Help Wanted (/showthread.php?tid=7816) |
DisplayFormat, Help Wanted - MusikBaum - 21-07-2026 12:59 My attempts fail. I currently have the following 'Album.displayFormat={$album%$date$#AudioData% [%]% • }' Display: Album [Date • Quality]. The album time should now be displayed with: Album [Album time • Date • Quality] RE: DisplayFormat, Help Wanted - simoncn - 21-07-2026 14:30 What do you mean by "album time"? Is this the total playing time of the album? Do you have a tag with this information? RE: DisplayFormat, Help Wanted - MusikBaum - 21-07-2026 16:10 (21-07-2026 14:30)simoncn Wrote: What do you mean by "album time"? Is this the total playing time of the album? Do you have a tag with this information? Yes, I have. RE: DisplayFormat, Help Wanted - simoncn - 21-07-2026 16:38 This should work: Album.displayFormat={$album^$albumtime$date$#AudioQuality^ [^]^ • } RE: DisplayFormat, Help Wanted - MusikBaum - 21-07-2026 17:25 (21-07-2026 16:38)simoncn Wrote: This should work: Thanks, but: Media server status for Audio: Error Incorrect tag name 'albumtotal' in option 'Album.displayFormat' in property 'tagFormat' The Tagdefinition: TagFormat definition: RE: DisplayFormat, Help Wanted - simoncn - 21-07-2026 19:04 You are getting this error because you haven't added albumtotal to the list of tags in the itemTags property. All tags used in tagFormat need to be in either the indexTags or itemTags list. RE: DisplayFormat, Help Wanted - MusikBaum - 21-07-2026 19:25 (21-07-2026 19:04)simoncn Wrote: You are getting this error because you haven't added albumtotal to the list of tags in the itemTags property. All tags used in tagFormat need to be in either the indexTags or itemTags list. OK. Thanks |