| Hi,
I'm trying to use ZynAddSubFX VST in csound, I get sound, but cannot
change presets. Progset does not work and I also tried to load an fxb
with vstbankload, but get "Erroneous data". Has anyone any idea how to
do this?
Regards,
Radu
This is the csd I'm working with:
--output=Test_VST.wav
--format=wav
sr=44100
ksmps=1
nchnls=2
givst vstinit "vst\\ZynAddSubFX\\ZynAddSubFX.dll", 1
;vstbankload givst, "vst\\ZynAddSubFX\\test01.fxp"
vstprogset givst, 12
instr 1
imidichannel init 0
inote = 12*int(p4-3)+100*frac(p4)
vstnote givst, imidichannel, inote, p5, p3
endin
; Send audio from vst to the output.
instr 3
ablankinput init 0
aleft, aright vstaudio givst, ablankinput, ablankinput
outs aleft, aright
endin
t 0 90
; Turn on the instrument that receives audio from the vst indefinitely.
i3 0 -1
; Send parameter changes to vst before sending any notes.
; NOTE: All parameters must be between 0.0 and 1.0.
i1 00.000 0.500 06.09 100
i1 01.000 0.500 07.09 100
i1 02.000 0.500 08.09 100
i1 03.000 0.500 09.09 100
; End the performance, leaving some time
; for the vst to finish sending out its audio,
; or for the user to play with the vst virtual keyboard.
e 4
Send bugs reports to the Sourceforge bug tracker
https://sourceforge.net/tracker/?group_id=81968&atid=564599
Discussions of bugs and features can be posted here
To unsubscribe, send email sympa@lists.bath.ac.uk with body "unsubscribe csound"
|