Hi All,
I am facing a problem regarding video seek event. Many a times, though I issue seek command on the FLVPlayback object, I do not get the “seeked” event. I am seeking at different play head position than current. I couldn’t find when and why this happens. It is important for me to get this event as my flow depends on this.
Also, sometimes I get this event and I start playing the video assuming it is seeked to desired position, but it starts playing from the beginning. I am really frustrated because of this.
Please suggest some solution for this. Thanks in advance.
m_oFlvPlayer.addEventListener(VideoEvent.SEEKED, onseek);
...
...
...
private function onSeeked(e:VideoEvent):void
{
//seeked to desired position, now play the video
m_oFlvPlayer.play();
}