![]() |
|
Display RATING tag - Printable Version +- MinimServer Forum (https://forum.minimserver.com) +-- Forum: MinimServer (/forumdisplay.php?fid=1) +--- Forum: Music Tagging (/forumdisplay.php?fid=9) +--- Thread: Display RATING tag (/showthread.php?tid=5314) |
Display RATING tag - Bummer - 23-06-2019 15:06 Hi everybody, I'm using trackrating for my whole library which is managed by foobar2000 (about 50.000 flac-files). The tag is RATING and the value is set from 1 to 5. I would like to display (BubbleUPnP) the rating tag wherever a single track is listed, regardless which kind of presentation I have choosen. Please can you give me some support how to achieve this? Thanks Martin RE: Display RATING tag - simoncn - 23-06-2019 19:08 You can do the following: 1) Add Rating to itemTags (if it isn't already in indexTags) 2) Set the tagFormat property to Title.displayFormat={$title^$rating^ [^]} 3) Restart MinimServer This will display the rating (in brackets) after each track title. RE: Display RATING tag - Bummer - 24-06-2019 10:21 Hi Simon, thank you very much for your help! It works! One additional question: How to move the [RATING] at the end of the line? Example: Wes Montgomery A Day In The Life 06. Eleanor Rigby [RATING] (3:05) 06. Eleanor Rigby (3:05) ~~some space~~ [RATING] Is this possible? Sincerely Martin RE: Display RATING tag - Alandbush - 24-06-2019 13:03 You can do the following: 1) Add #AudioDuration to itemTags (if it isn't already in indexTags) 2) Set the tagFormat property to Title.displayFormat={$title^$#AudioDuration^ (^) ^$rating^ [^]} 3) Restart MinimServer This will display the tracks duration as you requested BUT I don’t think it will have any effect on the duration at the end of the title, which I suspect is controlled by the control point. RE: Display RATING tag - Bummer - 24-06-2019 13:56 @ Alandbush, thanks for your help. Your string leads to the following output: 06. Eleanor Rigby (3:05) [RATING] (3:05) Is it not possible to erase the right (3:05)? Martin RE: Display RATING tag - simoncn - 24-06-2019 16:39 To add some space before [rating], you can set tagFormat to something like: Code: Title.displayFormat={$title^$rating^ [^]}This puts 10 spaces before the [. RE: Display RATING tag - Bummer - 24-06-2019 17:03 Hi Simon, thank you once again. Now it looks quite pretty, as for rating value I have choosen stars, which has been explained some threads before. Nonetheless a different problem still remains which I will post in another thread. Martin RE: Display RATING tag - Alandbush - 24-06-2019 19:14 (24-06-2019 13:56)Bummer Wrote: @ Alandbush, As I thought, this duration instance is controlled by BubbleUPNP controller. You can remove this value by selecting - More - Settings - Library - Duration RE: Display RATING tag - mike963 - 01-08-2020 09:31 Hi Simon I am running the full version on Minimserver 2 on a Synology and I get an error when I use the tageformat you suggested earlier for TagFormat Title.displayFormat={$title^$rating^ [^]} It does not like the $rating Any advice ? RE: Display RATING tag - simoncn - 01-08-2020 10:52 You need to add Rating to itemTags or indexTags. |