I want to ask how to save video and audio content that I'm loading from some site through a NetStream as an FLV file.
Is there any possible way to do this?
var ns:NetStream = new NetStream(nc);
ns.play('http://somefile.com/file.flv');
var file:FileReference=new FileReference();
**ns.doSomething(file); /// ???**
file.save(data,"flvfile.flv");