파일에 recording을 하는 방법으로 서버윈도우의 버튼을 이용할수 있다.
(
r = Routine({
{Synth(noiseWindow,
[cf, rrand(500,2500), rq, 0.005,
amp,1,dur,rrand(0.5,3)]);
rrand(0.01,0.1).yield;
}.loop
})
)
//서버 윈도우의 다음 버튼을 누른다.
prepare rec
record
stop
//텍스트를 이용하여 레코딩을 컨트롤한다.
r.play
r.stop
r.reset.play
//레코딩 포멧 설정하기
(
s.recSampleFormat=”int24″;//”int8″, “int16”, “int24”, “int32”, “float”, “double”, “mulaw”, “alaw”
s.recHeaderFormat=”aidd”;//”aiff”, “next”, “wav”, “ircam””, “raw”
s.recHannels = 1;//mono
//파일이름 설정하기
s.prepareForRecord(“recordings/test1.aif”)
)
//레코딩과 플레이를 동시에
(
s.record;
r.reset.play; // )
// 멈추기
r.stop; // 레코딩을 멈추기 전에 플레잉이 끝날때 까지 기다려야 한다.
s.stopRecording;
//——————————————
Buffers
Buffers는 32-bit의 floating point values를 가진 array이다.
Buffers는 서버에 있기 때문에 synths에 의해 사용된다. are on the server so that they can be used by synths.
Buffers는 allocated되거나 filled되거나 freed되어야 한다.
Buffers가 allocated, loaded, freed됨과 동시에 synthesis를 실행시킬수 있다.
Buffers는 wave tables, sample buffers, delay lines등으로 사용될수 있다.
서버한의 buffer의 수는 boot time에 설정된다.
Server.internal.options.numBuffers
Buffers는 0으로 시작한다.
buffer messages
[Server-Command-Reference] 참고
다음은 몇개의 buffer command들:
/b_alloc //buffer space를 allocate
buffer number
number of frames
number of channels (optional, default = 1)
optional OSC message to execute on conclusion
/b_allocRead //buffer space할당하고 sound file를 읽음
buffer number
path name of a sound file (as a string)
starting frame (optional, default = 0)
number of frames to read (optional, default = 0)
optional OSC message upon completion
/b_free
buffer number
optional OSC message upon completion
/b_close
buffer number (to close a soundfile)
s.sendMsg(“/b_allocRead”,0,”sounds/a11wlk01-44_1.aiff”)
s.sendMsg(“/b_close”,0)
s.sendMsg(“/b_free”,0)
//——————————————
PlayBuf
PlayBuf : a sample (buffer) playback oscillator
(numChannels, bufnum, rate, trigger, startPos, loop)
rate = 1 is no change, 2 is one octave up, …
loop = 1 is true, 0 is false
s.sendMsg(“/b_allocRead”,0,”sounds/a11wlk01-44_1.aiff”) // allocate and read buffer 0
{ PlayBuf.ar(1,0,1,loop: 1) }.scope
s.sendMsg(“/b_allocRead”,0,”sounds/sax1.aiff”) // allocate buffer again and read in a different file (if available)
s.sendMsg(“/b_free”,0) // free buffer when finished with it
//——————————————
Buffer class
Buffers 는 또한 Buffer class와 함께 접근될수있다. (메세지 스타일보다 편하게 사용될수 있음)
Buffer.read buffer space할당하고 sound file를 읽음
b = Buffer.read(s, “sounds/a11wlk01-44_1.aiff”);
{ PlayBuf.ar(1, b.bufnum, 1, loop: 1) }.scope
// Mouse control of rate (transposition)
{ PlayBuf.ar(1, b.bufnum, MouseX.kr(0.5,2), loop: 1) }.scope
b.bufnum // returns buffer number
b.numChannels // returns the number of channels in the buffer
b.free // return the memory and free buffer ID, IMPORTANT
(Memory 사용량은 Terminal application에서 체크 (using top))
//——————————————
BufRateScale
buffer로 읽혀지고 있는 파일이 SC에서 사용되는 셈플과 다른 rate을 가질때에
BufRateScale.kr(bufnum)는 soundfile의 재생에 맞게 ratio를 바꾸어 준다.
b = Buffer.read(s, “sounds/a11wlk01.wav”); // sample rate of this file is 11025
to scale the playback:
{ PlayBuf.ar(1, b.bufnum, BufRateScale.kr(b.bufnum), loop: 1) }.scope
b.free
//——————————————
BufFrames
BufFrames.kr(bufnum)는 현재 할당된 frames의 수로 돌아간다.
이것은 버퍼의 중간부분에서 시작하는 설정등을 할때에 유용하다.
b = Buffer.read(s, “sounds/a11wlk01-44_1.aiff”);
(
var start = 1/2;
{ PlayBuf.ar(1, b.bufnum, BufRateScale.kr(b.bufnum),
startPos: BufFrames.kr(b.bufnum) * start, loop: 1)
}.scope
)
위의 예제에서의 시작부분으로 돌아가도록 loop
a trigger (<= 0 to > 0) causes the playback to start from startPos
// using a trigger without looping
Impulse.kr 는 특정 freqyency에서 trigger를 만든다.
(
var start = 1/2;
{ PlayBuf.ar(1, b.bufnum, BufRateScale.kr(b.bufnum),
Impulse.kr(1/3),
startPos: BufFrames.kr(b.bufnum) * start, loop: 0)
}.scope
)
// using a trigger with looping:
trigger는 다음 frequency에서 발생:
(serverSampleRate / numberOfFrames) * rateScale
s.sampleRate // the server’s sample rate
(
var start = 1/2;
{ PlayBuf.ar(1, b.bufnum, BufRateScale.kr(b.bufnum),
Impulse.kr(s.sampleRate / (BufFrames.kr(b.bufnum) * start) *
BufRateScale.kr(b.bufnum)),
startPos: BufFrames.kr(b.bufnum) * start, loop: 1)
}.scope
)
b.free
//——————————————
http://csound.x-y.net
Ji Youn Kang,
Csound Max Community