I want a VU meter web app which can detect sound levels from my system's mic. Any suggestions?

link|improve this question

65% accept rate
feedback

1 Answer

Why do you want it?

It could be done very easily in Flash, just a couple lines of code. Don't know of any offhand that are already written for you.

Here's a very simple example, written in AS2 (Actionscript 2)

Create a box on the stage with the instance name 'box_mc'. Place this code on the stage.

myMic = Microphone.get();

_root.onEnterFrame = function() {
    box_mc._yscale = myMic.activityLevel;
}

The box should get bigger and smaller depending on the sound level.

link|improve this answer
want it to aid accessibility in browsing – iceman Jan 11 '10 at 9:39
any hints how it can be done in Flash? – iceman Jan 11 '10 at 18:37
edited my answer with a very simple example – davr Jan 15 '10 at 17:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.