VVVVID Supporto Videoteca

non è ancora possibile avere più di 15 risultati :.(
This commit is contained in:
Alhaziel
2019-09-27 12:21:50 +02:00
parent 7f9608e465
commit 8fee70efc6
3 changed files with 8 additions and 6 deletions
+4 -3
View File
@@ -119,7 +119,7 @@ def episodios(item):
itemlist.append(
Item(
channel = item.channel,
title = 'Episodio ' + str(key['number']) + ' - ' + key['title'],
title = 'Episodio ' + key['number'].encode('ascii', 'replace') + ' - ' + key['title'],
fulltitle= item.fulltitle,
show= item.show,
url= host + show_id + '/season/' + str(key['season_id']) + '/',
@@ -128,7 +128,8 @@ def episodios(item):
contentType = item.contentType
))
autorenumber.renumber(itemlist, item, 'bold')
support.videolibrary(itemlist,item)
if autorenumber.check(item) == True:
support.videolibrary(itemlist,item)
return itemlist
def findvideos(item):
@@ -154,7 +155,7 @@ def findvideos(item):
url= 'https://or01.top-ix.org/videomg/_definst_/mp4:' + item.url + '/' + url,
server= 'directo')
)
return support.server(item, itemlist=itemlist)
return support.server(item, itemlist=itemlist, download=False)
def make_itemlist(itemlist, item, data):
search = item.search if item.search else ''