Re: [Flashcoders] AIR 2 / 10.1 + Microphone

2010-10-02 Thread Karim Beyrouti
have been following your blog for a while - and forgot about the FFT / Audio analysis you did - it's very nice and useful thank you. - Karim On 2 Oct 2010, at 11:13, Gerry Beauregard wrote: > You might want to check out my real-time spectrum analyzer here: > http://gerrybeauregard.wordpress.

Re: [Flashcoders] AIR 2 / 10.1 + Microphone

2010-10-02 Thread Gerry Beauregard
You might want to check out my real-time spectrum analyzer here: http://gerrybeauregard.wordpress.com/2010/08/06/real-time-spectrum-analysis/ It uses the microphone input and an FFT that I wrote. All the code is freely available for download. -Gerry On 2010-10-02 , at 17:55 , Karim Beyrouti

Re: [Flashcoders] AIR 2 / 10.1 + Microphone

2010-10-02 Thread Karim Beyrouti
guess i should have mentioned that this project is all about music visualisation. On 2 Oct 2010, at 09:57, Henrik Andersson wrote: > Trust me on this one, computeSpectrum is not useful for anything but music > visualization. It provides no gurantees that it wont miss samples, in fact, > it is

Re: [Flashcoders] AIR 2 / 10.1 + Microphone

2010-10-02 Thread Henrik Andersson
Trust me on this one, computeSpectrum is not useful for anything but music visualization. It provides no gurantees that it wont miss samples, in fact, it is highly likely that it will. That makes it unacceptable for any serious use. ___ Flashcoders ma

[Flashcoders] AIR 2 / 10.1 + Microphone

2010-10-01 Thread Karim Beyrouti
Wondering if the microphone - has a similar FFT output - like the one in 'computeSpectrum(ByteArray, FFTMode, stretchFactor )' . or would it just be best to wait for - SampleDataEvent - get the byteArray and read the values from there? Found this way of getting to the Mic sound data; http://pi