|
I have install code as per http://www.hdflvplayer.net/documentation/installing-hd-flv-player-standalone/ link I am using localhost for testing, I can see player in browser, but video is not getting played in in. Where I am missing? {code} <html > <head> <title>Player</title> <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> <script type="text/javascript" src="hdflvplayer/swfobject.js"></script> </head> <body> <div name='mediaspace' id='mediaspace'> <script type="text/javascript"> var s1 = new SWFObject ('hdflvplayer/hdplayer.swf', 'player', '640', '360', '9'); s1.addParam ('allowscriptaccess', 'always'); s1.addParam ('wmode', 'transparent'); s1.addVariable('file','http://app-buck.s3.amazonaws.com/300.mp4'); s1.write ('mediaspace'); </script>
</body> </html> {/code}
|