mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2024-11-10 12:16:12 +00:00
9ac37a1c40
Update playback for Krytpon Support Multi source Add Force Transcode Add a small listener for external players Update dialog skin (thank you sualfred)
37 lines
1.1 KiB
Python
37 lines
1.1 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
#################################################################################################
|
|
|
|
import logging
|
|
import os
|
|
import sys
|
|
|
|
import xbmc
|
|
import xbmcaddon
|
|
|
|
#################################################################################################
|
|
|
|
_ADDON = xbmcaddon.Addon(id='plugin.video.emby')
|
|
_CWD = _ADDON.getAddonInfo('path').decode('utf-8')
|
|
_BASE_LIB = xbmc.translatePath(os.path.join(_CWD, 'resources', 'lib')).decode('utf-8')
|
|
sys.path.append(_BASE_LIB)
|
|
|
|
#################################################################################################
|
|
|
|
import loghandler
|
|
from context_entry import ContextMenu
|
|
|
|
#################################################################################################
|
|
|
|
loghandler.config()
|
|
log = logging.getLogger("EMBY.contextmenu_play")
|
|
|
|
#################################################################################################
|
|
|
|
if __name__ == "__main__":
|
|
|
|
try:
|
|
# Start the context menu
|
|
ContextMenu(True)
|
|
except Exception as error:
|
|
log.exception(error)
|