views:

34

answers:

2

I have a requirement to do a flash program or something like that (not necessarily flash, it can be javascript or something in aspnet) that allow me to save audio in the client side of a web app, and save it on a file in the server side of the web app.

I've been searching a lot in google, and all I've found are just old questions, but no answers that fulfill my question

Please I need help!

Ive found this but the only thing that it does its to recognize the microphone, I need the hability of saving the audio file, by the way the server is implemented in aspnet

A: 

Possible Duplicate (when tagged with Flash)

How can I record audio using Action script then upload it to server?

The static function Microphone.getMicrophone() returns a reference to a Microphone object for capturing audio. To begin capturing the audio, you must attach the Microphone object to a NetStream object (see NetStream.attachAudio()).

There's at least one example in the LiveDocs. Start at flash.media.Microphone.

via @aaaidan

phwd
thanks!, sounds interesting, Ill try it and then I tell you
jmacboy
A: 

This is like asking everybody to do your entire homework for you. You need to break the problem down into smaller achievable pieces/goals.

Example:

  1. Record audio
  2. Send to web server

Now you'll most likely get better results when you google it up.

AlvinfromDiaspar
thanks, but Ive done that, I've found how to record audio in different kind of ways, like silverlight, but that feauture is too younger, and less compatible, flash is more supported, but Ive only found an example that tells me how to record, but I dont know if its capable to comunicate with other platforms, because I have the way to save it, my server has a web service, It receives a base64 string and it saves the file, in fact, the thing that I want to know is how to get the byte stream from the recording in flash and send it to the web server
jmacboy