Synapse Audio Minimoog emulation "The Legend" for VST/AU and RE released!
- KVRAF
- 19808 posts since 16 Sep, 2001 from Las Vegas,USA
The new Mod Options:
I haven't tried Sustain Pedal in the latest of The Legend. Next time I boot the studio I'll give it a go.....
I haven't tried Sustain Pedal in the latest of The Legend. Next time I boot the studio I'll give it a go.....
You do not have the required permissions to view the files attached to this post.
None are so hopelessly enslaved as those who falsely believe they are free. Johann Wolfgang von Goethe
- KVRAF
- 24412 posts since 7 Jan, 2009 from Croatia
It doesn't work even in v1.2.
- KVRAF
- 19808 posts since 16 Sep, 2001 from Las Vegas,USA
I just tried it and you're right. Even Midi Learn the Sustain Pedal doesn't work. I'll pass it along.
EDIT: I just tried in FL Studio and Sustain Pedal does work. I had tried in Reaper before. Let me work on it some more......
Ok so I tried in Sonar X3, Bitwig 8 Track and Orion and the sustain pedal does not work in them either. Odd that it does work in FL Studio since it struggles with midi controls. I don't believe I have a Generic Controller set up for Sustain in FL Studio. MW and AT yes but not Sustain if I remember correctly. Anyway I've passed it along to Synapse.
EDIT: I just tried in FL Studio and Sustain Pedal does work. I had tried in Reaper before. Let me work on it some more......
Ok so I tried in Sonar X3, Bitwig 8 Track and Orion and the sustain pedal does not work in them either. Odd that it does work in FL Studio since it struggles with midi controls. I don't believe I have a Generic Controller set up for Sustain in FL Studio. MW and AT yes but not Sustain if I remember correctly. Anyway I've passed it along to Synapse.
None are so hopelessly enslaved as those who falsely believe they are free. Johann Wolfgang von Goethe
-
- KVRAF
- 3499 posts since 9 Oct, 2004 from Poland
Thanks for the replies about the CC64. 
It is important for me, because sometimes i will just want to hit a key once for a low evolving bass drone while tweaking the knobs.
There are workarounds, but any synth that does respond to MIDI should also support the sustain pedal.
It is important for me, because sometimes i will just want to hit a key once for a low evolving bass drone while tweaking the knobs.
There are workarounds, but any synth that does respond to MIDI should also support the sustain pedal.
[====[\\\\\\\\]>------,
Ay caramba !
Ay caramba !
- KVRAF
- 24412 posts since 7 Jan, 2009 from Croatia
FL Studio doesn't really use CC64 for sustain pedal, instead it artificially increases the note lengths.Teksonik wrote:EDIT: I just tried in FL Studio and Sustain Pedal does work. I had tried in Reaper before. Let me work on it some more......
Ok so I tried in Sonar X3, Bitwig 8 Track and Orion and the sustain pedal does not work in them either. Odd that it does work in FL Studio since it struggles with midi controls. I don't believe I have a Generic Controller set up for Sustain in FL Studio. MW and AT yes but not Sustain if I remember correctly. Anyway I've passed it along to Synapse.
- KVRAF
- 19808 posts since 16 Sep, 2001 from Las Vegas,USA
That would explain it then. Like I said FL Studio struggles with Midi controls. It's the only DAW I've ever used where I had to manually set up Mod Wheel and Aftertouch.EvilDragon wrote:FL Studio doesn't really use CC64 for sustain pedal, instead it artificially increases the note lengths.Teksonik wrote:EDIT: I just tried in FL Studio and Sustain Pedal does work. I had tried in Reaper before. Let me work on it some more......
Ok so I tried in Sonar X3, Bitwig 8 Track and Orion and the sustain pedal does not work in them either. Odd that it does work in FL Studio since it struggles with midi controls. I don't believe I have a Generic Controller set up for Sustain in FL Studio. MW and AT yes but not Sustain if I remember correctly. Anyway I've passed it along to Synapse.
None are so hopelessly enslaved as those who falsely believe they are free. Johann Wolfgang von Goethe
- KVRAF
- 24412 posts since 7 Jan, 2009 from Croatia
Yep FL can be very weird with very standard stuff. 
-
- KVRAF
- 2770 posts since 3 Dec, 2006
There is no sustain pedal assigned at all in any Legend versions.. it is simply not there.
When I do press my sustain Pedal. Legend midi in indicator does light up but nothing happens
When I do press my sustain Pedal. Legend midi in indicator does light up but nothing happens
- KVRian
- 687 posts since 29 Nov, 2002 from Finland
In case someone uses Logic and wants to use a sustain pedal with The Legend (or any other instrument that doesn't support it for some reason), just copy&paste this code into the Scripter MIDI FX. It will convert standard hold/sustain pedal messages to delayed note offs. (It's pretty quick'n'dirty, and theoretically you could "overload" it if you hold the pedal and play, say, a few million notes, but it should get the job done in most real life situations. Probably there's a more sophisticated script available, but couldn't find one with a quick search.)
Code: Select all
var hold = false;
var noteOffs = [];
function HandleMIDI(event) {
if ( event instanceof ControlChange && event.number == 64 ) {
if ( event.value == 127 ) {
hold = true;
} else {
hold = false;
sendNoteOffs();
}
} else {
if ( event instanceof NoteOff && hold ) {
noteOffs.push( event );
} else {
event.send();
}
}
}
function sendNoteOffs() {
for ( var no of noteOffs ) {
no.send();
}
noteOffs = [];
}
- KVRAF
- 24412 posts since 7 Jan, 2009 from Croatia
The original hardware synth also doesn't have 4 voice polyphony, ADSR envelopes, delay and reverb effects, and additional modulation matrix and MPE compatibility. Lame argumentChris-S wrote:Like in the original hardware synth.surreal wrote: it is simply not there.
- KVRAF
- 3228 posts since 10 Nov, 2013 from Germany
Thanks, was already searching for a Reaper JS script, but couldn't find one.Captain wrote:In case someone uses Logic and wants to use a sustain pedal with The Legend (or any other instrument that doesn't support it for some reason), just copy&paste this code into the Scripter MIDI FX.
PizMIDI has a sostenuto plugin which does a similar thing, but no sustain plugin.
- KVRian
- 687 posts since 29 Nov, 2002 from Finland
I haven't used Reaper, but assuming its JS MIDI handling works similarly to Logic, the script should/could work with minor modifications.Chris-S wrote: Thanks, was already searching for a Reaper JS script, but couldn't find one.
PizMIDI has a sostenuto plugin which does a similar thing, but no sustain plugin.
