Página 36 de 95

Re: Italian channels issues and development

Publicado: 28 Ago 2015, 23:22
por fenice82
zanzibar1982 escribió:
I guess the repo is https://github.com/Fenice82/pelisalacarta_it :)


Yep, typo :oops:
zanzibar1982 escribió: Still, the "fichas" does not extract all the entries in "sub-ita" section (I mentioned that in the dedicated thread).
And the coudflare-protected sites are not working for me on android :?
Good job, keep working on it!
Tomorrow I'll check on android and compare the items on sub-ita
dentaku65 escribió:
Merged :D
Thk :)

Re: Italian channels issues and development

Publicado: 28 Ago 2015, 23:39
por zanzibar1982
dentaku65 escribió:
danteal escribió:Ho guys, I found a problem on cineblog.FM
It doesn't work. Also The TV series on piratestreaming.
For cineblogfm I got an error too... I'll check asap... for piratestreaming I do not have any arrors...
As I said already, it's the scrapedplot.

if you put this instead:

Código: Seleccionar todo

def peliculas(item):
    logger.info("pelisalacarta.cineblogfm peliculas")
    itemlist = []

    # Descarga la pagina
    data = scrapertools.cache_page(item.url)

    # Extrae las entradas (carpetas)
    patron = '<div class="short-story">\s*'
    patron += '<a href="(.*?)" title="(.*?)">\s*'
    patron += '<img.*?:url\((.*?)\)'
    matches = re.compile(patron,re.DOTALL).findall(data)
    scrapertools.printMatches(matches)

    for scrapedurl,scrapedtitle,scrapedthumbnail in matches:
        if (DEBUG): logger.info("title=["+scrapedtitle+"], url=["+scrapedurl+"], thumbnail=["+scrapedthumbnail+"]")
        itemlist.append( Item(channel=__channel__, action="findvid_serie" if item.extra == "serie" else "findvideos", title=scrapedtitle, url=scrapedurl , thumbnail=scrapedthumbnail , viewmode="movie_with_plot", fanart=scrapedthumbnail , folder=True ) )


    # Extrae el paginador
    patronvideos  = '<span class="nav_ext">...</span> <a href=".*?">.*?</a> <a href="(.*?)">Avanti</a></div></div>'
    matches = re.compile(patronvideos,re.DOTALL).findall(data)
    scrapertools.printMatches(matches)

    if len(matches)>0:
        scrapedurl = urlparse.urljoin(item.url,matches[0])
        itemlist.append( Item(channel=__channel__, extra=item.extra, action="peliculas", title="[COLOR orange]Avanti >>[/COLOR]" , url=scrapedurl , thumbnail="http://2.bp.blogspot.com/-fE9tzwmjaeQ/UcM2apxDtjI/AAAAAAAAeeg/WKSGM2TADLM/s1600/pager+old.png", folder=True) )

    return itemlist
It works no problem, but I see dentaku already removed plots ATM.
Another problem with the channel is it does not extract the tv shows' episodes.

EDIT: just fixed it, please check and report any other problem.

Re: Italian channels issues and development

Publicado: 29 Ago 2015, 23:53
por fenice82
Installed back android on my key and I've got the message "one or more items failed to play
"refer to log file for detail" when I tried to play any movie... :roll: tomorrow I'll manage with advancedsettings.

About Altadefinizioneclick I was thinking to remove the "sub-ita" section untill we find a fix.

Let me know what di you think about...

Ciao

Fenice82

Re: Italian channels issues and development

Publicado: 30 Ago 2015, 00:20
por robalo
@fenice82: The solution to the problem for the pattern of 'sub-ita' in 'altadefinizioneclick' is in your thread viewtopic.php?f=23&t=6930.

Re: Italian channels issues and development

Publicado: 30 Ago 2015, 08:13
por fenice82
robalo escribió:@fenice82: The solution to the problem for the pattern of 'sub-ita' in 'altadefinizioneclick' is in your thread viewtopic.php?f=23&t=6930.
I'm very sorry @robalo, I miss your comment in the other post :oops:

EDIT: the issue was fixed.

Thk robalo!

Re: Italian channels issues and development

Publicado: 30 Ago 2015, 09:20
por dentaku65
Hi all,

I've installed pelisalacarta 4.0.2 and everything is working fine with our channels/servers.

In order to install the last version you must remove the previous Pelisalacarta and install the version 4.0.2; then you have to replace/add files (channels,servers,lib and channelselector) as usual

For global search you can maintain the one present in the new package (the location is changed, now is under channels) and you can add global_search_exclusion.txt (is new the escludi.txt) present on our repo and place it in:

Código: Seleccionar todo

.kodi/userdata/addon_data/plugin.video.pelisalacarta 
The search is not accurate as before anyway

ciao
den

Re: Italian channels issues and development

Publicado: 30 Ago 2015, 11:45
por robalo
fenice82 escribió:I'm very sorry @robalo, I miss your comment in the other post :oops:

EDIT: the issue was fixed.

Thk robalo!
You're welcome, my pleasure.

I repeat what was said in the thread of 'altadefinizioneclick'. You need to add the 'fix - IMDB'.
If you try to search for videos with the word 'scan' with just 'fix - calidad', you will see that only extracts 10 items when they should be 12. 'fix - IMDB' is to fix that. When you see something you do not understand that it may be not hesitate to ask.

Re: Italian channels issues and development

Publicado: 30 Ago 2015, 12:56
por zanzibar1982
@pelisalacartait users:

In order to have a working "filmsubito" channel, that relies a lot on youwatch server,

you need to have "unpackerjs3.py" in "core" folder, available also here

https://github.com/Zanzibar82/pelisalac ... aster/core

and the "youwatch.py" robalo edited you can take from here

https://github.com/Zanzibar82/pelisalac ... er/servers

Re: Italian channels issues and development

Publicado: 30 Ago 2015, 14:34
por fenice82
robalo escribió:You're welcome, my pleasure.

I repeat what was said in the thread of 'altadefinizioneclick'. You need to add the 'fix - IMDB'.
If you try to search for videos with the word 'scan' with just 'fix - calidad', you will see that only extracts 10 items when they should be 12. 'fix - IMDB' is to fix that. When you see something you do not understand that it may be not hesitate to ask.
@robalo,

with the fix I get 12 items as per screenshot

Imagen

If I add the code about IMDB I get duplicate items, as per next screenshot (the first one and last one)

Imagen

Re: Italian channels issues and development

Publicado: 30 Ago 2015, 17:30
por superdanni
I continue to hold the step to 3.9 or 4.0.2?
The core portfolio with the dummy file what is?