Replies: 1 comment
-
I like this idea. It's similar in spirit to #386 , providing functions in Alda for using the features of MIDI at a lower level. I think we could implement this as another function, e.g.:
Which would be equivalent to:
This wouldn't be flexible enough to express groups of parts (e.g. the equivalent of I'm not sure, off-hand, if the Java VM MIDI synth supports those alternative drum kits. Will have to try that out and see if it works. I see that the Wikipedia article has some instructions on what CC and PC messages to send in order to select another drum kit. It seems like you would still need to do this on channel 10 or 11 (the percussion channels), so it might make sense for this to be a function that you call after declaring a percussion instrument, like:
And/or perhaps:
|
Beta Was this translation helpful? Give feedback.
-
🔧 Feature request 🔧
Description
For now we have to select instruments by saying something like
midi-steel-drums:
ormidi-brass-section:
etc., which I think is cumbersome in some situations. There are already "program change" numbers in General MIDI, it would be nice if we can also sayprogram 1:
for piano,program 12:
for vibraphone, etc. (see here)Also, there are nine standard drum kits/sets in the General MIDI 2 specification (see here, and also Roland GS and Yamaha XG), and most MIDI equipments/general-purpose soundfonts support that. So instead of saying
midi-percussion:
, it would be nicer if we can saydrum-kit standard:
,drum-kit power:
anddrum-kit brush:
etc. to switch to different drum kits.Examples
To select piano:
program 1: o4 c8 d e f g2
To select the "Power" drum kit (which is program number 17):
drum-kit power: o2 c4 e c8 c e4
or
drum-kit 17: o2 c4 e c8 c e4
Beta Was this translation helpful? Give feedback.
All reactions