소스 검색

Got LiSa running as a delay

master
Pete Shadbolt 9 년 전
부모
커밋
15c2e2d848
3개의 변경된 파일33개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -0
      .gitignore
  2. +1
    -1
      libs/simpleosc.py
  3. +31
    -0
      scratch.ck

+ 1
- 0
.gitignore 파일 보기

@@ -1,4 +1,5 @@
*.wav
lisa_docs/

# Byte-compiled / optimized / DLL files
__pycache__/


+ 1
- 1
libs/simpleosc.py 파일 보기

@@ -26,7 +26,7 @@ License : LGPL
"""

try :
from OSC import *
from osc import *
except :
print "Warning!!! you must have pyOSC installed -> https://trac.v2.nl/wiki/pyOSC"


+ 31
- 0
scratch.ck 파일 보기

@@ -1,3 +1,33 @@
//signal chain; record a sine wave, play it back
adc => LiSa saveme => dac;
adc => dac; //monitor the input
0.5 => adc.gain;

//alloc memory; required
2::second => saveme.duration;

//start recording input
1 => saveme.loop;
0::second => saveme.playPos;
1::second => saveme.loopEnd;

// Start recording, wait one second, then start playing
saveme.record(1);
1::second => now;
1 => saveme.play;

while(true)
{
1::second => now;
}







/*
// Effects chain
adc => LiSa s => dac;
1::second => s.duration;
@@ -11,3 +41,4 @@ s.play(1);
while (true){
1::second => now;
}
*/

불러오는 중...
취소
저장