Replies: 1 comment
|
Thanks for the suggestion. We can't promise anything soon, I'm afraid, but we'll put it on the list. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Feature request: apply
publish_retainto raw MQTT topics (ssnc) + accurate track durationCurrent behaviour
When
publish_retain = "yes"is set in the MQTT configuration, the retain flag is applied to parsed topics (title, artist, album, cover, etc.), but not to rawssnctopics such asssnc/prgr.Desired behaviour
publish_retainshould also apply tossnc/prgr(and ideally allssnctopics), so that the broker stores the last known value and delivers it immediately to new subscribers.Use case
I'm building a "Now Playing" display page (HTML/JS) that subscribes to MQTT and shows track info, album art and a playback progress bar. The
ssnc/prgrtopic provides exactly what I need: start, current and end RTP timestamps, from which I can calculate both elapsed time and total duration.Because
ssnc/prgris not retained, a page refresh mid-track results in no progress information until the next track starts. Retainingssnc/prgrwould solve this completely.All reactions