Seb Lee-Delisle

Menu

FlarToolkit made easy : SimplAR

As cool as bell-bottom pants according to Keith Peters! Which is pretty damn cool. And it can be really fiddly setting up the FLARToolkit, so I’ve finally released some of my AR code. Just in time for it to go … There’s more

Posted in Actionscript, Flash, Flash 3D | Tagged , , | 32 Comments

Making a multi-track recorder in Flash part 2

On Tuesday night I did a last minute ad hoc presentation to FlashBrighton to share the experiments I’ve done with the microphone capabilities of FlashPlayer 10.1. You should be able to see the recording at live.flashbrighton.org (if it’s not there, … There’s more

Posted in Actionscript, Flash, Sound API | 15 Comments

Making a multi-track recorder in Flash

Original Photo : PhotoCapy I’ve been playing with the Flash microphone input to record and playback multiple tracks. I thought it’d be really easy, but sadly it’s been really really tricky. The main problem is to do with knowing exactly … There’s more

Posted in Actionscript, Flash, Sound API | 4 Comments

Mind your semi-colons!

(previously titled : Flash Player bug? for each..in loops) [UPDATE] Kudos and much thanks to Tim Knip who pointed out that it was in fact my mistake – there’s a stray semi-colon at the end of the line : for … There’s more

Posted in Actionscript, Flash | 28 Comments

ActionScript SoundDataEvent.position

… is measured in samples. Not bytes or mils. So if you want to know how it relates to the ByteArray you’re working with, you need to multiply it by 4 (as each floating point sample requires 4 bytes). And … There’s more

Posted in Actionscript, Flash, Sound API | 1 Comment