video_player

here's a minimalist looking flash video player for your website.

features : configurable, resizable, fullscreen mode, keyboard shortcuts

demo

(weird sound is no error :p

installation

download | get source

simplest is to keep all files in the same directory.
you can either use video_player.html or paste this code in your own html page :

<script src="AC_RunActiveContent.js" language="javascript"></script>
<script src="videoPlayer.js" language="javascript"></script>

<script language="javascript">
	video_player = new videoPlayer();
	with (video_player) {
		video = 'goudron.flv';
		width = '640px';
		height = '480px';
		autoplay = false;
		autoload = true;
		showcontrols = true;
	};
	video_player.display();
</script>
edit this code (or video_player.html) to configure your player and assign your video file.
video will fit the player size. you can use any css length unit : px, %, ... (but you usually should specify the size of the video).
to use multiple players in one page, only copy 2nd code part.

support

post there it you have any problem using this web module.