Emory Hensley presents his work at the Mars Hill University and included “Inner blues” for vibraphone an visuals.
Category Archives: Audio and scores
Walls received honorable mention in the American Prize!
Great News! I’ve just been awarded Honorable Mention in the Chamber Music Professional division of The American Prize national non-profit competitions in the performing arts.
Here’s the link: http://theamericanprize.blogspot.com/2015/11/composer-winners-chamber-music-pro.html
Listen to the work here:
You can learn more about this prestigious national competition here: www.theamericanprize.org or follow the news on Facebook: https://www.facebook.com/pages/The-American-Prize-celebrating-American-excellence-in-the-arts/214320622728 or Twitter: https://twitter.com/americanprize
UT Electroacoustic Ensemble live on 11/16
“A rare form of kleptomania” at the SCI National Conference
Juan Manuel Flores to perform “A rare form of Kleptomania” in Monterrey
Mexican violinist and new music champion, Juan Manuel Flores, will perform “A rare form of kleptomania” for violin and computer on October 26th at 5PM at the Auditorio Revueltas of the Facultad de Música UANL.
The repertoire will also include works by Josue Peregrina, Tomek Regulski, Alberto Schiavo, Digo Jimenez and Alaksandr Porakh.
UT Contemporary Music Festival
The Stoka ensemble rocks Sexual chocolate porter in Den Haag
The group did an amazing presentation at Studio Loos in Den Haag offering a balanced interaction between electronic and acoustic sounds. Tomer Baruch, Theo Horsmeier, Adam Juraszek – computers, Emilio Tritto – baritone sax, Daniel Clason – trumpet, Louis Portal – drums
Sexual chocolate porter live by the Stoka:
At the Harold Golen Gallery
In collaboration with the Harold Golen Gallery, FETA Foundation presents Jorge Variego (clarinets and electronics) in a concert filled with new works by Latin American composers . The music contemplates the fine line between composition and free improvisation while engaging electronic media. The program of works by Blas Atehortúa (Colombia), Ricardo Dal Farra (Argentina-Canadá), Jorge Variego (Argentina-USA), Daniel Schachter (Argentina), Jose Miguel Candela (Chile), Miguel Noya (Venezuela) and Mirtru Escalona Mijares (Venezuela) features a balanced spectrum of electronic, acoustic and visual components.
Roberto Oliveira premieres “Nunca tan lejos” in Galicia
Nunca tan lejos (vibráfono, electrónica y video) – 2015 – Estreno mundial (click to watch the video)
Compuesta en SuperCollider, la electrónica intenta extender, desarrollar y muchas veces contraponer el discurso del intérprete a través de patrones que emergen y se evaporan. El material esencial de la pieza surge de una serie armónica que el vibrafonista revela gradualmente. El ordenador sigue un proceso similar, introduciendo transformaciones microtonales y procedimientos distorsivos que se acumulan, invitando a un viaje hacia un mundo de sonoridades poco familiares. La obra ofrece una serie concatenada de imitaciones imperfectas que van desde la adrenalina pura a momentos de profunda introspección.
** Este trabajo está dedicado a Roberto Oliveira
While Lulu premiered in Colombia
Colors
Living colors.
Simple processing.
float a = 0;
float b = 0;
float co = 0;
void setup() {
background(0);
colorMode(HSB, 100);
size(270, 150, P3D);
smooth();
strokeWeight(100);
}
void draw() {
frameRate(60);
directionalLight(51, 102, 126, 0, -1, 0);
stroke(co, 80, 200, 1);
float x0 = map(sin(a) * sin(a) * noise(a) * random(0.5), -1, 1, 20, width – 20);
float y0 = map(cos(b), -1, 1, 20, height – 20);
float x1 = map(sin(b) * sin(a), -1, 1, 20, width – 20);
float y1 = map(cos(a), -1, 1, 20, height – 20);
line(x0, y0, x1, y1, random(100), random(-400));
line(y0, x0, y1, x1, random(100), random(-400));
a = a + 0.01;
b = b + 0.05;
co = co + 1;
if (co > 100) {
co = 0;
}
}