
onComplete events not firing for live streaming
Hello, I am using jwplayer to show a live streaming video with rtmp.
When the user broadcasting finishes his transmission I want the jwplayer to detect this event
and reload the page.
How can I do it?
I am trying
events:
{
onComplete:function()
{
alert('onComplete');
}
}
but it is not working.
Is ther any other way to detect that live streaming is stopped?
Thanks