Skip to main content
May 20, 2008
Question

Get bytes for microphone sound

  • May 20, 2008
  • 2 replies
  • 677 views
I was wondering if there is any way to get the sound bytes froma microphone and apply it to lee brimelow's tutorial on sond spectrum? thanks in advance!

(lee's tutorial: http://www.gotoandlearn.com/player.php?id=62 )
This topic has been closed for replies.

2 replies

Participant
March 26, 2009
By the sounds of it it's not possible yet. Sounds like quite a few people want full mic access tho, check out http://www.getmicrophone.com/?cat=8
May 20, 2008
A Microphone object exists in AS3 -> this is no constructor, just static methods.

It can be imported via: import flash.media.Microphone;

Use the Microphone's method getMicrophone. It 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()).
February 3, 2009
So, any way then to use that sound in the soundMixer.computeSpectrum() method?