Página 8 de 95

Re: Italian channels issues and development

Publicado: 26 Jul 2015, 14:41
por zanzibar1982
I really would like to but at the moment the htm structure for that site is over my knowledges.

I am really interested in doing channels for guardaserie.net and animesubita.info

I asked Vvvvid.it plugin editor to join this forum some time ago to see

if he could help for more complicated stuff.

dentaku65,

did you get the github update for cineblog01 yet?

Re: Italian channels issues and development

Publicado: 26 Jul 2015, 15:44
por dentaku65
Il merge su github è andato a buon fine :-)

Dunque quando tu farai le modifiche sul fork io faro' il merge verso di me... non sò viceversa come si comporta, cioè se faccio io delle modifiche... credo sia anaologo non credo che lo faccia automaticamente.... questo perchè il mio repo è considerato il master e per me sei l'upstream (credo)...

Per le trame bè io sono del parere di averle magari non su tutti i canali, per esempio sull'ultimo che ho preparato lo terrei visto che non esiste una funzione di search.... ma è molto lento da voi? A me risulta si un po' lento ma passabile, io poi le trame le leggo per orientarmi....

Poi mi piacerebbe fare un elenco in ordine di affidbilità del canale, ovvero i migliori in alto a scendere, boh ci pensavo

Per i siti che non mostrano i link ma direttamente il player o un link con un redirection (magari una pubblicità) i template che ci sono di pelisalacarta non li rilevano, quindi anche guardaserie, sorry

Re: Italian channels issues and development

Publicado: 26 Jul 2015, 23:46
por zanzibar1982
Sorry dentaku, it was the search option in filmgratiscc slowing down the general search.
Nothing to do with the plots.

Re: Italian channels issues and development

Publicado: 27 Jul 2015, 06:47
por dentaku65
ok cool.

I've update by hand everything on github... please do pull/commit of mine in order to be synchronized

https://help.github.com/articles/syncing-a-fork/ (I'm the upstream, sorry)
This operation is needed every time before you make any change on your repo

Note: filmgratiscc seems that have not updated links and so they go in error if not all most of them.... should we keep it? Your last version give me an error though...

Re: Italian channels issues and development

Publicado: 27 Jul 2015, 12:02
por federdea
Ciao ragazzi grazie del vostro lavoro :D , come posso fare per installare queste modifiche che avete fatto?

Re: Italian channels issues and development

Publicado: 27 Jul 2015, 12:24
por superdanni
federdea escribió:Ciao ragazzi grazie del vostro lavoro :D , come posso fare per installare queste modifiche che avete fatto?
@dentaku65 & @zanzibar82 hanno fatto un gran lavoro

Devi scaricare questo file zip,scompattarlo e seguire le istruzioni

https://github.com/dentaku65/pelisalacartait

Istruzioni:

pelisalacartait
Pelisalacarta Italians plug-in

This is a "silly" repo of italian plugins for Pelisalacarta

In order to add them you have to download channelselector.py and then add the plugin

Place the channelselector.py in the correct place

.kodi/addons/plugin.video.pelisalacarta/

Place plugins in the correct place

.kodi/addons/plugin.video.pelisalacarta/pelisalacarta/channels/

Re: Italian channels issues and development

Publicado: 27 Jul 2015, 17:00
por zanzibar1982
dentaku,

I am trying very hard to port guardaserie.net

The main idea I have is to make the channel so that in the main you get the list of the series

in A - Z order from here http://www.guardaserie.net/category/serie-tv/

Then opening the html of a serie (GoT for example) you find a long string

that composes the serie's seasons and defines the episodes for each season.

I divided the string like that for a better understanding:

Código: Seleccionar todo

<div id="serione">

<h1>Stagione: </h1>

<select name="seasone" id="seasone">
<option value="0" >
<span>1</span>
</option>
<option value="1" >
<span>2</span>
</option>
<option value="2" >
<span>3</span>
</option>
<option value="3" >
<span>4</span>
</option>
<option value="4"  selected>
<span>5</span>
</option>
</select>
</div>

<div id="episode">
<h1>Episodio: </h1>
<select name="episode" id="0">
<option value="0">1</option>
<option value="1">2</option>
<option value="2">3</option>
<option value="3">4</option>
<option value="4">5</option>
<option value="5">6</option>
<option value="6">7</option>
<option value="7">8</option>
<option value="8">9</option>
<option value="9">10</option>
</select>

<select name="episode" id="1">
<option value="0">1</option>
<option value="1">2</option>
<option value="2">3</option>
<option value="3">4</option>
<option value="4">5</option>
<option value="5">6</option>
<option value="6">7</option>
<option value="7">8</option>
<option value="8">9</option>
<option value="9">10</option>
</select>

<select name="episode" id="2">
<option value="0">1</option>
<option value="1">2</option>
<option value="2">3</option>
<option value="3">4</option>
<option value="4">5</option>
<option value="5">6</option>
<option value="6">7</option>
<option value="7">8</option>
<option value="8">9</option>
<option value="9">10</option>
</select>

<select name="episode" id="3">
<option value="0">1</option>
<option value="1">2</option>
<option value="2">3</option>
<option value="3">4</option>
<option value="4">5</option>
<option value="5">6</option>
<option value="6">7</option>
<option value="7">8</option>
<option value="8">9</option>
<option value="9">10</option>
</select>

<select name="episode" id="4">
<option value="0">1</option>
<option value="1">2</option>
<option value="2">3</option>
<option value="3">4</option>
<option value="4">5</option>
<option value="5">6</option>
<option value="6">7</option>
<option value="7">8</option>
<option value="8">9</option>
<option value="9" selected>10</option>
</select>
</div>
so, in kodi from the a-z index the choice should bring to chapters,

then each chapter to the episodes. I need to understand 2 things, mainly:

1) where the page redirects selection of videos,
2) why the script in the channel is not giving me the chapter list.

Here is my work for now:
http://www4.zippyshare.com/v/vjUeGf6k/file.html

We should put effort in this together.

Re: Italian channels issues and development

Publicado: 27 Jul 2015, 17:18
por labtv
hi everybody
thanks for your precious work.
i've a problem... i uninstalled the official pelisalacarta addon and installed the one from mega (found the link a few posts ago)...
but I can't find any list... I only see 2 commas ()

what do i do wrong?
I'm on android

Re: Italian channels issues and development

Publicado: 27 Jul 2015, 17:27
por zanzibar1982
That happened to me when using the apple-like skin.

We work with Confluence skin while developing; other skins installs scripts sometimes that messes up something.

Try changing skin with re-Touched, that gives no problems to me on i9300.

Re: Italian channels issues and development

Publicado: 27 Jul 2015, 18:28
por zanzibar1982
dentaku65 escribió:ok cool.

I've update by hand everything on github... please do pull/commit of mine in order to be synchronized

https://help.github.com/articles/syncing-a-fork/ (I'm the upstream, sorry)
This operation is needed every time before you make any change on your repo

Note: filmgratiscc seems that have not updated links and so they go in error if not all most of them.... should we keep it? Your last version give me an error though...

I don't understand the thing on github mate :?: :D :?:

Let's keep filmgratiscc, still useful in global search. Even cb01 has a lot of hosts offline; I suggest to generally

keep holding the sites we have up until they are up. It will never be perfect, but it will be working most of the time.

EDIT:

...is eurostreaming off? I can't reach neither with ffox or kodi.