
Originally Posted by
dvdr
Found one thing, that explains many of the missing albums: they all are mp3 tracks. I usually tag them with mp3tag, so I closely looked at the details of these files.
ALL the ones that were not displayed in the album artist\album tree had the tag ALBUMARTIST but not ALBUM ARTIST. When I added ALBUM ARTIST, they reappeared. I had never noticed that before, since in the big editor window of mp3tag, I saw a value for album artists, so I did not bother.
This only happened with mp3 files, on all my FLAC files, Asset UPnP did not have an issue with ALBUMARTIST - maybe indexing both tag values and just looking for either of both. Does Asset UPnP treat MP3-files differently?
It can be confusing to look at the friendly names given in products, it's always better to look at the source. I believe the standard Album Artist tag in ID3 (for MP3's) is TPE2 and the easiest way to check what tag you have populated is by opening the file in MusicBee and look at the Tag Inspector.
If you're on Linux you could use
Code:
hexdump -n700 -C 01.01.mp3
Which would give you something like this, and look for your album artist. In this example it's written to TPE2
Code:
00000130 00 67 00 6f 00 6e 00 73 00 00 00 54 50 45 32 00 |.g.o.n.s...TPE2.|
00000140 00 00 23 00 00 01 ff fe 49 00 6d 00 61 00 67 00 |..*.....I.m.a.g.|
00000150 69 00 6e 00 65 00 20 00 44 00 72 00 61 00 67 00 |i.n.e. .D.r.a.g.|
00000160 6f 00 6e 00 73 00 00 00 54 58 58 58 00 00 00 1d |o.n.s...
My guess is that if you use ALBUMARTIST for FLAC and TPE2 for MP3 then they should both appear.
I tend to use this as my bible for these things, although I'm almost exclusively using Vorbis with FLAC and OGG.