First is there any technique for using Action Script for recording sound from microphone? If yes. How? Then one he record I’ll upload it to server.
First is there any technique for using Action Script for recording sound from microphone?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
flash.media.Microphoneis the class you’re looking for.The static function
Microphone.getMicrophone()returns a reference to aMicrophoneobject for capturing audio. To begin capturing the audio, you must attach theMicrophoneobject to aNetStreamobject (seeNetStream.attachAudio()).There’s at least one example in the LiveDocs. Start at
flash.media.Microphone.