
Preview Image with Object/Embed Method?
I'm trying to show a preview image but I have to use the object/embed method, I'm not having any luck I've tried 'image' and 'poster':
<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' width='500' height='280' id='player1' name='player1'>
<param name='movie' value='player.swf'>
<param name='allowfullscreen' value='true'>
<param name='allowscriptaccess' value='always'>
<param name='flashvars' value='image=preview.jpg'>
<param name='flashvars' value='file=video.mp4'>
<embed id='player1'
name='player1'
src='player.swf'
width='500'
height='280'
allowscriptaccess='always'
allowfullscreen='true'
flashvars="image=preview.jpg"
flashvars="file=video.mp4"
/>
</object>
Is there a way to do this with the embed/object method?