Proxy on xbmc.player?
#1
I have the following code and want to be able to play the link with a proxy through the xbmcPlayer.
Code:
    playlist = xbmc.PlayList(1)
           playlist.clear()
           listitem = xbmcgui.ListItem(name, iconImage=icon, thumbnailImage=icon)
           listitem.setInfo("Video", {"Title":name})
       playlist.add(url,listitem)
           xbmcPlayer = xbmc.Player(xbmc.PLAYER_CORE_AUTO)
           xbmcPlayer.play(playlist)

Is that possible without turning on the internet proxy in Kodi settings?
Reply

Logout Mark Read Team Forum Stats Members Help
Proxy on xbmc.player?0