How can I get put these information to Video file when playing on Kodi Player. shown in picture below 'Beck - Mutations'
I have searched every where and find nothing.
normal code is like this.
li = xbmcgui.ListItem('Title', thumbnailImage='http://exaple.com/image.png')
contextMenu = []
li.addContextMenuItems(contextMenu, replaceItems = True)
li.setInfo( "video", { "Title" : 'Title when Play', "AlbumArtist " : 'Some artist' } )
xbmcplugin.addDirectoryItem(handle=int(sys.argv[1]), url='http://example.com/sample.m3u8', listitem=li)
Thank you