looking for this plugin/munger preset
-
- KVRian
- 886 posts since 2 Jun, 2005 from Hawaii
i'm looking for a midi plugin or possibly preset in midi munger that does this:
sustains whatever note was last played indefinitely until another note on is received, at which time it triggers that note and sends a note off to the previous note simultaneously. i guess you could call it a "monophonic infinite sustainer." there are workarounds to this using the synth or sampler i'm using, but it'd just be easier to have a midi plugin that did it for me. does this plugin exist? could it be quickly built by some nice soul with some free time?
sustains whatever note was last played indefinitely until another note on is received, at which time it triggers that note and sends a note off to the previous note simultaneously. i guess you could call it a "monophonic infinite sustainer." there are workarounds to this using the synth or sampler i'm using, but it'd just be easier to have a midi plugin that did it for me. does this plugin exist? could it be quickly built by some nice soul with some free time?
-
- KVRian
- 930 posts since 21 Mar, 2006
+1 (just registering interest)

-
- KVRian
- 976 posts since 29 Aug, 2001 from Waynesboro, PA
This does the trick...

Code: Select all
*,NoteOn,*,*,1,127,Y,*,Ctrl,123,123,127,127 --- this will send an All Notes Off message and pass the note event on to the next rule
*,NoteOn,*,*,1,127,N,*,NoteOn,*,*,1,127 --- this plays the current note on event
*,NoteOn,*,*,0,0,N,*,Discard,*,*,0,0 --- this discards the current note off event
-
- KVRian
- Topic Starter
- 886 posts since 2 Jun, 2005 from Hawaii
thanks, piranha, but i asked for more than i can handle. apparently i don't even know how to use midi munger correctly. can you post a screenshot or something of those rules in nicfit's 5 rule munger plugin? ( http://asseca.com/nicfit/midimungui5.html )
i guess i'm not sure of the structure of his plugin. sorry to be so retarded. thanks.
i guess i'm not sure of the structure of his plugin. sorry to be so retarded. thanks.
-
- KVRian
- 976 posts since 29 Aug, 2001 from Waynesboro, PA
Jeff,
Basically, you need to enter each of the three rules on separate lines.
Enter this on the first line: *,NoteOn,*,*,1,127,Y,*,Ctrl,123,123,127,127
Enter this on the second line: *,NoteOn,*,*,1,127,N,*,NoteOn,*,*,1,127
Enter this on the third line: *,NoteOn,*,*,0,0,N,*,Discard,*,*,0,0
When you get a chance, have a look at David Haupt's MIDI Munger guide...
http://www.dehaupt.com/SynthEdit/DH_MIDIMungerHowTo.htm
It explains what each parameter does as well as the possible values you can enter.
Basically, you need to enter each of the three rules on separate lines.
Enter this on the first line: *,NoteOn,*,*,1,127,Y,*,Ctrl,123,123,127,127
Enter this on the second line: *,NoteOn,*,*,1,127,N,*,NoteOn,*,*,1,127
Enter this on the third line: *,NoteOn,*,*,0,0,N,*,Discard,*,*,0,0
When you get a chance, have a look at David Haupt's MIDI Munger guide...
http://www.dehaupt.com/SynthEdit/DH_MIDIMungerHowTo.htm
It explains what each parameter does as well as the possible values you can enter.
-
- KVRian
- 1256 posts since 6 Sep, 2003 from Seattle/Oklahoma
just a quick note that these rules(third rule) assumes the users MIDI controller is sending NoteOn messages with a velocity value of 0 instead of proper NoteOff messages... just mentioning it incase some curious observers try it out and it doesn't work for them 
-
- KVRAF
- 5350 posts since 8 Aug, 2003 from Berlin Germany
-
- KVRAF
- 5017 posts since 13 Dec, 2005 from The Void

Jens, "B.t.w.: it appears I was wrong"
-
- KVRAF
- 6078 posts since 27 Jul, 2001 from Tarpon Springs, Florida, USA
NicFit is back? Is it you or a look a like?
Will the real NicFit please stand up!
Ooops, judging from the answer it is the real NicFit!
Will the real NicFit please stand up!
Ooops, judging from the answer it is the real NicFit!
-
- KVRian
- 976 posts since 29 Aug, 2001 from Waynesboro, PA
What he saidNicFit wrote:just a quick note that these rules(third rule) assumes the users MIDI controller is sending NoteOn messages with a velocity value of 0 instead of proper NoteOff messages... just mentioning it incase some curious observers try it out and it doesn't work for them
-
- KVRAF
- 4143 posts since 7 Sep, 2001 from Melbourne, Australia
Really nice to see a post from you NicFit - you mad scientist you.
Regards
Caleb
Regards
Caleb
Happiness is the hidden behind the obvious.
-
- KVRian
- Topic Starter
- 886 posts since 2 Jun, 2005 from Hawaii

