-
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.
- Loading branch information
Djack13
committed
Sep 11, 2018
1 parent
d20213e
commit 9442f46
Showing
22 changed files
with
2,207 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
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> |
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,65 @@ | ||
;;Stereo Delay, 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 | ||
opcode Filter_1PLP, a, ak | ||
;State variable 1 pole LP filter: Reaktor module 1-Pole Filter | ||
;Inputs: | ||
; aIn Audio in | ||
; kW Cutoff (kW = cpsmidinn(kP) * 2 * $M_PI / sr; max(kW)= 1) | ||
setksmps 1 | ||
alpd init 0 | ||
aIn, kW xin | ||
alp = alpd + kW * (aIn - alpd) | ||
alpd = alp | ||
xout alp | ||
endop | ||
instr 1 ;Stereo Delay | ||
k_Time_L chnget "Time_L" ;Slider 0 / +600 | ||
k_Time_R chnget "Time_R" ;Slider 0 / +600 | ||
k_Fine_L chnget "Fine_L" ;Slider 0 / +5 | ||
k_Fine_R chnget "Fine_R" ;Slider 0 / +5 | ||
k_Cutoff chnget "Cutoff" ;Slider 0 / +1 | ||
k_FB chnget "Feedback" ;Slider 0 / +1 | ||
k_Cross chnget "Cross" ;Slider 0 / +1 | ||
k_Wet chnget "Wet" ;Slider 0 / +1 | ||
a_Filter_L init 0 | ||
a_Filter_R init 0 | ||
imaxdel = 1000 ;maximum delay 1000 ms | ||
ainL, ainR ins | ||
;Left channel | ||
a_L vdelay ainL + k_Cross * ainR + k_FB * a_Filter_L, k_Time_L + k_Fine_L, imaxdel | ||
a_Filter_L Filter_1PLP a_L, k_Cutoff | ||
aLeft ntrpol ainL , a_Filter_L, k_Wet | ||
;Right channel | ||
a_R vdelay ainR + k_Cross * ainL + k_FB * a_Filter_R, k_Time_R + k_Fine_R, imaxdel | ||
a_Filter_R Filter_1PLP a_R, k_Cutoff | ||
aRight ntrpol ainR, a_Filter_R, k_Wet | ||
outs aLeft, aRight | ||
endin | ||
</CsInstruments> | ||
<CsScore> | ||
</CsScore> | ||
</CsoundSynthesizer> |
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.