2016-04-06, 13:00
I do not understand anything
(2016-04-06, 12:12)BobCratchett Wrote:(2016-04-06, 01:19)matthewcky2k Wrote:BobCratchett Wrote:When letting the dialog time out and the next episode auto-play, it appears that the script doesn't (always - it occasionally work) catch that brief moment when xbmc.Player().isPlaying() is False. As a workaround, I've edited the onPlaybackEnded function to set the nextUpPage/isStillWatching cancel value to True on lines 438 and 443 respectively - as both have done there job by then it seems like an easy way to break the loop - but look forward to the proper solution
what exactly did you alter in those lines? you'll have to forgive me im new to python coding...
I called the setCancel function of the two windows, so the code block starting on line 434 looks as follows:
Code:if int(self.playedinarow) <= int(playedinarownumber):
self.nextUpPage.close()
shouldPlayDefault = not self.nextUpPage.isCancel()
shouldPlayNonDefault = self.nextUpPage.isWatchNow()
self.nextUpPage.setCancel( True )
else:
self.stillWatchingPage.close()
shouldPlayDefault = self.stillWatchingPage.isStillWatching()
shouldPlayNonDefault = self.stillWatchingPage.isStillWatching()
self.stillWatchingPage.setCancel( True )
(If you're new to Python and wanting to try this yourself, remember that indents are important in Python, and the additional lines must have the same indenting (use spaces not tabs, and the same number of spaces) as the lines above them.)
(2016-04-06, 13:08)regista Wrote: @ matthewcky2k/BobCratchett : Is it possible that someone upload the modified file/files, so that the script is working again? That would be so nice
I'm really sorry but i do not understand anything about this programming
(2016-04-06, 13:55)BobCratchett Wrote:(2016-04-06, 13:08)regista Wrote: @ matthewcky2k/BobCratchett : Is it possible that someone upload the modified file/files, so that the script is working again? That would be so nice
I'm really sorry but i do not understand anything about this programming
As you asked so nicely, the changes are here (I'd would suggest downloading the zip, manually extracting it and replacing the contents of addons/service.nextup.notification with the contents of the zip file - you can find the addons folder one folder 'up' from the userdata (wiki) folder.)
Remember its a workaround, and I'm sure im85288 will fix it properly when he has chance.
(2016-04-14, 13:51)im85288 Wrote: Hopefully this is fixed now, I sent a new version to the Kodi repo a few minutes ago (1.0.18) which will become available in the next few days or so. For anyone wanting to test it now you can grab the release here: 1.0.18
(2016-04-20, 19:30)B-Fir3 Wrote: Don't know if that update was intended to fix the problem I'm experiencing, but still no next episode playback for me on 1.0.20 with Emby direct paths enabled (and without). Here's a new log: https://paste2.org/bVgKJEpX
(2016-04-20, 21:10)im85288 Wrote:(2016-04-20, 19:30)B-Fir3 Wrote: Don't know if that update was intended to fix the problem I'm experiencing, but still no next episode playback for me on 1.0.20 with Emby direct paths enabled (and without). Here's a new log: https://paste2.org/bVgKJEpX
The log seems to only show attempted playback without direct paths. You would need to report that in the Emby forums. For direct paths did you reset your database? That step is needed. If you switch back to direct paths and it still does not work please change the logging for the Emby addon to info before posting the log here as currently your log is 99% full of Emby logging which makes it hard to find the next up logging.