Hi!
1.) create a new directory in your Gallery root "js/jwplayer", download the
jwplayer-6.7.zip from here and copy the three files:
"jwplayer.flash.swf", "jwplayer.html5.js" and "jwplayer.js" in the new directory.
2.) add in ACP/General/Settings/Upload settings/Valid file extensions an new file extension: "flv".
3.) search in includes/upload_definitions.php:
die("Security violation");
}
insert below:
$mime_type_match['flv'] = array("application/x-shockwave-flash", "application/octet-stream", "video/flv", "video/x-flv");
4.) store in "templates/your templates/media" a new file "flv.html":
<script type="text/javascript" src="./js/jwplayer/jwplayer.js" ></script>
<div id="myElement">Loading the player ...</div>
<script type="text/javascript">
jwplayer("myElement").setup({
image: '{media_icon}',
height: 600,
width: 800,
autostart: true,
file: '{media_src}'
});
</script>
5.) store in "templates/your templates/icons" a new file "flv.gif" (can you download from attachment).
mfg Andi