mirror of
https://github.com/archr-linux/Arch-R.git
synced 2026-03-31 14:41:55 -07:00
102 lines
2.6 KiB
Python
102 lines
2.6 KiB
Python
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
# Copyright (C) 2009-2012 Stephan Raue (stephan@openelec.tv)
|
|
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
|
|
|
|
import os
|
|
import sys
|
|
import time
|
|
import xbmcaddon
|
|
import subprocess
|
|
from xml.dom.minidom import parse
|
|
|
|
sys.path.append('/usr/share/kodi/addons/@DISTRO_PKG_SETTINGS_ID@')
|
|
|
|
import oe
|
|
|
|
__addon__ = xbmcaddon.Addon();
|
|
__path__ = os.path.join(__addon__.getAddonInfo('path'), 'bin') + '/'
|
|
|
|
pauseXBMC = __addon__.getSetting("PAUSE_XBMC")
|
|
|
|
def pauseXbmc():
|
|
if pauseXBMC == "true":
|
|
xbmc.executebuiltin("PlayerControl(Stop)")
|
|
xbmc.audioSuspend()
|
|
xbmc.enableNavSounds(False)
|
|
|
|
def resumeXbmc():
|
|
if pauseXBMC == "true":
|
|
xbmc.audioResume()
|
|
xbmc.enableNavSounds(True)
|
|
|
|
def startchrome(args):
|
|
try:
|
|
new_env = os.environ.copy()
|
|
new_env['VAAPI_MODE'] = __addon__.getSetting('VAAPI_MODE')
|
|
new_env['WINDOW_MODE'] = __addon__.getSetting('WINDOW_MODE')
|
|
new_env['RASTER_MODE'] = __addon__.getSetting('RASTER_MODE')
|
|
|
|
new_env['ALSA_DEVICE'] = ''
|
|
if __addon__.getSetting('USE_CUST_AUDIODEVICE') == 'true':
|
|
alsa_device = __addon__.getSetting('CUST_AUDIODEVICE_STR')
|
|
else:
|
|
alsa_device = getAudioDevice()
|
|
if not alsa_device == None and not alsa_device == '':
|
|
new_env['ALSA_DEVICE'] = alsa_device
|
|
|
|
chrome_params = args + ' ' + \
|
|
__addon__.getSetting('HOMEPAGE')
|
|
subprocess.call(__path__ + 'chrome-start ' + chrome_params, shell=True, env=new_env)
|
|
except Exception as e:
|
|
oe.dbg_log('chrome', e)
|
|
|
|
def isRuning(pname):
|
|
tmp = os.popen("ps -Af").read()
|
|
pcount = tmp.count(pname)
|
|
if pcount > 0:
|
|
return True
|
|
return False
|
|
|
|
def getAudioDevice():
|
|
try:
|
|
dom = parse("/storage/.kodi/userdata/guisettings.xml")
|
|
audiooutput=dom.getElementsByTagName('audiooutput')
|
|
for node in audiooutput:
|
|
dev = node.getElementsByTagName('audiodevice')[0].childNodes[0].nodeValue
|
|
if dev.startswith("ALSA:"):
|
|
dev = dev.split("ALSA:")[1]
|
|
if dev == "@":
|
|
return None
|
|
if dev.startswith("@:"):
|
|
dev = dev.split("@:")[1]
|
|
else:
|
|
# not ALSA
|
|
return None
|
|
except:
|
|
return None
|
|
if dev.startswith("CARD="):
|
|
dev = "plughw:" + dev
|
|
return dev
|
|
|
|
if (not __addon__.getSetting("firstrun")):
|
|
__addon__.setSetting("firstrun", "1")
|
|
__addon__.openSettings()
|
|
|
|
try:
|
|
args = ' '.join(sys.argv[1:])
|
|
except:
|
|
args = ""
|
|
|
|
if args == 'widevine':
|
|
install_widevine()
|
|
elif args == 'flash':
|
|
install_flash()
|
|
else:
|
|
if not isRuning('chrome'):
|
|
pauseXbmc()
|
|
startchrome(args)
|
|
while isRuning('chrome'):
|
|
time.sleep(1)
|
|
resumeXbmc()
|
|
|