View Single Post
  #2  
Old 03-21-2010, 12:57 AM
Stream Recorder
 
Posts: n/a
Default

Re: Overview page with multiple live streams using JW Flash Player


Quote:
Originally Posted by Ryanne View Post
From the JW Player setup wizard:
Code:
<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','ply','470','290','9','#ffffff');
  so.addParam('allowfullscreen','true');
  so.addParam('allowscriptaccess','always');
  so.addParam('wmode','opaque');
  so.addVariable('file','bunny.flv');
  so.addVariable('streamer','rtmp://edge01.fms.dutchview.nl/botr');
  so.write('mediaspace');
</script>
file and streamer are the only variables that are needed to show RTMP stream with JW Player. You already have them, so you don't need to use any URL Finders.

JW Player is a commercial product. It has enough documentation on its web-site.

Read the following guide for more "Streaming Video with the JW Player".
Reply With Quote