mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 04:06:11 +00:00
28 lines
596 B
Python
28 lines
596 B
Python
|
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)
|
||
|
|