[Flashcoders] Voicerecording with flash?

2007-09-17 Thread Peter Oliver Geller
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ße 14 . 50674 Cologne
0221 - 92 42 81 - 52 phone

___
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


Re: [Flashcoders] Voicerecording with flash?

2007-09-17 Thread ekameleon
Hello :)

About FMS you can read the documentation :
http://www.adobe.com/support/documentation/en/flashmediaserver/

And in the client side Actionscript reference :
http://livedocs.adobe.com/fms/2/docs/wwhelp/wwhimpl/js/html/wwhelp.htm?href=Part_CS_ASD.html

Search the NetConnection, NetStream, Camera, Microphone and Video class
examples :)

After... you can use this client class with the FMS Server (official RTMP
server of adobe) but you can use too the opensource solutions Red5 based on
JAVA or HaxeVideo based on Haxe/Neko technologie :

http://osflash.org/red5
http://code.google.com/p/haxevideo/

You can use Wowza server : http://www.wowzamedia.com/index.html (based on
java)

The client Actionscript is the same :)

You can read in french my tutorial about this different technologies :
http://www.ekameleon.net/blog/index.php?2007/04/08/66-haxevideo

EKA+ :)




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

Re: [Flashcoders] Voicerecording with flash?

2007-09-17 Thread John laPlante
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


Re: [Flashcoders] Voicerecording with flash?

2007-09-17 Thread Jobe Makar

Hi,

This sort of thing is coming up a lot lately! The list of servers tha can 
provide what you need are:

Flash Media Server
ElectroServer 4
Red 5
Wowza

Jobe Makar
http://www.electrotank.com
http://www.electro-server.com
phone: 252-627-8026
mobile: 919-609-0408
fax: 919-882-1121
- Original Message - 
From: ekameleon [EMAIL PROTECTED]

To: flashcoders@chattyfig.figleaf.com
Sent: Monday, September 17, 2007 2:38 PM
Subject: Re: [Flashcoders] Voicerecording with flash?



Hello :)

About FMS you can read the documentation :
http://www.adobe.com/support/documentation/en/flashmediaserver/

And in the client side Actionscript reference :
http://livedocs.adobe.com/fms/2/docs/wwhelp/wwhimpl/js/html/wwhelp.htm?href=Part_CS_ASD.html

Search the NetConnection, NetStream, Camera, Microphone and Video class
examples :)

After... you can use this client class with the FMS Server (official RTMP
server of adobe) but you can use too the opensource solutions Red5 based 
on

JAVA or HaxeVideo based on Haxe/Neko technologie :

http://osflash.org/red5
http://code.google.com/p/haxevideo/

You can use Wowza server : http://www.wowzamedia.com/index.html (based on
java)

The client Actionscript is the same :)

You can read in french my tutorial about this different technologies :
http://www.ekameleon.net/blog/index.php?2007/04/08/66-haxevideo

EKA+ :)




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