[DEVELOPMENT] Mediaset Premium NetTV addon
#1
Hello all,

in italy exist a service called "Mediaset Premium NetTV". This service allows you to see the content through subscription. ( http://nettv.mediasetpremium.it/ ).

The first step for make the addons is to create a menu.
the site make his menu through a JSON call ( http://nettv.mediasetpremium.it/MDSBE/be...annel=PCTV ). This is formed by an object and a series of array.


I'm not a python developer. Could someone explain to me how it works and how can I begin work?



Thanks
Reply
#2
Have you looked at XBMC PVR Addon (C++) ?
The normal XBMC log IS NOT a debug log, to enable debug logging you must toggle it on under XBMC Settings - System or in advancedsettings.xml. Use XBMC Debug Log Addon to retrieve it.
Reply
#3
Why PVR? The service is through internet for only subscription at the italian pay-tv. It's is similar to RaiClick addon (http://www.angeloxx.it/blog/technews/rai...mc-11.html), but it provide a login to the service. Now, the raiclick addon parse a html of the website when premium nettv use a web frontend using JSON for the content. My difficulties is to decode JSON to a python object for build the menu list in my addon. Logically this is only the first step.
The second step is to view video content ( without login is possible to view only a demo-content ).
The third step is the login procedures.


for the first step i use this simple code

Code:
import json, urllib

JSONUrl = "http://nettv.mediasetpremium.it/MDSBE/besc?action=GetCatalogueTree&channel=PCTV"

JSONContent = urllib.urlopen(JSONUrl).read()

data = json.loads(JSONContent)   ####*???????? it's correct ???????


help! Smile
Reply
#4
Hi, work is going on?
i'm very interested
Reply
#5
I'm very interested too.
Reply
#6
We are all very interested.
Now the add-on exists officially only for XBOX360 Sad.

I think this is really a pity and that XBMC can manage this add-on very easily.

I'm not a developer so everything sound very easy to me Smile... but I know it's not an easy task....

miazza
Reply
#7
I'm very interested too. UP!
Reply
#8
Please build this addon! Thanks
Reply

Logout Mark Read Team Forum Stats Members Help
[DEVELOPMENT] Mediaset Premium NetTV addon1