What is the proper way of Pausing then Resuming a LIVE Stream with AS3 (native code, no prebuilt player).
With the normal pause/resume methods - pause is working fine, but resume has no effect (video stays).
It works if I do a netconnection.close()
and then call play()
again - but this causes a long delay before the video plays again.
I tried another version with seek(0)
before pause()
and it also had no effect.
Any suggestions? Thank you!