sample html page using JW Player / RTMP streaming
can anyone please provide a sample web page (html code) that is layed our correctly based on a working code piece I pulled form the JW Setup Wizard page?
Here is the working code (with actual file names pulled and distribution modified). For the life of me I can't figure out how to create a basic web page which will display this video setup in a window size of my choosing (such a newbie to html design!)
thanks in advance!!
<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','650','450','9');
so.addParam('allowfullscreen','true');
so.addParam('allowscriptaccess','always');
so.addParam('wmode','opaque');
so.addVariable('file','test.f4v');
so.addVariable('streamer','rtmp://s12558cvgdfz38rvc.cloudfront.net/cfx/st/mp4:test.f4v');
so.write('mediaspace');
</script>