
Originally Posted by
Guy007
I have added the following at the rules at the bottom.
=OPPO PLAYER
[SimpleArtist]
It restarted Asset, but unfortunately its done more to the information than expected. It has removed the 'artist' info, but is now showing the [artist] after the track name, and is now also showing the track number, where before it wasn't. This is showing in albums too. So it might take some edits to get it where I want it to be.
The good news is that the changes were reflected, because it could have been that the Oppo was reading the information from the file itself.
The bad news is that the implementation of [SimpleArtist] isn't doing what I think it is supposed to do.
It was implemented to address a problem with another control point that was picking the first artist tag it encountered rather than the first non-AlbumArtist tag (when displaying track listing).
I had asked to simply remove the AlbumArtist tag, but it looks like it's doing something completely different, which is what you're seeing on the Oppo.
These are the tags sent through without the [SimpleArtist] change.
Code:
<dc:title>Cold Heart</dc:title>
<dc:creator>Elton John; Dua Lipa</dc:creator>
<dc:date>2021-01-01</dc:date>
<upnp:artist role="AlbumArtist">Elton John</upnp:artist>
<upnp:artist>Elton John; Dua Lipa</upnp:artist>
<upnp:album>The Lockdown Sessions</upnp:album>
After the [SimpleArtist] change.
Code:
<dc:title> 1 Elton John - Cold Heart</dc:title>
<dc:creator>Elton John; Dua Lipa</dc:creator>
<dc:date>2021-01-01</dc:date>
<upnp:album>The Lockdown Sessions</upnp:album>
Instead of simply removing "<upnp:artist role="AlbumArtist">Elton John</upnp:artist>" it has removed both artist tags and has modified the <dc:title>.
@PeterP,
Would it be possible to modify [SimpleArtist] to have it just remove the AlbumArtist tag, as at the moment I don't think it's working as described ("[SimpleArtist] to not supply composer, conductor or album artist (only artist) for track details to player")?