-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'upstream/master'
Synced with upstream repo v0.6.2b :exit :q
- Loading branch information
Showing
23 changed files
with
16,447 additions
and
84 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
SLUG = VCV_Csound | ||
VERSION = 0.6.1 | ||
VERSION = 0.6.2b | ||
|
||
RACK_DIR ?= ../.. | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
;;Stereo Chorus, René Feb 2015 | ||
<CsoundSynthesizer> | ||
<CsOptions> | ||
-n -dm0 -+rtaudio=null -+rtmidi=null -b1024 -B4096 | ||
</CsOptions> | ||
<CsInstruments> | ||
sr = 44100 | ||
ksmps = 32 ;128 | ||
nchnls = 2 ;2 in + 2 out | ||
0dbfs = 1 | ||
turnon 1 ;start instr 1 | ||
instr 1 ;Stereo Chorus | ||
k_Delay_L chnget "Delay_L" ;Slider +0.5 / +20 | ||
k_Depth_L chnget "Depth_L" ;Slider 0 / +0.99 | ||
k_Rate_L chnget "Rate_L" ;Slider 0 / +1 | ||
k_Delay_R chnget "Delay_R" ;Slider +0.5 / +20 | ||
k_Depth_R chnget "Depth_R" ;Slider 0 / +0.99 | ||
k_Rate_R chnget "Rate_R" ;Slider 0 / +1 | ||
k_Cross chnget "Cross" ;Slider 0 / +1 | ||
k_Wet chnget "Wet" ;Slider 0 / +1 | ||
imaxdel = 200 ;maximum delay 200 ms | ||
ainL, ainR ins | ||
;Left channel | ||
aTri_L lfo k_Delay_L * k_Depth_L, k_Rate_L, 1 ;Triangle | ||
aDelay_L vdelay ainL + k_Cross * ainR , aTri_L + k_Delay_L, imaxdel | ||
aLeft ntrpol ainL , aDelay_L, k_Wet | ||
;Right channel | ||
aTri_R lfo k_Delay_R * k_Depth_R, k_Rate_R, 1 ;Triangle | ||
aDelay_R vdelay ainR + k_Cross * ainL , aTri_R + k_Delay_R, imaxdel | ||
aRight ntrpol ainR, aDelay_R, k_Wet | ||
outs aLeft, aRight | ||
endin | ||
</CsInstruments> | ||
<CsScore> | ||
</CsScore> | ||
</CsoundSynthesizer> |
Oops, something went wrong.