diff --git a/cuevana3.json b/cuevana3.json deleted file mode 100644 index 97c0d751..00000000 --- a/cuevana3.json +++ /dev/null @@ -1,69 +0,0 @@ -{ - "id": "cuevana3", - "name": "Cuevana 3", - "active": true, - "adult": false, - "language": ["lat", "cast"], - "thumbnail": "https://www.cuevana3.co/wp-content/themes/cuevana3/public/img/cnt/cuevana3.png", - "banner": "", - "version": 1, - "categories": [ - "movie" - ], - "settings": [ - { - "id": "include_in_global_search", - "type": "bool", - "label": "Incluir en busqueda global", - "default": false, - "enabled": false, - "visible": false - }, - { - "id": "filter_languages", - "type": "list", - "label": "Mostrar enlaces en idioma...", - "default": 0, - "enabled": true, - "visible": true, - "lvalues": [ - "No filtrar", - "LAT", - "CAST", - "VOSE" - ] - }, - { - "id": "include_in_newest_peliculas", - "type": "bool", - "label": "Incluir en Novedades - Peliculas", - "default": true, - "enabled": true, - "visible": true - }, - { - "id": "include_in_newest_infantiles", - "type": "bool", - "label": "Incluir en Novedades - Infantiles", - "default": true, - "enabled": true, - "visible": true - }, - { - "id": "include_in_newest_terror", - "type": "bool", - "label": "Incluir en Novedades - Terror", - "default": true, - "enabled": true, - "visible": true - }, - { - "id": "include_in_newest_documentales", - "type": "bool", - "label": "Incluir en Novedades - Documentales", - "default": true, - "enabled": true, - "visible": true - } - ] -} diff --git a/plugin.video.alfa/addon.xml b/plugin.video.alfa/addon.xml old mode 100755 new mode 100644 index 9f4ebb95..6eb64831 --- a/plugin.video.alfa/addon.xml +++ b/plugin.video.alfa/addon.xml @@ -1,45 +1,43 @@ - - - - - - - - video - - - Navega con Kodi por páginas web. - - logo-cumple.png - fanart1.jpg - resources/media/themes/ss/1.jpg - resources/media/themes/ss/2.jpg - resources/media/themes/ss/3.jpg - resources/media/themes/ss/4.jpg - - [B]Estos son los cambios para esta versión:[/B] - [COLOR green][B]Arreglos[/B][/COLOR] - ¤ maxipelis24 ¤ cuevana3 ¤ pelisplusco - ¤ mejortorrent ¤ newpct1 - - [COLOR green][B]Novedades[/B][/COLOR] - ¤ Mundopelis ¤ thevideobee ¤ tusfiles - ¤ vup - - ¤ Agradecimientos a @mac12m99 y @chivmalev por colaborar con ésta versión - - - Navega con Kodi por páginas web para ver sus videos de manera fácil. - Browse web pages using Kodi - Browse web pages using Kodi, you can easily watch their video content. - [COLOR red]The owners and submitters to this addon do not host or distribute any of the content displayed by these addons nor do they have any affiliation with the content providers.[/COLOR] - all - GNU GPL v3 - foro - web - my@email.com - https://github.com/alfa-addon/addon - - - - + + + + + + + + video + + + Navega con Kodi por páginas web. + + logo-cumple.png + fanart1.jpg + resources/media/themes/ss/1.jpg + resources/media/themes/ss/2.jpg + resources/media/themes/ss/3.jpg + resources/media/themes/ss/4.jpg + + [B]Estos son los cambios para esta versión:[/B] + [COLOR green][B]Arreglos[/B][/COLOR] + ¤ allcalidad ¤ animeflv ¤ streamcloud + ¤ pack +18 ¤ divxtotal ¤ elitetorrent + ¤ estrenosgo ¤ mejortorrent ¤ mejortorrent1 + ¤ newpct1 ¤ pelismagnet + + Agradecimientos a @shlibidon y @nyicris por colaborar con esta versión + + + Navega con Kodi por páginas web para ver sus videos de manera fácil. + Browse web pages using Kodi + Browse web pages using Kodi, you can easily watch their video content. + [COLOR red]The owners and submitters to this addon do not host or distribute any of the content displayed by these addons nor do they have any affiliation with the content providers.[/COLOR] + all + GNU GPL v3 + foro + web + my@email.com + https://github.com/alfa-addon/addon + + + + diff --git a/plugin.video.alfa/channels/LIKUOO.py b/plugin.video.alfa/channels/LIKUOO.py index 2ca05d84..660cd916 100644 --- a/plugin.video.alfa/channels/LIKUOO.py +++ b/plugin.video.alfa/channels/LIKUOO.py @@ -46,7 +46,7 @@ def categorias(item): scrapedthumbnail = "https:" + scrapedthumbnail scrapedurl = urlparse.urljoin(item.url,scrapedurl) itemlist.append( Item(channel=item.channel, action="lista", title=scrapedtitle, url=scrapedurl, - thumbnail=scrapedthumbnail, plot=scrapedplot) ) + fanart=scrapedthumbnail, thumbnail=scrapedthumbnail, plot=scrapedplot) ) next_page = scrapertools.find_single_match(data,'...') if next_page!="": next_page = urlparse.urljoin(item.url,next_page) @@ -57,7 +57,7 @@ def categorias(item): def lista(item): logger.info() itemlist = [] - data = scrapertools.cachePage(item.url) + data = httptools.downloadpage(item.url).data data = re.sub(r"\n|\r|\t| |
", "", data) patron = '
.*?' patron += '.*?' @@ -72,7 +72,7 @@ def lista(item): thumbnail = "https:" + scrapedthumbnail plot = "" itemlist.append( Item(channel=item.channel, action="play", title=title, url=url, thumbnail=thumbnail, - plot=plot, contentTitle = contentTitle)) + fanart=thumbnail, plot=plot, contentTitle = contentTitle)) next_page = scrapertools.find_single_match(data,'...') if next_page!="": next_page = urlparse.urljoin(item.url,next_page) @@ -82,7 +82,7 @@ def lista(item): def play(item): logger.info() - data = scrapertools.cachePage(item.url) + data = httptools.downloadpage(item.url).data itemlist = servertools.find_video_items(data=data) for videoitem in itemlist: videoitem.title = item.fulltitle diff --git a/plugin.video.alfa/channels/TXXX.py b/plugin.video.alfa/channels/TXXX.py index 5755703b..32a360b2 100644 --- a/plugin.video.alfa/channels/TXXX.py +++ b/plugin.video.alfa/channels/TXXX.py @@ -109,7 +109,7 @@ def lista(item): def play(item): logger.info() itemlist = [] - data = scrapertools.cachePage(item.url) + data = httptools.downloadpage(item.url).data video_url = scrapertools.find_single_match(data, 'var video_url = "([^"]*)"') video_url += scrapertools.find_single_match(data, 'video_url \+= "([^"]*)"') partes = video_url.split('||') diff --git a/plugin.video.alfa/channels/absoluporn.py b/plugin.video.alfa/channels/absoluporn.py index 2832859d..dcdf6757 100644 --- a/plugin.video.alfa/channels/absoluporn.py +++ b/plugin.video.alfa/channels/absoluporn.py @@ -70,7 +70,7 @@ def lista(item): thumbnail = scrapedthumbnail plot = "" itemlist.append( Item(channel=item.channel, action="play", title=title, url=url, thumbnail=thumbnail, plot=plot, - contentTitle = scrapedtitle)) + fanart=thumbnail, contentTitle = scrapedtitle)) next_page = scrapertools.find_single_match(data, '\d+ CLIPS(.*?)

FILM

') - data = re.sub(r"\n|\r|\t| |
", "", data) - patron = '
  • .*?' - patron += '([^"]+)([^"]+)' - matches = re.compile(patron,re.DOTALL).findall(data) - for scrapedurl,cantidad,scrapedtitle in matches: - scrapedplot = "" - scrapedthumbnail = "" - itemlist.append( Item(channel=item.channel, action="lista", title=scrapedtitle, url=scrapedurl, - thumbnail=scrapedthumbnail, plot=scrapedplot) ) - return itemlist - - def categorias(item): logger.info() itemlist = [] @@ -62,14 +46,14 @@ def categorias(item): scrapedplot = "" scrapedurl = urlparse.urljoin(item.url,scrapedurl) itemlist.append( Item(channel=item.channel, action="lista", title=scrapedtitle, url=scrapedurl, - thumbnail=scrapedthumbnail, plot=scrapedplot) ) - return itemlist + fanart=scrapedthumbnail, thumbnail=scrapedthumbnail, plot=scrapedplot) ) + return sorted(itemlist, key=lambda i: i.title) def lista(item): logger.info() itemlist = [] - data = scrapertools.cachePage(item.url) + data = httptools.downloadpage(item.url).data data = re.sub(r"\n|\r|\t| |
    ", "", data) patron = '
  • NEXT') if next_page!="": next_page = urlparse.urljoin(item.url,next_page) @@ -93,12 +78,12 @@ def lista(item): def play(item): logger.info() itemlist = [] - data = scrapertools.cachePage(item.url) + data = httptools.downloadpage(item.url).data scrapedurl = scrapertools.find_single_match(data,'