Claudio Zopfi gewinnt den Fokus-Preis 2010 des Kunsthauses Glarus
Dec 7th
Ich möchte mich an dieser Stelle ganz herzlich bei allen Bedanken, die mich zu dieser Arbeit inspiriert haben, dazu beigetragen haben, diese Arbeit zu ermöglichen und zu verbessern, u.A. Philipp, Haeyeon, Sven, Alexander, Andres, Emil, Christa, Aurelio, Beat, Mario, Nils, Roli, Mäse, Ingrid, Susann, Rio, Matthias, Tatjana …..
Interaktive Klangskulptur @ Kunsthaus Glarus
Nov 30th
In Zusammenarbeit mit Dozenten und Studenten der “Vertiefung Mediale Künste” von der “Zürcher Hochschule der Künste” entstand diesen Herbst “6-Kanal”, eine interaktive Klangskulptur. Diese wird vom 4.12.2010 – 16.11.2011 im Kunsthaus Glarus präsentiert. http://www.kunsthausglarus.ch/
Die Klangskulptur besteht aus 6 im Kreis angeordneten und gegen aussen gerichteten Lautsprechern, die aus dem Hörsaal des “Departementes für Informationstechnologie und Elektrotechnik” der ETH ausgemustert wurden. Die Lautsprecher können einzeln angesteuert werden. In der Mitte existiert eine Platform für den Performer. Dieser kann mit einem Touchscreen-Basierten Instrument (“Misuco 1″) Klänge auf den Lautsprechern dahingleiten lassen. Das ganze steht auf drei Rädern bzw. einer 12-kantigen MDF-Platte und ist mit einem 8-Kanal Verstärker sowie einem modernen Miniatur-Universalcomputer ausgestattet.
Claudio Zopfi, der die Skulptur konzipiert und realisiert hat, arbeitet gemäss seinen persönlichen Bedürfnissen als Komponist und Performer von elektronischer Musik. Er durchbricht mit seiner Arbeit die in der Architektur und Logistik weit verbreitete Orientierung nach der Zahl vier. Er kehrt die in der Beschallungstechnik übliche Praxis der Beschallung von aussen nach innen auf eine Beschallung von innen nach aussen um. Die Skulptur beinhaltet auch den Gedanken der Befreiung der Musik von der Konserve, da zwar darauf gespielt werden kann, ein Record-Button jedoch bewusst weggelassen wurde.
Weil das ganze auf Rädern steht, kann die Skulptur auch als Messgerät zur klanglichen Erforschung der Räume im Kunsthaus Glarus benutzt werden.
Die Skulptur kann käuflich erworben oder gemietet werden, der Preis ist verhandelbar. Ab 15.1.2011 sucht die Skulptur zudem Asyl in einem geeigneten Raum. Anfragen bitte per E-Mail an 6kanal@framework4.ch.
Nachfolgend einige Bilder der Entstehung:
15.10.2010: 6 Kanal – Reise zwischen Welten
Oct 12th
Eine Installation/Performace von Claudio Zopfi in Zusammenarbeit mit Sven Hürlimann und Martin Stamm.
Westeuropäische interpretation klassischer indischer Musikkonzepte auf 6 hochauflösenden digitalaudio Kanälen mit traditionellen und avantgardistischen Instrumenten.
15.10.2010 ab 20:00, Dock18, Rote Fabrik, Zürich
misuco demo 1.20
Aug 21st
If the plugin does not work, check your java plugin installation.
On ubuntu try:
apt-get install sun-java6-plugin
To download it, click here
To start in full screen, click on link below.
To stop it, click something like alt+tab and close the browser window.
A hint: You can use the cursor-keys to change the instrument.
Tweakfest 2010 Photos
May 10th
Proudly presenting the first public performance of Misuca To Misuco at the Tweakfest in Alte Börse Zürich:
You can see this in fullscreen by clicking the botton next to the pic caption….
misuco – microtonal surface controller
Apr 4th
Misuco is my answer to laptop computers used by musicians on stage. As an electronic music performer myself I got bored by laptop computers on stages and was looking for another more accurately designed computer for my music performance.
Misuco is a performative interface. It can connect several digital devices and humans. It is based on a touch sensitive light surface. The core is a piece of software written by Claudio Zopfi.
OP Art in Java workshop
Mar 21st
The main goal of this workshop is, to get the Java IDE Eclipse running on your machine and to get into the provided script and modify it.
Here zou can get the Eclipse IDE:
http://www.eclipse.org/downloads/
Here is the Script:
/**
http://www.eclipse.org/downloads/download.php?file=/technology/epp/downloads/release/galileo/SR1/eclipse-java-galileo-SR1-macosx-cocoa-x86_64.tar.gz
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
02110-1301, USA.
Copyright (C) 2008 Claudio Zopfi
*/
import java.applet.Applet;
import java.awt.Color;
import java.awt.Graphics;
import java.awt.Image;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import java.util.Random;
import javax.imageio.ImageIO;
public class Visual1 extends Applet implements Runnable {
/**
*
*/
private static final long serialVersionUID = 4115815051186766767L;
int n;
int frame;
int delay;
int ind; //image index
Thread animator;
public Visual1() {
this.setSize(712, 712);
}
/**
* Initialize the applet and compute the delay between frames.
*/
public void init() {
String str = getParameter("fps");
int fps = (str != null) ? Integer.parseInt(str) : 10;
delay = (fps > 0) ? (50000 / fps) : 5000;
ind=0;
}
/**
* This method is called when the applet becomes visible on
* the screen. Create a thread and start it.
*/
public void start() {
animator = new Thread(this);
animator.start();
}
/**
* This method is called by the thread that was created in
* the start method. It does the main animation.
*/
public void run() {
while (Thread.currentThread() == animator) {
// Display the next frame of animation.
repaint();
// Delay for a while
try {
Thread.sleep(delay);
} catch (InterruptedException e) {
break;
}
// Advance the frame
frame++;
}
}
/**
* This method is called when the applet is no longer
* visible. Set the animator variable to null so that the
* thread will exit before displaying the next frame.
*/
public void stop() {
animator = null;
}
public void update(Graphics g){
Image bufImage=null;
Graphics bufG=null;
int w = 1024;
int h = 1024;
if(bufImage == null){
bufImage = this.createImage(w,h);
bufG = bufImage.getGraphics();
}
// bufG.setColor(this.getBackground());
//bufG.fillRect(0,0,w,h);
//
// bufG.setColor(this.getForeground());
paint(bufG);
g.drawImage(bufImage,0,0,this);
BufferedImage bi = new BufferedImage(w, h,
BufferedImage.TYPE_INT_ARGB);
Graphics g2=bi.createGraphics();
g2.drawImage(bufImage,0,0,this);
try {
// Save as PNG
File file = new File("c:/vasa/newimage"+ind+".png");
ind++;
ImageIO.write(bi, "png", file);
} catch (IOException e) {
}
}
public void paint(Graphics g) {
Random ra = new Random();
if (n<1) {
n=1;
} else if (n>255) {
n=1;
} else {
n=n*2;
}
int w=1024; // size
float col1=ra.nextFloat();
float col2=ra.nextFloat();
float col3=ra.nextFloat();
float incval=ra.nextFloat()/100;
float colmax=ra.nextFloat();
float colmin=ra.nextFloat();
for(int i=0;icolmax) col1=colmin;
if(col2
colmax) col3=colmin;
if(col2>colmax) col2=colmin;
if(col1
0.6) {
int
xp[]={i*w1+w4,(i+1)*w1-w4,(i+1)*w1-w4,i*w1+w4,i*w1+w4};
int
yp[]={j*w1+w4,j*w1+w4,(j+1)*w1-w4,(j+1)*w1-w4,j*w1+w4};
g.fillPolygon(xp,yp, 5);
} else if(r1>0.3) {
int xp[]={i*w1+w2,i*w1+w1,i*w1+w2,i*w1+0,i*w1+w2};
int yp[]={j*w1+0,j*w1+w2,j*w1+w1,j*w1+w2,j*w1+0};
g.fillPolygon(xp,yp, 5);
} else {
g.fillOval(i*w1+w8, j*w1+w8, w1-w4, w1-w4);
}
r1=Math.random();
g.setColor(Color.getHSBColor( col3, 1.0F, 1.0F ));
if(r1>0.6) {
int
xp[]={i*w1+w3,(i+1)*w1-w3,(i+1)*w1-w3,i*w1+w3,i*w1+w3};
int
yp[]={j*w1+w3,j*w1+w3,(j+1)*w1-w3,(j+1)*w1-w3,j*w1+w3};
g.fillPolygon(xp,yp, 5);
} else if(r1>0.3) {
int xp[]={i*w1+w2,i*w1+w1-w3,i*w1+w2,i*w1+w3,i*w1+w2};
int yp[]={j*w1+w3,j*w1+w2,j*w1+w1-w3,j*w1+w2,j*w1+w3};
g.fillPolygon(xp,yp, 5);
} else {
g.fillOval(i*w1+w3, j*w1+w3, w3, w3);
}
}
}
}
}
Transformation Java App
Feb 7th
Semesterprojekt BA IT 3. Semester von Claudio Zopfi, Steivan Nogler und Florian Caflisch. Mentorat: Albert Heuberger.
Das Programm visualisiert eine Fourier Transformation under Anwendung von verschiedenen Methoden, namentlich durch Lösung eines linearen Gleichungssystems mit dem Gauss-Algorithmus und durch numerische Integration.
Der Source-Code kann unter CC by-nc-sa Lizenz heruntergeladen werden: transformation_v3.06.zip
Hinweise:
- Der Sampler funktioniert in der Applet-Version leider nicht. Lösung: JAR-File herunterladen und lokal ausführen.
- Mit der rechten Maustaste bzw. Ctrl+Click kann über das F-Fenster ein Kontext-Menu aufgerufen werden, um die Parameter zu verändern und die Animation zu starten.
Über folgenden Link kann das Applet gestartet werden.
More >








































