Posts: 17
Joined: Feb 2014
Reputation:
0
Does anyone have success installing the boblight add on when using Kodi on the nexus player?
Posts: 16,946
Joined: Feb 2011
Reputation:
256
isn't the nexus player android based? If so you should just be able to install the addon and it should also download the needed library when enabled at the first time. The boblight daemon needs to be on a different box though (as i am not aware of a android compiled version of the daemon).
AppleTV4/iPhone/iPod/iPad: HowTo find debug logs and everything else which the devs like so much:
click here
HowTo setup NFS for Kodi:
NFS (wiki)
HowTo configure avahi (zeroconf):
Avahi_Zeroconf (wiki)
READ THE IOS FAQ!:
iOS FAQ (wiki)
Posts: 17
Joined: Feb 2014
Reputation:
0
Yes, the nexus player is running Android 5.0. I was hoping to connect to the boblight daemon that is running on a windows machine in the same manner I connect Kodi running on an Amazon FireTV. The boblight addon will install in Kodi on the Nexus player......but every time I start Kodi, I get a prompt that says " This addon needs a binary library. Should the addon try to download it for you?". I obviously then select yes, and it appears to download. Perhaps, there is a way I could manually install the binary library needed for the boblight addon to work?
Posts: 17
Joined: Feb 2014
Reputation:
0
Ahhh.......yes the processor is x86. So, I'm out of luck?
Posts: 16,946
Joined: Feb 2011
Reputation:
256
Mmhhhh i need to compile an android-x86 version of the libboblight.so and deploy it to our mirrors. Thats the easy part. After that i need to update the boblight addon so that it detects if it runs on arm or x86 android. The latter might be the harder part.
AppleTV4/iPhone/iPod/iPad: HowTo find debug logs and everything else which the devs like so much:
click here
HowTo setup NFS for Kodi:
NFS (wiki)
HowTo configure avahi (zeroconf):
Avahi_Zeroconf (wiki)
READ THE IOS FAQ!:
iOS FAQ (wiki)
Posts: 17
Joined: Feb 2014
Reputation:
0
Cool.....let me know how I might be able to assist in any way! Thanks Memphiz! If you're able to compile an android-x86 version.....could we for now manually drop libboblight.so to the proper directory to get things working?
Posts: 1
Joined: May 2015
Reputation:
0
2015-05-08, 17:19
(This post was last modified: 2015-05-08, 17:27 by Memphiz.)
edit by memphiz: possible spam bot - removed link which might have pointed to scam (didn't click it)
Posts: 17
Joined: Feb 2014
Reputation:
0
sounds great, take your time, as I won't be able to test until later this evening. Thanks Memphiz!
Posts: 17
Joined: Feb 2014
Reputation:
0
FYI....always willing to test for the benefit of the community
Posts: 17
Joined: Feb 2014
Reputation:
0
2015-05-08, 17:53
(This post was last modified: 2015-05-08, 18:02 by jmoore395.)
I'm not a developer, but looked at the tools.py file which looks like its responsible for determining the system platform. Will the return variable for android always just be "android"? If so, could you ask the user installing the addon to answer the question of x86 or arm if the get_platform() function simply just returns the value of "android"?
or found this in another forum.....potentially helpful?? (Android is Unix based ....right??)
You can use Python's os module to obtain this information through uname:
import os
os.uname()
This function should provide platform and other information on most Linux or Unix-like distributions.
From the Python documentation:
os.uname()
Return a 5-tuple containing information identifying the current operating system. The tuple contains five strings: (sysname, nodename, release, version, machine). Some systems truncate the nodename to eight characters or to the leading component; a better way to get the hostname is socket.gethostname() or even socket.gethostbyaddr(socket.gethostname()).
Availability: recent flavors of Unix.
Posts: 17
Joined: Feb 2014
Reputation:
0
Thanks Memphiz! I will try it tonight and report back asap.