Hi,
I found the issue in the latest version of RTMP plugin (from the SVN).
While streaming live from source over RTMP it shows 'Play again' button when the buffer is empty. Seems this change in RTMPConnectionProvider.as should fix it.
I found the issue in the latest version of RTMP plugin (from the SVN).
While streaming live from source over RTMP it shows 'Play again' button when the buffer is empty. Seems this change in RTMPConnectionProvider.as should fix it.
// #107, dispatch finish when we already got a stop
// #113, dispatch finish also when we're around the end of the clip
if ( event.info.code == "NetStream.Buffer.Empty" && (_receivedStop || ((clip.duration - _player.status.time < 1) && clip.duration>0))) {
clip.dispatchBeforeEvent(new ClipEvent(ClipEventType.FINISH));
}