I want a video to start at a specific point (say 30 seconds into it) and I have tried using the seek() function of flowplayer, according to the API documentation .
flowplayer(function (api, root) {
api.bind("ready", function () {
seek(30);
});
});
But I get the following error message on the console.
Uncaught ReferenceError: seek is not defined
Does anyone know what I might be doing wrong?