Creating An Audio Visualiser
January 17th, 2011
No comments
Today i am going to show you how to create a simple audio visualiser. Using the SoundMixer class we can sample whatever audio is currently playing and it’s a doddle to use:
var bytes:ByteArray = new ByteArray(); var fft:Boolean = false; var stretch:int = 0; SoundMixer.computeSpectrum(bytes, fft, stretch);
Categories: ActionScript, Tutorials Actionscript, AIR, Audio, computeFrequencies, computeSpectrum, Flash, Flex, FrequencyAnalyzer, SoundMixer