diff --git a/lib/libmediathek4.py b/lib/libmediathek4.py index 99242d2..491c012 100644 --- a/lib/libmediathek4.py +++ b/lib/libmediathek4.py @@ -250,7 +250,7 @@ def _chooseBitrate(self,l): streamType = 'AUDIO' listitem = xbmcgui.ListItem(path=url) if streamType == 'DASH': - listitem.setProperty('inputstreamaddon', 'inputstream.adaptive') + listitem.setProperty('inputstream', 'inputstream.adaptive') listitem.setProperty('inputstream.adaptive.manifest_type', 'mpd') if 'licenseserverurl' in item: listitem.setProperty('inputstream.adaptive.license_type', 'com.widevine.alpha') @@ -260,7 +260,7 @@ def _chooseBitrate(self,l): listitem.setContentLookup(False) elif streamType == 'HLS': listitem.setMimeType('application/vnd.apple.mpegurl') - listitem.setProperty('inputstreamaddon', 'inputstream.adaptive') + listitem.setProperty('inputstream', 'inputstream.adaptive') listitem.setProperty('inputstream.adaptive.manifest_type', 'hls') listitem.setContentLookup(False) #elif streamType == 'MP4': @@ -383,4 +383,4 @@ def _calcyyyymmdd(self,d): def _calcddmmyyyy(self,d): day = date.today() - timedelta(d) - return day.strftime('%d-%m-%Y') \ No newline at end of file + return day.strftime('%d-%m-%Y')