So nearing a functionally complete version of my software, 
and actually using it for it's intended purpose a little
rather than doing quick tests, we've come across a large 
problem. Or at least a problem with large files.

Playing an audio-only .flv file works well, until the 
file is more than about 45 minutes long. Then it really
slows things down during some initializating phase before
reporting "Closing RTMPMinaConnection from 127.0.0.1:49372
to localhost (in: 3427, out: 3262) due to too much 
inactivity (1186585160652)"

Here's a stripped down program that shows my problem here:
-------------------------------------------------------------------
ncStatus=function(info){
  trace("Net Connection Status Change: Level"+info.level+"  Code:"+info.code);
  if(info.code=="NetConnection.Connect.Success"){
        trace("Connection Complete - playing");
        _root.aud_ns.play("test.flv");
  }
}

trace("Createing New Netstream");
_root.nc = new NetConnection();
_root.nc.onStatus = ncStatus;
_root.nc.connect("rtmp://localhost/test");
_root.aud_ns = new NetStream(_root.nc);
-------------------------------------------------------------------

Nothing too complicated there as you can see. When the
webapps/test/test.flv file is less than 30 minutes long, 
it works without trouble. When it's greater than 60 minutes
it consistantly fails with that error.

Is this a known bug? Should I put in a bug report? Anyone
got any clues on any workarounds I might be able to use?
I'm supposed to be demoing this project in about 3 weeks.
Eeep.

Thanks for your help,

        Adam............

_______________________________________________
Red5 mailing list
[email protected]
http://osflash.org/mailman/listinfo/red5_osflash.org

Reply via email to