player working, seeking forward not working, unless video charged completely
Hello, here is the player i'm working on :
http://www.lamandarine.com/player/
the problem is, to use the seeking buttons under the player, i have to wait that the part that has to be reached is loaded.
here is my code :
<HTML>
<HEAD>
<TITLE>PLAYER DF</TITLE>
<script type='text/javascript' src='jwplayer/jwplayer.js'></script>
<div id='mediaplayer'></div>
<script type="text/javascript">
jwplayer('mediaplayer').setup({
'flashplayer': 'jwplayer/player.swf',
'id': 'playerID',
'width': '720',
'height': '404',
'file': 'jwplayer/video2.mp4',
'image': 'jwplayer/preview2.jpg',
'skin': 'skins/stijl.zip',
'plugins': {
'fbit-1': {},
'sharing-2': {
'link': 'http://www.lamandarine.com/player/',
}
}
});
</script>
<ul>
<li><a href="#" onclick="jwplayer().seek(0);">bonjour a tous</a> (00:00)</li>
<li><a href="#" onclick="jwplayer().seek(30);">accelerer le telechargement</a> (00:24)</li>
<li><a href="#" onclick="jwplayer().seek(50);">tout un ensemblde de services google</a> (00:48)</li>
<li><a href="#" onclick="jwplayer().seek(60);">personnaliser son telephone</a> (00:56)</li>
</ul>
</HEAD>
<BODY>
</BODY>
</HTML>