• 1
  • 27
  • 28
  • 29(current)
  • 30
  • 31
  • 52
Release Netflix style next up notification
The change I mentioned earlier to show a preview of an upcoming unwacthed episode: http://forum.kodi.tv/showthread.php?tid=...pid2189736 is now inlcuded in the latest release. By default it is turned off so to activate it you will need to turn it on in the settings. It is still kind of WIP so any bugs/suggestions please let me know.

Also for anyone using STRMs @bigpanda has recently sent me a Pull Request to fix a bug in Jarvis, this fix is now on GIT so any testing that can be done is appreciated (as I do not personally use strm files)
Reply
(2016-01-12, 10:21)im85288 Wrote:
(2016-01-09, 11:50)wencaS Wrote: Hello!
I found a mistake in the rating rounding.
I caught the value to a log file with modified file NextUpInfo.py
Code:
594: 07:38:14 52410.902344 T:1789879360  NOTICE: wencaS RATING self.item['rating']:                      8.10000038147
595: 07:38:14 52410.906250 T:1789879360  NOTICE: wencaS RATING str(round(float(self.item['rating']))):   8.0
596: 07:38:14 52410.906250 T:1789879360  NOTICE: wencaS RATING str(round(float(self.item['rating']),1)): 8.1
755: 18:31:58 5235.738770 T:1790047296  NOTICE: wencaS RATING self.item['rating']:                       6.69999980927
756: 18:31:58 5235.739258 T:1790047296  NOTICE: wencaS RATING str(round(float(self.item['rating']))):    7.0
757: 18:31:58 5235.739746 T:1790047296  NOTICE: wencaS RATING str(round(float(self.item['rating']),1)):  6.7
1670: 08:17:53 54790.660156 T:1789879360  NOTICE: wencaS RATING self.item['rating']:                      7.59999990463
1671: 08:17:53 54790.660156 T:1789879360  NOTICE: wencaS RATING str(round(float(self.item['rating']))):   8.0
1672: 08:17:53 54790.660156 T:1789879360  NOTICE: wencaS RATING str(round(float(self.item['rating']),1)): 7.6
1715: 19:08:36 7433.763184 T:1790047296  NOTICE: wencaS RATING self.item['rating']:                       7.30000019073
1716: 19:08:36 7433.763184 T:1790047296  NOTICE: wencaS RATING str(round(float(self.item['rating']))):    7.0
1717: 19:08:36 7433.763672 T:1790047296  NOTICE: wencaS RATING str(round(float(self.item['rating']),1)):  7.3
2204: 08:37:32 55969.175781 T:1789879360  NOTICE: wencaS RATING self.item['rating']:                      7.30000019073
2205: 08:37:32 55969.175781 T:1789879360  NOTICE: wencaS RATING str(round(float(self.item['rating']))):   7.0
2206: 08:37:32 55969.175781 T:1789879360  NOTICE: wencaS RATING str(round(float(self.item['rating']),1)): 7.3
2729: 19:45:50 9667.014648 T:1790047296  NOTICE: wencaS RATING self.item['rating']:                       7.40000009537
2730: 19:45:50 9667.015625 T:1790047296  NOTICE: wencaS RATING str(round(float(self.item['rating']))):    7.0
2731: 19:45:50 9667.015625 T:1790047296  NOTICE: wencaS RATING str(round(float(self.item['rating']),1)):  7.4

Please replace this
Code:
rating = str(round(float(self.item['rating'])))
with
Code:
rating = str(round(float(self.item['rating']),1))
in this files:
  • UnwatchedInfo.py
  • NextUpInfo.py
  • StillWatchingInfo.py

Please can you keep this change in the next version?

Thanks.

Thank you, I will include this in the next release.
Thank you very much.
Raspberry Pi2 OpenELEC 6.0.0 & KODI 15.2 Isengard
Aeon MQ 6 3.3.0 Stars color according ratings
Reply
(2016-01-12, 10:25)im85288 Wrote: The change I mentioned earlier to show a preview of an upcoming unwacthed episode: http://forum.kodi.tv/showthread.php?tid=...pid2189736 is now inlcuded in the latest release. By default it is turned off so to activate it you will need to turn it on in the settings. It is still kind of WIP so any bugs/suggestions please let me know.

Also for anyone using STRMs @bigpanda has recently sent me a Pull Request to fix a bug in Jarvis, this fix is now on GIT so any testing that can be done is appreciated (as I do not personally use strm files)
Could you tell me the Version Number of the latest release? I couldn't find it in Git, I just wanted to check something.
Reply
Hey im85288 I just wanted to say thanks for all the work. I downloaded this app a few days ago and its absolutely amazing.

I had a feature request as well. I noticed if you create a playlist, at the end of the first episode, it ignores the current playlist and automatically plays the next episode for that particular show.

Would it be possible to add a feature to the add-on that deactivates the popup if more than 1 item is in the current playlist? Or at least suppress it until the last item in the playlist.
I realize deactivating the add-on would solve this problem, but having to go back and forth to activate, and deactivate the add-on can become tiresome.

Thanks again for all your hard work, mate!
Reply
I'm updating my fTV skin as Amazon have changed their 'Next Up' notification layout and have a couple of request please.

Image

1. Mpaa rating
2. HasSubtitles EDIT: Subtitle language might be better as I can still use IsEmpty() and someone else might want the actual language.

Thanks.
Reply
I'm currently watching shows which have dialogs till the last second of the show and they always get cut off.
Seems like this addon should skip after it hits zero not between 1 and 0.
Reply
@im85288: Is the preview of an unmatched upcoming Episode somehow dependant on Country or language or Settings? I've never seen it in action.
Reply
(2016-01-18, 11:31)Rokanishu Wrote: Hey im85288 I just wanted to say thanks for all the work. I downloaded this app a few days ago and its absolutely amazing.

I had a feature request as well. I noticed if you create a playlist, at the end of the first episode, it ignores the current playlist and automatically plays the next episode for that particular show.

Would it be possible to add a feature to the add-on that deactivates the popup if more than 1 item is in the current playlist? Or at least suppress it until the last item in the playlist.
I realize deactivating the add-on would solve this problem, but having to go back and forth to activate, and deactivate the add-on can become tiresome.

Thanks again for all your hard work, mate!

Hi, thanks for the kind words mate. I'll have a look at that when I get some free time to see what can be done.
Reply
(2016-01-19, 17:42)Hitcher Wrote: I'm updating my fTV skin as Amazon have changed their 'Next Up' notification layout and have a couple of request please.

Image

1. Mpaa rating
2. HasSubtitles EDIT: Subtitle language might be better as I can still use IsEmpty() and someone else might want the actual language.

Thanks.

Sure, I'll see what can be done the next time I get some free time to look at the code.

(2016-01-20, 15:55)Razze Wrote: I'm currently watching shows which have dialogs till the last second of the show and they always get cut off.
Seems like this addon should skip after it hits zero not between 1 and 0.

I'm not sure what the problem is here, if you open an issue on GIT we can discuss it there. Thanks
Reply
(2016-01-20, 18:36)D-m-x Wrote: @im85288: Is the preview of an unmatched upcoming Episode somehow dependant on Country or language or Settings? I've never seen it in action.

Yes for now (and maybe permanently?) it's an option that needs to be turned on in the settings. It's something I would like to improve later on but for now it works pretty well..so always open to ideas to improve Smile
Reply
(2016-01-20, 21:10)im85288 Wrote:
(2016-01-19, 17:42)Hitcher Wrote: I'm updating my fTV skin as Amazon have changed their 'Next Up' notification layout and have a couple of request please.

Image

1. Mpaa rating
2. HasSubtitles EDIT: Subtitle language might be better as I can still use IsEmpty() and someone else might want the actual language.

Thanks.

Sure, I'll see what can be done the next time I get some free time to look at the code.
Many thanks.
Reply
(2016-01-20, 21:15)im85288 Wrote:
(2016-01-20, 18:36)D-m-x Wrote: @im85288: Is the preview of an unmatched upcoming Episode somehow dependant on Country or language or Settings? I've never seen it in action.

Yes for now (and maybe permanently?) it's an option that needs to be turned on in the settings. It's something I would like to improve later on but for now it works pretty well..so always open to ideas to improve Smile

Hey, thanks for your answer, maybe I didn't make myself clear, sorry Blush
I meant I enabled that Option but I couldn't see anything in any of my shows and I have it running since you released it. Is it limited to Genres for now Shows or maybe Language Huh?
Reply
I have error when lauching Kodi (last github build) :

Code:
15:01:15 T:123145313189888   ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
                                             - NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
                                            Error Type: <type 'exceptions.IndentationError'>
                                            Error Contents: ('unindent does not match any outer indentation level', ('/Users/Cyril/Library/Application Support/Kodi/addons/service.nextup.notification/resources/lib/Player.py', 300, 61, '                    self.currentepisodeid = currentepisodeid\n'))
                                            Traceback (most recent call last):
                                              File "/Users/Cyril/Library/Application Support/Kodi/addons/service.nextup.notification/service.py", line 11, in <module>
                                                from Player import Player
                                            IndentationError: ('unindent does not match any outer indentation level', ('/Users/Cyril/Library/Application Support/Kodi/addons/service.nextup.notification/resources/lib/Player.py', 300, 61, '                    self.currentepisodeid = currentepisodeid\n'))
                                            -->End of Python script error report<--
15:01:15 T:123145317482496  NOTICE: VideoInfoScanner: Finished scan. Scanning for video info took 00:00
15:01:15 T:123145314263040  NOTICE: Skin Helper Service --> Kodi_Monitor: onDatabaseUpdated: video
15:01:16 T:123145319092224   ERROR: GetDirectory - Error getting None
15:02:26 T:123145310429184 WARNING: DARWINOSX: underflow (0 vs 4096 bytes)
 Estuary MOD V2 
Reply
(2016-01-22, 16:07)Guilouz Wrote: I have error when lauching Kodi (last github build) :

Code:
15:01:15 T:123145313189888   ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<--
                                             - NOTE: IGNORING THIS CAN LEAD TO MEMORY LEAKS!
                                            Error Type: <type 'exceptions.IndentationError'>
                                            Error Contents: ('unindent does not match any outer indentation level', ('/Users/Cyril/Library/Application Support/Kodi/addons/service.nextup.notification/resources/lib/Player.py', 300, 61, '                    self.currentepisodeid = currentepisodeid\n'))
                                            Traceback (most recent call last):
                                              File "/Users/Cyril/Library/Application Support/Kodi/addons/service.nextup.notification/service.py", line 11, in <module>
                                                from Player import Player
                                            IndentationError: ('unindent does not match any outer indentation level', ('/Users/Cyril/Library/Application Support/Kodi/addons/service.nextup.notification/resources/lib/Player.py', 300, 61, '                    self.currentepisodeid = currentepisodeid\n'))
                                            -->End of Python script error report<--
15:01:15 T:123145317482496  NOTICE: VideoInfoScanner: Finished scan. Scanning for video info took 00:00
15:01:15 T:123145314263040  NOTICE: Skin Helper Service --> Kodi_Monitor: onDatabaseUpdated: video
15:01:16 T:123145319092224   ERROR: GetDirectory - Error getting None
15:02:26 T:123145310429184 WARNING: DARWINOSX: underflow (0 vs 4096 bytes)


Hi,
It works on my fireTv. IM85288 can you fix the indentation as i have no way of testing. Is shgould line up with the preceeding IF statement before line 300
Reply
(2016-01-20, 21:22)Hitcher Wrote:
(2016-01-20, 21:10)im85288 Wrote:
(2016-01-19, 17:42)Hitcher Wrote: I'm updating my fTV skin as Amazon have changed their 'Next Up' notification layout and have a couple of request please.

Image

1. Mpaa rating
2. HasSubtitles EDIT: Subtitle language might be better as I can still use IsEmpty() and someone else might want the actual language.

Thanks.

Sure, I'll see what can be done the next time I get some free time to look at the code.
Many thanks.

It looks like mpaa is not available for episodes? http://kodi.wiki/view/JSON-RPC_API/v6#Vi...ds.Episode

Not sure about the subtitle language either, possibly in stream details.
Reply
  • 1
  • 27
  • 28
  • 29(current)
  • 30
  • 31
  • 52

Logout Mark Read Team Forum Stats Members Help
Netflix style next up notification7