FLV Player - Download HD Quality Flash Video Player. Supports both HTML 5 & Flash player for Web from hdflvplayer.net

Archive

Archive for the ‘Tutorial’ Category

Installing HD FLV Player -Standalone

December 5th, 2010 No comments
1. Extract the downloaded zip- file to your local directory.
2. Open hd-flv-player (demo).
3. Run the index file in a browser.
4.You can see the video plays on your browser through HD FLV Player

Configuring HD FLV Player through config.xml

December 4th, 2010 No comments

1. Configuring Options in HdFlvPlayer through config.xml

2. You will be able to find the following variables – which helps you to configure the player.

Configuring HD FLV Player through flashvars

December 3rd, 2010 No comments
1. Open index.html in your favourite editor.
2. You will be able to find the following code snippet.
<div name=’mediaspace’ id=’mediaspace’>
<script type=”text/javascript”>
var s1 = new SWFObject(‘hdflvplayer/hdplayer.swf’, ‘player’, ’640′, ’360′, ’9′);
s1.addParam(‘allowfullscreen’, ‘true’);
s1.addParam(‘allowscriptaccess’, ‘always’);
s1.addParam(‘wmode’, ‘transparent’);
s1.write(‘mediaspace’);
</script>

3. Add the below line next to s1.addParam(‘wmode’, ‘transparent’);

s1.addVariable(‘variable’, ‘value’);

Example: To pass the video file through flashvars,

<div name=’mediaspace’ id=’mediaspace’>

<script type=”text/javascript”>

var s1 = new SWFObject (‘hdflvplayer/hdplayer.swf’, ‘player’, ’640′, ’360′, ’9′);

s1.addParam(‘allowfullscreen’, ‘true’);

s1.addParam(‘allowfullscriptaccess’, ‘always’);

s1.addParam(‘wmode’, ‘transparent’);

s1.addVariable(‘file’, ‘your video file path goes here’);

s1.addVariable(‘hdpath’, ‘your hd file path goes here’);

s1.addVariable(‘preview’, ‘yourPreview image path goes here’);

..etc

s1.write(‘mediaspace’);

</script>