How can you determine that XBMC is running on an iPad in Python?
#1
Simple question, with hopefully a simple answer.

I am helping write a plugin which needs to modify its UI when running on an ipad, is there an easy way in python to determine this?

Reply
#2
You can try something like:
Code:
import xbmc
import os
if xbmc.getCondVisibility( "system.platform.osx" ):
    if 'RELEASE_ARM' in os.uname()[3]:
        print 'ios'
Image
_____________________________

Repositories Installer: select and install unofficial repositories / TAC.TV: watch videos on TAC.TV
Installer Passion-XBMC: Download and Install Add-ons (pre-Dharma only)

Image
Reply
#3
Looks liek you can now do it more directly for the various platforms, no?

System.Platform.Linux Returns true if XBMC is running on a linux/unix/osx based computer.
System.Platform.Windows Returns true if XBMC is running on a windows based computer.
System.Platform.OSX Returns true if XBMC is running on an OSX based computer.
System.Platform.IOS Returns true if XBMC is running on an IOS device.
System.Platform.ATV2 Returns true if XBMC is running on an atv2.

from - http://mirrors.xbmc.org/docs/python-docs/xbmc.html
(this thread should really be moved to the addon development section BTW)
Addons I wrote &/or maintain:
OzWeather (Australian BOM weather) | Check Previous Episode | Playback Resumer | Unpause Jumpback | XSqueezeDisplay | (Legacy - XSqueeze & XZen)
Sorry, no help w/out a *full debug log*.
Reply
#4
@Temhil
Cheers!

@bossanova808
That looks like just what I need, cheers for that.
Reply
#5
Thanks for the update bossanova808, I didn't look recently at the API, good to know.

The link is actually not the one above (doc Python) but the wiki: http://wiki.xbmc.org/index.php?title=Lis...Conditions
Image
_____________________________

Repositories Installer: select and install unofficial repositories / TAC.TV: watch videos on TAC.TV
Installer Passion-XBMC: Download and Install Add-ons (pre-Dharma only)

Image
Reply

Logout Mark Read Team Forum Stats Members Help
How can you determine that XBMC is running on an iPad in Python?0