Can someone please tell me how to install MLB.TV!?
↧
Mlb.tv
↧
nbcsports
hi is Comcast Xfinity in nbcsports stop working
↧
↧
Crackler error
MeMoBOX MX MAX Android TV box
I get the following error when I attempt to watch a Crackle video via the Crackler add-on:
The movie never starts but the clip art does download. The error I get on the screen tells me to check the log file.
I'm new to Kodi and Android TV for that matter.
Can someone please help me resolve this issue?
------------------------------------------------------------------------
UPDATE: Tried different search terms and found the solution, here: http://forum.kodi.tv/showthread.php?tid=...pid2190864
------------------------------------------------------------------------
I get the following error when I attempt to watch a Crackle video via the Crackler add-on:
Code:
20:54:58 T:18446744072296755432 ERROR: InputStream: Error opening, plugin://plugin.video.crackler/?mode=play_video&v_id=2667
20:55:04 T:18446744072309227104 ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
- NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
Error Type: <type 'exceptions.KeyError'>
Error Contents: ('v_id',)
Traceback (most recent call last):
File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.video.crackler/default.py", line 186, in <module>
retrieve_play_url(args_ar['v_id'][0])
KeyError: ('v_id',)
-->End of Python script error report<--
20:55:04 T:18446744072285972632 ERROR: Playlist Player: skipping unplayable item: 0, path [plugin://plugin.video.crackler/?mode=play_video&v_id=3031]
20:55:04 T:18446744072296755432 WARNING: static XFILE::IFile* XFILE::CFileFactory::CreateLoader(const CURL&) - unsupported protocol(plugin) in plugin://plugin.video.crackler/?mode=play_video&v_id=3031
20:55:04 T:18446744072296755432 ERROR: InputStream: Error opening, plugin://plugin.video.crackler/?mode=play_video&v_id=3031
The movie never starts but the clip art does download. The error I get on the screen tells me to check the log file.
I'm new to Kodi and Android TV for that matter.
Can someone please help me resolve this issue?
------------------------------------------------------------------------
UPDATE: Tried different search terms and found the solution, here: http://forum.kodi.tv/showthread.php?tid=...pid2190864
------------------------------------------------------------------------
Quote:The problem is that Kodi ships with python 2.6. This add-on uses the urlparse module to parse out queries. In python version 2.7 and higher, the query is correctly extracted. But not in python 2.6. This leads to an empty query string resulting in an exception.
This post contains a workaround that involves changing the source code of the add-on. http://forum.kodi.tv/showthread.php?tid=219432
Quote:edit the default.py and change the following (occurs 2 times):
from:
args_ar = urlparse.parse_qs(urlparse.urlparse(sys.argv[0]+sys.argv[2]).query)
to:
args_ar = urlparse.parse_qs(sys.argv[2][1:])
↧
Nvidia Shield TV - Crash with Canadian Broadcast Company (CBC) video add-on
Wanted to watch the 2016 Olympics (in Canada) on my [/code] and noticed there was a video add-on for CBC (which is perfect), it installed fine but when I try to start it I am told there are errors and to look at the log file and there are a bunch of errors - honestly was hoping someone could take a look and see if a fix is possible...
And it just goes on-and-on (if you want the entire trace just let me know how best to send it).
Thanks,
Code:
18:59:47 T:1458555184 ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
- NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
Error Type: <type 'exceptions.AttributeError'>
Error Contents: 'NoneType' object has no attribute 'group'
Traceback (most recent call last):
File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.video.cbc/default.py", line 12, in <module>
ma.processAddonEvent()
File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.module.t1mlib/lib/t1mlib.py", line 209, in processAddonEvent
if mode== None: self.procDir(self.getAddonMenu, p('url'), 'files', 'default_view')
File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.module.t1mlib/lib/t1mlib.py", line 156, in procDir
ilist = dirFunc(url, ilist)
File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.video.cbc/resources/lib/scraper.py", line 28, in getAddonMenu
html = re.compile('<section class="section-cats full">(.+?)</section>', re.DOTALL).search(html).group(1)
AttributeError: 'NoneType' object has no attribute 'group'
-->End of Python script error report<--
Code:
18:59:48 T:1391139120 ERROR: static bool XFILE::CDirectory::GetDirectory(const CURL&, CFileItemList&, const XFILE::CDirectory::CHints&, bool) - Error getting plugin://plugin.video.cbc/
18:59:48 T:1391139120 ERROR: CGUIMediaWindow::GetDirectory(plugin://plugin.video.cbc/) failed
19:00:05 T:1435494704 ERROR: EXCEPTION: Non-Existent Control 1
19:00:09 T:1436539184 WARNING: Attempt to use invalid handle -1
19:01:08 T:1487874352 WARNING: Previous line repeats 2 times.
19:01:08 T:1487874352 ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
- NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
Error Type: <type 'exceptions.AttributeError'>
Error Contents: 'NoneType' object has no attribute 'group'
Traceback (most recent call last):
File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.video.cbc/default.py", line 12, in <module>
ma.processAddonEvent()
File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.module.t1mlib/lib/t1mlib.py", line 209, in processAddonEvent
if mode== None: self.procDir(self.getAddonMenu, p('url'), 'files', 'default_view')
File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/script.module.t1mlib/lib/t1mlib.py", line 156, in procDir
ilist = dirFunc(url, ilist)
File "/storage/emulated/0/Android/data/org.xbmc.kodi/files/.kodi/addons/plugin.video.cbc/resources/lib/scraper.py", line 28, in getAddonMenu
html = re.compile('<section class="section-cats full">(.+?)</section>', re.DOTALL).search(html).group(1)
AttributeError: 'NoneType' object has no attribute 'group'
-->End of Python script error report<--
Code:
19:01:08 T:1391139120 ERROR: static bool XFILE::CDirectory::GetDirectory(const CURL&, CFileItemList&, const XFILE::CDirectory::CHints&, bool) - Error getting plugin://plugin.video.cbc/
19:01:08 T:1391139120 ERROR: CGUIMediaWindow::GetDirectory(plugin://plugin.video.cbc/) failed
.....
.....
And it just goes on-and-on (if you want the entire trace just let me know how best to send it).
Thanks,
↧
CBC Plugin Problem
I am having a problem with the CBC plugin from the Kodi repository. It installs fine, but when I try to access the content, I get a general error referring me to the log.
I am running OSMC.
I believe the relevant line from the logfile are below, but I've posted my full log at http://s402540392.onlinehome.us/kodi.log.txt
I am running OSMC.
I believe the relevant line from the logfile are below, but I've posted my full log at http://s402540392.onlinehome.us/kodi.log.txt
Code:
21:13:51 563.896790 T:1703408624 ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
- NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
Error Type: <type 'exceptions.AttributeError'>
Error Contents: 'NoneType' object has no attribute 'group'
Traceback (most recent call last):
File "/home/osmc/.kodi/addons/plugin.video.cbc/default.py", line 12, in <module>
ma.processAddonEvent()
File "/home/osmc/.kodi/addons/script.module.t1mlib/lib/t1mlib.py", line 209, in processAddonEvent
if mode== None: self.procDir(self.getAddonMenu, p('url'), 'files', 'default_view')
File "/home/osmc/.kodi/addons/script.module.t1mlib/lib/t1mlib.py", line 156, in procDir
ilist = dirFunc(url, ilist)
File "/home/osmc/.kodi/addons/plugin.video.cbc/resources/lib/scraper.py", line 28, in getAddonMenu
html = re.compile('<section class="section-cats full">(.+?)</section>', re.DOTALL).search(html).group(1)
AttributeError: 'NoneType' object has no attribute 'group'
-->End of Python script error report<--
21:13:51 564.071411 T:1957143472 ERROR: GetDirectory - Error getting plugin://plugin.video.cbc/
21:13:51 564.073364 T:1957143472 ERROR: CGUIMediaWindow::GetDirectory(plugin://plugin.video.cbc/) failed
↧
↧
Youtube Saved Playlists
Using version 5.2.1 of the "YouTube" addon, is it possible to view "saved playlists" oppose to just created playlists? For example, if I create my own playlist via the YouTube website, it is shown in Kodi. However, if I find someone else's playlist and save, is shown in the YouTube web interface but not Kodi.
Have I got the wrong end of the stick or is this a feature request.
Have I got the wrong end of the stick or is this a feature request.
↧
[Release] Deccan Delight - South Indian Entertainment
Releasing, Deccan Delight, an addon for South Indian movies, tv shows, search.
This is an enhanced fork of Malabar Talkies Addon by Gbzygil.
NOTE - This will only work on Kodi 15 and above.
Dependencies:
(All from Kodi official Repository)
The official repository hosts an older version of Url Resolver (2.0). If you want the newer one 3.x, you may have to install the current maintainer's repository
The addon includes TLS 1.2 support for Windows/Linux only and is diabled by default. Go to the addon settings to enable it if you are running one of those platforms. TLS 1.2 is used by only one of the scraped sites so is not essential for the operation of the addon.
This is my first addon, so there may be bugs. I am not a coder by profession, so the code may be obtuse and not elegant. Coding suggestions/improvements welcome. Please do a pull request through github if you would like to contribute.
What is required on your part before posting a question
- If you find something not working then verify on website whether its working.
- Do not discuss any other addons.
- Do not discuss Url Resolver issues here. Use the addon maintainer's github to report
here is the link to the repository
Install Deccan Delight from the repository, so that you get auto updates automatically when released
PLEASE, Go and show your appreciation to Gbzygil who started the addon in the first place, targeting South Indian populace
This is an enhanced fork of Malabar Talkies Addon by Gbzygil.
NOTE - This will only work on Kodi 15 and above.
Dependencies:
(All from Kodi official Repository)
- Common addon methods
- Requests
- Common plugin cache
- BeautifulSoup 4
- Url Resolver
The official repository hosts an older version of Url Resolver (2.0). If you want the newer one 3.x, you may have to install the current maintainer's repository
The addon includes TLS 1.2 support for Windows/Linux only and is diabled by default. Go to the addon settings to enable it if you are running one of those platforms. TLS 1.2 is used by only one of the scraped sites so is not essential for the operation of the addon.
This is my first addon, so there may be bugs. I am not a coder by profession, so the code may be obtuse and not elegant. Coding suggestions/improvements welcome. Please do a pull request through github if you would like to contribute.
What is required on your part before posting a question
- If you find something not working then verify on website whether its working.
- Do not discuss any other addons.
- Do not discuss Url Resolver issues here. Use the addon maintainer's github to report
here is the link to the repository
Code:
https://github.com/Gujal00/GujalKodiWork/releases/download/1.0/repository.gujal-1.0.zip
Install Deccan Delight from the repository, so that you get auto updates automatically when released
PLEASE, Go and show your appreciation to Gbzygil who started the addon in the first place, targeting South Indian populace
↧
Is there something good for kids?
Is there a video addon that has great shows/movies for kids? I don't mean 10sec clips. I mean full on shows.
↧
control 61 in windows 10147 has been asked to focus but can't
What does the following error mean and how do I fix it?
ERROR control 61 in windows 10147 has been asked to focus but can't
ERROR control 61 in windows 10147 has been asked to focus but can't
↧
↧
NFL Game Pass no access
Dear Friends,
I run KODI on a Raspberry Pi3 with OpenElec operating system mainly to watch the NFL from Germany via the Game Pass Add-on.
I registered for a free test week and anything worked perfect. I was very pleased with the service so I signed up for the whole season. Sorrowly after the test week ended my access was cancelled and now that my full subscription is active I can't get ist to work anymore. My credentials are correct as I am able to login and watch games on my desktop computer via the browser.
I already tried:
- resetting my RB Pi and reinstall anything from the start
- changed the internet access (tethering from my phone) to rule out router problems
- changed password several times
The thing is I get the 'bad jujumagumbo'-error whatever password I type into the configuration - correct one, wrong one, even no one. My guess is that the password is not submitted correctly or at all.
Anyone with a good idea or advice?
Cheers
Michael
I run KODI on a Raspberry Pi3 with OpenElec operating system mainly to watch the NFL from Germany via the Game Pass Add-on.
I registered for a free test week and anything worked perfect. I was very pleased with the service so I signed up for the whole season. Sorrowly after the test week ended my access was cancelled and now that my full subscription is active I can't get ist to work anymore. My credentials are correct as I am able to login and watch games on my desktop computer via the browser.
I already tried:
- resetting my RB Pi and reinstall anything from the start
- changed the internet access (tethering from my phone) to rule out router problems
- changed password several times
The thing is I get the 'bad jujumagumbo'-error whatever password I type into the configuration - correct one, wrong one, even no one. My guess is that the password is not submitted correctly or at all.
Anyone with a good idea or advice?
Cheers
Michael
↧
Xbox Live Addon
Hi, I started developing a Xbox Live Kodi Addon (beta).
To get data from Xbox Live, the addon uses the unofficial Xbox One API.
To use this API, you need to register there and link your MS account.
There is a free plan avaiable with 120 API hits/hour. (The API requests are cleared every full hour)
Imo this is enough, even while testing I hitted the limit only a few times.
After successful registration and linking your MS Account,
get your 'XboxAPI API Key' from xboxapi.com/profile and set it in the Xbox Live Addon Settings.
Screens
Features:
_______________
Known bugs:
_______________
Feedback is welcome!
Download (v0.0.2)
To get data from Xbox Live, the addon uses the unofficial Xbox One API.
To use this API, you need to register there and link your MS account.
There is a free plan avaiable with 120 API hits/hour. (The API requests are cleared every full hour)
Imo this is enough, even while testing I hitted the limit only a few times.
After successful registration and linking your MS Account,
get your 'XboxAPI API Key' from xboxapi.com/profile and set it in the Xbox Live Addon Settings.
Screens
Features:
- Play recordings
- List screenshots
- List friends
_______________
Known bugs:
- Screenshots can only be viewed in FS, if the addon is started from 'image addons'. But Recs can be also played if the addon is started as 'image addons'. If someone knows how to view screenshots from a video addon, please tell me q:
_______________
Feedback is welcome!
Download (v0.0.2)
↧
Adult content
When I tried to install adult content on my kodi. I'm getting a "check log error". Can someone help?
↧
Livestreams for the olympic games (Germany only)
This is a small add-on ("Olympia Livestreams") which adds the livestreams of the ARD/ZDF as a video add-on.
Included into the add-on is a playlist and an EPG which you can add as normal TV stations in the PVR section of Kodi. There are just a few steps to follow:
1. Install the "Olympia Livestreams" add-on
2. Activate the IPTV Simple Add-on
3. Add the channel list in the Options of the IPTV Add-on (Home folder -> addons -> plugin.video.olympia -> ARD_HLS.m3u)
4. Do the same with the EPG (Home folder -> addons -> plugin.video.olympia -> guide.xml)
Download it via my repo.
Included into the add-on is a playlist and an EPG which you can add as normal TV stations in the PVR section of Kodi. There are just a few steps to follow:
1. Install the "Olympia Livestreams" add-on
2. Activate the IPTV Simple Add-on
3. Add the channel list in the Options of the IPTV Add-on (Home folder -> addons -> plugin.video.olympia -> ARD_HLS.m3u)
4. Do the same with the EPG (Home folder -> addons -> plugin.video.olympia -> guide.xml)
Download it via my repo.
↧
↧
Videoplayer InputStream: AmazonPrime does not work
I'm testing the latest nightly from today (KodiSetup-20160808-4a61bf5-master.exe) and am trying to use the Amazon Prime Instant Video-Add-on (german).
While it seems to work with actual *ix-versions of Kodi (Ubuntu, LibreElec, OSMC), people there are reporting that it used to work until the nightlies after July, 10th using Windows, too.
The error that get's logged says
Is this actually a known issue?
Edit: Debug log
While it seems to work with actual *ix-versions of Kodi (Ubuntu, LibreElec, OSMC), people there are reporting that it used to work until the nightlies after July, 10th using Windows, too.
The error that get's logged says
Quote:(...) ERROR: AddOnLog: Input Stream: Could not open / parse mpdURL ...
Is this actually a known issue?
Edit: Debug log
↧
Any chance of an addon for view.yahoo.com?
One of the old XBMC addons that some of us miss was the Hulu addon. Not it appears that Hulu is going subscription only, but they have moved their free content to http://view.yahoo.com/ so I just wondered if it might be easier now for someone to create an addon that would work with that.
↧
NEW P2P-Streams-Parsers - P2P-Streams Addon
Hello!
I'm new in this community (programmer side), and I want to start develop some stuff! So I decided to edit and launch a new version of P2P-Streams-Parsers. Recently with Arenavision Website changes, this parser went down. I re-built the Arenavision Parser and fixed the other ones. If you are a P2P-Streams (credits to enen92 & fightnight ) user, and you miss the schedule you should install this new parser. As this is my first contribution, let me know if you find some bugs (you should open an issue on github), I will try to fix them as soon as I can. Also if you have suggestions or if you think something is not right, let me know!
Let me know what you think!
Latest version of the P2P-Streams-Parsers is version: 1.0.0
--> http://bit.ly/p2pallparsers <-- [Check how to install if you dont remember]
--> Repository <--
How to Install:
If you already use P2P-Streams, Go to Configuration, Delete all Parsers, Add parser with the new link, and then sync.
Disclaimer/Read before you post:
Change Log:
1.0.0 - 2016-08-10
[add] First public preview release
Credits to enen92 & fightnight who started this project. I will try to keep this up-to-date and apply some community suggestions.
I'm new in this community (programmer side), and I want to start develop some stuff! So I decided to edit and launch a new version of P2P-Streams-Parsers. Recently with Arenavision Website changes, this parser went down. I re-built the Arenavision Parser and fixed the other ones. If you are a P2P-Streams (credits to enen92 & fightnight ) user, and you miss the schedule you should install this new parser. As this is my first contribution, let me know if you find some bugs (you should open an issue on github), I will try to fix them as soon as I can. Also if you have suggestions or if you think something is not right, let me know!
Let me know what you think!
Latest version of the P2P-Streams-Parsers is version: 1.0.0
--> http://bit.ly/p2pallparsers <-- [Check how to install if you dont remember]
--> Repository <--
How to Install:
- Download the P2P Streams Add-on and save to a location you can easily access from your Kodi device
- Open Kodi
- Select SYSTEM
- Select Add-Ons
- Select Install from zip file
- Navigate to where you downloaded the zip in the first step and select plugin.video.p2p-streams-x.x.x.zip
- Wait for Add-on enabled notification
- Navigate back to your Home Screen
- Select VIDEOS > Add-Ons
- Highlight - DO NOT SELECT - p2p-streams
- Open the Context Menu (C on your keyboard, right click, Menu button on your remote, Long Press on touch screen devices) & select Add-on settings
- In Lists/Parsers select Run a python script
- Type the following exactly - http://bit.ly/p2pallparsers & select Done
- Select OK
If you already use P2P-Streams, Go to Configuration, Delete all Parsers, Add parser with the new link, and then sync.
Disclaimer/Read before you post:
- Do not ask questions or share links/lists or parsers for sites linked with piracy content
- We can't be responsible for any error, stream problems or the way the background executables work. We do not have a part it their development.
Change Log:
1.0.0 - 2016-08-10
[add] First public preview release
Credits to enen92 & fightnight who started this project. I will try to keep this up-to-date and apply some community suggestions.
↧
WABC Programming Unavailable
Hello all, somewhat new to the Kodi world, certainly new to the forums. So if this is the wrong area to post, I apologize. I have to Kodi apps using OpenElec on a Pi2 and a Pi3. Both of which were able to stream 1080P WABC programming up until a couple of weeks ago. No changes were made to either of the Pi's. NONE of the WABC programming will work on either Pi. I assumed it was just broken, but I've seen nothing posted anywhere and am thinking it must be local to my machines. I am getting a message when trying to play for example, an episode of the Bachelorette. (My wife I swear)
The message reads "One or more items failed to play. Check the log for more details."
In the log I am seeing two errors around the time of trying to play.
First "ERROR: Control 50 in window 10001 has been asked to focus, but it can't."
Second "ERROR: Playlist Player: skipping unplayable item: 0, path [plugin://plugin.video.wabc/?mode=GV&url=3262201."
I don't really know where to even start with this issue, other than the little bit that I've done. I'm pretty sure my wife's eye is starting to twitch from not being able to watch for 2 or three weeks... Any thoughts, and helpful advice would be very much appreciated. Thanks!
The message reads "One or more items failed to play. Check the log for more details."
In the log I am seeing two errors around the time of trying to play.
First "ERROR: Control 50 in window 10001 has been asked to focus, but it can't."
Second "ERROR: Playlist Player: skipping unplayable item: 0, path [plugin://plugin.video.wabc/?mode=GV&url=3262201."
I don't really know where to even start with this issue, other than the little bit that I've done. I'm pretty sure my wife's eye is starting to twitch from not being able to watch for 2 or three weeks... Any thoughts, and helpful advice would be very much appreciated. Thanks!
↧
↧
3pm English Premier League Games
Hey guys,
Not sure if this is the right section, sorry if it isn't.
Just wondering if anyone knows of any decent addons for 3pm EPL kick offs in England?
Thank you
Not sure if this is the right section, sorry if it isn't.
Just wondering if anyone knows of any decent addons for 3pm EPL kick offs in England?
Thank you

↧
NFL Game Pass
Hello,
I installed the Game Pass Add on from the Kodi repo, but when I try to access it, I immediately get the error message that my login info is incorrect. I've signed up for the paid service, and have a valid account which I'm able to access from my computer, but the add on doesn't give me the option of even entering my login info.
Not sure what I can do when I'm not able to enter my username/password so it can be validated. Any help would be much appreciated since I'm needing to use it for tonight's game.
(Running Kodi 16.0 on a Matricom G-box Q2. I'm also using a PIA as my VPN, if that might make a difference)
Thank you!
I installed the Game Pass Add on from the Kodi repo, but when I try to access it, I immediately get the error message that my login info is incorrect. I've signed up for the paid service, and have a valid account which I'm able to access from my computer, but the add on doesn't give me the option of even entering my login info.
Not sure what I can do when I'm not able to enter my username/password so it can be validated. Any help would be much appreciated since I'm needing to use it for tonight's game.
(Running Kodi 16.0 on a Matricom G-box Q2. I'm also using a PIA as my VPN, if that might make a difference)
Thank you!
↧
BBC Olympic Live Streams
BBC Olympic Live Streams
No refunds. No return. This addon will self destruct after the Closing Ceremony. UK Only.
https://github.com/primaeval/plugin.vide.../0.0.4.zip
No refunds. No return. This addon will self destruct after the Closing Ceremony. UK Only.
https://github.com/primaeval/plugin.vide.../0.0.4.zip
↧