• 1
  • 12
  • 13
  • 14(current)
  • 15
  • 16
  • 40
Release ESPN 3
(2016-05-04, 01:18)binder420 Wrote: OK installed the new version still does not work on direct tv login
Thank you for trying, can you upload the debug log per the instructions at http://kodi.wiki/view/Log_file/Easy ?
Reply
i did upload the log on pastebin i posted the link
here it is again: http://pastebin.com/e18afQea
Reply
(2016-05-04, 01:04)awaters1 Wrote: @siuside
Smil url being blank is usually due to the ISP not supporting password-less login of ESPN3. Does watchespn through the browser work as is? or do you need to login to your ISP?

I added in some random fixes that I noticed so please try again.

I tried with Comcast XFINITY but theoretically every provider in the list should work.

Thanks. My ISP is TWC and ESPN3 addon stopped working since August 2015 by which time ESPN had migrated all the infrastructure and mandated passwords.

For ESPN3 I do use WatchESPN app and games work after I login.

I will try again with your latest commits and upload a log if it doesn't work. I can see that the authentication process works fine though as I see cookies etc in the userdata.
Reply
I got a "Please verify your username and password..." message when use Dish to view ESPN/ESPN2 contents. ESPN3 works fine for me
Reply
(2016-05-04, 02:18)binder420 Wrote: i did upload the log on pastebin i posted the link
here it is again: http://pastebin.com/e18afQea

Yes that debug log is what I was looking for, I recently made a commit that should fix it.
Reply
installed the new version still getting script error and no premium channels play
used both xfinity and direct tv logins

here is the new log: http://pastebin.com/qGX0Y2SF
Reply
(2016-05-04, 03:07)shoulih Wrote: I got a "Please verify your username and password..." message when use Dish to view ESPN/ESPN2 contents. ESPN3 works fine for me

Same issue and same result with Cox login I am afraid.
Will upload log when possible.
Reply
Greetings,
I installed your latest version from https://github.com/awaters1/plugin.video.espn_3 and tested with a valid Brighthouse username and password in the ESPN3 add-on config (NBC Sports Live works and desktop works). ESPN3 Live and recorded content get the smil:url blank error. I can't see in the debug log that the user id and password is even being passed? Here's the debug log:

http://xbmclogs.com/po5luikf0

Thanks
Reply
Thanks for the great work so far on this addon. Just gave it a try using my DirecTV details and it works fine but doesn't give you a choice to chose stream quality and only plays in SD.

Would be nice if this feature could be added similar to the NBC addon so you can chose the quality or it always plays the best available.
Reply
(2016-05-05, 01:03)samjee Wrote: Thanks for the great work so far on this addon. Just gave it a try using my DirecTV details and it works fine but doesn't give you a choice to chose stream quality and only plays in SD.

Would be nice if this feature could be added similar to the NBC addon so you can chose the quality or it always plays the best available.

It is supposed to be best available, to be honest I haven't looked too much into the quality. The bitrate is low (2200kbps is what I am seeing) so there is some macroblocking, I'm not sure if they offer high bitrate streams.

I also made some updates with authentication in commit 6a28744 so if anyone had troubles before please try again. The plan is to have one pathway for every provider, but that plan may not pan out given the troubles thus far.
Reply
(2016-05-06, 02:00)awaters1 Wrote:
(2016-05-05, 01:03)samjee Wrote: Thanks for the great work so far on this addon. Just gave it a try using my DirecTV details and it works fine but doesn't give you a choice to chose stream quality and only plays in SD.

Would be nice if this feature could be added similar to the NBC addon so you can chose the quality or it always plays the best available.

It is supposed to be best available, to be honest I haven't looked too much into the quality. The bitrate is low (2200kbps is what I am seeing) so there is some macroblocking, I'm not sure if they offer high bitrate streams.

There are some events that are available in HD. Once you grab the master m3u8 file, you should be able to parse it to get the individual streams, and you'd then be able to allow the user to choose which stream they want. You can see there are multiple streams, at various bitrates, in the code below, with the a.m3u8 being the lowest bitrate, and the i.m3u8 being the highest available bitrate.

Code:
#EXTM3U
#EXT-X-VERSION:5
#EXT-UPLYNK-LIVE
#EXT-X-START:TIME-OFFSET=0.0
#EXT-X-INDEPENDENT-SEGMENTS
#UPLYNK-MEDIA0:320x180x30,baseline-13,2x48000
#EXT-X-STREAM-INF:PROGRAM-ID=1,RESOLUTION=320x180,BANDWIDTH=450560,CODECS="mp4a.40.5,avc1.42000d"
http://content-ausw1.uplynk.com/channel/48ac364f60284640be93939cc754a729/d.m3u8
#UPLYNK-MEDIA0:512x288x30,baseline-21,2x48000
#EXT-X-STREAM-INF:PROGRAM-ID=1,RESOLUTION=512x288,BANDWIDTH=901120,CODECS="mp4a.40.5,avc1.420015"
http://content-ausw1.uplynk.com/channel/48ac364f60284640be93939cc754a729/e.m3u8
#UPLYNK-MEDIA0:768x432x30,main-30,2x48000
#EXT-X-STREAM-INF:PROGRAM-ID=1,RESOLUTION=768x432,BANDWIDTH=1351680,CODECS="mp4a.40.5,avc1.4d001e"
http://content-ausw1.uplynk.com/channel/48ac364f60284640be93939cc754a729/f.m3u8
#UPLYNK-MEDIA0:896x504x30,main-31,2x48000
#EXT-X-STREAM-INF:PROGRAM-ID=1,RESOLUTION=896x504,BANDWIDTH=2478080,CODECS="mp4a.40.5,avc1.4d001f"
http://content-ausw1.uplynk.com/channel/48ac364f60284640be93939cc754a729/g.m3u8
#UPLYNK-MEDIA0:896x504x30,high-31,2x48000
#EXT-X-STREAM-INF:PROGRAM-ID=1,RESOLUTION=896x504,BANDWIDTH=3942400,CODECS="mp4a.40.5,avc1.64001f"
http://content-ausw1.uplynk.com/channel/48ac364f60284640be93939cc754a729/h.m3u8
#UPLYNK-MEDIA0:1280x720x30,high-31,2x48000
#EXT-X-STREAM-INF:PROGRAM-ID=1,RESOLUTION=1280x720,BANDWIDTH=5068800,CODECS="mp4a.40.5,avc1.64001f"
http://content-ausw1.uplynk.com/channel/48ac364f60284640be93939cc754a729/i.m3u8
#UPLYNK-MEDIA0:320x180x30,baseline-13,2x48000
#EXT-X-STREAM-INF:PROGRAM-ID=1,RESOLUTION=320x180,BANDWIDTH=171212,CODECS="mp4a.40.5,avc1.42000d"
http://content-ausw1.uplynk.com/channel/48ac364f60284640be93939cc754a729/b.m3u8
#UPLYNK-MEDIA0:320x180x30,baseline-13,2x48000
#EXT-X-STREAM-INF:PROGRAM-ID=1,RESOLUTION=320x180,BANDWIDTH=225280,CODECS="mp4a.40.5,avc1.42000d"
http://content-ausw1.uplynk.com/channel/48ac364f60284640be93939cc754a729/c.m3u8

(2016-05-06, 02:00)awaters1 Wrote: I also made some updates with authentication in commit 6a28744 so if anyone had troubles before please try again. The plan is to have one pathway for every provider, but that plan may not pan out given the troubles thus far.

This is just another reason I gave up working on this. Even if I had been able to get things working for my provider, there would be a lot of trial and error getting it to work with others. Being completely candid, the entire SAML authentication was way over my head, and still is.

@locomot1f knows the add-on way better than I do, but if there's anything I can do to help, just let me know. I'd love to see you be successful with this.
Kodi Nexus on Dell Optiplex 980 Lubuntu 22.04 | Kodi Nexus on HTPC Lubuntu 20.04 | My Add-ons | Legacy Repo | Matrix Repo
>>>>> Newest MetalChris Addons: Redbox | NEWSnet | NHL Radio | Weather Unlocked
Reply
@MetalChris

I remember you were also impacted last year after the addon stopped working (TWC?). Are you able to get it to work with awaters version?
Reply
Now I see, with the ESPN3 channel I can get the higher bitrates (5900ish), but the premium channels I cannot figure it out how to get more than 2200.

@locomot1f: I cannot seem to send PMs at the moment, keeps saying something about 'You do not have permission to access this page.'
Reply
(2016-05-06, 03:35)awaters1 Wrote: Now I see, with the ESPN3 channel I can get the higher bitrates (5900ish), but the premium channels I cannot figure it out how to get more than 2200.

@locomot1f: I cannot seem to send PMs at the moment, keeps saying something about 'You do not have permission to access this page.'

I think you need to make at least 10 (or maybe it's 20?) posts before you can send PM's. Just reply to this one and give it a try again.

(2016-05-06, 03:32)siuside Wrote: @MetalChris

I remember you were also impacted last year after the addon stopped working (TWC?). Are you able to get it to work with awaters version?

No, I have TWC internet only and my credentials do not work, nor do I expect they ever will since they do not work with the NBCSN add-on either. A friend who is on Comcast Xfinity has said it's working for him though.
Kodi Nexus on Dell Optiplex 980 Lubuntu 22.04 | Kodi Nexus on HTPC Lubuntu 20.04 | My Add-ons | Legacy Repo | Matrix Repo
>>>>> Newest MetalChris Addons: Redbox | NEWSnet | NHL Radio | Weather Unlocked
Reply
Two of my systems updated to Openelec 7.0 Beta 3 which caused another issue with the new ESPN 3 add-on. After the update the add-on fails with the following error:

17:37:59 180.557770 T:1787818912 NOTICE: ESPN3: args {}
17:37:59 180.557938 T:1787818912 NOTICE: Generate Main Menu
17:37:59 180.558273 T:1787818912 NOTICE: ESPN3: Fetching config file /storage/.kodi/userdata/addon_data/plugin.video.espn_3/player_config.xml from https://espn.go.com/watchespn/player/config
17:38:00 181.023346 T:1787818912 ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
- NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
Error Type: <type 'exceptions.IOError'>
Error Contents: [Errno socket error] [SSL: CERTIFICATE_VERIFY_FAILED] certificate verify failed (_ssl.c:590)

Adding the following 2 lines near the top of addon.py disables the cert validation and at least lets the add-on start and gets me back to the smil:url blank error:

import ssl
ssl._create_default_https_context = ssl._create_unverified_context

See this thread for info on the error:

https://github.com/pithos/pithos/issues/251

A full debug log of the above error before and after the addon.py mod is here:

http://xbmclogs.com/pd9xlloee
Reply
  • 1
  • 12
  • 13
  • 14(current)
  • 15
  • 16
  • 40

Logout Mark Read Team Forum Stats Members Help
ESPN 32