Hi,
I have FMS2, Flash 8 and this client-side code:
var client_nc:NetConnection;
var out_ns:NetStream;
var in_ns:NetStream;
emisor_cam = Camera.get();
emisor_video.attachVideo(_root.emisor_cam);
function doConnect() {
client_nc = new NetConnection();
client...
more >>
What is the best way to record using the client's microphone to an MP3 stored
in a database?
Currently, I am doing:
client_nc.connect("rtmp://mymediaserver/myRecordedMp3Directory");
out_ns = new NetStream(client_nc);
out_ns.attachAudio(Microphone.get());
out_ns.publish("myMp3", "reco...
more >>
I'm writing an application that utilizes the XMLSocket object, and the XML /
XMLNode objects. It's getting to the point where there is allot of code
building / parsing XML some very simple Messages. It seems that once I've
passed a certain threshhold of building/sending, then a-synchronously
...
more >>