INTERACT FORUM

Windows => Plug-in Development => Topic started by: lohma004 on July 24, 2018, 11:08:48 am

Title: Track Info Plugin - "Album Artist"
Post by: lohma004 on July 24, 2018, 11:08:48 am
Hey, I'm trying to create (or modify) a display track info plugin that will show the tag for "Album Artist." Can't seem to figure out how to do this as this seems not to be a regular ID3 tag. Any ideas?
Title: Re: Track Info Plugin - "Album Artist"
Post by: lohma004 on August 13, 2018, 12:22:26 pm

Still looking for some help on this.
If there is no ID3 tag for "Album Artist," how do I work around this?
Thanks.
Title: Re: Track Info Plugin - "Album Artist"
Post by: JimH on August 14, 2018, 12:27:30 am
Album Artist is a tag.
Title: Re: Track Info Plugin - "Album Artist"
Post by: swiv3d on September 03, 2018, 06:13:55 pm
Album Artist is an ID3v2.3 called TPE2
Title: Re: Track Info Plugin - "Album Artist"
Post by: lohma004 on September 28, 2018, 05:48:37 pm
Need some help modifying a Track Info Plugin:
For instance:I'm trying to modify the "Simple" track info plugin.

Currently it lists the "Title" on the first line
The "Artist" on the second line.
I am trying to add another line that will pull up the "Album Artist" tag.
I added a line that reads: <span class="albumartist">TRACKINFO_INSERT_ALBUMARTIST</span>
When I try to do this, it puts in the name of the album and then the word "Artist."  It does not pull up the tag for the "Album Artist"

Any thoughts?
Thanks.
Title: Re: Track Info Plugin - "Album Artist"
Post by: lohma004 on November 13, 2018, 11:32:43 am
Looking to add "Album Artist" to Track Info Plugin.

I added a line that reads: <span class="albumartist">TRACKINFO_INSERT_ALBUMARTIST</span>
When I try to do this, it puts in the name of the album and then the word "Artist."  It does not pull up the tag for the "Album Artist"
Title: Re: Track Info Plugin - "Album Artist"
Post by: lohma004 on January 14, 2019, 05:18:34 pm
Album Artist is an ID3v2.3 called TPE2

So I've tried a bunch of scripts with TPE2 for Album Artist, but I'm still having no luck.

Tried: <span class="title">TRACKINFO_INSERT_TITLE</span>
<span class="TPE2">TRACKINFO_INSERT_ALBUMARTIST</span>

If I change out TPE2 and Album Artist (I've used them in a number of combinations) it just prints that text on the screen. 

Help?
Thanks.
Title: Re: Track Info Plugin - "Album Artist"
Post by: krmasson on January 23, 2019, 02:56:40 pm
Stupid suggestion, have you tried something like
 <span class="albumartist">"TRACKINFO_INSERT_ALBUMARTIST"</span>
or
 <span class="albumartist">(TRACKINFO_INSERT_ALBUMARTIST)</span>
to try to keep Album and Artist together?

I have no idea of the context, do not know when the macro trackinfo... is expanded, so this could be a perfectly stupid idea. Just in case.
Title: Re: Track Info Plugin - "Album Artist"
Post by: EnglishTiger on October 26, 2020, 11:31:13 am
TrackInfo_Insert(Album Artist) should work