Here is a little Perlin Noise Sound Visualizer…

[kml_flashembed movie="http://www.metah.ch/test/sound/soundSpectrum3.swf" height="200" width="512" /]
Click to play/pause

Song: Studio One Scorcher, The Skatalites, Tommy Mccook, Richard Ace and Disco Heigth – Shockers Rock.

Ahmet

  15 Responses to “Perlin sound visualizer”

  1. Metah Blog: Freelance Webmaster Geneva, Switzerland Powered by WordPress Entries (RSS)

  2. Hey, cool.. Are the visuals generated depending on the music?

    Anyways I really like that song.. I’ve to check it out on iTunes..

  3. Yes generated depending on music, as you can see by pausing the song. But it’s definitely not informational visualization ;)

  4. [...] Flexばりで〜しょん MXNAからピックアップです。Memoization in ActionScript、Beginner’s Introuction to Validating User Input in Flex、Building an Image Viewer in Flex、Sorenson Squish、Perlin Sound Visualizer、Jobs on Flash、Curve Ball、Does Apple’s iPhone support Flash?、Label Placement in Forms、3 Ways to immediately increase Search Engine Traffic。 TipsMemoization in ActionScript Beginner’s Introduction to Validating User Input in Flex Building an Image Viewer in Flex ToolsSorenson Squish1.0 Perlin Sound Visualizer ResourcesJobs on Flash Curve Ball Does Apple’s iPhone support Flash? Label Placement in Forms 3 Ways to immediately increase Search Engine Traffic Posted at 10:23 午後   getBlogName();   [...]

  5. [...] Perlin sound visualizer Click to play/pause Song: Studio One Scorcher, The Skatalites, Tommy Mccook, Richard Ace and Disco Heigth – Shockers Rock. Ahmet [...]

  6. How do you pause a sound (loading an MP3)?
    All 4 classes dedicated to sound in AS3 don’t seem to have a method for this.

  7. Hi Vlad, you have to use channel.position, save the value and then play(Atposition). Like this:

    public function onClick(e:Event):void
    {
    if(isPlaying)
    {
    atPausePos = channel.position; stage.removeEventListener(Event.ENTER_FRAME,onEnterFrame);
    channel.stop();
    isPlaying = false;
    }
    else
    {
    stage.addEventListener(Event.ENTER_FRAME,onEnterFrame);
    channel = sound.play(atPausePos);
    isPlaying = true;
    }
    }

  8. [...] Perlin sound visualizer Click to play/pause Song: Studio One Scorcher, The Skatalites, Tommy Mccook, Richard Ace and Disco Heigth – Shockers Rock. [...]

  9. Hi

    How did you link up the sound channel with the perlin noise filter?

  10. Hi Wes, you can find a video tutorial : Display Audio Spectrum on my AS3 section. Hope it helps.

  11. thanks! I didn’t look at the whole tutorial yet, but so far it looks interesting. Its ironic that flex code looks like a mix of director lingo(sprite) and flash(emca). Wow and I thought only after effects could do this!

  12. HI

    I want to create a player like bleep.com uses.
    See : http://www.datavraag.nl/sonic/player.swf and .fla

    Cannot figure it out to get it to work fully… no visual pregraphics before it actually loads…
    Any ideas?

  13. Sorry : link wrong !
    again:
    HI

    I want to create a player like bleep.com uses.
    See : http://www.datavraag.nl/sonic/bleep/player.swf and .fla

    Cannot figure it out to get it to work fully… no visual pregraphics before it actually loads…
    Any ideas?

  14. could u give source code of this application ?

  15. the bleep player requires you to pass the plot string to the swf, so the waveform is already predone in its very basic form prior to the flash player starting the audio.

    Without passing that string you get nothing visualised.

 Leave a Reply

(required)

(required)

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>