Livepkgr vs live
Hi all
I need some help
use use livepkgr to send stream to server and from there users can view our stream.
Now lots of sites are stealing our streams and we need to protect our stream.
I look everywhere could not find a solution how to protect the livepkgr and found that with live you can use the allowedHTMLdomains.txt and allowedSWFdomains.txt to limite access to domains.
Which works fine.
However we are having a little problem here, it works great for pcs using the site, but with mobile devices it does not load, so need some help here.
The code we use is this
<object width='640' height='377' id='StrobeMediaPlayback' name='StrobeMediaPlayback' type='application/x-shockwave-flash' classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' >
<param name='movie' value='http://domain.com:8134/swfs/StrobeMediaPlayback.swf' /> <param name='quality' value='high' />
<param name='bgcolor' value='#000000' /> <param name='allowfullscreen' value='true' />
<param name='flashvars' value= '&src=rtmp://domain.com/live/t&autoHideControlBar=true&streamType=vod&autoPlay=true&verbose=true'/>
<embed src='swfs/StrobeMediaPlayback.swf' width='640' height='377' id='StrobeMediaPlayback' quality='high' bgcolor='#000000' name='StrobeMediaPlayback' allowfullscreen='true' pluginspage='http://www.adobe.com/go/getflashplayer' flashvars='&src=rtmp://domain.com/live/t&autoHideControlBar=true&streamType=vod&autoPlay=true&verbose=true' type='application/x-shockwave-flash'>
</embed></object>
I tried changing the the name of stream to t.f4m it does not work. Look bellow
<object width='640' height='377' id='StrobeMediaPlayback' name='StrobeMediaPlayback' type='application/x-shockwave-flash' classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000' >
<param name='movie' value='http://domain.com:8134/swfs/StrobeMediaPlayback.swf' /> <param name='quality' value='high' />
<param name='bgcolor' value='#000000' /> <param name='allowfullscreen' value='true' />
<param name='flashvars' value= '&src=rtmp://domain.com/live/t.f4m&autoHideControlBar=true&streamType=vod&autoPlay=true&verbose=true'/>
<embed src='swfs/StrobeMediaPlayback.swf' width='640' height='377' id='StrobeMediaPlayback' quality='high' bgcolor='#000000' name='StrobeMediaPlayback' allowfullscreen='true' pluginspage='http://www.adobe.com/go/getflashplayer' flashvars='&src=rtmp://domain.com/live/t.f4m&autoHideControlBar=true&streamType=vod&autoPlay=true&verbose=true' type='application/x-shockwave-flash'>
</embed></object>
The goal is to protect our streams so others can not steal it and let pc users and also mobile users view our streams.
Any help would be greatly appeciated.
