My Diplom Thesis

Basically i filmed a 360 degree boat trip through Berlin and developed a Flex Application around it that expand the interactive movie with additional information from Google Maps, Twitter, Flickr and Wikipedia.

Its is written in Actionscript 3, MXML and based on the PureMVC Framework. The footage was shot with a Canon HV30 HDV cam and the Eyesee360 GoPano optic.

Main features: Application has a hotspotting-function that allows to click on some touristic attractions and get their name. The application updates the information from Google Maps, Twitter, Flickr and Wikipedia about the currently reached touristic attraction. The thesis was written during my time working at www.argonauten-g2.de

No Comments

Music and Motion Graphics melted together

This video called End Scene  by Steffen Bygebjerg shows the perfect fusion of music and motion graphics.

End Scene from Steffen Bygebjerg

No Comments

Beardyman – Live in the Underbelly: The Full show

Beardyman is on the best beatboxers worldwide. Check out his performance at the Edinburgh Comedy Festival 2009.
My favorite is the coverversion of Windowlicker from Aphex Twin.

, ,

No Comments

How to setup a good IDE for Actionscript programming

I found and interesting guide on how to setup a good  actionscript IDE. Check it out:

http://blog.hexagonstar.com/setting-up-the-ultimate-flash-development-environment/

No Comments

Flash Camp June 2009 Berlin

flashcamplogo

Yesterday i went to the  2009 Flash Camp in Berlin which was well organized by the Berlin Flex Labs User Group. Many thanx to Bettina Schulz and Mathias Stäbler for this nice event.

I had the chance to listen to  Thomas Reppa giving a good introduction to PureMVC (slides available here), to Cedric Madelaine talking about Actionscript 3D Engines and especially to André Michelle talking about the phenomenal Hobnox Audiotool.

He gave some really good insights about starting to program a virtual synthesizer based on actionscript and showed us in a step by step workshop how get something out of the speaker.
Here is a little code example about how to get a basic sinus tone:

package
{
  import flash.display.Sprite;
  import flash.events.Event;
  import flash.media.SoundChannel;
  import flash.media.Sound;
  import flash.media.SoundTransform;
  import flash.media.SoundMixer;
  import flash.events.SampleDataEvent;

  public class Main extends Sprite
  {
     private var sound:Sound;
     private var phase:Number;
     private var value:Number;
     public function Main():void
    {
       if (stage) init();
       else addEventListener(Event.ADDED_TO_STAGE, init);
    }

    private function init(e:Event = null):void
    {
       removeEventListener(Event.ADDED_TO_STAGE, init);
       phase = 0.0;
       value = 0.0;
       sound = new Sound();
       sound.addEventListener(SampleDataEvent.SAMPLE_DATA, sampleDataHandler);
       sound.play();
    }

    private function sampleDataHandler(e:SampleDataEvent):void
    {
      var amplitude:Number;
      for (var i:int = 0; i < 3072;++i)
      {
        amplitude = Math.sin(phase * 2.0 + Math.PI);
        phase += 220.0 / 44100.0;
        amplitude = phase * 2.0 - 1.0;
        value += (amplitude -value) * .01;
        if (phase > 1.0) phase -= 1.0;
        e.data.writeFloat(value);
        e.data.writeFloat(value);
      }
    }
  }
}

So basically this is a good starting point for experimenting with sound. Flashplayer 10 needed and like André Michelle said: “Protect your ears !”

More information on Hobnox Audiotool under http://opensource.hobnox.com/source/ or the checkout url for svn

http://svn.opensource.hobnox.com/trunk

, , , ,

No Comments

THRU YOU – Youtube remixed

Sampling 2.0 – What can i say ? Great job and definetly a lot of work.

Props to Kutiman.

Check it out.

Thru You

, ,

No Comments

Mr. Invisible ripping the MPC

Mr . Invisible aka Justin Aswell show how to get down on a MPC 2000 xl.

I never learned an instrument. Maybe now its time…..

, , , ,

No Comments

F4V Cuepoint and Keyframe Issue

While experiencing a little bit around with the flash media encoder cs4 and the new file format f4v i found out that nothing is like it seems.

First you are not able to set cuepoints with the same results as in a flv and secondly when you set the keyframe interval ( example 1 keyframe on every frame) the media encoder will not set them at all.

Keyframe

, , ,

No Comments

Hi Everybody !

Welcome to my new blog !

Have fun !

No Comments