Read the statement by Michael Teeuw here.
MMM-Sonos - Display what is currently playing on your Sonos network
-
@eliah That’s interesting, it would suggest that the group IDs are not consistent (as groups are cached by IDs) which obviously shouldn’t happen. I’m also wondering if targeting a random device on every scan has any implications on this (but it shouldn’t, at least I cannot reproduce this on my own network)
Would it possible for you to test a different version? I would like to see how it can be mitigated.
-
sure, I can test if you have any ideas why it is happening.
-
Hi @eliah. Can you try the version on the branch
fix/group-scan
and tell me how it goes ?You would just need to go into the
MMM-Sonos
folder and do:git fetch && git checkout fix/group-scan
Thanks :)
-
@tbouron Beautiful module. How can I get the album art and Rooms that are stopped to also show up? What other info can I display?
Thanks
-
Hi @Jas and thanks!
Both of these are not supported. The concept of the module was to have a
Sonos now playing...
module with minimalist design hence:- only vital information: title, artist, album (can be toggled), metadata: room, volume and track length (can be toggled)
- no album artwork
- show only rooms where music is playing, otherwise show nothing to avoid clutter
It would not be too hard to do all the above, but I don’t plan to do it anytime soon because of the concept.
-
@tbouron Got it! Thank you for the quick response. Looks great!
-
-
@tbouron It looks like the issue is now fixed, no constant updates anymore! Thank you. :)
Some more issues I noticed:- Value for song length minutes has no leading zero, so when a song’s length is 2:04 it shows 2:4.
- If any of speakers are used directly by AirPlay, it shows (null) (null). Maybe it’s better to ignore AirPlay mode if no information is available for it?
- Not sure if it is a bug of a module or Sonos library behind it, but for some reason the group names are sometimes become incorrect. For example, if I start a playlist on three speakers in the same group, first it shows something like “Kitchen+2” (and that’s correct), but after some time it becomes just “Kitchen” (same 3 speakers are playing).
And additionally, if more than one speaker is playing in the same group, each of them can have its own volume. In this case the single volume indicator that your module outputs to the screen becomes useless.
-
@eliah Awesome! Thanks for the feedback, I’ll cleanup and push the changes as soon as possible :)
Regarding the other issues:
Value for song length minutes has no leading zero, so when a song’s length is 2:04 it shows 2:4.
I already fixed that, it’s in a branch since Christmas but I was waiting for your feedback on the group scan issue to release it.
any of speakers are used directly by AirPlay, it shows (null) (null). Maybe it’s better to ignore AirPlay mode if no information is available for it?
I assume you are talking about the second line for
artist
andalbum
right? I already have sort of partial fix for that (not displaying the album ifnull
). I could do the same thing for theartist
. When you are using airplay, is the first line displayed correctly? What does it say? I unfortunately cannot know if something comes through airplay or not, it’s all unified through the Sonos library.Not sure if it is a bug of a module or Sonos library behind it, but for some reason the group names are sometimes become incorrect. For example, if I start a playlist on three speakers in the same group, first it shows something like “Kitchen+2” (and that’s correct), but after some time it becomes just “Kitchen” (same 3 speakers are playing).
That would be a bug in the underlying Sonos library. I just listening for events and display whatever comes from there.
And additionally, if more than one speaker is playing in the same group, each of them can have its own volume. In this case the single volume indicator that your module outputs to the screen becomes useless.
The Sonos library doesn’t give me this information unfortunately so that won’t be possible to do for now.
-
@tbouron said in MMM-Sonos - Display what is currently playing on your Sonos network:
I assume you are talking about the second line for
artist
andalbum
right? I already have sort of partial fix for that (not displaying the album ifnull
). I could do the same thing for theartist
. When you are using airplay, is the first line displayed correctly? What does it say? I unfortunately cannot know if something comes through airplay or not, it’s all unified through the Sonos library.I checked that more. And it looks if I share a song from iTunes via AirPlay, it provides all necessary information, so the data is correct. But if I use YouTube, then it is empty. Song name is just empty, and both singer and album names are displayed as (null).
That would be a bug in the underlying Sonos library. I just listening for events and display whatever comes from there.
That’s bad. :( As I can see, sometimes it just gets crazy. Shows me up instances of the same, when only one group plays. Looks like the library behind node-http-sonos-api required for another modules of the same type is more stable currently.
The Sonos library doesn’t give me this information unfortunately so that won’t be possible to do for now.
I believe it gives in fact. As I can see from Sonos module, its class SonosGroup contains Members. I believe it can be used to count number of members in the current group, and if there is more than one, not output the volume. Alternatively, I believe it should be possible to extract exact names of members from the Group to construct a more user-friendly custom name to use in metadata (i.e. not “Kitchen+2”, but “Kitchen, Corridor, Bathroom”).