Recording not in proper location
I'm trying to record an audio/video program and the resulting .flv is in the wrong directory. It always ends up in application/live. I copied the sample application to application/eTutor and have the following code:
private var rtmpPath:String = "rtmp://x.x.x.x/eTutor";
private var rtmpSession:String = "0_738_0_9_6_6_2012_8_00_00_AM";
...
nc2.addEventListener(NetStatusEvent.NET_STATUS,onFMSNetStatus);
nc2.client = this;
nc2.connect(rtmpPath2 + "/" + rtmpSession);
...
case "NetConnection.Connect.Success":
ns2 = new NetStream(nc2);
ns2.client = this;
ns2.addEventListener(NetStatusEvent.NET_STATUS,onFMSNetStatus);
ns2.attachAudio(mic);
ns2.attachCamera(cam);
ns2.publish("LS" + hostCallCount.toString(),"record");
The .flv always ends up in application/live... why?
sr
