aboutsummaryrefslogtreecommitdiff
path: root/tools/mpd-stats/internal/mpd/mpd.go (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-10-24ref(tools/mpd-stats): delete the projectFranck Cuny1-54/+0
It's been moved to its own repository at https://github.com/fcuny/mpd-stats Update the list of repositories managed by terraform.
2022-06-11mpd: we only want events from the player subsystemFranck Cuny1-1/+7
Store the name of the subsystem in a constant, add some comments on where to find the list.
2022-06-11mpd: export the type PlayerFranck Cuny1-4/+4
2022-06-11mpd: add function `Close` to the playerFranck Cuny1-0/+10
Let's close both the watcher and the client, instead of leaking this interface to the user.
2022-06-11mpd: rename function to create the playerFranck Cuny1-1/+1
2022-06-11scrobbler: watch for events and print song detailsFranck Cuny1-0/+38
We create a module "mpd" to interact with our MPD instance. For now we only have a single function to create a new client, which creates an actual client for mpd (and we ping the instance every 30 seconds), and a watcher to receive new events. The tool "scrobbler" then wait for new events and display songs information.