Ian Hawes
Ian Hawes

Reputation: 75

Using seek() in Flowplayer with an FLV file

Is it possible to use Flowplayer (flowplayer.org) and the seek() function with an FLV file? I'm not streaming.

Upvotes: 2

Views: 4838

Answers (3)

André van Toly
André van Toly

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

Sam Dark
Sam Dark

Reputation: 5291

You can try using pseudostreming plugin to do it: http://flowplayer.org/plugins/streaming/pseudostreaming.html

Upvotes: 1

bhups
bhups

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

Related Questions