-
Notifications
You must be signed in to change notification settings - Fork 35
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issues after updating to 4.0 (I think) #594
Comments
A little late but you should not have had to make any changes to the service/chmod. Just replace the slingbox_server.py file with the latest. Can you be a little more specific about what a "graphical bug" is? The delay is caused by buffering in your Media player. Sorry I can't do anything about that. Try my player https://github.com/GerryDazoo/SlingerPlayer. |
Ah, I did not know that all you need to actually update is is slingbox_server.py. So just replace that file and stop/start service? Or is there something else that's needed? So, this is what it looks like when I first connect with IP specified; I DO see the version here now as 4.0.1, so I guess things are working:
05/08/2023, 16:10:03.616 RemoteControl connection from ('MY_IP', 62867) This is what happens when I try to connect without specifying the IP in the config.ini (like I used to have):
Here's the log that I see sometimes when all I do is open the Remote (no stream): |
I have the same problem, in the function: def ip4_addresses(): There is no reference to: import netifaces If I put: import netifaces In the beginning of the scripts import references, (and have netifaces installed, of course) everything seems to work fine The import is somehow not making it to the: def ip4_addresses(): function. |
Not sure whats happening on your system. The import of netifaces is in def find_slingbox_info(name): before it calls get ipv4_addresses. So I don't see a way for the code to get into ipv4_address without netifaces being define. |
I've had issues with Python similar to this, when dealing with def's and imports, but you can see from shadowscott's log: File "/home/slingbox/slingbox_server.py", line 114, in ip4_addresses Which is the same that I am getting on my end, but the global "import netifaces" seems to make it down to there somehow. |
Server: Raspberry Pi Zero
Slingbox Model: Slingbox 350
Was previously using v3.0x, updated to v4.0 I think (I moved the 3 files slingbox_server.py, config.ini, sling.service to /home/slingbox and re-ran all of the 5 steps for the service/chmod, but no way to see what version of the software I'm actually running even in /tmp/slingbox).
Still experiencing issues/delay/graphical bugs when using IR commands, previously did not need to specify an IP Address, but now I needed to specify in the config.ini (seems like it isn't dynamically finding the IP anymore, but not sure why).
Let me know what you'd like to see to help troubleshoot if you can.
The text was updated successfully, but these errors were encountered: