...Is it possible to route midi messages to and from pdvst?
first of all, big up jsarlo for his great work, definitely a welcome addition tthe flexibility of pd and really for a v0.0.1 it works quite well.
to get midi working, you can make the following changes: pdvst.cpp:218: "%s -outchannels %d -inchannels %d -midiindev 0,1", s_main.c:297: sys_open_midi(sys_nmidiin, sys_midiindevlist, s_main.c:298: sys_nmidiout, sys_midioutdevlist);
and recompile.. realize this is a hack, there is a 'proper' way to send midi to vst plugins within the host spec, which presumably could be added rather easily but this should do the trick for now...
carmen
to get midi working, you can make the following changes: pdvst.cpp:218: "%s -outchannels %d -inchannels %d -midiindev
0,1",
s_main.c:297: sys_open_midi(sys_nmidiin, sys_midiindevlist, s_main.c:298: sys_nmidiout, sys_midioutdevlist);
The reason MIDI is disabled is that there is no way for PdVst to know if the VST host app already has control of the MIDI device. There will eventually be support for VST instruments.
Joe jsarlo@ucsd.edu
Thanx for the reply Joe! So if i have understand well, now is jet possible to route midi CC to the PdVST via the host-midi-vst-capabilities......but is not possible to send midi notes for synth-style pd patches......i'm i right?
lalo
PS : how about all other midi messages?.....Program Changes, After Touch etc.? ----- Original Message ----- From: "Joseph A. Sarlo" jsarlo@ucsd.edu To: pd-list@iem.at Sent: Saturday, September 27, 2003 4:48 AM Subject: Re: [PD] pdvst MIDI
to get midi working, you can make the following changes: pdvst.cpp:218: "%s -outchannels %d -inchannels %d -midiindev
0,1",
s_main.c:297: sys_open_midi(sys_nmidiin, sys_midiindevlist, s_main.c:298: sys_nmidiout, sys_midioutdevlist);
The reason MIDI is disabled is that there is no way for PdVst to know if
the
VST host app already has control of the MIDI device. There will eventually be support for VST instruments.
Joe jsarlo@ucsd.edu
PD-list mailing list PD-list@iem.at http://iem.at/cgi-bin/mailman/listinfo/pd-list
Thanx for the reply Joe! So if i have understand well, now is jet possible to route midi CC to the PdVST via the host-midi-vst-capabilities......but is not possible to send midi notes for synth-style pd patches......i'm i right?
Right. PdVst is currently only for VST effects. VST instruments will hopefully come shortly.
Joe jsarlo@ucsd.edu