How to make TMDB open list?
#1
desired behaviour:
tmdb click on item -> My addon open a selection of options

Code:

list = [
    {
        'Name': 'Test 1',
        'Url': 'plugin://plugin.video.example/?mode=1',
    },
    {
        'Name': 'Test 2',
        'Url': 'plugin://plugin.video.example/?mode=1',
    }]
for x in list:
    listitem = xbmcgui.ListItem(label=x['Name'])
    xbmcplugin.addDirectoryItem(handle=int(
        sys.argv[1]), url=x['Url'], listitem=listitem, isFolder=True)
xbmcplugin.endOfDirectory(int(sys.argv[1]))

Getting this:
Playlist Player: skipping unplayable item: 0

tried to change tmdb player options, without any luck. what am i doing wrong?
Reply

Logout Mark Read Team Forum Stats Members Help
How to make TMDB open list?0