Hello everyone, I am currently building a custom rtmp flash player and its almost completed We have one unsolved issue though... if the player idles for too long, the connection closes. (It appears to occur also when the buffer exceeds its capacity) Do you know of any way to keep the connection from closing ? I've already tried installing a timer that resumes-pauses the video every 5 seconds when its paused, but it closed anyways.
Nevermind, I think I found the solution... It seems 'keep-alive' is an acceptable header command. So basically you can just write "ncConnection.addHeader('keep-alive',true);"