FlowPlayer (free video player for the web)

 
This web site uses the open source (version 2.1.2) FlowPlayer video player. The source code is available for download here. A useable player can be downloaded here. The javascript that uses the player can be found here. If you place this player on your site you must follow the GPL license which says you must make your javascript and source code available for download.

Flowplayer is a highly configurable player, here is an example:
 

This will be replaced by the player.

HTML for this example:

<head>
<script type="text/javascript" src="flashembed.min.js"></script>
</head>

<body>
<div id="flowplayerholder">
This will be replaced by the player.
</div>
<script type="text/javascript">
// <![CDATA[
new flashembed("flowplayerholder", { src: "FlowPlayerClassic.swf", width: 320, height: 264 }, { config: { videoFile: "example.flv", showMenu: false, showMuteVolumeButton: false, showFullScreenButton: false, controlBarGloss: 'high', loop: false, autoRewind: true, autoBuffering: false, splashImageFile: "example.jpg", autoPlay: false } });
// ]]>
</script>
</body>

Return to home page.