piccoli fix
This commit is contained in:
@@ -16,14 +16,6 @@
|
||||
"enabled": true,
|
||||
"visible": true
|
||||
},
|
||||
{
|
||||
"id": "modo_grafico",
|
||||
"type": "bool",
|
||||
"label": "Cerca informazioni extra",
|
||||
"default": true,
|
||||
"enabled": true,
|
||||
"visible": true
|
||||
},
|
||||
{
|
||||
"id": "include_in_newest_series",
|
||||
"type": "bool",
|
||||
@@ -39,23 +31,6 @@
|
||||
"default": true,
|
||||
"enabled": true,
|
||||
"visible": true
|
||||
},
|
||||
{
|
||||
"id": "comprueba_enlaces",
|
||||
"type": "bool",
|
||||
"label": "Verifica se i link esistono",
|
||||
"default": true,
|
||||
"enabled": true,
|
||||
"visible": true
|
||||
},
|
||||
{
|
||||
"id": "comprueba_enlaces_num",
|
||||
"type": "list",
|
||||
"label": "Numero de link da verificare",
|
||||
"default": 1,
|
||||
"enabled": true,
|
||||
"visible": "eq(-1,true)",
|
||||
"lvalues": [ "5", "10", "15", "20" ]
|
||||
},
|
||||
{
|
||||
"id": "filter_languages",
|
||||
@@ -70,21 +45,5 @@
|
||||
"vosi"
|
||||
]
|
||||
},
|
||||
{
|
||||
"id": "perfil",
|
||||
"type": "list",
|
||||
"label": "profilo dei colori",
|
||||
"default": 0,
|
||||
"enabled": true,
|
||||
"visible": true,
|
||||
"lvalues": [
|
||||
"Sin color",
|
||||
"Perfil 5",
|
||||
"Perfil 4",
|
||||
"Perfil 3",
|
||||
"Perfil 2",
|
||||
"Perfil 1"
|
||||
]
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
@@ -17,7 +17,8 @@
|
||||
|
||||
import re
|
||||
|
||||
from channels import autoplay, filtertools, support
|
||||
from specials import autoplay
|
||||
from core import support
|
||||
from core import scrapertoolsV2, httptools, servertools, tmdb
|
||||
from core.item import Item
|
||||
from platformcode import logger, config
|
||||
@@ -26,8 +27,8 @@ from platformcode import logger, config
|
||||
host = "https://eurostreaming.cafe/"
|
||||
headers = ['Referer', host]
|
||||
|
||||
IDIOMAS = {'Italiano': 'IT'}
|
||||
list_language = IDIOMAS.values()
|
||||
##IDIOMAS = {'Italiano': 'IT'}
|
||||
##list_language = IDIOMAS.values()
|
||||
list_servers = ['verystream', 'wstream', 'speedvideo', 'flashx', 'nowvideo', 'streamango', 'deltabit', 'openload']
|
||||
list_quality = ['default']
|
||||
|
||||
|
||||
+2
-1
@@ -76,7 +76,8 @@ def find_video_items(item=None, data=None):
|
||||
autoplay.start(itemlist, item)
|
||||
|
||||
# Decommentare per la voce aggiungi alla videoteca di tutti i canali
|
||||
if item.extra != "library":
|
||||
# non funziona se il canale ha una def findvideos()
|
||||
if item.extra != "library" and item.contentType != 'episode':
|
||||
itemlist.append(Item(channel=item.channel, title="Aggiungi alla Videoteca",
|
||||
action="add_pelicula_to_library", url=item.url,
|
||||
contentTitle=item.contentTitle, infoLabels = item.infoLabels
|
||||
|
||||
Reference in New Issue
Block a user