-
Notifications
You must be signed in to change notification settings - Fork 295
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Display ALBUM_ARTIST in Album list view #652
Comments
Every album has a 'primary artist' which is what we display. The primary artist is just choosen from whatever we see as artist while creating the album entry. I wonder if it would make sense to use Album_artist in this case (and fall back to artist if not present) or to have an option in the media library settings to choose the behavior. |
What is the different meaning of 'primary artist' compared to ALBUM_ARTIST tag field? |
primary artist is an 'internal' concept of our database schema: |
Do we need media-db schema update to support this? |
Probably not: We join PRIMARY_ARTIST_ID with TABLE_CONTRIBUTORS, which holds artists, album artists and composers, so it doesn't really matter. However: there might be some side effects: queries operating on albums (eg: 'More from Artist' in the Albums tab) would suddenly link to album_artists which may not be listed in the artists tab. |
Regarding "Show more from": If this operation does not switch the tab and the result list contains at least the list entry from that the operation has been invoked, i would not be confused. |
Regarding the "primary artist" field: my recent change that is not merged yet (#721) makes that field always contain the "album artist" value which is also always populated form the "artist" field if not present in the file's tags. This may already have fixed this issue completely, let me know if you think this is the case or not. |
It sounds to me that this change would solve this issue. Thanks. |
[x]
):Description
In Albums list view a user would expect Album related information. Currently it seems that always the ARTIST information of one the albums tracks is displayed. This information is track related - thats fine in case that only one artist contributed to the album but for compilations this is misleading. If ALBUM_ARTIST information is available, it should be used for display/sorting inside Albums list view.
Steps to reproduce the issue
Add an album with different artists to the library, where each track's ALBUM_ARTIST tag information is set to value "Various Artists (test)". Switch to Album list view: Album title will be displayed along with a single track related Artist. "Various Artists (test)" is not displayed.
Screenshot / Video (If applicable)
...
The text was updated successfully, but these errors were encountered: