Problems with "Opening stream..." dialog with playback via media info screen
#16
This is not documented anywhere, but when you are use "xbmc.player()" you may not request a handle ID. This is achieved by removing "IsPlayable" from the item information.
However, I can not explain why the "Show information" does not follow the item information...


- "IsPlayable" can, for example be used with "xbmcplugin.setResolvedUrl()".
Reply
#17
A last, I have found a solution! Smile

I need to call endOfDirectory before xbmc.Player() to remove the handle id.

Code:
handle = int(sys.argv[1])

if handle > -1:
    xbmcplugin.endOfDirectory(handle, True, False, False)

HF
Reply

Logout Mark Read Team Forum Stats Members Help
Problems with "Opening stream..." dialog with playback via media info screen0