now embedded jeroens flash player (
http://www.jeroenwijering.com/)
and i am able to play locally stored flv files in my pixelpost/video folder to which i upload them.
hacked the index.php and added
$video = "<script type='text/javascript'>
var so = newSWFObject('http://www.bertsimons.nl/blog/video/flvplayer.swf','mpl','400','320','7');so.addParam( 'allowfullscreen','true');so.addVariable('displayh eight','300');so.addVariable('file','http://www.bertsimons.nl/blog/video/<CUSTOM_FIELD_VALUE_ID=1>');so.addVariable('height ','320');so.addVariable('image','http://www.bertsimons.nl/blog/images/$image_name');so.addVariable('width','400');so.add Variable('overstretch','true');so.addVariable('sho wdigits','false');so.addVariable('showicons','fals e');so.addVariable('usecaptions','true');so.addVar iable('usefullscreen','false');so.addVariable('use keys','false');so.write('player');</script>";
$tpl = str_replace("<video>",$video,$tpl);
added <video> in my image_template
i normally upload a new image and in my custom field video I put the name of the video file (without the flv extension) which uses the this image (images/$image_name) as preview
when no video file is uploaded the default value of the custom video field which i set to'.flv' still triggers the flashplayer but now just shows the video preview file which is the uploaded image file as in /images/$imagename
problem till now is taht when clicking an image file it wants to play an non existing flv file and blanks the preview..:-(