MinimServer Forum
COMPOSER tagging and viewing - Printable Version

+- MinimServer Forum (https://forum.minimserver.com)
+-- Forum: MinimServer (/forumdisplay.php?fid=1)
+--- Forum: Music Tagging (/forumdisplay.php?fid=9)
+--- Thread: COMPOSER tagging and viewing (/showthread.php?tid=5780)

Pages: 1 2


RE: COMPOSER tagging and viewing - simbun - 18-09-2020 22:49

Assuming that part of the question is about how to only show 'HD' in the album name and not all the other values from the tags (be it Comment or #AudioQuality ) e.g. Dark Side of the Moon CD

The only way I know to achieve this kind of functionality would be via tagUpdate.
What you'd need to do is to create a new tag based on the value of HD in the Comment/#AudioQuality tag, something like:

Code:
@COMMENT=HD
+HDCONTENT=HD

Then apply your album tagFormat
Album.displayFormat={$album^$HDCONTENT^ ^}


RE: COMPOSER tagging and viewing - Donuk - 19-09-2020 15:45

Thanks to both Stefano and Simbun for your answers.
I think I understand them both except Simbun's
"What you'd need to do is to create a new tag based on the value of HD in the Comment/#AudioQuality tag, something like:
Code:
@COMMENT=HD
+HDCONTENT=HD"
I can understand this code, but I can't see where I create a new tag, and should the Code be all in one line? In other words, where do I stick this.??
Sorry to be stupid. Any other forum and I would be dead by now.
Donuk


RE: COMPOSER tagging and viewing - stefano_mbp - 19-09-2020 15:53

(19-09-2020 15:45)Donuk Wrote:  Thanks to both Stefano and Simbun for your answers.
I think I understand them both except Simbun's
"What you'd need to do is to create a new tag based on the value of HD in the Comment/#AudioQuality tag, something like:
Code:
@COMMENT=HD
+HDCONTENT=HD"
I can understand this code, but I can't see where I create a new tag, and should the Code be all in one line? In other words, where do I stick this.??
Sorry to be stupid. Any other forum and I would be dead by now.
Donuk

You need to use the tagUpdate file to achieve this result
https://minimserver.com/ug-other.html#Tag%20update


RE: COMPOSER tagging and viewing - Donuk - 19-09-2020 22:11

thank you Stefano. It is clear to me now!
Donuk