Hello, i'm trying setup my own server with FMS and JW player, with a camera and Flash media encoder without save any file, i can send video trought my network and see the live feed but only a skin or player from Dreamweaver, i select streaming video, select a skin and works in my site---- this code:
<script type="text/javascript">
AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,79,0','width','342','height','291','id','FLVPlayer','src','FLVPlayer_Streaming','flashvars','&MM_ComponentVersion=1&serverName=10.10.28.51&skinName=Halo_Skin_2&appName=oscar8/instance2&streamName=ochotv&isLive=true&bufferTime=0&autoPlay=true&autoRewind=false','quality','high','scale','noscale','name','FLVPlayer','salign','lt','pluginspage','http://www.macromedia.com/go/getflashplayer','movie','FLVPlayer_Streaming' ); //end AC code
</script><noscript><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,79,0" width="342" height="291" id="FLVPlayer">
<param name="movie" value="FLVPlayer_Streaming.swf" />
<param name="salign" value="lt" />
<param name="quality" value="high" />
<param name="scale" value="noscale" />
<param name="FlashVars" value="&MM_ComponentVersion=1&serverName=10.10.28.51&skinName=Halo_Skin_2&appName=oscar8/instance2&streamName=ochotv&isLive=true&bufferTime=0&autoPlay=true&autoRewind=false" />
<embed src="FLVPlayer_Streaming.swf" flashvars="&MM_ComponentVersion=1&serverName=10.10.28.51&skinName=Halo_Skin_2&appName=oscar8/instance2&streamName=ochotv&isLive=true&bufferTime=0&autoPlay=true&autoRewind=false" quality="high" scale="noscale" width="342" height="291" name="FLVPlayer" salign="LT" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object></noscript></p>
With JW player don't "catch" the live feed , this code:
<s<script type='text/javascript' src='swfobject.js'></script>
<div id='mediaspace'>This text will be replaced</div>
<script type='text/javascript'>
var so = new SWFObject('player.swf','mpl','470','320','9');
so.addParam('allowfullscreen','true');
so.addParam('allowscriptaccess','always');
so.addParam('wmode','opaque');
so.addVariable('file','http://content.longtailvideo.com/videos/flvplayer.flv');
so.addVariable('plugins','livestream');
so.addVariable('streamer','rtmp://201.130.192.76/oscar8/instance2.xml');
so.write('mediaspace');
</script>
How can I take the JW player streaming over LAN via Flash Media Server?
Tnks
