|
Post by GoneMAD on Oct 24, 2022 9:39:22 GMT -5
in the custom metadata ui.
from most view's toolbar -> customize -> displayed metadata
|
|
|
Post by sirius on Oct 25, 2022 16:43:24 GMT -5
Thanks, thought that might be it. Anyway, for some reason the track number (%tn%) is not displaying correctly and is shown as the disc number (%dn%) instead. Any ideas what might be going wrong?
|
|
|
Post by GoneMAD on Oct 25, 2022 18:10:22 GMT -5
Thanks, thought that might be it. Anyway, for some reason the track number (%tn%) is not displaying correctly and is shown as the disc number (%dn%) instead. Any ideas what might be going wrong? what view / ui? %tn% works fine for me. Also double checked the code and it returns the trackNo throughout the entire code base, so there is no way its reading in the disc number
|
|
|
Post by MotleyGord on Oct 25, 2022 21:24:19 GMT -5
Thanks, thought that might be it. Anyway, for some reason the track number (%tn%) is not displaying correctly and is shown as the disc number (%dn%) instead. Any ideas what might be going wrong? I use track number in several custom views without any issues. Is there a chance you have them swapped in your file?
|
|
|
Post by sirius on Oct 26, 2022 8:21:26 GMT -5
I was using the first option in the Minimalistic list i.e. TrackNo. (%tn%) Trackname (%tr%) Duration (%du%). However, after some fiddling about and checking Track and Disc numbers using the Tag Editor, weirdly it seems to be working ok now. No idea why though.
|
|
|
Post by sirius on Oct 26, 2022 11:01:52 GMT -5
Another query - is there anyway to insert double quote (") characters e.g. around the track name?
|
|
|
Post by MotleyGord on Oct 26, 2022 11:54:20 GMT -5
Another query - is there anyway to insert double quote (") characters e.g. around the track name? I don't think this is currently possible, as the (") is a reserved character within the json files. There has been some discussion about adding function to use something like $char(xx) to insert specific items like commas and other reserved characters, but this has yet to be implemented. I would assume if/when it does this would work in this case as well.
|
|
|
Post by GoneMAD on Oct 26, 2022 17:20:21 GMT -5
|
|
|
Post by injainja on Feb 12, 2023 8:10:00 GMT -5
Hi guys, %co% to show the comment Tag doesn't work for me. When I am in Album view and open an album to see the listing of the songs, this tag is not displayed. Tried %cp% instead and this shows the artist as expected.
|
|
|
Post by injainja on Feb 12, 2023 13:17:15 GMT -5
Is there any way to put %tr% and %du% into one Line, BUT %tr% left and %du% right? Any markup example would be NICE.
|
|
|
Post by MotleyGord on Feb 12, 2023 19:36:47 GMT -5
Hi guys, %co% to show the comment Tag doesn't work for me. When I am in Album view and open an album to see the listing of the songs, this tag is not displayed. Tried %cp% instead and this shows the artist as expected. From the first page, comments can only be used in the Now Playing, Playlist, and AudioFile lists. Yuo can use them in the Album browser. COMMENT = %co% - (Now Playing, Playlist, AudioFile)
|
|
|
Post by MotleyGord on Feb 12, 2023 19:39:41 GMT -5
Is there any way to put %tr% and %du% into one Line, BUT %tr% left and %du% right? Any markup example would be NICE. There is info here on the first page of this thread regarding splits on a single line.
|
|
|
Post by goldenightmc on Apr 21, 2023 4:46:36 GMT -5
Hello, I am coming from this Reddit post, and the question still remains, how do I change the way the artist tag is being displayed from the default: artist,artist,artist,...to the format the tag is literally presented in the metadata, in my example it would be: artist; artist; artist; ...I see no information about that in the main post so I would need help from an expert. Thanks in advance
|
|
|
Post by MotleyGord on Apr 21, 2023 8:45:23 GMT -5
Hello, I am coming from this Reddit post, and the question still remains, how do I change the way the artist tag is being displayed from the default: artist,artist,artist,...to the format the tag is literally presented in the metadata, in my example it would be: artist; artist; artist; ...I see no information about that in the main post so I would need help from an expert. Thanks in advance
The semicolon is a separator character for multiple artists. GMMP handles it by placing each Artist, with a comma between them. You can try using $replace(%ar%,”, “,”; “) to put it back the way you want to see it. But the consequence would be that all sequences with a comma would end up with a semicolon. Not sure you would want this.
|
|
|
Post by GoneMAD on Apr 21, 2023 10:46:14 GMT -5
Hello, I am coming from this Reddit post, and the question still remains, how do I change the way the artist tag is being displayed from the default: artist,artist,artist,...to the format the tag is literally presented in the metadata, in my example it would be: artist; artist; artist; ...I see no information about that in the main post so I would need help from an expert. Thanks in advance
The semicolon is a separator character for multiple artists. GMMP handles it by placing each Artist, with a comma between them. You can try using $replace(%ar%,”, “,”; “) to put it back the way you want to see it. But the consequence would be that all sequences with a comma would end up with a semicolon. Not sure you would want this. $replace(%ar%,%comma%,;%space%) whitespace gets trimmed and commas are used to separate the params, so thats why i made the variables for them. This request is common enough i'll update the OP to give that as an example
|
|