hi how can i get a songs cover art with just the artists name and song name?
i'm making my own rust server web app and was hope to use musicbrainz to get song image, album covers, and artist imgaes
vardhan_ joined the channel
vardhan joined the channel
Vacuity has quit
Vacuity joined the channel
vzctr811 has quit
vzctr811 joined the channel
MyNetAz has quit
MyNetAz joined the channel
Island_ has quit
crism has quit
crism joined the channel
crism has quit
G0d joined the channel
apetresc has quit
apetresc joined the channel
tagomago joined the channel
crazyroostereye joined the channel
crazyroostereye has quit
crazyroostereye joined the channel
joessexmpp joined the channel
joessexmpp has quit
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
<_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
crazyroostereye has quit
sentriz has quit
sentriz joined the channel
crism joined the channel
MyNetAz has quit
MyNetAz joined the channel
crazyroostereye joined the channel
antlarr2 joined the channel
antlarr has quit
reosarevok[m]
Releasing beta
MyNetAz has quit
Done - releasing a small cherry-pick to production
MyNetAz joined the channel
Done
kepstinbrainz joined the channel
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.
_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
s/is//
kepstinbrainz
as far as i know, all the tooling for database mirroring (and keeping it updated with live data) requires postgresql
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.