[REQUEST] bptv (in a hurry.. ends in 2 days)
#1
hi all...
anyone able to "patch" any stream plugin.. or write a newone for this stream?

http://bptv.untergrund.net/

this is a stream of one of the best demo-realeasepartys in the world.. but it ends in 2 days.. so.. it´s in a hurry =)

thx a lot


EDIT:
p.s. im using latest svn on windows
XBMC on Win7
Zotac IONITX-A
Reply
#2
i tried to get this working.

the rtmpurl is
rtmp://breakpoint.scene.org/?rtmp://bptv.untergrund.net/live

we should get the tcurl and the app name from this
tcurl = 'rtmp://breakpoint.scene.org/'
app = '?rtmp://bptv.untergrund.net/live'
the playpath is
'mainhall'

so the following code should work
Code:
import urllib,urllib2,re,xbmcplugin,xbmcgui

url = 'rtmp://breakpoint.scene.org/?rtmp://bptv.untergrund.net/live'
playpath = 'mainhall'
name = 'BreatPointTV'
swfUrl = "http://bptv.untergrund.net/player/relay.swf"

ok=True
liz=xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage='')
liz.setInfo( type="Video", infoLabels={ "Title": name } )
liz.setProperty("SWFPlayer", swfUrl)
liz.setProperty("PlayPath", playpath)
ok=xbmc.Player(xbmc.PLAYER_CORE_DVDPLAYER).play(url, liz)
i get this error though
RTMP_LIB::CRTMP::HandShake, client signiture does not match!

i am not sure why its not working now. i tested a few ideas that i thought were the problem but i think i was wrong
Reply

Logout Mark Read Team Forum Stats Members Help
[REQUEST] bptv (in a hurry.. ends in 2 days)0