Setting the path
option disables the pre-built binary and attempts to run the sources with provided python executable. If the binary is not found to begin with, OSC attempts to find python by itself and path
may be used to specify where it is.
1 Like
Hah, Jeff Laity checking in to see how to send my stupid NRPNs from OSC buttons. I like NRPN because I know nothing else uses them. I don't want to say, "why is my trumpet suddenly a growl articulation" because I happened to use one of the CCs that are already in use by some VI. I used almost all 127 NRPNs in my Lemur tablet, but maybe I'll switch to a CC instead since I don't see NRPN as a possibility. Also I don't know if the new Cubase Remote editor allows "CC X value Y" as a control source for something, I'm starting from scratch in OSC and the new editor.
You can send NRPN in o-s-c with scripting:
send('/control', channel, 98, nrpn_number_lsb)
send('/control', channel, 99, nrpn_number_msb)
send('/control', channel, 38, nrpn_value_lsb)
send('/control', channel, 6, nrpn_value_msb)