mirror of
https://github.com/casualsnek/onthespot.git
synced 2026-04-26 20:45:56 +03:00
[GH-ISSUE #88] [Feature] Store album art as a separate file in the album folder #60
Labels
No labels
Feedback requested
bug
enhancement
pull-request
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/onthespot#60
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 @artofsound on GitHub (Aug 21, 2023).
Original GitHub issue: https://github.com/casualsnek/onthespot/issues/88
I want an option to store the album art as a additional file in the same folder, where the downloaded track is stored.
Saving the album art should be done, after downloading all of the album tracks. Doesn't need to be after every single track.
Probably something like "cover.jpg" should do the trick, but maybe you could add a filename option, so users could change it on their behalf.
@NiciTheNici commented on GitHub (Oct 31, 2023):
bump, this is insanely useful for rockbox users
@NiciTheNici commented on GitHub (Oct 31, 2023):
I managed to get this working on my fork. @casualsnek do you think this even needs an option or should it just default to saving the cover art as
cover.pngall the time like I did in my fork?https://github.com/NiciTheNici/onthespot/tree/save_cover_as_file
@casualsnek commented on GitHub (Oct 31, 2023):
This being a default behavior won't be too bad as i have seen a lot of media player use it instead of embedded one or using embedded ones only if cover.png is missing !
Good to know you got it working, normally i wold have suggested you to make a PR, but since i am rewriting onthespot all PR and non critical Issue resolution are paused right now. I may make this a default behavior but configurable using the config files in the rewrite.
@artofsound commented on GitHub (Oct 31, 2023):
I also have a version that works on my fork, even with a settings option you can tick. I used
.jpgtho, because that's what Spotify gives you.If the file already exists, it skips it.
https://github.com/artofsound/onthespot/tree/cover_image
@NiciTheNici commented on GitHub (Oct 31, 2023):
Ah I just used png because that's what the method
set_music_thumbnailused a few lines above my text. Not unnecessarily converting between formats is probably more efficient...Same!
Sounds perfect! Thanks!