Posts: 2
Joined: Dec 2019
Reputation:
0
Hello, my Kodi automatically updated today to version 18.5 on my XBox One, now I'm unable to find the Inputsream Adaptive Plugin on the Official Kodi repository, I reinstalled Kodi , but still, I can't find it, I looked it up, and it should be on the VideoPlayer category, but I can only see the RMTP one.
Is there any way to correct this issue?
Posts: 1
Joined: Dec 2019
Reputation:
0
Thank you for the information! I've also been having troubles with the new 18.5 release. It's sad to know that there is currently no solution for this new version of kodi...
Is there a way to downgrade to the 18.4 release that has the "working version" of the Inputsream Adaptive Plugin? Or maybe some other workaround?
Posts: 8
Joined: Dec 2019
Can you guys like rollback to 18.4 on xbox store? Many random closes, issues now, addons not working since automatic upgrade no option to downgrade, widgets take longer to load. I think most on xbox would be very much appreciative. Or at least a fix of some sort would be really nice here so we don't feel so thrown under the bus. All the tv addons breaking for two weeks was stoked they were finally working again then now this :/
Posts: 2
Joined: Dec 2019
Reputation:
0
Thanks for the heads up. I've been actively trying to find a work around. Will report back, if I discover anything.
Posts: 8
Joined: Dec 2019
2019-12-11, 06:58
(This post was last modified: 2019-12-12, 18:02 by ronie.)
(2019-12-11, 05:16)drinfernoo Wrote: (2019-12-10, 21:33)Klojum Wrote: (2019-12-10, 20:48)UserXXX Wrote: All the tv addons
That name (tv addons) does not sit well with Team Kodi, as it refers to many banned add-ons that facilitate video piracy.
Should this not be applicable to your system, then kindly provide the full debug log (wiki) file from your Kodi setup via a pastebin website after playing some troublesome videos and/or add-ons.
You've taken his comment out of context. TV Add-ons is the group you're referring to. He was referring to "tv addons" in general, as part of a sentence referring to Kodi add-ons that are related to TV.
Nah it's ok appreciate spirit of it tho, pretty much meant the tv side of addons based on xdus that stopped working right for a bit week back there but kinda as a broader term. I will admit the strong-fist assumption was kinda right(I think?) (misfit+xan repos) didn't realize there was such heavy anti-pyrate sentiment around these parts new here so used to telegram/reddit recently
-Same here I'll update you if I can find a fix(or reddit if I'm ousted warning 100) going to cast 18.5 from windows to xbox wireless display app for now as workaround, inputstream adapter 2.4.2 works on 10 after being installed, maybe it is possible edit some of the manifests for it, something can be worked through from a computer kodi backup or the linux inputstream utilities can be pushed to it
Posts: 2,452
Joined: Sep 2006
Reputation:
337
I think the reason you can't install after is below.
Inputstream is a binary add-on.
UWP runs in a sandbox & won't run external dll's for security purposes.
So the add-on needs to be included with the build for it to work.
This is also the main reason Widevine DRM won't playback.
That needs to use a widevinecdm.dll which can't be included in kodi due to licensing.
Posts: 8
Joined: Dec 2019
Tried to restore from a backup to the xbox but many addons including inputstream.apaptive were disabled, but this was only one that couldn't be enabled. Is there any 100% backup method? Could changing the .dll extensions and references to dll.a, ocx, or drv or any other extensions potentially avoid this?
This is a portion of the control.py from main addon I use that is effected. It appears these are only lines that reference it directly, was hoping some one could clue me in if this is possible to change over to the default included rtm input stream or if there was a way to remove the dependency in this case.
@hook_mimetype('application/dash+xml')
def _DASH_HOOK(item):
import inputstreamhelper
is_helper = inputstreamhelper.Helper('mpd')
if is_helper.check_inputstream():
item.setProperty('inputstreamaddon', is_helper.inputstream_addon)
item.setProperty('inputstream.adaptive.manifest_type',
'mpd')
item.setContentLookup(False)
else:
raise Exception("InputStream Adaptive is not supported.")
return item
@hook_mimetype('application/vnd.apple.mpegurl')
@hook_mimetype('application/x-mpegURL')
def _HLS_HOOK(item):
import inputstreamhelper
is_helper = inputstreamhelper.Helper('hls')
if is_helper.check_inputstream():
item.setProperty('inputstreamaddon', is_helper.inputstream_addon)
item.setProperty('inputstream.adaptive.manifest_type',
'hls')
item.setContentLookup(False)
else:
raise Exception("InputStream Adaptive is not supported.")
return item