Question

I'm using flowplayer to play an MP4 video on a website from a NGinx server with H264 streaming plugin, and the pseudostreaming plugin for Flowplayer. Everything works fine.

I implemented several javascript functions for deep linking into the video, with the $f().Seek() method, which also works fine.

Here is my problem : when the user seeks to a particular place in the video, I need to disable some elements on the page, to prevent him or her from clicking more times, jamming all the sync. Then, I want to re-enable the same elements when the video starts playing again.

This code disables the elements and is placed in the click event of some buttons. Straightforward : $('.cur-left, .cur-right, .book-temps').hide('fast');

This code enables them : $('.cur-left, .cur-right, .book-temps').show('fast');

I can't find where to place my "re-enabling" code, as no event seems to happen when the video restarts playing after buffering after a seek.

Any advice on an unknown event matching or a trick to fit it some other way would be unvaluable.

Thanks for reading.

No correct solution

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top