PlexKodiConnect/resources/lib/playbackutils.py

364 lines
14 KiB
Python
Raw Normal View History

2015-12-25 07:07:00 +11:00
# -*- coding: utf-8 -*-
#################################################################################################
import json
import sys
2016-02-09 05:40:58 +11:00
from urllib import urlencode
2015-12-25 07:07:00 +11:00
import xbmc
import xbmcgui
import xbmcplugin
import artwork
import clientinfo
2015-12-25 07:07:00 +11:00
import playutils as putils
import playlist
import read_embyserver as embyserver
import utils
2016-01-02 00:40:40 +11:00
2016-02-09 05:40:58 +11:00
import PlexAPI
import PlexFunctions as PF
2015-12-25 07:07:00 +11:00
#################################################################################################
2016-02-09 05:40:58 +11:00
@utils.logging
2015-12-25 07:07:00 +11:00
class PlaybackUtils():
2016-02-20 06:03:06 +11:00
def __init__(self, item):
2016-01-30 06:07:21 +11:00
self.item = item
2016-02-09 05:40:58 +11:00
self.API = PlexAPI.API(item)
2015-12-25 07:07:00 +11:00
self.clientInfo = clientinfo.ClientInfo()
self.addonName = self.clientInfo.getAddonName()
2015-12-25 07:07:00 +11:00
2016-03-11 02:02:46 +11:00
self.userid = utils.window('currUserId')
self.server = utils.window('pms_server')
2015-12-25 07:07:00 +11:00
self.artwork = artwork.Artwork()
self.emby = embyserver.Read_EmbyServer()
self.pl = playlist.Playlist()
def play(self, itemid, dbid=None):
2016-02-17 19:13:37 +11:00
log = self.logMsg
window = utils.window
settings = utils.settings
item = self.item
2016-02-09 05:40:58 +11:00
# Hack to get only existing entry in PMS response for THIS instance of
# playbackutils :-)
self.API = PlexAPI.API(item[0])
API = self.API
listitem = xbmcgui.ListItem()
2016-02-09 05:40:58 +11:00
playutils = putils.PlayUtils(item[0])
2016-01-30 06:07:21 +11:00
2016-02-17 19:13:37 +11:00
log("Play called.", 1)
playurl = playutils.getPlayUrl()
if not playurl:
return xbmcplugin.setResolvedUrl(int(sys.argv[1]), False, listitem)
2016-02-09 05:40:58 +11:00
if dbid is None or dbid == '999999999':
# Item is not in Kodi database
2016-02-20 06:03:06 +11:00
playmethod = window('emby_%s.playmethod' % playurl)
2016-02-09 05:40:58 +11:00
if playmethod == "Transcode":
2016-02-20 06:03:06 +11:00
window('emby_%s.playmethod' % playurl, clear=True)
2016-02-09 05:40:58 +11:00
playurl = playutils.audioSubsPref(
listitem, playurl)
2016-02-20 06:03:06 +11:00
window('emby_%s.playmethod' % playurl, "Transcode")
2016-02-03 23:01:13 +11:00
listitem.setPath(playurl)
2016-02-09 05:40:58 +11:00
self.setArtwork(listitem)
2016-03-15 03:47:05 +11:00
API.CreateListItemFromPlexItem(listitem)
self.setProperties(playurl, listitem)
return xbmcplugin.setResolvedUrl(int(sys.argv[1]), True, listitem)
############### ORGANIZE CURRENT PLAYLIST ################
homeScreen = xbmc.getCondVisibility('Window.IsActive(home)')
playlist = xbmc.PlayList(xbmc.PLAYLIST_VIDEO)
startPos = max(playlist.getposition(), 0) # Can return -1
sizePlaylist = playlist.size()
2016-02-09 05:40:58 +11:00
self.currentPosition = startPos
2016-02-17 19:13:37 +11:00
propertiesPlayback = window('emby_playbackProps') == "true"
introsPlaylist = False
dummyPlaylist = False
2016-02-20 06:03:06 +11:00
log("Playlist start position: %s" % startPos, 1)
log("Playlist plugin position: %s" % self.currentPosition, 1)
log("Playlist size: %s" % sizePlaylist, 1)
############### RESUME POINT ################
2016-02-09 05:40:58 +11:00
seektime, runtime = API.getRuntime()
# We need to ensure we add the intro and additional parts only once.
# Otherwise we get a loop.
if not propertiesPlayback:
2016-02-17 19:13:37 +11:00
window('emby_playbackProps', value="true")
log("Setting up properties in playlist.", 1)
2016-02-20 06:03:06 +11:00
if (not homeScreen and not seektime and
2016-02-17 19:13:37 +11:00
window('emby_customPlaylist') != "true"):
log("Adding dummy file to playlist.", 2)
dummyPlaylist = True
playlist.add(playurl, listitem, index=startPos)
# Remove the original item from playlist
self.pl.removefromPlaylist(startPos+1)
# Readd the original item to playlist - via jsonrpc so we have full metadata
2016-02-09 05:40:58 +11:00
self.pl.insertintoPlaylist(
self.currentPosition+1,
dbid,
PF.GetKodiTypeFromPlex(API.getType()))
self.currentPosition += 1
############### -- CHECK FOR INTROS ################
if (settings('enableCinema') == "true" and not seektime and
not window('emby_customPlaylist') == "true"):
# if we have any play them when the movie/show is not being resumed
2016-02-09 05:40:58 +11:00
xml = PF.GetPlexPlaylist(
itemid,
item.attrib.get('librarySectionUUID'),
mediatype=API.getType())
introsPlaylist = self.AddTrailers(xml)
############### -- ADD MAIN ITEM ONLY FOR HOMESCREEN ###############
if homeScreen and not seektime and not sizePlaylist:
# Extend our current playlist with the actual item to play
# only if there's no playlist first
2016-02-17 19:13:37 +11:00
log("Adding main item to playlist.", 1)
2016-02-09 05:40:58 +11:00
self.pl.addtoPlaylist(
dbid,
2016-02-19 22:31:55 +11:00
PF.GetKodiTypeFromPlex(API.getType()))
# Ensure that additional parts are played after the main item
2016-02-09 05:40:58 +11:00
self.currentPosition += 1
############### -- CHECK FOR ADDITIONAL PARTS ################
2016-02-09 05:40:58 +11:00
if len(item[0][0]) > 1:
# Only add to the playlist after intros have played
2016-02-09 05:40:58 +11:00
for counter, part in enumerate(item[0][0]):
# Playlist items don't fail on their first call - skip them
# here, otherwise we'll get two 1st parts
if (counter == 0 and
window('emby_customPlaylist') == "true"):
continue
2016-02-09 05:40:58 +11:00
# Set listitem and properties for each additional parts
API.setPartNumber(counter)
additionalListItem = xbmcgui.ListItem()
2016-02-09 05:40:58 +11:00
additionalPlayurl = playutils.getPlayUrl(
partNumber=counter)
log("Adding additional part: %s" % counter, 1)
2016-02-09 05:40:58 +11:00
self.setProperties(additionalPlayurl, additionalListItem)
self.setArtwork(additionalListItem)
# NEW to Plex
2016-03-15 03:47:05 +11:00
API.CreateListItemFromPlexItem(additionalListItem)
2016-02-09 05:40:58 +11:00
playlist.add(additionalPlayurl, additionalListItem, index=self.currentPosition)
self.pl.verifyPlaylist()
2016-02-09 05:40:58 +11:00
self.currentPosition += 1
API.setPartNumber = 0
if dummyPlaylist:
# Added a dummy file to the playlist,
# because the first item is going to fail automatically.
2016-02-17 19:13:37 +11:00
log("Processed as a playlist. First item is skipped.", 1)
return xbmcplugin.setResolvedUrl(int(sys.argv[1]), False, listitem)
# We just skipped adding properties. Reset flag for next time.
elif propertiesPlayback:
2016-02-17 19:13:37 +11:00
log("Resetting properties playback flag.", 2)
window('emby_playbackProps', clear=True)
#self.pl.verifyPlaylist()
########## SETUP MAIN ITEM ##########
2016-02-03 23:01:13 +11:00
# For transcoding only, ask for audio/subs pref
2016-02-17 19:13:37 +11:00
if window('emby_%s.playmethod' % playurl) == "Transcode":
window('emby_%s.playmethod' % playurl, clear=True)
playurl = playutils.audioSubsPref(listitem, playurl)
2016-02-17 19:13:37 +11:00
window('emby_%s.playmethod' % playurl, value="Transcode")
2016-02-05 06:23:04 +11:00
listitem.setPath(playurl)
self.setProperties(playurl, listitem)
2016-02-03 23:01:13 +11:00
############### PLAYBACK ################
2016-02-17 19:13:37 +11:00
if homeScreen and seektime and window('emby_customPlaylist') != "true":
log("Play as a widget item.", 1)
2016-03-15 03:47:05 +11:00
API.CreateListItemFromPlexItem(listitem)
xbmcplugin.setResolvedUrl(int(sys.argv[1]), True, listitem)
2016-02-17 19:13:37 +11:00
elif ((introsPlaylist and window('emby_customPlaylist') == "true") or
(homeScreen and not sizePlaylist)):
# Playlist was created just now, play it.
2016-02-17 19:13:37 +11:00
log("Play playlist.", 1)
xbmc.Player().play(playlist, startpos=startPos)
else:
2016-02-17 19:13:37 +11:00
log("Play as a regular item.", 1)
xbmcplugin.setResolvedUrl(int(sys.argv[1]), True, listitem)
2016-01-30 06:07:21 +11:00
2016-02-09 05:40:58 +11:00
def AddTrailers(self, xml):
"""
Adds trailers to a movie, if applicable. Returns True if trailers were
added
"""
# Failure when downloading trailer playQueue
if xml is None:
return False
# Failure when getting trailers, e.g. when no plex pass
if xml.attrib.get('size') == '1':
return False
if utils.settings('askCinema') == "true":
resp = xbmcgui.Dialog().yesno(self.addonName, "Play trailers?")
if not resp:
# User selected to not play trailers
self.logMsg("Skip trailers.", 1)
return False
# Playurl needs to point back so we can get metadata!
path = "plugin://plugin.video.plexkodiconnect.movies/"
params = {
'mode': "play",
'dbid': 999999999
}
for counter, intro in enumerate(xml):
# Don't process the last item - it's the original movie
if counter == len(xml)-1:
break
# The server randomly returns intros, process them.
# introListItem = xbmcgui.ListItem()
# introPlayurl = putils.PlayUtils(intro).getPlayUrl()
introAPI = PlexAPI.API(intro)
params['id'] = introAPI.getRatingKey()
params['filename'] = introAPI.getKey()
introPlayurl = path + '?' + urlencode(params)
self.logMsg("Adding Intro: %s" % introPlayurl, 1)
self.pl.insertintoPlaylist(self.currentPosition, url=introPlayurl)
self.currentPosition += 1
return True
2015-12-25 07:07:00 +11:00
def setProperties(self, playurl, listitem):
2016-02-17 19:13:37 +11:00
window = utils.window
2015-12-25 07:07:00 +11:00
# Set all properties necessary for plugin path playback
2016-02-09 05:40:58 +11:00
itemid = self.API.getRatingKey()
itemtype = self.API.getType()
resume, runtime = self.API.getRuntime()
2015-12-25 07:07:00 +11:00
embyitem = "emby_%s" % playurl
window('%s.runtime' % embyitem, value=str(runtime))
2016-02-17 19:13:37 +11:00
window('%s.type' % embyitem, value=itemtype)
window('%s.itemid' % embyitem, value=itemid)
2015-12-25 07:07:00 +11:00
2016-02-09 05:40:58 +11:00
# We need to keep track of playQueueItemIDs for Plex Companion
2016-02-20 06:03:06 +11:00
window('plex_%s.playQueueItemID'
% playurl, self.API.GetPlayQueueItemID())
window('plex_%s.guid' % playurl, self.API.getGuid())
2016-02-09 05:40:58 +11:00
if itemtype == "episode":
window('%s.refreshid' % embyitem,
2016-02-20 06:03:06 +11:00
value=self.API.getParentRatingKey())
2015-12-25 07:07:00 +11:00
else:
2016-02-17 19:13:37 +11:00
window('%s.refreshid' % embyitem, value=itemid)
2015-12-25 07:07:00 +11:00
# Append external subtitles to stream
playmethod = utils.window('%s.playmethod' % embyitem)
if playmethod in ("DirectStream", "DirectPlay"):
subtitles = self.API.externalSubs(playurl)
2015-12-25 07:07:00 +11:00
listitem.setSubtitles(subtitles)
self.setArtwork(listitem)
def externalSubs(self, playurl):
externalsubs = []
mapping = {}
itemid = self.API.getRatingKey()
mediastreams = self.API.getMediaStreams()
2015-12-25 07:07:00 +11:00
kodiindex = 0
for stream in mediastreams:
index = stream['Index']
# Since Emby returns all possible tracks together, have to pull only external subtitles.
# IsTextSubtitleStream if true, is available to download from emby.
if (stream['Type'] == "Subtitle" and
stream['IsExternal'] and stream['IsTextSubtitleStream']):
# Direct stream
url = ("%s/Videos/%s/%s/Subtitles/%s/Stream.srt"
% (self.server, itemid, itemid, index))
# map external subtitles for mapping
mapping[kodiindex] = index
externalsubs.append(url)
kodiindex += 1
mapping = json.dumps(mapping)
utils.window('emby_%s.indexMapping' % playurl, value=mapping)
return externalsubs
def setArtwork(self, listItem):
2016-02-09 05:40:58 +11:00
allartwork = self.API.getAllArtwork(parentInfo=True)
self.logMsg('allartwork: %s' % allartwork, 2)
# arttypes = {
# 'poster': "Primary",
# 'tvshow.poster': "Primary",
# 'clearart': "Art",
# 'tvshow.clearart': "Art",
# 'clearlogo': "Logo",
# 'tvshow.clearlogo': "Logo",
# 'discart': "Disc",
# 'fanart_image': "Backdrop",
# 'landscape': "Thumb"
# }
2015-12-25 07:07:00 +11:00
arttypes = {
'poster': "Primary",
'tvshow.poster': "Primary",
'clearart': "Art",
'tvshow.clearart': "Art",
2016-02-09 05:40:58 +11:00
'clearart': "Primary",
'tvshow.clearart': "Primary",
2015-12-25 07:07:00 +11:00
'clearlogo': "Logo",
'tvshow.clearlogo': "Logo",
'discart': "Disc",
'fanart_image': "Backdrop",
2016-02-09 05:40:58 +11:00
'landscape': "Backdrop"
2015-12-25 07:07:00 +11:00
}
for arttype in arttypes:
art = arttypes[arttype]
if art == "Backdrop":
try: # Backdrop is a list, grab the first backdrop
self.setArtProp(listItem, arttype, allartwork[art][0])
except: pass
else:
self.setArtProp(listItem, arttype, allartwork[art])
def setArtProp(self, listItem, arttype, path):
if arttype in (
'thumb', 'fanart_image', 'small_poster', 'tiny_poster',
'medium_landscape', 'medium_poster', 'small_fanartimage',
'medium_fanartimage', 'fanart_noindicators'):
listItem.setProperty(arttype, path)
else:
listItem.setArt({arttype: path})