• 1
  • 9
  • 10
  • 11
  • 12
  • 13(current)
Release ESPN 3 Fork
(2015-06-20, 01:03)MetalChris Wrote:
(2015-06-18, 02:30)GriffeyJuni0r Wrote: Has anybody got this to work succesfully on AT&T? I get the script error: Attribute Error: 'NoneType' for everything, live and replays.

I've followed the steps in here to create a UserData.xml, but in Step 4 they don't list the affiliate information for AT&T (or where/how to find this).

Any help would be amazing!

In your userdata.xml, try using ATT for the affiliate name.

Thanks! FYI, I was able to get this to work by using: <name>att_sso</name> under the affiliate section of the userdata.xml
Reply
Getting a Script Error today when attempting to load the Live section - something to do with local start times? Replays work fine.

10:01:21 T:3448 NOTICE: ESPN3: get_html: http://sports-ak.espn.go.com/watchespn/f...nnel=espn3
10:01:22 T:3448 ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
- NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
Error Type: <type 'exceptions.ValueError'>
Error Contents: (22, 'Invalid argument')
Traceback (most recent call last):
File "C:\Users\Bedroom\AppData\Roaming\Kodi\addons\plugin.video.espn_3\default.py", line 442, in <module>
INDEX(url,name)
File "C:\Users\Bedroom\AppData\Roaming\Kodi\addons\plugin.video.espn_3\default.py", line 128, in INDEX
etime = time.strftime("%I:%M %p",time.localtime(starttime))
ValueError: (22, 'Invalid argument')
-->End of Python script error report<--
Reply
(2015-07-03, 19:08)GriffeyJuni0r Wrote: Getting a Script Error today when attempting to load the Live section - something to do with local start times? Replays work fine.

10:01:21 T:3448 NOTICE: ESPN3: get_html: http://sports-ak.espn.go.com/watchespn/f...nnel=espn3
10:01:22 T:3448 ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
- NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
Error Type: <type 'exceptions.ValueError'>
Error Contents: (22, 'Invalid argument')
Traceback (most recent call last):
File "C:\Users\Bedroom\AppData\Roaming\Kodi\addons\plugin.video.espn_3\default.py", line 442, in <module>
INDEX(url,name)
File "C:\Users\Bedroom\AppData\Roaming\Kodi\addons\plugin.video.espn_3\default.py", line 128, in INDEX
etime = time.strftime("%I:%M %p",time.localtime(starttime))
ValueError: (22, 'Invalid argument')
-->End of Python script error report<--

Since your log indicates a problem with the default.py file, I can see you're not using the most recent version of the add-on. You should check this thread for the latest updated version from locomot1f. I was getting the same error with the latest version, but the fix is the same (just needed to edit the addon.py in the latest version instead of default.py file). To fix, change line 128 of your default.py file from this:

Code:
etime = time.strftime("%I:%M %p",time.localtime(starttime))

to this:

Code:
etime = time.strftime("%I:%M %p",time.localtime(float(starttime)))

Should get you up and running again.
Kodi Nexus on Dell Optiplex 980 Lubuntu 20.04 | Kodi Nexus on HTPC Lubuntu 20.04 | My Add-ons | Legacy Repo | Matrix Repo
Reply
(2015-07-03, 19:40)MetalChris Wrote:
(2015-07-03, 19:08)GriffeyJuni0r Wrote: Getting a Script Error today when attempting to load the Live section - something to do with local start times? Replays work fine.

10:01:21 T:3448 NOTICE: ESPN3: get_html: http://sports-ak.espn.go.com/watchespn/f...nnel=espn3
10:01:22 T:3448 ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
- NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
Error Type: <type 'exceptions.ValueError'>
Error Contents: (22, 'Invalid argument')
Traceback (most recent call last):
File "C:\Users\Bedroom\AppData\Roaming\Kodi\addons\plugin.video.espn_3\default.py", line 442, in <module>
INDEX(url,name)
File "C:\Users\Bedroom\AppData\Roaming\Kodi\addons\plugin.video.espn_3\default.py", line 128, in INDEX
etime = time.strftime("%I:%M %p",time.localtime(starttime))
ValueError: (22, 'Invalid argument')
-->End of Python script error report<--

Since your log indicates a problem with the default.py file, I can see you're not using the most recent version of the add-on. You should check this thread for the latest updated version from locomot1f. I was getting the same error with the latest version, but the fix is the same (just needed to edit the addon.py in the latest version instead of default.py file). To fix, change line 128 of your default.py file from this:

Code:
etime = time.strftime("%I:%M %p",time.localtime(starttime))

to this:

Code:
etime = time.strftime("%I:%M %p",time.localtime(float(starttime)))

Should get you up and running again.


Got it, thanks - Didn't realize there was a new thread for this. Glad to have it back in the main repo again!
Reply
Thanks for all your efforts, I have installed the latest addon and still no luck.

I just get "SMIL URL Blank Unable to playback video"

Shame really my team are playing on it currently!

For what it's worth I am using Kodi loaded onto an Amazon Fire HD box never get any issues with my other Live streams
Reply
peace Coka,

who is your ISP?

i've got access to a cable provider, so i'm gonna try and see if I can hi-jack some code used for the NBC streaming access.

might take a while. if someone with more knowledge of the technology what's to help out. please feel free to fork my code from github.
Linux Mint 18 LTS 64-bit - Kodi 17 Beta6
Odroid-C2 - Libreelec v7.90.009
Reply
I'm new to Kodi. I was attracted to the program because of the HD Homerun live TV add-on and the development of Silicondust DVR functionality. My Mediacom cable subscription includes ESPN3, Watch ESPN and the SEC Network. I decided to give the Kodi ESPN3 add-on a try and I was amazed but how superior Kodi is for playing ESPN3 content compared to playing through my browser. With Kodi, ESPN3 content loads faster, looks much better and doesn't seem to freeze.

I can't thank the developer enough. The add-on is great. Is there a chance that further development might add the ability to render content from Watch ESPN and the SEC Network? I can always watch those streams from my browser but I'd love to have a better experience.
Reply
(2015-08-03, 18:04)locomot1f Wrote: peace Coka,

who is your ISP?

i've got access to a cable provider, so i'm gonna try and see if I can hi-jack some code used for the NBC streaming access.

might take a while. if someone with more knowledge of the technology what's to help out. please feel free to fork my code from github.

I have Virgin Media (UK) and I'm totally new to all of this... I wouldn't know where to start 'forking' your code! haha
Reply
For the last few days my espn3 plugin is not working. i get blank url error every time. i am on time warner in los angeles. i am using kodi version 15.1 and 15.2 on a a couple of machines. i have pulled a new swid from watchespn on windows. there was a recent update and i have tried both current version and prior version of plugin and neither is working.

if anyone has any suggestions i would really appreciate it.
Reply
(2015-09-30, 21:58)glenb77 Wrote: For the last few days my espn3 plugin is not working. i get blank url error every time. i am on time warner in los angeles. i am using kodi version 15.1 and 15.2 on a a couple of machines. i have pulled a new swid from watchespn on windows. there was a recent update and i have tried both current version and prior version of plugin and neither is working.

if anyone has any suggestions i would really appreciate it.

Unfortunately, virtually every event is now streaming in the HLS format, which seems to be causing issues for most users (the SMIL URL blank error). I also am on TWC internet and am unable to view anything but the HDS or RTMP streams which are now extremely rare. Sorry, I know this isn't very helpful, but I do know that locomot1f is working on re-enabling the ability to log in to the ESPN website through the add-on, which will hopefully get it working for most of us again.

Also, take note that the current thread for this add-on is here.
Kodi Nexus on Dell Optiplex 980 Lubuntu 20.04 | Kodi Nexus on HTPC Lubuntu 20.04 | My Add-ons | Legacy Repo | Matrix Repo
Reply
[log]
21:06:09 4847.482422 T:2731537440 NOTICE: Thread JobWorker start, auto delete: true
21:06:09 4847.484375 T:2645554208 NOTICE: Thread LanguageInvoker start, auto delete: false
21:06:11 4849.009277 T:2645554208 NOTICE: -->Python Interpreter Initialized<--
21:06:18 4856.192871 T:2645554208 NOTICE: Mode: 1
21:06:18 4856.193359 T:2645554208 NOTICE: URL: http://sports-ak.espn.go.com/watchespn/f...nnel=espn3
21:06:18 4856.193359 T:2645554208 NOTICE: Name: Live
21:06:18 4856.193848 T:2645554208 NOTICE: Indexing Videos
21:06:18 4856.194336 T:2645554208 NOTICE: ESPN3: get_html: http://sports-ak.espn.go.com/watchespn/f...nnel=espn3
21:06:28 4865.813965 T:2664428576 NOTICE: Thread BackgroundLoader start, auto delete: false
21:06:29 4867.656250 T:2645554208 NOTICE: Thread LanguageInvoker start, auto delete: false
21:06:31 4869.111328 T:2645554208 NOTICE: -->Python Interpreter Initialized<--
21:06:36 4874.617676 T:2645554208 NOTICE: Mode: 4
21:06:36 4874.618652 T:2645554208 NOTICE: URL: 2691474,,,18695089,HLS
21:06:36 4874.619141 T:2645554208 NOTICE: Name: [COLOR=FFf5f5f5]08:00 PM - IUPUI vs. Missouri State (M Basketball)[/COLOR]
21:06:37 4874.749023 T:2645554208 NOTICE: ESPN3: get_html: https://espn.go.com/watchespn/player/config
21:06:38 4876.048340 T:2645554208 NOTICE: ESPN3: get_html: http://broadband.espn.go.com/espn3/auth/...aybackScen
21:06:42 4879.867188 T:3024794160 ERROR: Playlist Player: skipping unplayable item: 0, path [plugin://plugin.video.espn_3/?url=2691474%2C%2C%2C18695089%2CHLS&mode=4&name=%5BCOLOR%3DFFf5f5f5%5D08%
21:06:43 4881.326660 T:2645554208 NOTICE: Thread BackgroundLoader start, auto delete: false
[/log]

I get SMIL URL Blank as my error. Can anyone help me get this working?
Reply
facing same error - SMIL URL Blank
Reply
I have an unusual problem on RPi 2 OSMC with my ESPN3 addon. When I first start the program and select Replay (as I normally watch recorded info) the "working' display comes on and spins very slowly for about 5 minutes. Then I select my sport (tennis) and get another slow spin for about 5 minutes.

As it happens I have OSMC running on Amazon Fire TV and the response is entirely different. Menu select responds in a few seconds.

One clue. I have found running 'top' that on the RPi CPU utilization in the kodi program is normally reported to be ~25%. Soon as I make a menu select the CPU reports ~120% utilization. Memory looks OK.

Tom Stephenson
Reply
  • 1
  • 9
  • 10
  • 11
  • 12
  • 13(current)

Logout Mark Read Team Forum Stats Members Help
ESPN 3 Fork2