mirror of
https://github.com/jellyfin/jellycon.git
synced 2024-11-27 16:20:44 +00:00
remove video3DFormat
divide resume time by 60 to make it minutes
This commit is contained in:
parent
ff707bcea1
commit
993086999d
@ -445,7 +445,7 @@ def addGUIItem( url, details, extraData, folder=True ):
|
||||
list.setProperty('IsPlayable', 'true')
|
||||
if extraData.get('type','video').lower() == "video":
|
||||
list.setProperty('TotalTime', str(extraData.get('duration')))
|
||||
list.setProperty('ResumeTime', str(extraData.get('resumetime')))
|
||||
list.setProperty('ResumeTime', str(int(extraData.get('resumetime')) / 60))
|
||||
|
||||
artTypes=['poster', 'fanart_image', 'clearlogo', 'discart', 'banner', 'clearart', 'landscape']
|
||||
|
||||
@ -976,8 +976,7 @@ def processDirectory(url, results, progress, pluginhandle):
|
||||
'playcount' : str(playCount),
|
||||
#'aired' : episode.get('originallyAvailableAt','') ,
|
||||
'TVShowTitle' : item.get("SeriesName"),
|
||||
'season' : tempSeason,
|
||||
'Video3DFormat' : item.get("Video3DFormat"),
|
||||
'season' : tempSeason
|
||||
}
|
||||
|
||||
try:
|
||||
|
Loading…
Reference in New Issue
Block a user