2015-11-03, 20:35
Great, thanks for testing. I'll push this version to the repo in the next couple of days.
04:30:33 T:11536 NOTICE: NEXTUP SERVICE NOTIFICATION Service -> logMsg : Calling autoplayback totaltime - playtime is 58.412109375
04:30:33 T:11536 DEBUG: JSONRPC: Incoming request: {"jsonrpc": "2.0", "id": 1, "method": "Player.GetActivePlayers"}
04:30:33 T:11536 NOTICE: NEXTUP SERVICE NOTIFICATION Player -> logMsg : Got active player {"id":1,"jsonrpc":"2.0","result":[{"playerid":1,"type":"video"}]}
04:30:33 T:11536 NOTICE: NEXTUP SERVICE NOTIFICATION Player -> logMsg : Getting details of playing media
04:30:33 T:11536 DEBUG: JSONRPC: Incoming request: {"jsonrpc": "2.0", "id": 1, "method": "Player.GetItem", "params": {"playerid": 1, "properties": ["showtitle", "tvshowid", "episode", "season", "playcount"] } }
04:30:33 T:11536 NOTICE: NEXTUP SERVICE NOTIFICATION Player -> logMsg : Got details of playing media{"id":1,"jsonrpc":"2.0","result":{"item":{"episode":2,"label":"Marvin Gerard","playcount":0,"season":3,"showtitle":"The Blacklist","tvshowid":-1,"type":"unknown"}}}
04:30:33 T:11536 NOTICE: NEXTUP SERVICE NOTIFICATION Service -> logMsg : Netflix style autoplay succeeded.
(2015-11-07, 00:05)ajrg Wrote: As one poster mentioned quite a bit back, I am also experiencing a Kodi crash whenever the timer on the notification gets to zero (ie. when the next episode is supposed to be started).
This is happening on OpenElec x64, and Mac. Using the Arctic Zephyr skin, and the JSON-RPC interface is enabled.
Is this still a known/ongoing issue for some people? Let me know if I can provide any information / which logs you need / assist with debugging.
Hopefully can get it sorted - love the idea of this addon!
(2015-07-08, 15:54)im85288 Wrote:(2015-07-08, 10:25)Steveb Wrote:(2015-07-08, 07:38)mtoddster Wrote: Hey.
I'm trying to figure out to show the correct IMDB rating. They all are rounding to the closest whole number instead of displaying the correct number.
For example if a episode has a rating of 8.2 it round to 8 and if it has a rating of 8.8 it will round to 9.
With my limited knowledge of python I tried to change the rating from a round to floating number but this will display the rating as "8.2310000001" instead of 8.2.
Anyone with a better knowledge of python know how to pull the correct rating?
You will need to set the decimal places in the float function.
rating = str(round(float(self.item['rating']),1)) should work.
Please submit a pull request and I'll include it in a future update
(2015-11-08, 20:38)im85288 Wrote: I am also using the latest Jarvis builds and have not noticed it not working...I will test again later tonight but for all the jarvis versions so far the addon has been working correctly. The log you posted seems to indicate no problems either.
Thanks.
EDIT - Just tried and it is working correctly for me, perhaps worth reporting in the skin section for Titan if it's a skin related issue. But I can confirm this addon is working correctly and displaying the next up dialog in my skin with the latest Jarvis builds
21:00:58 T:12064 NOTICE: NEXTUP SERVICE NOTIFICATION Service -> logMsg : Calling autoplayback totaltime - playtime is 57.1989746094
21:00:58 T:12064 NOTICE: NEXTUP SERVICE NOTIFICATION Player -> logMsg : Got active player {"id":1,"jsonrpc":"2.0","result":[{"playerid":1,"type":"video"}]}
21:00:58 T:12064 NOTICE: NEXTUP SERVICE NOTIFICATION Player -> logMsg : Getting details of playing media
21:00:58 T:12064 NOTICE: NEXTUP SERVICE NOTIFICATION Player -> logMsg : Got details of playing media{"id":1,"jsonrpc":"2.0","result":{"item":{"episode":1,"label":"The Grimm Identity","playcount":0,"season":5,"showtitle":"Grimm","tvshowid":-1,"type":"unknown"}}}
21:00:58 T:12064 NOTICE: NEXTUP SERVICE NOTIFICATION Service -> logMsg : Netflix style autoplay succeeded.
(2015-11-10, 07:05)mgonzales Wrote:(2015-11-08, 20:38)im85288 Wrote: I am also using the latest Jarvis builds and have not noticed it not working...I will test again later tonight but for all the jarvis versions so far the addon has been working correctly. The log you posted seems to indicate no problems either.
Thanks.
EDIT - Just tried and it is working correctly for me, perhaps worth reporting in the skin section for Titan if it's a skin related issue. But I can confirm this addon is working correctly and displaying the next up dialog in my skin with the latest Jarvis builds
I just tested using confluence as the skin - no notification popup occurs and the logs dont show any errors:
Code:21:00:58 T:12064 NOTICE: NEXTUP SERVICE NOTIFICATION Service -> logMsg : Calling autoplayback totaltime - playtime is 57.1989746094
21:00:58 T:12064 NOTICE: NEXTUP SERVICE NOTIFICATION Player -> logMsg : Got active player {"id":1,"jsonrpc":"2.0","result":[{"playerid":1,"type":"video"}]}
21:00:58 T:12064 NOTICE: NEXTUP SERVICE NOTIFICATION Player -> logMsg : Getting details of playing media
21:00:58 T:12064 NOTICE: NEXTUP SERVICE NOTIFICATION Player -> logMsg : Got details of playing media{"id":1,"jsonrpc":"2.0","result":{"item":{"episode":1,"label":"The Grimm Identity","playcount":0,"season":5,"showtitle":"Grimm","tvshowid":-1,"type":"unknown"}}}
21:00:58 T:12064 NOTICE: NEXTUP SERVICE NOTIFICATION Service -> logMsg : Netflix style autoplay succeeded.
any thing else to try? could another script be impacting yours by chance?
does the "type":"unknown"" in the log file indicate any issues?
thanks,
mario
Line 1493: 00:32:37 T:10296 NOTICE: NEXTUP SERVICE NOTIFICATION Service -> logMsg : Calling autoplayback totaltime - playtime is 56.8569335938
Line 1494: 00:32:37 T:10296 NOTICE: NEXTUP SERVICE NOTIFICATION Player -> logMsg : Got active player {"id":1,"jsonrpc":"2.0","result":[{"playerid":1,"type":"video"}]}
Line 1495: 00:32:37 T:10296 NOTICE: NEXTUP SERVICE NOTIFICATION Player -> logMsg : Getting details of playing media
Line 1496: 00:32:37 T:10296 NOTICE: NEXTUP SERVICE NOTIFICATION Player -> logMsg : Got details of playing media{"id":1,"jsonrpc":"2.0","result":{"item":{"episode":3,"label":"Lost Boys","playcount":0,"season":5,"showtitle":"Grimm",
}}}
Line 1497: 00:32:37 T:10296 NOTICE: NEXTUP SERVICE NOTIFICATION Service -> logMsg : Netflix style autoplay succeeded.
(2015-11-14, 11:57)alexxix69 Wrote: Thank you,
script works perfect for me.
Here my solution in MadNox and Isengard 15.2
Fades from this
to this
(2015-11-15, 11:11)mgonzales Wrote:(2015-11-10, 07:05)mgonzales Wrote:(2015-11-08, 20:38)im85288 Wrote: I am also using the latest Jarvis builds and have not noticed it not working...I will test again later tonight but for all the jarvis versions so far the addon has been working correctly. The log you posted seems to indicate no problems either.
Thanks.
EDIT - Just tried and it is working correctly for me, perhaps worth reporting in the skin section for Titan if it's a skin related issue. But I can confirm this addon is working correctly and displaying the next up dialog in my skin with the latest Jarvis builds
I just tested using confluence as the skin - no notification popup occurs and the logs dont show any errors:
Code:21:00:58 T:12064 NOTICE: NEXTUP SERVICE NOTIFICATION Service -> logMsg : Calling autoplayback totaltime - playtime is 57.1989746094
21:00:58 T:12064 NOTICE: NEXTUP SERVICE NOTIFICATION Player -> logMsg : Got active player {"id":1,"jsonrpc":"2.0","result":[{"playerid":1,"type":"video"}]}
21:00:58 T:12064 NOTICE: NEXTUP SERVICE NOTIFICATION Player -> logMsg : Getting details of playing media
21:00:58 T:12064 NOTICE: NEXTUP SERVICE NOTIFICATION Player -> logMsg : Got details of playing media{"id":1,"jsonrpc":"2.0","result":{"item":{"episode":1,"label":"The Grimm Identity","playcount":0,"season":5,"showtitle":"Grimm","tvshowid":-1,"type":"unknown"}}}
21:00:58 T:12064 NOTICE: NEXTUP SERVICE NOTIFICATION Service -> logMsg : Netflix style autoplay succeeded.
any thing else to try? could another script be impacting yours by chance?
does the "type":"unknown"" in the log file indicate any issues?
thanks,
mario
Sorry to ask again... script is still not working (nothing even tries to appear in the GUI).
Is the following log message in BOLD/RED an issue that may be the reason for nothing being displayed? (it would seem that: tvshowid -1 and type unknown are indicators of an issue)
"tvshowid":-1,"type":"unknown"Code:Line 1493: 00:32:37 T:10296 NOTICE: NEXTUP SERVICE NOTIFICATION Service -> logMsg : Calling autoplayback totaltime - playtime is 56.8569335938
Line 1494: 00:32:37 T:10296 NOTICE: NEXTUP SERVICE NOTIFICATION Player -> logMsg : Got active player {"id":1,"jsonrpc":"2.0","result":[{"playerid":1,"type":"video"}]}
Line 1495: 00:32:37 T:10296 NOTICE: NEXTUP SERVICE NOTIFICATION Player -> logMsg : Getting details of playing media
Line 1496: 00:32:37 T:10296 NOTICE: NEXTUP SERVICE NOTIFICATION Player -> logMsg : Got details of playing media{"id":1,"jsonrpc":"2.0","result":{"item":{"episode":3,"label":"Lost Boys","playcount":0,"season":5,"showtitle":"Grimm",Code:}}}
Line 1497: 00:32:37 T:10296 NOTICE: NEXTUP SERVICE NOTIFICATION Service -> logMsg : Netflix style autoplay succeeded.
Any assistance in resolving this issue would be most appreciated - let me know what else I can provide/answer/do to assist figuring this out.
Thanks in advance!
Mario