![]() ![]() ![]() |
|
Checked again this morning and SlyGuy's (Kodi) Add-on is working perfectly for all OnDemand streaming on my Android TV box (MiBox).
His Version is cited as 0.0.1
Rickles:
Checked again this morning and SlyGuy's (Kodi) Add-on is working perfectly for all OnDemand streaming on my Android TV box (MiBox).
His Version is cited as 0.0.1
That's the repository version. (with the main source URL) You need to drill down in that or goto the addon config for each version ;)
Thanks Team for your work on this.
Got my Kodi sorted over the weekend :-) Was running great the other day but bad buffering issues on TVNZ OnDemand last night. Rebooted everything (Kodi, then Nvidia Shield, then internet router) to no avail, then gave up and watched a film on Netflix that streamed fine. Am wondering whether a recent Kodi upgrade has reset buffering settings (I noticed last night that the release number had incremented), or whether it's a TVNZ issue?
Me too, but the horrendous buffering only happens for 'old' episodes of a series. For example, we have been watching "Mad About You" from the beginning, and series 1 to 5 have atrocious buffering issues, yet after that time streaming is perfect.
Other 'modern' series such as Greys Anatomy and Manifest have no problems at all, so wonder if it is something to do with the older videos?
Hmm - we were watching Gold Digger (a very new series) and an episode played well the other day, but the episode we tried to watch last night would break into buffering every minute or two. We're on a 100Mb/s fibre connection, and it speed tested as that last night, so it shouldn't be a connection issue.
Will look into Kodi buffering settings when I next get a chance.
Can anyone interpret that error message? viz. whose is it (Kodi, SlyGuy, TVNZ??), why it is there and what does it mean?
Rickles:
Can anyone interpret that error message? viz. whose is it (Kodi, SlyGuy, TVNZ??), why it is there and what does it mean?
It's the plugin.
The plugin basically consists of a bunch of python code, and the message is telling you that the code on line 152 of \resources\lib\plugin.py is calling a function in \resources\lib\api.py, and that in turn is failing on line 49, because it's expecting something to be a JSON object and it's not.
Python's not a language I know, but it looks like the plugin is trying to scrape something from the TVNZ, expecting the TVNZ website to return a JSON object, and it's not returning one.
I'm a geek, a gamer, a dad, a Quic user, and an IT Professional. I have a full rack home lab, size 15 feet, an epic beard and Asperger's. I'm a bit of a Cypherpunk, who believes information wants to be free and the Net interprets censorship as damage and routes around it. If you use my Quic signup you can also use the code R570394EKGIZ8 for free setup.
This is the same issue as before, but it now happens with fewer series. A small patch can work around it:
--- slyguy-1.6.2/resources/lib/plugin.py 2020-03-09 22:46:19.000000000 +1300
+++ slyguy-1.6.2/resources/lib/plugin.py 2020-03-18 20:58:17.000000000 +1300
@@ -149,8 +149,14 @@
items = _parse_rows(main_dir['contents'])
if len(items) < int(main_dir.get('size', 0)):
+ try:
rows = api.belt(main_dir['beltPath'])
items = _parse_rows(rows)
+ except ValueError:
+ if 'latestEpisode' in data:
+ last_ep = api.episode(data['latestEpisode']['episodePath'])
+ item = _parse_episode(last_ep)
+ folder.add_items(item)
folder.add_items(items)
I've updated my previous version so you can grab a zip to try that here:
https://www.dropbox.com/s/zdvs6vnhfj5orrf/plugin.video.tvnz.ondemand.zip?dl=1
Works for me on Peppa Pig, and that's all I was hoping for...
Matt.
😀fixed thanks to Matt's latest plugin update. thank you Matt.
How do I use/install Matt's patch please?
LookingUp:
Hmm - we were watching Gold Digger (a very new series) and an episode played well the other day, but the episode we tried to watch last night would break into buffering every minute or two. We're on a 100Mb/s fibre connection, and it speed tested as that last night, so it shouldn't be a connection issue.
Will look into Kodi buffering settings when I next get a chance.
Update - last night we watched the episode of Gold Digger we were having trouble with, and it streamed perfectly. Got most of the way through the final episode and it started buffering again, but not as bad as the other day. Given that we got through one and a half episodes with no issues at all would it be reasonable to assume that the issue isn't at our end, but probably TVNZ OnDemand? I don't think it's an issue with our broadband connection as Netflix worked fine the other day when streaming on TVNZ OnDemand was hopeless.
|
![]() ![]() ![]() |