initial commit - first version

This commit is contained in:
Marcel van der Veldt 2015-03-13 22:24:59 +01:00
parent fdbfc9455b
commit 860bdfbbd8
24 changed files with 3353 additions and 0 deletions

27
default.py Normal file
View file

@ -0,0 +1,27 @@
import xbmcaddon
import xbmcplugin
import xbmc
import xbmcgui
import os
import threading
import json
import urllib
addonSettings = xbmcaddon.Addon(id='plugin.video.mb3sync')
cwd = addonSettings.getAddonInfo('path')
BASE_RESOURCE_PATH = xbmc.translatePath( os.path.join( cwd, 'resources', 'lib' ) )
sys.path.append(BASE_RESOURCE_PATH)
WINDOW = xbmcgui.Window( 10000 )
import Utils as utils
from PlaybackUtils import PlaybackUtils
# get the actions...
params=utils.get_params(sys.argv[2])
mode = params.get('mode',"")
id = params.get('id',"")
if mode == "play":
PlaybackUtils().PLAY(id)