I wouldn't sweat this. I sat down with someone and got audio recording with Flash Media Server in about 2 hours. Here is the original script that I wrote with a few buttons on the stage. The documentation that was mentioned is very valuable. But, for simply playing media or recording, the thing practically does it automatically. I bet there is a component that does this much.

myNC = new NetConnection();
myNC.onStatus = function(info){
trace("Connect : " + info.code);
}
myNC.connect("rtmp://localhost/server1");
//myNC.connect("rtmp://localhost");


myNS = new NetStream(myNC);
myNS.onStatus = function(info){
trace(info.code);
}
myMic = Microphone.get();
myNS.attachAudio(myMic);

record_btn.onRelease = function(){
myNS.publish("mySound2", "record");
}
stop_btn.onRelease = function(){
myNS.publish(false);
myNS.play(false);
}
play_btn.onRelease = function(){
myNS.play("mySound2");
}


2007/9/17, Peter Oliver Geller <[EMAIL PROTECTED]>:
Hi all together,

Did somebody know what I need to do a voice recording with flash.
I heard that it is only possible with a flash media server?

Is that right?,
don't find any information about that topic what was useful for me :(

Maybe someone have an idea?

Regards

Peter

::::::::::::::::::::::::::::::::::::::::
Peter Oliver Geller
interface design, animation& development

Lindenstraße14. 50674 Cologne
0221 - 92 4281 - 52phone

_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

------------------------------------------------------------------------

_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to