Posts by l30v_v1

    @leovvi


    Sorry, at present there is no method to play such links with enigma2. If I find any I will let you know.

    Hi pcd, thank you for spending you time helping us!

    As my undestaning, enigma2 can play Mpeg Dash (videomediaset plugin also use mpd), real problem should be DRM (widevine). Do you know if a enigma2/mips version of widevine is suitable?




    Thank you,

    Leovvi.

    Hi PDC,

    I replaced item.py



    Now, video player starts, but screen remains black. Streamed file is a MDP file (dash xml).

    It sounds normal, beacuse in old code, there is a logic to manage MDP streams:





    Code
    listitem = xbmcgui.ListItem()
    listitem.setContentLookup(False)
    listitem.setMimeType('application/dash+xml')
    listitem.setProperty('inputstreamaddon', 'inputstream.adaptive')
    listitem.setProperty('inputstream.adaptive.manifest_type', 'mpd')
    listitem.setProperty('inputstream.adaptive.license_type', 'com.widevine.alpha')
    listitem.setProperty('inputstream.adaptive.license_key', '{0}&{1}&_widevineChallenge=B{{SSM}}|||JBlicense'.format(item.LaUrl, item.LaUrlAuthParam))


    In my opinion there is a problem with object xbmcgui, so xbmcgui.ListItem() call doesn't return a valid instance and listitem use generate dumps


    Here your log:


    Hi PCD,

    great work!!
    Now plugin starts, I can browse videos, but playback fails.


    error.log:


    Traceback (most recent call last):

    File "/usr/lib/enigma2/python/Plugins/Extensions/KodiLite/USER/plugin.video.dazn/default.py", line 82, in <module>

    router(sys.argv[2][1:])

    File "/usr/lib/enigma2/python/Plugins/Extensions/KodiLite/USER/plugin.video.dazn/default.py", line 53, in router

    parser.playback(client.playback(id_))

    File "/usr/lib/enigma2/python/Plugins/Extensions/KodiLite/USER/plugin.video.dazn/resources/lib/parser.py", line 81, in playback

    self.items.play_item(Playback(self.plugin, data), name, context)

    File "/usr/lib/enigma2/python/Plugins/Extensions/KodiLite/USER/plugin.video.dazn/resources/lib/items.py", line 76, in play_item

    listitem.setContentLookup(False)

    AttributeError: ListItem instance has no attribute 'setContentLookup'