2009-05-16, 22:24
I can't get pbs rtmp streams to work. Not sure what I'm doing wrong...
The base rtmp link is
base="rtmp://pbs.fcod.llnwd.net/a1863/o6/"
and the source file is
src="tp-live/PBS_CP_FRONTLINE/fline-2714-stream.mp4"
My script to play the stream is:
debug: http://pastebin.com/m272466d1
btw, I'm using Rev 20365. And you can preview the stream here
The base rtmp link is
base="rtmp://pbs.fcod.llnwd.net/a1863/o6/"
and the source file is
src="tp-live/PBS_CP_FRONTLINE/fline-2714-stream.mp4"
My script to play the stream is:
Code:
import xbmc, xbmcgui
playpath = "tp-live/PBS_CP_FRONTLINE/fline-2714-stream.mp4"
rtmp_url = "rtmp://pbs.fcod.llnwd.net/a1863/o6/"
item = xbmcgui.ListItem("PBS")
item.setProperty("PlayPath", playpath)
xbmc.Player(xbmc.PLAYER_CORE_DVDPLAYER).play(rtmp_url, item)
debug: http://pastebin.com/m272466d1
btw, I'm using Rev 20365. And you can preview the stream here