Archive for December, 2008

Dec
16

Hello friends!
 
This January, The Artclash Collective will be organizing the fifth anniversary Fun-A-Day Project!
 
What is Fun-A-Day you ask? It’s simple! Pick something you’d like to do every day (take a photograph, make the bed, draw a picture, bake a cake) and do it every day for the entire month of January. Submit your 31 pieces in early February to be included in the show. (If you do something like make-the-bed-a-day or talk-to-a-stranger-a-day, just figure out a way to document it–with photographs, in a zine, whatever.)
 
Fun-A-Day has been happening in Philly for the past five years–this marks the first year of Fun-A-Day in the Bay. The project is being organized by a group of Philly expats and at least one of the Artclash Collective’s founding members. Any and all folks living on the west coast, particularly in the Bay Area, are encouraged to submit!!
 
Check out the website: www.artclash.com for more details, photos from past shows, info about the show and submission details (TBA).
 
It will be a great start to your year.
 
love,
Artclash Collective WEST

 

flyer by Molly McIntyre
Dec
4

In this program, each bubble has a note (in C major) associated with it. When a silhouette in the video feed overlaps with the bubble, the note is sent to an audio program (Reason, in this case) in the form of a midi note. The bubbles can be moved left and right using an Arduino equipped with an accelerometer.

Processing Code

Similar to the above, but now two video feeds are incorporated. Now bubbles can only be played if they overlap with red sections of the video. Red sections are created when two silhouettes from separate video feeds overlap, so cooperation between people in the two video feeds is necessary to create notes. 

Processing Code

Both these programs build on the programs from my previous two posts. 

Dec
3

In this project, people in two separate rooms are videotaped. The two video feeds are fed through Processing, converted into silhouettes and superimposed over each other. Both rooms receive the same projection of the superimposed silhouettes. When silhouettes from the two rooms overlap, the overlapped area turns red and a midi note is sent to an external audio program (Reason, in this case).

The video feeds are initialized using a background subtraction technique, so only new objects in the space (ie: people) are fed back as silhouettes. The program sends midi notes using the RWMidi library. The program contains four different modes, some in which participants hear the same sounds, some in which they hear different sounds. All notes are currently in the C major scale. 

My version sounds like this (all sounds can be modulated in the sound program you choose):

Audio clip: Adobe Flash Player (version 9 or above) is required to play this audio clip. Download the latest version here. You also need to have JavaScript enabled in your browser.

Processing Code

Dec
3

I hooked up an accelerometer, a light sensor, a piezo pressure sensor, a small speaker ripped out of a phone, a vibrating motor and a potentiometer to an Arduino. The tilt of the accelerometer controls the pitch of the speaker (with some random noise thrown in for effect), the light sensor controls the speed of the motor, the potentiometer controls the volume and the piezo can be squeezed to make a high-pitched tone in the speaker. All variables from the sensors are printed to the serial port. 

Arduino Code