Search found 34 matches

by MusikMan74
26 Jun 2019 10:28
Forum: General Discussion
Topic: Is there a keyboard shortcut to toggle the metronome on/off?
Replies: 7
Views: 11849

Re: Is there a keyboard shortcut to toggle the metronome on/off?

kjetil wrote: 25 Jun 2019 21:45 Good idea. I've added Shift + Ctrl + M keybinding now to switch metronome on/off.
Thanks!
by MusikMan74
21 Jun 2019 13:02
Forum: General Discussion
Topic: Is there a keyboard shortcut to toggle the metronome on/off?
Replies: 7
Views: 11849

Re: Is there a keyboard shortcut to toggle the metronome on/off?

Thanks for the syntax heads-up; now working as expected.

Maybe you'll consider adding this shortcut as part of the default keybindings in a future release; I bet it would be useful to other users as well.
by MusikMan74
21 Jun 2019 11:23
Forum: General Discussion
Topic: Is there a keyboard shortcut to toggle the metronome on/off?
Replies: 7
Views: 11849

Re: Is there a keyboard shortcut to toggle the metronome on/off?

I've added the following line to my 'keybindings.conf' file...I am running v5.9.67

Code: Select all

CTRL_L SHIFT_L M: ra.evalScheme "(ra.enable-metronome (not (ra.metronome-enabled)))"
but I get the following error:

metronome.png
metronome.png (88.78 KiB) Viewed 11793 times

Can you please explain what I'm doing wrong?

Thanks.
by MusikMan74
13 Jun 2019 13:26
Forum: General Discussion
Topic: Is there any way to distinguish between VST and VSTi plugins?
Replies: 8
Views: 13691

Re: Is there any way to distinguish between VST and VSTi plugins?

Thanks for weighing in- an 'InstrumentIsPlayingNotes' API addition sounds like the right approach...
by MusikMan74
13 Jun 2019 12:01
Forum: General Discussion
Topic: Is there any way to distinguish between VST and VSTi plugins?
Replies: 8
Views: 13691

Re: Is there any way to distinguish between VST and VSTi plugins?

Thanks for the detailed responses. As a followup to getSoundPluginRegistry, you can find category of an instrument by iterating the hash tables returned by getSoundPluginRegistry and use getInstrumentTypeName and getInstrumentPluginName to find correct entry. I am successfully parsing the getSoundPl...
by MusikMan74
12 Jun 2019 17:13
Forum: General Discussion
Topic: Is there any way to distinguish between VST and VSTi plugins?
Replies: 8
Views: 13691

Is there any way to distinguish between VST and VSTi plugins?

The 'getInstrumentTypeName' API function returns "VST" for both my effect (reverb) plugin ("Oril River 1") and my instrument plugin ("DPiano-E 1"): 2plugins.png I am ultimately trying to get a list of midi-playable plugins open in the program: 1. Use getNumAudioInstrume...
by MusikMan74
12 Jun 2019 13:10
Forum: General Discussion
Topic: Any way to assign an instrument to a track via the API?
Replies: 5
Views: 9343

Re: Any way to assign an instrument to a track via the API?

Thanks for the useful info; I have a follow-up question: Is there currently a way to get a LIST of all available instrument IDs and their corresponding names, i.e. id=27, DPiano-A 1 id=28, EPiano-A 1 etc. Trying to familiarize myself with the API functions list in https://github.com/kmatheussen/radi...
by MusikMan74
12 Jun 2019 10:30
Forum: General Discussion
Topic: Any way to assign an instrument to a track via the API?
Replies: 5
Views: 9343

Any way to assign an instrument to a track via the API?

Via its Mixer object name?

i.e.
ra:select-track 0
then
ra:set-block-track-instrument 'DPiano-E 1'
setTrackInstrument.png
setTrackInstrument.png (108.27 KiB) Viewed 9343 times
by MusikMan74
07 Jun 2019 16:53
Forum: General Discussion
Topic: Where can I find a scripting example?
Replies: 6
Views: 10173

Re: Where can I find a scripting example?

WOW. Very cool powerful remote functionality baked-in! FYI, sInce I am on Windows: 1. I needed CURL- Windows binaries can be downloaded from: https://curl.haxx.se/windows/ 2. The command-line example supplied needed a syntax modification to work from the Windows cmd prompt- the radium function call ...