• 1
  • 8
  • 9
  • 10(current)
  • 11
  • 12
  • 19
WWEN - A WWE Network Plugin
Everything works fine until I try to actually play a file and nothing happens =P
Reply
Still works great for me, pro tip do not delete cookie file in cache folder. Everything else can be deleted. And boom wwe net still working for me since what seems like forever now. Hope that helps you, DON'T DELETE COOKIE FILE FROM KODI CACHE FOLDER.

That cookie is important for wwe network to work so dont delete it from cache ever. All other files in cache can be deleted as need be. Just not the cookie. Cheers all!
Reply
If that's the case...is there a way to put the cookie back in once it is out?
Reply
Doesn't seem to work with either beta 1 or beta 2 of Krypton for me.
Reply
nvm im an idiot type wrong pw
Reply
GeoffTK: I would suggest modifying the following, replace

Code:
return sorted(episodes, key=lambda x: x.air_date)

in wwe.py function get_episodes with:

Code:
return sorted(episodes, key=lambda x: x.air_date, reverse=True)

and then replace all of the current xbmcplugin.addSortMethod()'s in wwenplugin.py with just:

Code:
xbmcplugin.addSortMethod(addon_handle, xbmcplugin.SORT_METHOD_NONE)

This will make videos sort by date, couldn't get it to work without removing title and duration sorting.
Reply
Hi I'm using kodi 17 v5 beta on Amazon Fire tv box and every time I try to play something it says sign on restriction error. Does anyone have any ideas why? My login works on the actual app and also on my pc in kodi which also runs 17 v5 beta. Many thanks
Reply
I have been having trouble with this plugin also. On the newest version (the one labeled "master" in the filename) Nothing works at all plus there is no PPVs list. The only way to find anything is to search for it. Sp I downgraded to the version 1.2.0 which is still floating around. On that one most videos seem to work EXCEPT the livestream and anything uploaded in the last few days. I get "requested media not found" when I select those items. I can deal with the videos listed out of order by date but I would really like to watch the livestream
Reply
been having trouble with this the last couple of weeks, the video list is still there but when I try to play a video I get an error. He's what it says in the log if it's any help.

Quote:19:24:06 T:140123477829376 WARNING: CreateLoader - unsupported protocol(plugin) in plugin://plugin.video.wwen/?mode=episode&id=1216135783

19:24:14 T:140121579951872 ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
- NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
Error Type: <type 'exceptions.IndexError'>
Error Contents: list index out of range
Traceback (most recent call last):
File "/home/<user>/.kodi/addons/plugin.video.wwen-master/wwen_plugin.py", line 235, in <module>
item = xbmcgui.ListItem(path=wwe_network.get_video_url(media_id, addon.getSetting('bitrate')))
File "/home/<user>/.kodi/addons/plugin.video.wwen-master/resources/wwe.py", line 95, in get_video_url
.childNodes[0]
IndexError: list index out of range
-->End of Python script error report<--
Reply
(2016-11-04, 21:11)tomatosoup Wrote: GeoffTK: I would suggest modifying the following, replace

Code:
return sorted(episodes, key=lambda x: x.air_date)

in wwe.py function get_episodes with:

Code:
return sorted(episodes, key=lambda x: x.air_date, reverse=True)

and then replace all of the current xbmcplugin.addSortMethod()'s in wwenplugin.py with just:

Code:
xbmcplugin.addSortMethod(addon_handle, xbmcplugin.SORT_METHOD_NONE)

This will make videos sort by date, couldn't get it to work without removing title and duration sorting.

Maybe you can make a fork for all of us? I would love for some one to fix the addon for the latest version! Smile

EDIT:
I've downloaded the latest build from https://github.com/GeoffTK/plugin.video.wwen
But I get errors when i try to play a video. Any ideas? Ive reinstalled a couple of versions, how do i clean the cache?

EDIT2:
Installing this version makes the playback work but not the browsing stuff (i need to use search to make it work)
https://github.com/mjpbaywolf/plugin.video.wwen

EDIT3:
https://github.com/pasiegel/plugin.video.wwen seems to work just as much as https://github.com/mjpbaywolf/plugin.video.wwen Live Stream does not work.

EDIT4: Seems like this is the latest version https://github.com/alegag/plugin.video.wwen but the playback is broken and the live stream as well.
Reply
So i also have some troubles with this addon.
I can search and start any show and it works very well.
But i can't use "On Demand", it doesn't work.

After i changed the zip wwe network file, now the videos are sort by date. Good step!

Image
Reply
(2016-12-26, 21:51)sajberkg Wrote:
(2016-11-04, 21:11)tomatosoup Wrote: GeoffTK: I would suggest modifying the following, replace

Code:
return sorted(episodes, key=lambda x: x.air_date)

in wwe.py function get_episodes with:

Code:
return sorted(episodes, key=lambda x: x.air_date, reverse=True)

and then replace all of the current xbmcplugin.addSortMethod()'s in wwenplugin.py with just:

Code:
xbmcplugin.addSortMethod(addon_handle, xbmcplugin.SORT_METHOD_NONE)

This will make videos sort by date, couldn't get it to work without removing title and duration sorting.

Maybe you can make a fork for all of us? I would love for some one to fix the addon for the latest version! Smile

EDIT:
I've downloaded the latest build from https://github.com/GeoffTK/plugin.video.wwen
But I get errors when i try to play a video. Any ideas? Ive reinstalled a couple of versions, how do i clean the cache?

EDIT2:
Installing this version makes the playback work but not the browsing stuff (i need to use search to make it work)
https://github.com/mjpbaywolf/plugin.video.wwen

EDIT3:
https://github.com/pasiegel/plugin.video.wwen seems to work just as much as https://github.com/mjpbaywolf/plugin.video.wwen Live Stream does not work.

EDIT4: Seems like this is the latest version https://github.com/alegag/plugin.video.wwen but the playback is broken and the live stream as well.
https://github.com/alegag/plugin.video.wwen used to work for me, but after updating to Kodi 17 I could not play any videos as well.

Took me some time to figure this out, but in the end all it took was replacing a ':' with a '=' in wwe.py.

Replacing

Code:
stream_url = (m3u8_url[:m3u8_url.rfind('/') + 1] + uri + '|' + 'Cookie:' + cookies_string)

with

Code:
stream_url = (m3u8_url[:m3u8_url.rfind('/') + 1] + uri + '|' + 'Cookie=' + cookies_string)

should fix the problems with the live-stream and playback.
Reply
Thank you so much lunartic, months of frustration finally over. did what you said and now live streams and on demand mostly works. Upon further checking the "collections" still do not play but that is a minor inconvenience.
Reply
Thanks for this fix Lunartic. Much appreciated.
Reply
Can you help me please. It doesn't work here:
12:57:15.290 T:1718707104 ERROR: GetDirectory - Error getting
12:57:34.254 T:1962745856 ERROR: Previous line repeats 6 times.
12:57:34.254 T:1962745856 NOTICE: VideoPlayer: Opening: http://hlslive-akc.med1.net.wwe.com/ls01...%3Atrue%7D
12:57:34.254 T:1962745856 WARNING: CDVDMessageQueue(player):Tongueut MSGQ_NOT_INITIALIZED
12:57:34.279 T:1311576992 NOTICE: Creating InputStream
12:57:34.618 T:1311576992 NOTICE: Creating Demuxer
12:57:35.853 T:1311576992 ERROR: OpenDemuxStream - Error creating demuxer
12:57:35.853 T:1311576992 NOTICE: CVideoPlayer::OnExit()
12:57:35.857 T:1962745856 ERROR: Playlist Player: skipping unplayable item: 0, path [plugin://plugin.video.wwen/?mode=episode&id=1221198783]
12:57:35.865 T:1962745856 NOTICE: CVideoPlayer::CloseFile()
12:57:35.865 T:1962745856 NOTICE: VideoPlayer: waiting for threads to exit
12:57:35.865 T:1962745856 NOTICE: VideoPlayer: finished waiting
12:57:35.865 T:1962745856 NOTICE: CVideoPlayer::CloseFile()
12:57:35.865 T:1962745856 NOTICE: VideoPlayer: waiting for threads to exit
12:57:35.865 T:1962745856 NOTICE: VideoPlayer: finished waiting
12:58:36.325 T:1962745856 NOTICE: Samba is idle. Closing the remaining connections
12:58:52.568 T:1962745856 NOTICE: VideoPlayer: Opening: http://hlslive-akc.med1.net.wwe.com/ls01...%3Atrue%7D
12:58:52.568 T:1962745856 WARNING: CDVDMessageQueue(player):Tongueut MSGQ_NOT_INITIALIZED
12:58:52.645 T:1334834080 NOTICE: Creating InputStream
12:58:52.910 T:1334834080 NOTICE: Creating Demuxer
12:58:54.475 T:1334834080 ERROR: OpenDemuxStream - Error creating demuxer
12:58:54.475 T:1334834080 NOTICE: CVideoPlayer::OnExit()
12:58:54.479 T:1962745856 ERROR: Playlist Player: skipping unplayable item: 0, path [plugin://plugin.video.wwen/?mode=episode&id=1220934283]
12:58:54.487 T:1962745856 NOTICE: CVideoPlayer::CloseFile()
12:58:54.487 T:1962745856 NOTICE: VideoPlayer: waiting for threads to exit
12:58:54.487 T:1962745856 NOTICE: VideoPlayer: finished waiting
12:58:54.488 T:1962745856 NOTICE: CVideoPlayer::CloseFile()
12:58:54.488 T:1962745856 NOTICE: VideoPlayer: waiting for threads to exit
12:58:54.488 T:1962745856 NOTICE: VideoPlayer: finished waiting
12:59:26.286 T:1718707104 ERROR: GetDirectory - Error getting
12:59:42.087 T:1962745856 ERROR: Previous line repeats 2 times.
12:59:42.087 T:1962745856 ERROR: Control 500 in window 10025 has been asked to focus, but it can't
12:59:48.004 T:1962745856 NOTICE: VideoPlayer: Opening: http://hlslive-akc.med2.net.wwe.com/ls01...%3Atrue%7D
12:59:48.004 T:1962745856 WARNING: CDVDMessageQueue(player):Tongueut MSGQ_NOT_INITIALIZED
12:59:48.028 T:1319965600 NOTICE: Creating InputStream
12:59:48.466 T:1319965600 NOTICE: Creating Demuxer
12:59:50.909 T:1319965600 ERROR: OpenDemuxStream - Error creating demuxer
12:59:50.909 T:1319965600 NOTICE: CVideoPlayer::OnExit()
12:59:50.910 T:1962745856 ERROR: Playlist Player: skipping unplayable item: 0, path [plugin://plugin.video.wwen/?mode=episode&id=1221198783]
12:59:50.917 T:1962745856 NOTICE: CVideoPlayer::CloseFile()
12:59:50.917 T:1962745856 NOTICE: VideoPlayer: waiting for threads to exit
12:59:50.917 T:1962745856 NOTICE: VideoPlayer: finished waiting
12:59:50.918 T:1962745856 NOTICE: CVideoPlayer::CloseFile()
12:59:50.918 T:1962745856 NOTICE: VideoPlayer: waiting for threads to exit
12:59:50.918 T:1962745856 NOTICE: VideoPlayer: finished waiting
13:00:14.771 T:1962745856 NOTICE: VideoPlayer: Opening:
13:00:14.771 T:1962745856 WARNING: CDVDMessageQueue(player):Tongueut MSGQ_NOT_INITIALIZED
13:00:14.772 T:1539937184 NOTICE: Creating InputStream
13:00:14.777 T:1539937184 ERROR: Error on dvdnav_open
13:00:14.777 T:1539937184 ERROR: CVideoPlayer::OpenInputStream - error opening []
13:00:14.777 T:1539937184 NOTICE: CVideoPlayer::OnExit()
13:00:14.778 T:1962745856 ERROR: Playlist Player: skipping unplayable item: 0, path [plugin://plugin.video.wwen/?mode=episode&id=1220934283]
13:00:14.779 T:1962745856 NOTICE: CVideoPlayer::CloseFile()
13:00:14.779 T:1962745856 NOTICE: VideoPlayer: waiting for threads to exit
13:00:14.779 T:1962745856 NOTICE: VideoPlayer: finished waiting
13:00:14.779 T:1962745856 NOTICE: CVideoPlayer::CloseFile()
13:00:14.779 T:1962745856 NOTICE: VideoPlayer: waiting for threads to exit
13:00:14.779 T:1962745856 NOTICE: VideoPlayer: finished waiting
13:00:29.471 T:1962745856 NOTICE: VideoPlayer: Opening:
13:00:29.471 T:1962745856 WARNING: CDVDMessageQueue(player):Tongueut MSGQ_NOT_INITIALIZED
13:00:29.472 T:1539937184 NOTICE: Creating InputStream
13:00:29.473 T:1539937184 ERROR: Error on dvdnav_open
13:00:29.473 T:1539937184 ERROR: CVideoPlayer::OpenInputStream - error opening []
13:00:29.473 T:1539937184 NOTICE: CVideoPlayer::OnExit()
13:00:29.474 T:1962745856 ERROR: Playlist Player: skipping unplayable item: 0, path [plugin://plugin.video.wwen/?mode=episode&id=1220027283]
13:00:29.485 T:1962745856 NOTICE: CVideoPlayer::CloseFile()
13:00:29.485 T:1962745856 NOTICE: VideoPlayer: waiting for threads to exit
13:00:29.485 T:1962745856 NOTICE: VideoPlayer: finished waiting
13:00:29.485 T:1962745856 NOTICE: CVideoPlayer::CloseFile()
13:00:29.485 T:1962745856 NOTICE: VideoPlayer: waiting for threads to exit
13:00:29.485 T:1962745856 NOTICE: VideoPlayer: finished waiting
13:00:31.803 T:1930425248 NOTICE: CAESinkPi:AddPackets Underrun (delay:0.00 frames:2205)
13:00:32.824 T:1962745856 NOTICE: VideoPlayer: Opening:
13:00:32.824 T:1962745856 WARNING: CDVDMessageQueue(player):Tongueut MSGQ_NOT_INITIALIZED
13:00:32.825 T:1334834080 NOTICE: Creating InputStream
13:00:32.825 T:1334834080 ERROR: Error on dvdnav_open
13:00:32.825 T:1334834080 ERROR: CVideoPlayer::OpenInputStream - error opening []
13:00:32.825 T:1334834080 NOTICE: CVideoPlayer::OnExit()
13:00:32.826 T:1962745856 ERROR: Playlist Player: skipping unplayable item: 0, path [plugin://plugin.video.wwen/?mode=episode&id=1220934283]
13:00:32.835 T:1962745856 NOTICE: CVideoPlayer::CloseFile()
13:00:32.835 T:1962745856 NOTICE: VideoPlayer: waiting for threads to exit
13:00:32.835 T:1962745856 NOTICE: VideoPlayer: finished waiting
13:00:32.835 T:1962745856 NOTICE: CVideoPlayer::CloseFile()
13:00:32.835 T:1962745856 NOTICE: VideoPlayer: waiting for threads to exit
13:00:32.835 T:1962745856 NOTICE: VideoPlayer: finished waiting
13:01:23.528 T:1710318496 ERROR: CCurlFile::Stat - Failed: HTTP response code said error(22) for http://thumbs.media.net.wwe.com/wwe/2014..._th_67.jpg
13:01:27.188 T:1710318496 NOTICE: DecodeJpeg: unable to decode http://thumbs.media.net.wwe.com/wwe/2017..._th_35.jpg 400x224
13:01:34.276 T:1962745856 NOTICE: VideoPlayer: Opening:
13:01:35.744 T:1962745856 WARNING: CDVDMessageQueue(player):Tongueut MSGQ_NOT_INITIALIZED
13:01:35.744 T:1311576992 NOTICE: Creating InputStream
13:01:35.747 T:1311576992 ERROR: Error on dvdnav_open
13:01:35.747 T:1311576992 ERROR: CVideoPlayer::OpenInputStream - error opening []
13:01:35.748 T:1311576992 NOTICE: CVideoPlayer::OnExit()
13:01:35.748 T:1962745856 ERROR: Playlist Player: skipping unplayable item: 0, path [plugin://plugin.video.wwen/?mode=episode&id=1221026483]
13:01:35.748 T:1962745856 NOTICE: CVideoPlayer::CloseFile()
13:01:35.749 T:1962745856 NOTICE: VideoPlayer: waiting for threads to exit
13:01:35.749 T:1962745856 NOTICE: VideoPlayer: finished waiting
13:01:35.749 T:1962745856 NOTICE: CVideoPlayer::CloseFile()
13:01:35.749 T:1962745856 NOTICE: VideoPlayer: waiting for threads to exit
13:01:35.749 T:1962745856 NOTICE: VideoPlayer: finished waiting
13:01:56.001 T:1874850720 ERROR: Unable to find plugin
13:01:56.001 T:1962745856 ERROR: GetDirectory - Error getting plugin://
13:01:56.002 T:1962745856 ERROR: CGUIMediaWindow::GetDirectory(plugin://) failed
Reply
  • 1
  • 8
  • 9
  • 10(current)
  • 11
  • 12
  • 19

Logout Mark Read Team Forum Stats Members Help
WWEN - A WWE Network Plugin1