Página 6 de 95
Re: Italian channels issues and development
Publicado: 25 Jul 2015, 08:52
por dentaku65
****UPDATE on Github****
Added fanart to all channels (maybe)
Removed Robinfilm, pointing to a malicious site

Re: Italian channels issues and development
Publicado: 25 Jul 2015, 08:55
por dentaku65
zanzibar, ma perchè non fai il fork su github dei canali italiani così abbiamo un repository unico? Io ti approvo e le modifiche vengono immediatamente aggiornate... no?
....e adesso sotto con i plot! di canali ne abbiamo già molti

Re: Italian channels issues and development
Publicado: 25 Jul 2015, 09:05
por zanzibar1982
Plots are in my priorities indeed.
Unfortunately sites are not helping much with that,
Cineblog has plots since the main page
if you point me on the way to scrape plots from somewhere
I'd work on it.
And shame on me I don't understand how github works

Re: Italian channels issues and development
Publicado: 25 Jul 2015, 09:39
por dentaku65
Per i plot ci sto' guardando.... speravo di aver risolto con un sito ma in realtà mi faceva il display dei tag html
Github è molto semplice, ti registri e fai un fork (si chiama così) del mio progetto, questo fork copia tutti i file del mio progetto nel tuo profilo e quindi puoi modificare e/o aggiungere i file sul fork; il fork è in read-only verso di me fintanto che io non ti approvo che puoi essere anche in scrittura, a questo punto la modifica che farai sul tuo progetto verrà automaticamente aggiornata sul mio; se non ti approvo mi viene comunque notificata la modifica... ma non è questo il caso.
Re: Italian channels issues and development
Publicado: 25 Jul 2015, 09:41
por zanzibar1982
Eccellente, chiarissimo.
Hai pm.
Re: Italian channels issues and development
Publicado: 25 Jul 2015, 10:58
por zanzibar1982
Off Topic:
I was looking for a way to see sports with pelisalacarta,
and looks like it is possible indeed, but the project seems
not progressing anymore
More informations here
https://github.com/pipcat/pelisalacarta.sports
Anyways, here's a good guide to see sports events with Kodi.
https://seo-michael.co.uk/how-to-instal ... xbmc-os-x/
Adelante!
Re: Italian channels issues and development
Publicado: 25 Jul 2015, 11:46
por superdanni
Mamma mia ragazzi siete mitici,grazie mille.
Per usurfruirne al meglio devo disattivare gli aggiornamenti automatici di pelisalacarta?
Re: Italian channels issues and development
Publicado: 25 Jul 2015, 11:57
por zanzibar1982
superdanni
Thanks, yeah we are putting a lot of effort into this.
The version I last uploaded should have settings set to not auto-update.
If you like to open things to see how are they done inside than you should
use dentaku65's github files.
Re: Italian channels issues and development
Publicado: 25 Jul 2015, 12:12
por dentaku65
Ladies and Gentelmen ....the plots!
https://github.com/dentaku65/pelisalacartait
Indicati come add plot... pianetastreaming, italianstream e filmstream
Non molto eleganti, ma efficenti.... più tardi passo agli altri

Re: Italian channels issues and development
Publicado: 25 Jul 2015, 12:28
por zanzibar1982
Excellent
Here's a hint:
To eliminate a portion of text from a plot or a title:
Código: Seleccionar todo
if scrapedplot.startswith(""):
scrapedplot = scrapedplot[159:]
Use scrapedtitle instead for titles, of course.
This is how it goes:
Código: Seleccionar todo
for match in matches:
scrapedthumbnail = urlparse.urljoin(item.url,match[0])
scrapedurl = urlparse.urljoin(item.url,match[1])
scrapedtitle = scrapertools.unescape(match[2])
scrapedplot = scrapertools.unescape(match[3])
if scrapedplot.startswith(""):
scrapedplot = scrapedplot[159:]
if (DEBUG): logger.info("title=["+scrapedtitle+"], url=["+scrapedurl+"], thumbnail=["+scrapedthumbnail+"]")
And that is the mess I had to actually elaborate in order to fix anime's plots in cineblog.
