Here you will find some video clips that you can use on your own website.
At the bottom of this page we provide you with technical instructions on how your webmaster can implement them in an easy way.
Instructions for webmasters on how to add videos to your website:
1. Download and extract this file.
2. Copy the files mediaplayer.swf and swfobject.js to the directory where you put the video files.
3. Add the html code below to your page.
4. Change the parameters filename.flv and the width and height accordingly.
<p id="player1"><a href="http://www.macromedia.com/go/getflashplayer">Get the Flash Player</a> to see this player.</p>
<script type="text/javascript">
var s1 = new SWFObject("mediaplayer.swf","single","400","320","7");
s1.addParam("allowfullscreen","false");
s1.addVariable("width","400");
s1.addVariable("height","320");
s1.addVariable("file","filename.flv");
s1.addVariable('overstretch','fit')
s1.addVariable("showicons","true");
s1.addVariable("autostart", "false");
s1.addVariable("repeat", "false");
s1.write("player1");
</script>
|