Call for works Channel Noise: Electronic Music

Channel Noise: Electronic Music
October 1, 2009 @ 7:30PM – Carol A. Carter Hall, Georgia Southern University

Submission Deadline:
September 1, 2009 (postmarked).

Georgia Southern University invites submissions of fixed media works. Works may be audio or audio-visual. Stereo and other multichannel audio or audio-visual works (up to 8 channels + subwoofer) are invited for consideration. Submitted works should be less than 12 minutes in duration. Composer attendance is not required.

Format:

For audio works please include mono files for each channel on data CD … for stereo works a stereo audio file will suffice. Program notes and a brief biography should also be included on the data CD. Label the data CD with the Title and Composer(s). Include on the data CD any additional information that might be necessary (channel configuration, sample rate, additional requirements).

For audio + video works it is preferred that the video DVDs have no menu. Label the DVD with the Title and Composer(s) / Artist. Please send a data CD with program notes, a brief biography, and any additional information that might be necessary.

Send submissions to:

Channel Noise Concert
c/o John Thompson, Director of Music Technology
Department of Music, Box 8052
Georgia Southern University
Statesboro, GA 30461

Questions
contact: jthompson@georgiasouthern.edu

John Thompson
Assistant Professor
Music Technology
Georgia Southern University
jthompson@georgiasouthern.edu

.send, .send(s)와 .memStore

SynthDef를 서버에 올리는 두가지 방법이 있습니다.
.send, .send(s)와 .memStore인데 초반에는 send(s)만 사용되었지만 최근 1~2년사이에 .memStore도 함께 사용되고 있는데요
이 차이점을 이야기 해본다면,
흔하게 사용되는 Pbinds의 경우는 send(s)로 서버에 올려질 수 없습니다.

그렇다면 send와 send(s)의 차이는 무엇일까요?
그것은 send(s)는 하나의 서버로, 그리고 send는 활성화 되고있는 모든 서버로 synthDef를보내게 된다는 것입니다.

참고하세요~

pfunc – Csound Pfield Calculator

pfunc is a python script, powered by the Csound csd Python Package, that
allows users to apply a formula to targeted pfields in a Csound score en
masse.  For example, let’s say you wanted to shift every frequency (pfield
5) in all instrument 1 events by a half step:

$ cat foo.sco | ./pfunc.py i 1 5 ‘x * pow(2, 1 / 12.0)’

Or shift start times by 5.5 seconds for instruments 2 through 6:

$ cat foo.sco | ./pfunc.py i ‘range(2, 7)’ 3 ‘x + 5.5’

More about pfunc:
http://www.thumbuki.com/csd/demo/index.html#module-pfunc

Csound csd Python Package Home:
http://www.thumbuki.com/csd/

Download Csound csd Python Pacakge:
http://www.thumbuki.com/csd/release/csd-0.0.4.tar.gz

Best,
Jake