Página 40 de 95

Re: Italian channels issues and development

Publicado: 01 Sep 2015, 09:38
por MikeW.
robalo escribió: Forgive my ignorance, but can not be used?

Código: Seleccionar todo

https://raw.githubusercontent.com/user/repository/master/path/file
Example:

Código: Seleccionar todo

https://raw.githubusercontent.com/tvalacarta/pelisalacarta/master/python/main-classic/channels/animeflv.xml
or

Código: Seleccionar todo

https://raw.githubusercontent.com/tvalacarta/pelisalacarta/master/python/main-classic/channels/animeflv.py
i don't known if it would be useful for information, but i use exactly this format (with raw in link format) for import file in kodi (example list m3u) and it work perfectly (for example from site pastebin.com)

Re: Italian channels issues and development

Publicado: 01 Sep 2015, 09:45
por robalo
Prueba este procedimiento.

Código: Seleccionar todo

def read_and_save_files_from_repository( item ):

    url_py = "https://raw.githubusercontent.com/tvalacarta/pelisalacarta/master/python/main-classic/channels/animeflv.py"
    url_xml = "https://raw.githubusercontent.com/tvalacarta/pelisalacarta/master/python/main-classic/channels/animeflv.xml"

    data_py = scrapertools.cache_page( url_py )
    data_xml = scrapertools.cache_page( url_xml )

    save_file_py = os.path.join( config.get_setting( "downloadpath" ) ,"animeflv.py" )
    save_file_xml = os.path.join( config.get_setting( "downloadpath" ) ,"animeflv.xml" )

    f = open( save_file_py,'w' )
    f.write( data_py )
    f.close()

    f = open( save_file_xml,'w' )
    f.write( data_xml )
    f.close()
Lee y almacena los archivos en la carpeta del usuario de pelisalacarta 'downloads'.

Re: Italian channels issues and development

Publicado: 01 Sep 2015, 09:49
por fenice82
MikeW. escribió:
robalo escribió: Forgive my ignorance, but can not be used?

Código: Seleccionar todo

https://raw.githubusercontent.com/user/repository/master/path/file
Example:

Código: Seleccionar todo

https://raw.githubusercontent.com/tvalacarta/pelisalacarta/master/python/main-classic/channels/animeflv.xml
or

Código: Seleccionar todo

https://raw.githubusercontent.com/tvalacarta/pelisalacarta/master/python/main-classic/channels/animeflv.py
i don't known if it would be useful for information, but i use exactly this format (with raw in link format) for import file in kodi (example list m3u) and it work perfectly (for example from site pastebin.com)

For Those that prefer to use Pelisalacarta with skin, in this repo:

https://github.com/Fenice82/plugin.vide ... ui.pureita

they can find this version with only italian channels.

I've used the "raw.githubusercontent" to link all the channel banner.

Re: Italian channels issues and development

Publicado: 01 Sep 2015, 10:01
por zanzibar1982
robalo escribió:
zanzibar1982 escribió:For CHANNELS:
Let me understand: if a channel source is on a github repo,
would it be possible to link "where to look for updates" in its .xml?
Please note that on github you can not directly download .py files, so the "updater"
should open channel page on repo and "scrape" for the channel code.
Forgive my ignorance, but can not be used?

Código: Seleccionar todo

https://raw.githubusercontent.com/user/repository/master/path/file
Example:

Código: Seleccionar todo

https://raw.githubusercontent.com/tvalacarta/pelisalacarta/master/python/main-classic/channels/animeflv.xml
or

Código: Seleccionar todo

https://raw.githubusercontent.com/tvalacarta/pelisalacarta/master/python/main-classic/channels/animeflv.py
Well, I did not know that :P

Re: Italian channels issues and development

Publicado: 01 Sep 2015, 10:47
por zanzibar1982
fenice82 escribió:
MikeW. escribió:
robalo escribió: Forgive my ignorance, but can not be used?

Código: Seleccionar todo

https://raw.githubusercontent.com/user/repository/master/path/file
Example:

Código: Seleccionar todo

https://raw.githubusercontent.com/tvalacarta/pelisalacarta/master/python/main-classic/channels/animeflv.xml
or

Código: Seleccionar todo

https://raw.githubusercontent.com/tvalacarta/pelisalacarta/master/python/main-classic/channels/animeflv.py
i don't known if it would be useful for information, but i use exactly this format (with raw in link format) for import file in kodi (example list m3u) and it work perfectly (for example from site pastebin.com)

For Those that prefer to use Pelisalacarta with skin, in this repo:

https://github.com/Fenice82/plugin.vide ... ui.pureita

they can find this version with only italian channels.

I've used the "raw.githubusercontent" to link all the channel banner.
Good job mate!
the UI version comes very handy on handheld devices.
Now we too can use pelisalacarta like our spanish friends do: while driving! :lol:
EDIT: I have problems on UI interface: on pc the mouse click does no selection,
same on android, can browse but cannot select items.

Re: Italian channels issues and development

Publicado: 01 Sep 2015, 11:34
por fenice82
zanzibar1982 escribió:
Good job mate!
the UI version comes very handy on handheld devices.
Now we too can use pelisalacarta like our spanish friends do: while driving! :lol:
Yes ;) but before subscribe a good contract with your mobile operator!

zanzibar1982 escribió: EDIT: I have problems on UI interface: on pc the mouse click does no selection,
same on android, can browse but cannot select items.
The same with the official version, I use it with remote o Yatse. On my pc I use arrow keys and Enter key

EDIT: I added to my GitHub repo @jesus @dentaku65 @DrZ3r0 @Zanzibar1982

Re: Italian channels issues and development

Publicado: 01 Sep 2015, 15:49
por danteal
Hi guys, I saw The channel seriehd doesn't apper. Is it a bug or is there a reason?
Thx

Re: Italian channels issues and development

Publicado: 01 Sep 2015, 15:55
por fenice82
danteal escribió:Hi guys, I saw The channel seriehd doesn't apper. Is it a bug or is there a reason?
Thx
SerieHD is still under development...

ciao

Fenice82

Re: Italian channels issues and development

Publicado: 02 Sep 2015, 20:16
por DrZ3r0
Hi,
I have fixed search on tantifilm and I added vkpass video host.
The menu on the TV series is missing: I add it tomorrow.
IMHO Tantifilm is a very good channel because videos are uploaded to alternative hosts in Russia: at the moment I have not found a broken link.

Re: Italian channels issues and development

Publicado: 02 Sep 2015, 21:25
por fenice82
thank you very much Dr. I added your fix to my github too.

a little OT for all those that love ANIME

a guy fixed the VVVVID official plugin! you can download the zip file from https://github.com/narsus81/plugin.video.vvvvid

I always hope to have a vvvvid channel for pelisalacarta