fromCONCENTRATE

research blog of artist John O'Shea

Demo ov ‘Constant Agitation’

(for info regarding this, see previous post.)

Constant Agitation?

My first assignment of the DOING module (Simple Twisting Interface) introduced me to questions regarding the potential ‘resolution’ of information within a simple and intuitive twisting gesture – in that case turning a potentiometer and triggering audio samples within a MAXmsp patch.

For my second assignment of the DOING module (presentated 17/3/2010) I had an idea, which would work in a conceptually opposite direction:

I have begun to outline concerns regarding tokenistic ‘one click’ digital engagement with legal and political frameworks thru handheld devices and the web (see previous posts.)  Further to this, I am also alert and suspicious of the current ‘mania’ regarding the use of gesture, touch and interaction with digital technology and especially in relation to the new breed of ’smart phones,’ and home physical computing (iPhone, Nintendo Wii etc.)

And, since the title of the project brief was ‘Mirrors,’ I decided to work on something which could bring to the fore this fascination with our own (seemingly) reflected action.

I had an idea to develop some kind of application which could reflect and make apparent the (pathetic) nature of a users contribution.  This application would require a constant interaction in order to provide a very limited and basic feedback.

My idea was to use Processing to create a sketch for a potential iPhone application which would do NOTHING UNLESS SHAKEN.  On shaking the device, a looped video file will play but then, if the user stops shaking, the video will pause.  Since the video is set to loop after only a few seconds this constant user effort will return a very limited response.

In terms of the media file, I wanted something silly and banal and I decided to use a video of someone playing the maracas.  A suitable media file, which I found in the incredible Prelinger Archives and sampled in order to produce the loop, can be viewed here:  http://www.archive.org/details/Havana-Madri_2

Below is my sketch – which is extremely simple – embedding the video and overlaying an image of an iPhone.  Mouse movement over the sketch is used for the purpose of the sketch as an analogous ‘demo’ signal in place of actual, physical iPhone ’shaking.’

//SKETCH ‘Constant Agitation’ – John O’Shea
//DM MRes. / Culture Lab / 17-3-2010

import processing.video.*;

Movie video;
PImage img;

void setup(){
size(400, 400);
frameRate(10);
img = loadImage(“iPhone_template_400_400_240_160.png”);

video = new Movie(this, “MaracusLOOP169QVGAzoomed.mov”);
video.loop();
}

// callback function (below) seemed to result in undesired flickering
//so used ‘if’ function within ‘draw’

//void movieEvent(Movie m) {
// m.read();
//image(video,140,40);

void draw(){

//call video
if (video.available()){
video.read();
}

//video image positioned at desired location
image(video,40,40);

//boolean statement below checks for mouse movement
if (pmouseX == mouseX && pmouseY == mouseY){
video.speed(0);
}else{
video.speed(1);
}

//overlay image inserted at the very end so that it is on top
image(img, 0,0);
}

The complete file (with required media components) can also be downloaded here.

RSS Re-Dock

  • From Fantasy to Reality
    It's over a year now since I first met the group of young people involved in 'Project Triangle'. Looking back, it's easy to see a huge increase in confidence, both from their involvement in the project, and from the work they've done in presenting the film and educational DVD to various groups across the country. On the main, they […]
  • Simple (BIG) Interface
    A couple of weeks ago I took part in DIY Music Day at the World Museum, Liverpool. The event was organised by Ross Dalziel of Sound Network, as part of a series of events called How Why DIY? which aimed to open up technology to a wider audience.This event explored ways in which people could engage with sound, from making their own thumb pianos from simple ma […]
  • Digital Media Labs Award
    Re-Dock are delighted to have been selected for a Digital Media Labs, research and development residency, happening in Hull at the end of October.The residency has been organised as part of the commissioning process for an interactive art work for the new Wilberforce Health Centre in Hull. And, our successful application means that one of us will be spending […]
  • mutate and re-mix!
    "A Small Cinema" has grown beyond our control and, like all great 21st century ideas it has gone VIRAL! We really hoped this day would come (but we hadn't realised that it would be quite so soon!).Tonight a small cinema opens in Oldham, operating out of an empty shop and showing a run of feature films. The project, has been set up by 17 year o […]
  • Gross Indecency
    As a collective, I think all us Re-Dockers are very clear and what is and what is not a Re-Dock project. We've mainly worked this out from our own work practices, where making a living is a major priority. Re-Dock as a CIC can be much more selective. However, it's interesting examining how our work as individuals has grown and been influenced by ou […]
  • The Signs are all there...
    We have just started work on another Re-Dock project involving the Leeds-Liverpool canal. Building on the work we did for Canal &, we are using the memories and ideas gathered as a starting point for a signage installation next to the new Pennington Road bridge.'Constellation Of Signs' will be made of over 100 aluminium road and tourist informa […]