-
I’ve got an Arc, sub and two rears setup and working well as TV surround sound. I’ve also setup up a Sonos favorite that points to an icecast server which plays our turntable through the same speaker setup. I’ve scripted such that if you start a record on the turntable then the music will automatically plan on the Arc setup. What I can’t seem to figure out is how to return the Sonos setup back to the TV. Maybe I’m missing something but is there a way to use soco-cli to do this? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
Hi: I've just released v0.4.25, which adds a |
Beta Was this translation helpful? Give feedback.
-
That's awesome. I expect I'm probably doing something wrong but I ran: sudo pip3 install soco-cli -U And, got this along with a lot of other output. (Note: I did run the update a couple of times) However, when I run: sonos -v I get: soco-cli version: 0.4.23 I also run: sonos --check_for_update And, get: So, I'm not sure I'm actually on 4.25. If it helps, from the time asked the question until now I was able to use the soco library switch_to_tv and it does seem to work based on remotely trying it. Proof will be in front of the tv. |
Beta Was this translation helpful? Give feedback.
-
It looks like you've installed v0.4.25, but that's not what's being run. It's possible that you previously installed SoCo-CLI using pip3 without Try If SoCo's |
Beta Was this translation helpful? Give feedback.
It looks like you've installed v0.4.25, but that's not what's being run.
It's possible that you previously installed SoCo-CLI using pip3 without
sudo
, in which case the site-packages would end up in~..local
and take precedence (I think) over the system site-packages installed usingsudo
.Try
pip3 install -U soco-cli
withoutsudo
, thensonos -v
again.If SoCo's
switch_to_tv
method works, then so will SoCo-CLI's action, since that's what it uses. Thanks for confirming.