This commit is contained in:
Marcel van der Veldt 2015-03-25 18:37:39 +01:00
commit b1385b6cc7
2 changed files with 11 additions and 4 deletions

View File

@ -14,6 +14,7 @@ from DownloadUtils import DownloadUtils
downloadUtils = DownloadUtils()
from PlayUtils import PlayUtils
from ReadKodiDB import ReadKodiDB
from ReadEmbyDB import ReadEmbyDB
from API import API
import Utils as utils
import os
@ -50,10 +51,16 @@ class PlaybackUtils():
resume_result = 0
seekTime = 0
#get the resume point from Kodi DB
#get the resume point from Kodi DB for a Movie
kodiItem = ReadKodiDB().getKodiMovie(id)
if kodiItem != None:
seekTime = int(round(kodiItem['resume'].get("position")))
else:
#get the resume point from Kodi DB for an episode
episodeItem = ReadEmbyDB().getItem(id)
kodiItem = ReadKodiDB().getKodiEpisodeByMbItem(id,episodeItem["SeriesId"])
if kodiItem != None:
seekTime = int(round(kodiItem['resume'].get("position")))
playurl = PlayUtils().getPlayUrl(server, id, result)

View File

@ -306,8 +306,8 @@ class Player( xbmc.Player ):
count = 0
while xbmc.Player().getTime() < (seekToTime - 5) and count < 11: # only try 10 times
count = count + 1
xbmc.Player().pause
#xbmc.Player().pause()
xbmc.sleep(100)
xbmc.Player().seekTime(seekToTime)
xbmc.sleep(100)
xbmc.Player().play()
#xbmc.Player().play()