Skip to content

Instantly share code, notes, and snippets.

@jbeluch
Created March 30, 2011 16:23
Show Gist options
  • Save jbeluch/894721 to your computer and use it in GitHub Desktop.
Save jbeluch/894721 to your computer and use it in GitHub Desktop.
import xbmc, xbmcgui
url = 'rtmp://69.31.76.55:1935/ondemand/flvstream?_fcs_vhost=cp94207.edgefcs.net&akmfv=1.7/webtv_afrique/3125822'
playpath = 'webtv_afrique/3125822'
li = xbmcgui.ListItem(path=url)
li.setProperty('PlayPath', playpath)
li.setProperty('TcUrl', url)
xbmc.Player(xbmc.PLAYER_CORE_AUTO).play(url, li)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment