
Preview Image
Is there a way to auto-generate a preview image for a video. I found the sample code below, but that requires you to manually create an image ahead a time. I'm looking more for something along the lines of seeking 30 seconds into a video and automatically use that frame as the thumbnail preview.
<script type='text/javascript' src='/jwplayer/jwplayer.js'></script>
<div id='mediaplayer'></div>
<script type="text/javascript">
jwplayer('mediaplayer').setup({
'flashplayer': 'player.swf',
'id': 'playerID',
'width': '480',
'height': '270',
'file': '/videos/bunny.mp4',
'image': '/thumbs/bunny.jpg'
});
</script>