Recording/Streaming h264 in AMS 5.01 tries to save flv I'm trying to record a live stream to the livepkgr application using the following code:var cam:Camera;var mic:Microphone;var video:Video;var nc:NetConnection;var ns:NetStream;var h264Settings:H264VideoStreamSettings;cam = Camera.getCamera();mic = Microphone.getMicrophone();cam.setMode(320, 240, 30, true);cam.setQuality(90000,90);cam.setMotionLevel(100,200);cam.setKeyFrameInterval(keyframe);mic.setLoopBack(false);mic.rate = 44;video = new Video(vidWidth,vidHeight);video.attachCamera(cam);nc=new NetConnection();nc.addEventListener(NetStatusEvent.NET_STATUS, netStatus);nc.connect("rtmp://localhost/livepkgr");function netStatus(event:NetStatusEvent):void{ var info:Object = event.info; if (info.code == "NetConnection.Connect.Success") {