From ab737ca5d07e9a47ee86c5b9f8cd08a981f756f7 Mon Sep 17 00:00:00 2001 From: croneter Date: Sun, 15 Aug 2021 11:08:21 +0200 Subject: [PATCH] Addon Paths: Fix Kodi scanning entire video file on playback start --- resources/lib/plex_api/media.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/resources/lib/plex_api/media.py b/resources/lib/plex_api/media.py index 0f9586d1..1a828dbd 100644 --- a/resources/lib/plex_api/media.py +++ b/resources/lib/plex_api/media.py @@ -1,6 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- from logging import getLogger +import re from ..utils import cast from ..downloadutils import DownloadUtils as DU @@ -10,6 +11,9 @@ from .. import plex_functions as PF LOG = getLogger('PLEX.api') +REGEX_VIDEO_FILENAME = re.compile(r'''\/file\.[a-zA-Z0-9]{1,5}$''') + + class Media(object): def optimized_for_streaming(self): """ @@ -286,6 +290,12 @@ class Media(object): headers = clientinfo.getXArgsDeviceInfo() if action == v.PLAYBACK_METHOD_DIRECT_PLAY: path = self.xml[self.mediastream][self.part].get('key') + # Kodi 19 will try to look for subtitles in the directory containing the file. + # '/' and '/file.*'' both point to the file, and Kodi will happily try to read + # the whole file without recognizing it isn't a directory. + # To get around that, we omit the filename here since it is unnecessary. + # We do this for library videos only, not for e.g. trailers (does not work) + path = REGEX_VIDEO_FILENAME.sub('/', path, count=1) # e.g. Trailers already feature an '?'! return utils.extend_url(app.CONN.server + path, headers) # Direct Streaming and Transcoding