Closed RhanCandia closed 2 months ago
Maybe the the InputStreamHelper addon needs an update. Might be related to the issue: https://github.com/emilsvennesson/script.module.inputstreamhelper/issues/568
I went in and modified /tv.kodi.Kodi/data/addons/script.module.inputstreamhelper/lib/inputstreamhelper/__init__.py
. To type cast the versions being compared.
Made them both LooseVersion and that fixed the episode playback.
Code changed is this specifically at line 379:
Before:
if parse_version(self._inputstream_version()) >= parse_version(config.HLS_MINIMUM_IA_VERSION):
return True
After:
if LooseVersion(self._inputstream_version()) >= LooseVersion(config.HLS_MINIMUM_IA_VERSION):
return True
Maybe this is a StreamInputHelper ad-don issue so I'll just close this one.
My fix may not be the correct fix, but it works for me now.
I'm the Steam Deck if that matters. Installed Kodi via Flathub.
Here's the log that stood out.
It was working a few weeks ago. But when I tried it yesterday, that's what I got.
I did the basic trouble shoot. Clear cache, torrent cache, rebuild database. No luck. InputSteam Adaptive seem to be already in the latest version. But the log seem to be complaining something related to that.
I also reinstalled Kodi, made sure to wipe Kodi configs and userdata too.