Rotoscoping in Linux

April 22nd, 2011

I finally found a decent rotoscoping program for linux It’s called pencil, and you can find it here http://www.pencil-animation.org/

So how do I rotoscope a movie in pencil?
well.. you can adjust the opacity of the whole interface, so, you just set the opacity to 60% and put a movie behind the pencil window..
I tried a few video players (vlc, gnome-player, totem) but in none of them I could skip a single frame at a time.
I ended up using mplayer (easy to install, with apt or yum)
with mplayer you can play a movie like “mplayer mymovie.mp4″ and then skip single frame using . (that is dot)

good luck!:)

Simpel fractal

June 15th, 2010

Started trying something with fractals..
I geuss this is the very basics of a fractal in actionscript.. Read the rest of this entry »

Setting up a red5 server

February 22nd, 2010

Red5 is a flash communication server.
it enables you to make a socket connection to your server and communicate with a java application there (which in itself already opens tons of possibilities). but also; red5 is very useful for streaming and recording client streams.

so.. altogether; a very interesting platform to play with:) Read the rest of this entry »

About Opensocial and Hyves

January 27th, 2010

At my work we got an order to develop a hyves gadget, I was responsible for the technique behind it.
I decided to use opensocial instead of the hyves api because that should result in a cross platform gadget (opensocial is available on other platforms like facebook, myspace, orkut, etc. etc.) Read the rest of this entry »

getters and setters in php

December 19th, 2009

while I was setting up a framework for a project, I started to think..
is it possible to use getters and setters in php.. ( if you don’t know what I’m talking about.. read this article about how (and how not) to use getters and setters in actionscript) Read the rest of this entry »

Actionscript ComputeSpectrum experiment

December 4th, 2009

Recently I started experimenting with the actionscript SoundSpectrum
so I created several things, tried combining it with papervision 3d..
but in the end.. the best I came up with.. is as simple as can be..
but yet..

very..

intriguing Read the rest of this entry »

Actionscript events workflow

November 24th, 2009

in actionscript 3 events can be a real blessing, or a pain in the butt, it can make your code a lot cleaner or pollute your code with a lot of addEventListener’s..

So today I want to show you how I often get around the many addEventListeners, I’m assuming you know how to add eventListeners and how to dispatch them. (in the common way by extending the Event class)

Read the rest of this entry »

Actionscript 3 particle engine

November 18th, 2009

a little experiment with particles I did recently.

Read the rest of this entry »