Reputation: 75
Is it possible to use Flowplayer (flowplayer.org) and the seek() function with an FLV file? I'm not streaming.
Upvotes: 2
Views: 4838
Reputation: 565
To jump to a point 12 seconds into the movie I think it is.
$f("player").seek(12);
Were 'player' is the id of your player.
Upvotes: 2
Reputation: 5291
You can try using pseudostreming plugin to do it: http://flowplayer.org/plugins/streaming/pseudostreaming.html
Upvotes: 1
Reputation: 14885
You can call seek. But seek will only work inside the buffered length of the video. You can not seek to the point which is not buffered yet.
Upvotes: 3