mirror of
https://github.com/devgianlu/go-librespot.git
synced 2026-04-26 05:15:49 +03:00
[GH-ISSUE #278] Include uris for artists and album in metadata event #167
Labels
No labels
bug
enhancement
pull-request
spotify-side
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/go-librespot#167
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 @dmca-glasgow on GitHub (Dec 30, 2025).
Original GitHub issue: https://github.com/devgianlu/go-librespot/issues/278
Hello,
Thanks for a great project.
I am working on a docker compose project with go-librespot, mopidy and a small node.js app to juggle the two and normalise websocket events.
One thing I've noticed I can't do with go-librespot that I can with mopidy is create a "new-track" event like this with album and artist uris:
This allows me to create a timeline where I can link off to the artist(s) and album.
Is this possible?
Cheers.
@devgianlu commented on GitHub (Jan 1, 2026):
The websocket
metadataevent provides the track URI, you can then use that in combination with the/web-api/<...>endopoint to get stuff from the Spotify Web API.@daviestar commented on GitHub (Jan 2, 2026):
Aha, why didn't I think of that. I've got that hooked up, thanks.