Все записывается… и проигрывается

Код AS3:
import flash.net.URLLoader;
import flash.net.URLLoaderDataFormat;
import flash.net.URLRequest;
import flash.events.Event;
import flash.events.NetStatusEvent;
/* Create a NetStream Video
Displays a video on stage without using the FLVPlayback video component.
Instructions:
1. If you are connecting to a video file that is on a streaming server such as Adobe Flash Media Server 2, replace 'null' below with the URL address of the video file. Place quotation marks ("") around the URL address.
2. If you are connecting to a local video file or one that is not using a streaming server, leave 'null' in place below.
3. Replace "http://www.helpexamples.com/flash/video/water.flv" with the URL of the video you want to play. Keep the quotation marks ("").
*/
var fl_NC:NetConnection = new NetConnection();
fl_NC.connect(null);// starts a connection; null is used unless using Flash Media Server
var fl_NS:NetStream = new NetStream(fl_NC);
fl_NS.client = {};
var fl_Vid:Video = new Video();
fl_Vid.attachNetStream(fl_NS);
addChild(fl_Vid);
fl_NS.addEventListener(NetStatusEvent.NET_STATUS, onstatus);
fl_NS.play(null);
var loader : URLLoader = new URLLoader();
loader.dataFormat = URLLoaderDataFormat.BINARY;
loader.addEventListener(Event.COMPLETE, onloaded);
loader.load(new URLRequest("http://www.helpexamples.com/flash/video/water.flv"));
function onloaded(event : Event):void
{
fl_NS.appendBytes(loader.data);
}
function onstatus(event : NetStatusEvent):void
{
trace(event.info["code"]);
}