How can I get JW Player 6 to seek to a point and pause itself there without losing the ability to seek while continuing playback on subsequent requests.
For example, the following solution is not satisfactory because it pauses the player after every seek request, not just the current one.
var player = jwplayer('target').setup({
file: '/some-file.mp3'
});
player.onSeek(function(){
player.pause();
});
player.seek(300);
Really, I'm looking for an API which is as simple as this:
player.seek(toTime, pause = false)
Note that there is a similar open question referring to JW Player 5.4.