Alcuni Fix
This commit is contained in:
@@ -137,7 +137,7 @@ def findvideos(item):
|
|||||||
language = 'ITA'
|
language = 'ITA'
|
||||||
if 'sub' in lang.lower():
|
if 'sub' in lang.lower():
|
||||||
language = 'Sub-' + language
|
language = 'Sub-' + language
|
||||||
quality = url.split('/')[-1]
|
quality = url.split('/')[-1].split('?')[0]
|
||||||
|
|
||||||
itemlist.append(
|
itemlist.append(
|
||||||
support.Item(channel=item.channel,
|
support.Item(channel=item.channel,
|
||||||
|
|||||||
@@ -93,5 +93,5 @@ def search(item, text):
|
|||||||
|
|
||||||
def findvideos(item):
|
def findvideos(item):
|
||||||
if item.contentType == 'tvshow': item.contentType = 'episode'
|
if item.contentType == 'tvshow': item.contentType = 'episode'
|
||||||
video_library = True if 'movie' in item.args else False
|
Videolibrary = True if 'movie' in item.args else False
|
||||||
return support.server(item, support.match(item.url, patron=r'"(magnet[^"]+)').match, video_library=video_library)
|
return support.server(item, support.match(item.url, patron=r'"(magnet[^"]+)').match, Videolibrary=Videolibrary)
|
||||||
|
|||||||
@@ -50,7 +50,7 @@ def peliculas(item):
|
|||||||
|
|
||||||
|
|
||||||
def findvideos(item):
|
def findvideos(item):
|
||||||
return support.server(item, video_library=False)
|
return support.server(item, Videolibrary=False)
|
||||||
|
|
||||||
|
|
||||||
def search(item, text):
|
def search(item, text):
|
||||||
|
|||||||
+1
-1
@@ -292,7 +292,7 @@ def findvideos(item):
|
|||||||
|
|
||||||
itemlist.append(support.Item(channel = item.channel, server = 'directo', title = 'Diretto', fulltitle = item.fulltitle,
|
itemlist.append(support.Item(channel = item.channel, server = 'directo', title = 'Diretto', fulltitle = item.fulltitle,
|
||||||
show = item.show, thumbnail = item.thumbnail, fanart = item.json, url = getUrl(url), action = 'play' ))
|
show = item.show, thumbnail = item.thumbnail, fanart = item.json, url = getUrl(url), action = 'play' ))
|
||||||
return support.server(item, itemlist=itemlist, down_load=False)
|
return support.server(item, itemlist=itemlist, Download=False)
|
||||||
|
|
||||||
|
|
||||||
def getUrl(pathId):
|
def getUrl(pathId):
|
||||||
|
|||||||
+1
-1
@@ -209,7 +209,7 @@ def findvideos(item):
|
|||||||
url= 'https://or01.top-ix.org/videomg/_definst_/mp4:' + item.url + '/' + url,
|
url= 'https://or01.top-ix.org/videomg/_definst_/mp4:' + item.url + '/' + url,
|
||||||
server= 'directo')
|
server= 'directo')
|
||||||
)
|
)
|
||||||
return support.server(item, itemlist=itemlist, down_load=False)
|
return support.server(item, itemlist=itemlist, Download=False)
|
||||||
|
|
||||||
def make_itemlist(itemlist, item, data):
|
def make_itemlist(itemlist, item, data):
|
||||||
search = item.search if item.search else ''
|
search = item.search if item.search else ''
|
||||||
|
|||||||
Reference in New Issue
Block a user