hi how can i get a songs cover art with just the artists name and song name?
2025-03-11 07051, 2025
_glados_[m]
i'm making my own rust server web app and was hope to use musicbrainz to get song image, album covers, and artist imgaes
2025-03-11 07017, 2025
vardhan_ joined the channel
2025-03-11 07021, 2025
vardhan joined the channel
2025-03-11 07010, 2025
Vacuity has quit
2025-03-11 07036, 2025
Vacuity joined the channel
2025-03-11 07049, 2025
vzctr811 has quit
2025-03-11 07008, 2025
vzctr811 joined the channel
2025-03-11 07042, 2025
MyNetAz has quit
2025-03-11 07007, 2025
MyNetAz joined the channel
2025-03-11 07023, 2025
Island_ has quit
2025-03-11 07007, 2025
crism has quit
2025-03-11 07032, 2025
crism joined the channel
2025-03-11 07009, 2025
crism has quit
2025-03-11 07055, 2025
G0d joined the channel
2025-03-11 07007, 2025
apetresc has quit
2025-03-11 07033, 2025
apetresc joined the channel
2025-03-11 07035, 2025
tagomago joined the channel
2025-03-11 07018, 2025
crazyroostereye joined the channel
2025-03-11 07042, 2025
crazyroostereye has quit
2025-03-11 07035, 2025
crazyroostereye joined the channel
2025-03-11 07023, 2025
joessexmpp joined the channel
2025-03-11 07058, 2025
joessexmpp has quit
2025-03-11 07014, 2025
BlastboomStrice[
I dont know if it helps, but there is [Onetagger](https://github.com/Marekkon5/onetagger), an open source program which fetches metadata from various vendors (including musicbrainz) and is written in rust in a large part
2025-03-11 07014, 2025
BlastboomStrice[
<_glados_[m]> "i'm making my own rust server..." <- I dont know if it helps, but there is [Onetagger](https://github.com/Marekkon5/onetagger), an open source program which fetches metadata from various vendors (including musicbrainz) and is written in rust in a large part
2025-03-11 07018, 2025
crazyroostereye has quit
2025-03-11 07001, 2025
sentriz has quit
2025-03-11 07041, 2025
sentriz joined the channel
2025-03-11 07008, 2025
crism joined the channel
2025-03-11 07035, 2025
MyNetAz has quit
2025-03-11 07001, 2025
MyNetAz joined the channel
2025-03-11 07045, 2025
crazyroostereye joined the channel
2025-03-11 07018, 2025
antlarr2 joined the channel
2025-03-11 07035, 2025
antlarr has quit
2025-03-11 07021, 2025
reosarevok[m]
Releasing beta
2025-03-11 07032, 2025
MyNetAz has quit
2025-03-11 07033, 2025
reosarevok[m]
Done - releasing a small cherry-pick to production
2025-03-11 07057, 2025
MyNetAz joined the channel
2025-03-11 07010, 2025
reosarevok[m]
Done
2025-03-11 07038, 2025
kepstinbrainz joined the channel
2025-03-11 07038, 2025
kepstinbrainz
<_glados_[m]> "i'm making my own rust server..." <- Doing this requires first doing a search on the api to look up the recording, then releases/release groups containing that recording, then you have IDs that you can use to look up cover art. Keep mind of the musicbrainz api request limit - depending on your application you might want to either cache results or use a local mirror of the musicbrainz database.
2025-03-11 07039, 2025
_glados_[m]
My app only supports sqllite locally is is possible to use the db locally as an sqlite db i’m new to working with database’s
2025-03-11 07052, 2025
_glados_[m]
s/is//
2025-03-11 07048, 2025
kepstinbrainz
as far as i know, all the tooling for database mirroring (and keeping it updated with live data) requires postgresql
2025-03-11 07040, 2025
kepstinbrainz
if you're using sqlite i assume you're not scaling up the app to large numbers of users, so you might be ok with just using the musicbrainz web service for now.