Stichwort DD+
Die Streams sind weiterhin verfügbar, nur nicht mehr in der .mpd gelistet. Man müsste KODI quasi dazu zwingen, diese Streams abzuspielen. Ist es technisch möglich und welche Informationen sind dafür nötig
Die Endungen der Audio Files ( _audio_TrackNo ) welche die DD+ Streams enthalten, sind sehr vorhersehbar bei Amazon.
That's because the DeviceTypeID the addon uses doesn't support DD+, but you can get the .mpd with all the audio streams if you delete that info from the .mpd url. For example:
http://a597avoddashs3eu-a.akamaihd.net/d/1$AOAGZA014O5RE,99999999/videoquality$1080p/ondemand/1b63/a49c/6cd2/4124-9aa7-c71eb71c4a18/27c9c542-f08e-4406-bf7e-47bdabd4ccaf_corrected.mpd
becomes
http://a597avoddashs3eu-a.akamaihd.net/d/videoquality$1080p/ondemand/1b63/a49c/6cd2/4124-9aa7-c71eb71c4a18/27c9c542-f08e-4406-bf7e-47bdabd4ccaf_corrected.mpd
after deleting 1$AOAGZA014O5RE,99999999.
so, if you edit the default.py and add
mpd = re.sub(r'/d/.*/v', '/d/v', mpd)
before the Log(mpd) line, you'll get all the DD+ tracks 