Geekzone: technology news, blogs, forums
Guest
Welcome Guest.
You haven't logged in yet. If you don't have an account you can register now.


View this topic in a long page with up to 500 replies per page Create new topic
1 | 2 | 3
Rickles
2938 posts

Uber Geek

Trusted

  #2436117 11-Mar-2020 08:34
Send private message

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

 

 




Oblivian
7300 posts

Uber Geek

ID Verified

  #2436149 11-Mar-2020 09:42
Send private message

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 ;)


Rickles
2938 posts

Uber Geek

Trusted

  #2436179 11-Mar-2020 10:04
Send private message

@Oblivian … It works, I'm happy 🙂🙂




LookingUp
411 posts

Ultimate Geek


  #2440472 18-Mar-2020 07:34
Send private message

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?


Rickles
2938 posts

Uber Geek

Trusted

  #2440598 18-Mar-2020 11:36
Send private message

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?

 

 


LookingUp
411 posts

Ultimate Geek


  #2440625 18-Mar-2020 12:45
Send private message

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.


openmedia
3332 posts

Uber Geek

Trusted

  #2440627 18-Mar-2020 12:56
Send private message

We're watching "The Dead Lands" on TVNZ - take a look and make sure you get past episode 1.





Generally known online as OpenMedia, now working for Red Hat APAC as a Technology Evangelist and Portfolio Architect. Still playing with MythTV and digital media on the side.


 
 
 

Move to New Zealand's best fibre broadband service (affiliate link). Free setup code: R587125ERQ6VE. Note that to use Quic Broadband you must be comfortable with configuring your own router.
Yellowsub
6 posts

Wannabe Geek


  #2440738 18-Mar-2020 15:08
Send private message

I am having same issue on Win 10 Kodi V18.6 with Slyguys TVNZ OnDemand V16.2 .

 

watching "the Chase" also checked other daily series like neighbours that had same error but the news was fine.

 

Click to see full size

 

Any fixes/ideas?

 

Thanks


Rickles
2938 posts

Uber Geek

Trusted

  #2440759 18-Mar-2020 15:34
Send private message

Can anyone interpret that error message? viz. whose is it (Kodi, SlyGuy, TVNZ??), why it is there and what does it mean?


Lias
5589 posts

Uber Geek

ID Verified
Trusted
Lifetime subscriber

  #2440824 18-Mar-2020 18:37
Send private message

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.


mehunt
9 posts

Wannabe Geek


  #2440904 18-Mar-2020 21:22
Send private message

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.


Yellowsub
6 posts

Wannabe Geek


#2440921 18-Mar-2020 22:12
Send private message

😀fixed thanks to Matt's latest plugin update. thank you Matt.


Rickles
2938 posts

Uber Geek

Trusted

  #2440930 18-Mar-2020 22:53
Send private message

How do I use/install Matt's patch please?


mehunt
9 posts

Wannabe Geek


  #2440972 19-Mar-2020 06:41
Send private message

Sorry, you should be able to follow the instructions here:

https://kodi.wiki/view/HOW-TO:Install_add-ons_from_zip_files

Matt.

LookingUp
411 posts

Ultimate Geek


  #2440980 19-Mar-2020 07:15
Send private message

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.


1 | 2 | 3
View this topic in a long page with up to 500 replies per page Create new topic





News and reviews »

Air New Zealand Starts AI adoption with OpenAI
Posted 24-Jul-2025 16:00


eero Pro 7 Review
Posted 23-Jul-2025 12:07


BeeStation Plus Review
Posted 21-Jul-2025 14:21


eero Unveils New Wi-Fi 7 Products in New Zealand
Posted 21-Jul-2025 00:01


WiZ Introduces HDMI Sync Box and other Light Devices
Posted 20-Jul-2025 17:32


RedShield Enhances DDoS and Bot Attack Protection
Posted 20-Jul-2025 17:26


Seagate Ships 30TB Drives
Posted 17-Jul-2025 11:24


Oclean AirPump A10 Water Flosser Review
Posted 13-Jul-2025 11:05


Samsung Galaxy Z Fold7: Raising the Bar for Smartphones
Posted 10-Jul-2025 02:01


Samsung Galaxy Z Flip7 Brings New Edge-To-Edge FlexWindow
Posted 10-Jul-2025 02:01


Epson Launches New AM-C550Z WorkForce Enterprise printer
Posted 9-Jul-2025 18:22


Samsung Releases Smart Monitor M9
Posted 9-Jul-2025 17:46


Nearly Half of Older Kiwis Still Write their Passwords on Paper
Posted 9-Jul-2025 08:42


D-Link 4G+ Cat6 Wi-Fi 6 DWR-933M Mobile Hotspot Review
Posted 1-Jul-2025 11:34


Oppo A5 Series Launches With New Levels of Durability
Posted 30-Jun-2025 10:15









Geekzone Live »

Try automatic live updates from Geekzone directly in your browser, without refreshing the page, with Geekzone Live now.



Are you subscribed to our RSS feed? You can download the latest headlines and summaries from our stories directly to your computer or smartphone by using a feed reader.