How to update INFO labels for the item being played back?
#1
I start item playback and set its info using the following command sequence:
list_item.setInfo('video', { 'title': name })
xbmc.Player.play(url, list_item)


After some time I need to update the information about item being played (for example the item name has changed). However when I try to do it using the same setInfo command it does not change anything.
list_item.setInfo('video', { 'title': new_name })

The same old information is still displayed on the playback screen.
How can I update the information about the item being played back on the fly?
Reply
#2
afaik this is not doable from python side today.
Reply

Logout Mark Read Team Forum Stats Members Help
How to update INFO labels for the item being played back?0