(2020-04-28, 21:20)snoopyjoe Wrote: (2020-04-28, 01:19)matthuisman Wrote: @kampfi @snoopyjoe
Do you guys have the quality select enabled when the issue is happening?
Do you have same issue if you change Default Quality to disabled in the add-on settings?
I have the quality selection set to "Best". I'll try and change the setting to see if the problem still exist. Sometimes I'll fast forward to the end of an episode (e.g. "Clone Wars") because there is 4 minutes of credits before the next episode plays. This is when I notice the issue the most as it often buffers then tries to play the last 30 seconds. Only to end up starting over from the first 30 seconds.
Also however the addon is handling resume points is superp! I've extracted a couple shows and made .strm files from the links so that my Emby server can process them. Unlike other addons when Kodi tells a .strm to resume from a certain point, the info is never relayed, but with Disney+ it is.
Oh, that sounds more like IA.
All the credits at the end are a bunch of periods.
What version IA are you using?
Yes, my shared module has "evolved" over quite some time.
With latest version, favourites should work better too.
Before this, if you made a favourite to an episode and played it - it would have no art / info etc.
It should now have that.
Oh, and theres a pretty unknown feature of all my add-ons that allows auto playing items from a list
You first need to find the add-on path to that specific list you want to select videos from.
Can do that with debug enabled and then looking at log.
Then add a "_autoplay" param to the url.
the format is
_autoplay={pattern}#{number}
pattern is a pattern that is used with regex search with ignored case
If no pattern is passed, it matches everything.
Number is the position of the match you want to play
Numbers is same as Python array numbering (0 = 1st, 1=2nd, -1=last, -2=2nd to last)
If number is present, it must match that position. eg. selecting position 2 (#1) when only 1 result will error
If no number is present and multiple results, it will show a select dialog to choose which.
Number can also be "random" to choose a random match.
Examples:
Play the 1st Disney+ featured video
Code:
plugin://slyguy.disney.plus/?_=collection&content_class=home&label=Featured&slug=home&_autoplay=#0
Play the 1st Disney+ featured video that has Marvel in it's title
Code:
plugin://slyguy.disney.plus/?_=collection&content_class=home&label=Featured&slug=home&_autoplay=Marvel#0
Select a random Disney+ featured video and play it
Code:
plugin://slyguy.disney.plus/?_=collection&content_class=home&label=Featured&slug=home&_autoplay=#random
Search Disney+ for Marvel and play a random result
Code:
plugin://slyguy.disney.plus/?_=search&query=Marvel&_autoplay=#random
Shows a select dialog with all Disney+ featured videos (if only 1 - it would automatically select that)
Code:
plugin://slyguy.disney.plus/?_=collection&content_class=home&label=Featured&slug=home&_autoplay=#
People use this with my Kayo add-on to automatically play any live games of a certain sport via a dedicated PVR channel
Code:
#EXTINF:-1,Live AFL
plugin://plugin.video.kayo.sports/?_=panel&id=gjbdM7J0yVRR&_autoplay=AFL.*LIVE
_autoplay works with any of my add-ons.