Kodi Community Forum

Full Version: [REQUEST] French TV Channels?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hi all - just a question - casual searching didn't yield much:

are there plugins for viewing French TV channels for XBMC?

There is good video on demand (also for non-french IPs) on the TF1 website, for example, would be great to see that integrated into XBMC (and I am sure someone has done it already, I just don;t know where to look?

Interested in arte, TV5Monde, TF1, France2, France3, France24, euronews... as well as any other French speaking channels if available?

More info for interested developers:
http://www.france24.com/ {broadcast simultaneously in French, English and Arabic)
http://www.bbc.co.uk/languages/french/tv...news.shtml

Edit: looks like some old/abandoned video streaming plugin did (some of) this: http://code.google.com/p/xbmc-addons/sou...1135&r=692
just go and read xbmc-passion french forum Wink
ppic Wrote:just go and read xbmc-passion french forum Wink

Merci, ppic, however when browsing http://passion-xbmc.org/addons/?Page=Downloads it looks like the pluzz.fr plugin is the one fulfilling (some of) this brief (France2, France3,...) and it is listed as broken?

Also - is there any reason why these plugins are not being uploaded to the XBMC Dharma addons repository? (Would seem like a good idea to me?) Huh

Still looking for France24 and TF1 (streaming + video on demand) if someone can help?
i was talking about the forum, we are talking about this channels there, M6 replay as been updated yesterday, i'll put it on the passion repo tonight.

why not submitted on official repo? because is mostly french speaking and most user know the french community and use our addon repo, and it's up to the dev to put it in official repo, not our job Wink
My Pluzz.fr plugin is actually dead, but another one is working, you can find it on forum.
There's also a TV plugin to watch stream TV (depends on your FAI)

as this concern French, i think we should talk about that on passion xbmc, don't hesitate, maybe we'll find a way to get what you need Wink
ppic Wrote:as this concern French, i think we should talk about that on passion xbmc, don't hesitate, maybe we'll find a way to get what you need Wink

ppic & others interested in the same - I have asked a question here:
http://passion-xbmc.org/releases-scripts...7etranger/
I have a fixed version of this. Need to upload.

Passion XBMC changed their site and I cannot update to the location I was used to so here you go:

http://ul.to/zxxlmt

MB
mighty_bombero Wrote:I have a fixed version of this. Need to upload.

http://ul.to/zxxlmt

Thank you, mighty_bombero, I've tested this tonight on Dharma Beta 4 and Ubuntu 10.10 -- works like a charm!

Dare I make the crazy suggestion you try to get it added to the official XBMC repositories? It's awesome!

(also, any chance of TF1...? Huh Laugh )
extrospection Wrote:Dare I make the crazy suggestion you try to get it added to the official XBMC repositories? It's awesome!

@mighty_bombero FYI - http://wiki.xbmc.org/index.php?title=Off...Repository
@extrospection:

If you can get the owner of this forum

http://www.encodage.org/phpBB/viewforum.php?f=26

to spill the beans on how he gets to the tf1 stream, i'm willing to hack up the necessary script for an XBMC addon. I had investigated a bit on my own and didn't get far, but there are tools that do.

MB
There are issues with pagination in that last release, I tweaked it a bit so that you can browse to the next page. I included the changes to the procedure "Pagination" below.

Hope it helps!

Quote:def pagination(url_emission):
#retourne le numéro de page précédente, la liste des pages, le num de page active, la page suivante
html = urllib.urlopen(url_emission).read()
#précédent

#Changement de la string << => &lt;&lt; et changement des é => é
match = re.search("""<a href="(\d+)">&lt;&lt; &nbsp; Précédent </a>""",html)
if match:
page_precedente = match.group(1)
else:
page_precedente = None
#courante
match = re.search("""<li class="current">(\d+)</li>""",html)
if match:
page_courante = match.group(1)
else:
page_courante = None
#liste des autres pages
autres_pages= re.findall("""<a href="(\d+)">\d+</a></li>""",html)
#suivant

#Changement de la string >> => &gt;&gt;
match = re.search("""<a href="(\d+)">Suivant &nbsp; &gt;&gt;</a>""",html)
if match:
page_suivante = match.group(1)
else:
#Hack un peu degeu pour avoir un lien vers la prochaine page quand le lien "Suivant" n'est pas present
match = re.search("""<a href="(\d+)">2</a>""",html)
if match:
page_suivante = match.group(1)
else:
page_suivante = None
return page_precedente,page_courante,autres_pages,page_suivante
mighty_bombero Wrote:I have a fixed version of this. Need to upload.

Passion XBMC changed their site and I cannot update to the location I was used to so here you go:

http://ul.to/zxxlmt

MB

Hi,

I have uploaded your add-on to passion-XBMC repository: http://passion-xbmc.org/addons/?Page=Vie...ideo.pluzz
You can replace it by a new version when you want, it will be automatic, just upload the zip file and info will be extracted from the addon.xml file.

The only thing you need to do it is an account on passion-xbmc.

BTW, good job with this add-on it works very well even for people abroard.

One tiny thing, it would be nice if you were adding info to the addon.xml and also a logo, but that just cosmetic.

Thanks a lot.
Hello Temhil and mighty_bombero,

Will it be possible to add the TV5.org and tv5mondeplusafrique.com, France 24 French Live and Arte French version to the PLuzz add-on?

I have searched the web and the forum to no avail. I currently have installed pluzz v1.0.1 and it does contains only france 3, france 2, france 4, france 5 and france O.

Please include the above channels also. I can get rtmp urls using streamtransport, but when I create a .strm file XBMC cannot play the streams.

Thank you and hoping to hearing from you.

Loralon
are these streams available on pluzz ?
Which channels do you mean? If these 2 channels: TV5.org and tv5mondeplusafrique.com, the answer is no. But the following do exist on pluzz: france 3, france 2, france 4, france 5 and france O.

Can you help the missing channels, please?
pluzz is website that provides catchup tv for france television, channels that you speak of aren't part of france television so, it can't be included in pluzz.
Pages: 1 2