Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/master'
Browse files Browse the repository at this point in the history
Synced with upstream repo v0.6.2b

:exit
:q
  • Loading branch information
U-ACTIVED\danielez committed Sep 12, 2018
2 parents 15cf455 + 9442f46 commit a255a74
Show file tree
Hide file tree
Showing 23 changed files with 16,447 additions and 84 deletions.
2 changes: 1 addition & 1 deletion Makefile
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 ?= ../..

Expand Down
80 changes: 40 additions & 40 deletions Patches/Vocoder2.vcv
Original file line number Diff line number Diff line change
@@ -1,14 +1,10 @@
{
"version": "0.6.1",
"version": "0.6.2b",
"modules": [
{
"plugin": "VCV_Csound",
"version": "0.6.1",
"version": "0.6.2b",
"model": "Looper",
"pos": [
14,
0
],
"params": [
{
"paramId": 0,
Expand All @@ -29,20 +25,20 @@
],
"data": {
"lastPath": "/home/moi/Programmes/Rack/plugins/VCV_Csound/samples/Kool_Skool.wav"
}
},
"pos": [
14,
0
]
},
{
"plugin": "VCV_Csound",
"version": "0.6.1",
"version": "0.6.2b",
"model": "MidiVCO10",
"pos": [
2,
0
],
"params": [
{
"paramId": 0,
"value": 8.09549999
"value": 8.08650303
},
{
"paramId": 1,
Expand Down Expand Up @@ -72,24 +68,24 @@
"paramId": 7,
"value": 2.0
}
],
"pos": [
2,
0
]
},
{
"plugin": "VCV_Csound",
"version": "0.6.1",
"version": "0.6.2b",
"model": "Vocoder",
"pos": [
26,
0
],
"params": [
{
"paramId": 0,
"value": 0.772999942
"value": 0.803000093
},
{
"paramId": 1,
"value": 0.522000074
"value": 0.648000002
},
{
"paramId": 2,
Expand All @@ -115,16 +111,16 @@
"paramId": 6,
"value": 0.0
}
],
"pos": [
30,
0
]
},
{
"plugin": "Fundamental",
"version": "0.6.0",
"model": "Scope",
"pos": [
38,
0
],
"params": [
{
"paramId": 0,
Expand Down Expand Up @@ -162,16 +158,16 @@
"data": {
"lissajous": 0,
"external": 0
}
},
"pos": [
46,
0
]
},
{
"plugin": "Core",
"version": "0.6.1",
"version": "0.6.2b",
"model": "AudioInterface",
"pos": [
51,
0
],
"params": [],
"data": {
"audio": {
Expand All @@ -182,7 +178,11 @@
"sampleRate": 44100,
"blockSize": 256
}
}
},
"pos": [
68,
0
]
}
],
"wires": [
Expand All @@ -207,19 +207,12 @@
"inputModuleId": 2,
"inputId": 1
},
{
"color": "#0c8e15",
"outputModuleId": 0,
"outputId": 0,
"inputModuleId": 3,
"inputId": 0
},
{
"color": "#0986ad",
"outputModuleId": 2,
"outputId": 0,
"inputModuleId": 3,
"inputId": 1
"inputId": 0
},
{
"color": "#c91847",
Expand All @@ -229,7 +222,14 @@
"inputId": 1
},
{
"color": "#0c8e15",
"color": "#c9b70e",
"outputModuleId": 1,
"outputId": 1,
"inputModuleId": 3,
"inputId": 1
},
{
"color": "#0986ad",
"outputModuleId": 2,
"outputId": 0,
"inputModuleId": 4,
Expand Down
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,3 +129,14 @@ Module read wav, aiff, ogg and flac sound files.

Csound script: Yfx.csd

* **Stereo Delay module:**

![](images/Delay.png)

Csound script: Delay.csd

* **Stereo Chorus module:**

![](images/Chorus.png)

Csound script: Chorus.csd
46 changes: 46 additions & 0 deletions csd/Chorus.csd
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>
Loading

0 comments on commit a255a74

Please sign in to comment.