How we Include Media Player in your web pages

Palying Video In Your Web Page

In this tutorials we learn how you include a Flow player in your webpage. Following steps will guide you:
In first step you must Include this file flowplayer-3.2.13.min.js in the Head section of your web page.

Now Create a link to your video file with Anchor tag.

 


 <a href="ttp://www.learninghints.com/testvideo.flv" style="display:block;width:425px;height:300px;" id="player"> </a>

Then Load the player with one JavaScript statement.


<script language="JavaScript">
flowplayer("player", "path/to/the/flowplayer-3.2.18.swf");
</script>

Width and height and other formatting will be handle with an CSS file.