diff options
| author | mick grierson <mickgrierson@gmail.com> | 2016-03-04 14:14:56 +0000 |
|---|---|---|
| committer | mick grierson <mickgrierson@gmail.com> | 2016-03-04 14:14:56 +0000 |
| commit | ff891983f82464506b2f6545fd1d26c413638c64 (patch) | |
| tree | 91900ad09aa69a7f6efcb79285727bc865da4403 /main.cpp | |
| parent | 5dad0e449fb7f4ea35c0da1ee1c61efef2c83bc5 (diff) | |
fixing maxiGrains
Diffstat (limited to 'main.cpp')
| -rwxr-xr-x | main.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -5,12 +5,12 @@ maxiDyn compressor; //this is a compressor double out; void setup() {//some inits - beats.load("/Users/mzed/GIT/Maximilian/beat2.wav");//load in your samples. Provide the full path to a wav file. + beats.load("/Users/michaelgrierson/Documents/workspace/Maximilian/beat2.wav");//load in your samples. Provide the full path to a wav file. printf("Summary:\n%s", beats.getSummary());//get info on samples if you like. - compressor.setAttack(100); - compressor.setRelease(300); - compressor.setThreshold(0.25); + compressor.setAttack(200); + compressor.setRelease(500); + compressor.setThreshold(0.2); compressor.setRatio(5); //you can set these any time you like. |
