Bug PlayMedia does not pass title and thumbnail into full screen video
#1
I found this strange bug in Jarvis. I don't know if its ok to report it since Jarvis will more or less be phased out now that Krypton is almost out in the wild.

So for my PyLearner addon I call Youtube addon with the below argument:

Code:
elif action == 'play':

    execute('PlayMedia("{0}")'.format(params['url']))

In my tester build I realized if a user has NO favourites, the title and video thumbnail taken from Youtube addon are shown in full screen video. But if a user adds even a single favourite, then the icon disappears and title is replaced with the youtube video id.

EDIT: In Krypton they are not passed at all.
Reply
#2
Eventually I worked around it...

Utilized urlresolver + youtube and to prevent list item replace I placed the following in my main menu code:

Code:
if xbmc.Player().onPlayBackEnded():
    xbmc.executebuiltin('Container.Refresh')
Reply

Logout Mark Read Team Forum Stats Members Help
PlayMedia does not pass title and thumbnail into full screen video0