pedal sutain help ...
Started by ryo




3 posts in this topic
ryo

 
07-02-21, 22:37 -
#1
hello my friend ...

i'tried using %mode=once to add sustain tone and its not bad Big Grin

but I'm having a hard time to control the sound and touch respon maybe

and how to edit midi cc to assign sustain pedal ...

thank you ... for the answer Smile
hansehv

168 posts 17 threads Joined: Dec 2020
07-02-21, 23:58 -
#2
Hi Ryo,
What is it you want to achieve?
Mode=once and release exclude each other, but perhaps you're addressing multiple things in above.
This post was last modified: 08-02-21, 04:52 by hansehv.
ryo

 
19-02-21, 19:59 -
#3
(07-02-21, 23:58)hansehv Wrote: Hi Ryo,
What is it you want to achieve?
Mode=once and release exclude each other, but perhaps you're addressing multiple things in above.

hi hans
my achieve its simple, 
how make my pedal sustain work (piano sound of course) ,
I have tried various ways but no succes
and iam very confused search your web from morning to morning again....
i.m sorry my bad english ... Sad
hansehv

168 posts 17 threads Joined: Dec 2020
21-02-21, 00:21 -
#4
Hi Ryo,
If you have a standard pedal attached to your keyboard, it works out-of-the-box. It may be reversed, but you should notice effects.
So no fiddling with parameters required...

If it does work, it is either non-standard or not functioning.
No crystal bowl here, so please give some more info.
If you can't find that from the docs, some debugging info can help.
Go to the commandline and execute "python midimon.py".
You can play a note to check whether you get output at all (it should give info on the note-on and note-off you just played).
When you push the sustain pedal, you should info about that as well. Here is my output doing above:
Code:
Open "IMPACT LX25 28:1" as MIDI IN 6
Open "SMFplayer 128:0" as MIDI IN 7

"IMPACT LX25 28:0" -> Channel 1, message 9
==> Note on 62=D4, velocity=42 (velocity=0 means note-off)

"IMPACT LX25 28:0" -> Channel 1, message 8
==> Note off 62=D4, velocity=0

"IMPACT LX25 28:0" -> Channel 1, message 11
==> ControlChange 64 (Sustain/damper pedal), with value 127

"IMPACT LX25 28:0" -> Channel 1, message 11
==> ControlChange 64 (Sustain/damper pedal), with value 0
What's important now: is there any output when using the pedal and if so: is the number 64 and what are the values (here 127 an 0).
This post was last modified: 21-02-21, 00:23 by hansehv.