mirror of
https://github.com/koel/koel.git
synced 2026-04-26 17:25:59 +03:00
[GH-ISSUE #1730] Artist art not loading / showing up #951
Labels
No labels
Authentication
Dependencies
Documentation
Feature Request
Flac
Help Wanted
Installation/Setup
Integration
Mobile
PR Welcome
Pending Release
Performance
Playlist
S3
Search
Sync
[Pri] Low
[Pri] Normal
[Status] Keep Open
[Status] Needs Author Reply
[Status] Needs Review
[Status] Stale
[Status] Will Implement
[Type] Blessed
[Type] Bug
[Type] Duplicate
[Type] Enhancement
[Type] Help Request
[Type] Question
[Type] Task
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/koel-koel#951
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @volcs0 on GitHub (Dec 23, 2023).
Original GitHub issue: https://github.com/koel/koel/issues/1730
Describe the bug
Artists are not appearing (but albums are)
Steps to reproduce the behavior:
Click "artist" or artist view
Expect to see artist art but only see Koel default logo
When I manually add artist art, it "sticks"
But when artist art is in the folder, it is not being picked up.
And if there is no artist art in the folder, it is not being sourced from anywhere.
What is the expected behavior? Should artists be pulled from somewhere? Are they only locally pulled?
Environment
Koel version 6.11.12
OS: Linux
Browser: Edge, Chrome
PHP version 8.1.8
Node version : unknown
Screenshot
@volcs0 commented on GitHub (Dec 23, 2023):
I see in another issue that the answer it to configure spotify - will try this.
@volcs0 commented on GitHub (Dec 25, 2023):
This did not work. Any thoughts @phanan ? I don't have any artist images - I've tried a lot of things....
Thanks.
@phanan commented on GitHub (Dec 25, 2023):
Artist arts are not pulled from Spotify "at once" (as I'd presume you're expecting from that screenshot). Rather, when you play a song, Koel will attempt to get its album and artist art if one is not available.
@volcs0 commented on GitHub (Dec 25, 2023):
I'm having trouble getting this to work.
I've open different albums, but when I go to artist view, I don't see the artist.
And when I put artist art in the folder, it also doesn't show up.
The only way I've gotten this to work is to manually drag a picture to the artist, and then it gets stored in the artists folder.
But nothing automatic is working at all.
Any help or suggestions is appreciated.
https://imgur.com/a/7Rei0FL
@volcs0 commented on GitHub (Dec 26, 2023):
Hey @phanan - I'm writing a python script to scape art, put it in my artists art folder and update the artist table with the name of the image file.
I see that each image has a 40-character hex name. Are these randomly generated? Or are they a hash of something?
I just tried one (with a random 40-character name) and it worked great.
I don't see how else to get artist art - nothing has worked, even Spotify.
Thanks.
@phanan commented on GitHub (Dec 26, 2023):
I think I've spotted the bug. Will try to issue a fix ASAP.
@phanan commented on GitHub (Dec 27, 2023):
Closed in
abb0438c8d.@Bielecki commented on GitHub (Sep 2, 2025):
For anyone who may see this in the future - it seems like Koel is downloading arts, but only when you open the artist at least once. I wrote simple js script that you can enter in the web developer console:
What this script do is collecting all urls to artists, and then opening one after another with 300ms delay (you can tweak this in
sleep()function).The
tryblock is there because not every entry has a href (idk, sometimes it just throws typerror: null).No killswitch tho, you can reload the page instead
@phanan commented on GitHub (Sep 2, 2025):
@Bielecki Nice trick :)