ALVIN LUCIER 北京

演出地点在中央音乐学院。一共是4个作品。

1 开场alvin lucier就表演了在国内被人炒来炒去的那个 I Am Sitting in a Room,这个不用多说了和传说中的一样。
2 是一组以静物为概念的8个小品(正弦波以对数变化,波形变化的缝隙中加入钢琴) 非常老的作品 听起来很氛围。

3是他为三角铁写的作品,就是持续对一个三角铁反复敲击, lucier在调音台后面调节制造微小变化的feedback,由于作品持续时间很长学院的演奏员在演奏中有卡壳的地方但是我还是很钦佩他的演奏:)

4最后也是最有表演性的演出是lucier变奏Beatles的经典歌曲Lucy in the Sky with Diamond,他演奏了几个乐句之后关上了三角钢琴的背板 然后拿出一个中国老式茶壶,放在背板上,这时候壶里出现了他的演奏,他不时优雅的打开合上壶盖 产生特殊的音响效果(突然忘了叫啥原理><)

老大师已经76岁了 很幸运一睹风范 没资格说什么 只是描述下就好,更没有好意思去同大师合影。中央音乐学院的现场扩音并不出色而且我觉得演出场地的声场本身就不怎么样.奇怪的是这次只看见学院的观众,北京诸多的实验前卫后具象爱好者和音乐家并没有在此出现,但是演出是免费的。

忙于arduino,复古立体


arduino并不是特别难用,手工课,左边是红绿眼镜
arduino+电位器+processing

也就是说现在做个小midi控制器很容易,也可以附带midi+osc控制器,制造工具low tech。


还记得小时候看过的立体电影吗,带上红绿眼睛,7月份的立体爬筹备中。

Processing趋势

老外开始玩高层次例子了,看到有些小伙子拿着高层子例子修饰成video。
本没有错,就算把教程写出来还是很多人不会,code的编程还是存在模块化封装的问题,虽然编程的思路不能模仿,但是深层的算法对于用pr的人来说没效率意义,还是使用层面的问题,这会变为一个大的趋势,会出现大量和sound art作品的一样的整体相似集团的出现。花招都放在如何控制和演绎的基础上。processing在商业上的发挥定会超越艺术装置类。

蒋竹韵(积木) – 药柜子


“每一个抽屉都是一味声音,可同时将五种声音配伍,混于药罐中,听众可打开罐盖聆听, 壶口出也可直接输出,外接耳机。此柜和声剂将是一项长远的发展计划。” [...]

不是技术问题,rio解决的技术问题,把点子艺术换作坚持十年的药柜子,定能与张洹并列。

跟画大头没区别





bulid with Processing
跟画大头打着投影画一样,灵魂问题是附属问题。

remix-test

对采样进行节奏性的算法处理 测试是在实时编码的情况下进行的

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.

Making a Theremin with Arduino


When we are defining what is a music instrument, it is touching some key to make sound, or some other actions?
May be the theory or influence by Pierre Schaeffer, we have thousands of experimental music instrument to play with.

“Theremin is one of the earliest fully electronic musical instruments . It was invented by Russian Leon Theremin in 1919, and it is unique in that it was the first musical instrument designed to be played without being touched. It consists of two radio frequency oscillators and two metal loop antennas . The electric signals from the theremin are amplified and sent to a loudspeaker .”
“To play the theremin, the theremin player moves his or her hands around the two metal antennae , which control the instrument’s frequency (pitch) and amplitude ( volume ). The theremin is widely associated with “alien”, surreal, and eerie-sounding portamento , glissando , tremolo , and vibrato sounds, due to its use in film soundtracks such as Spellbound , The Lost Weekend , and The Day the Earth Stood Still . The theremin is also used in art music (especially avant-garde and 20th-century “new music”) and in popular music genres such as rock and pop.” – by Wikipedia (http://en.wikipedia.org/wiki/Theremin)

Parts for this project:

-Photocell
-Piezo Buzzer
-Resistor, 10K (optional , to make the sound smaller)

In this project, we are making the theremin without connecting the Arduino to the computer. That means it can play the melody/sound/noise by itself.

In order to make this, you are not playing the melody in computer by through Piezo Buzzer.

Piezoelectricity

Piezo “, derived from the Greek piezein , which means to squeeze or press

Piezoelectricity is the ability of crystals and certain ceramic materials to generate a voltage in response to applied mechanical stress .

The piezoelectric effect is reversible in that piezoelectric crystals, when subjected to an externally applied voltage, can change shape by a small amount.The effect finds useful applications such as the production and detection of sound, generation of high voltages, electronic frequency generation, microbalance , and ultra fine focusing of optical assemblies.

 

Piezo Buzzer

Two wires: red and black. Black is ground and red is power. (usually)

 

Apply an oscillating voltage to make a noise.

The buzzer case supports the piezo elements and has resonant cavity for sound.

Simple making noise with buzzer:

But you can add a photocell to make a Theremin!!

DIY: Add photocell and make it become a Theremin.

int potPin = 0;   //photocell input
int speakerPin = 7;  //piezo buzzer output
int val = 0;  //photocell input value

void setup() {
 pinMode(speakerPin, OUTPUT); //initiate the pin
 beginSerial(9600);
 Serial.println("ready");
} 

void loop() {
 digitalWrite(speakerPin, LOW);
 val = analogRead(potPin);
 val = val*2;      //this is not exact value,
                  //try to DIY this calculation

 // play it for 50 cycles
 for( int i=0; i<500; i++ ) {
   digitalWrite(speakerPin, HIGH);
   delayMicroseconds(50);
   digitalWrite(speakPin, HIGH);
   delayMicroseconds(50);
 }
}

Ri3 sustainable imaginatio


基本上顺利的开幕,数据诗意?

Ri2 sustainable imaginatio


2号准时到的 mac mini +1grom 测试以及更新java


成形小黑盒,右上角EventStructure出品