@MovieFan.Plex
Why (in this case), does it even need to differentiate between a single and an album (at the artist view)? If I am listing all tracks, sorted by artist, why does it hijack the artist with “Various Artists”? It should say “Various Albums” when looking at the ALBUM view.
Something has to change.
Regarding the choice you mentioned: The likelihood of a user having a legitimate Electronic Single in their collection is much higher than of that track having tags for Artist
, Title
, and somehow magically NOT having Album
. The system is assuming that these tracks are missing album because they are improperly tagged (which is wrong, because, well, a massive amount of music has no album). https://en.wikipedia.org/wiki/List_of_best-selling_singles
It is actually very irrational for the system to make the assumptions that:
- Because album tag data isn’t there, it is missing and should be there
- That all songs have an album
As a developer myself, working with Api’s databases (yes sql), and large distributed systems, I know that the system must be deterministic as to what tags are nullable vs required.
For example, it is not possible to have a music piece without:
Title
Artist
Year
Length
For this above data, the system should assume that if it is not there, it should be, and that it is missing. Here I would expect something like “Various Artists” - if Artists is missing.
It is possible (and common) not to have:
Album
Album Artist
Track Number
Subtitle
Rating
Genre
Etc.
So, in these above cases, the system should be tolerant of missing data. For example, if Album
, Album Artist
, & Track Number
are all missing, well, maybe the PMS system should check to see if it’s in the gracenote database as a single or an album…
But honestly, all that is even unnecessary. The easy logic to get this working smoothly is in the UI:
If a track has no album, I can see categorization under “Various Albums” at the ALBUM view.
If a track has no artist, I can see categorization under “Various Artists” at the ARTISTS view.
If a track has no album, I can NOT see categorization under “Various Artists” at the ARTISTS view. It is easily possible to list all songs by artist, even with no album.