Welcome to Decent Sampler Q&A, where you can ask questions and receive answers from other members of the community.
0 votes

How can I implement piano sustain pedal noise samples?

It tried the way that is kinda shown on the documentation, with onLoCC and onHiCC, but nothing happens.

<group name="Pedal Noise" pitchKeyTrack="0">
  <sample path="Samples/Pedal/Pedal In UP - 001.wav" rootNote="001"
   loNote="001" hiNote="001" onLoCC64="000" onLoCC64="063"/>
  <sample path="Samples/Pedal/Pedal In DW - 000.wav" rootNote="000"
   loNote="000" hiNote="000" onHiCC64="064" onHiCC64="127"/>
</group>

What is the right way to do it?

in Sample Creation by mauriloureiro (810 points)
edited by mauriloureiro

1 Answer

0 votes

So I think you might have a typo above: you should have one onLoCC64 and one onHiCC64 per <sample> element.You also don't need rootNoteloNote, or hiNote for these samples. A fixed version would look like this:

<group name="Pedal Noise" pitchKeyTrack="0">
  <sample path="Samples/Pedal/Pedal In UP - 001.wav" onLoCC64="0" onHiCC64="63"/>
  <sample path="Samples/Pedal/Pedal In DW - 000.wav" onLoCC64="64" onHiCC64="127"/>
</group>

by decentsamples (5.6k points)
edited by decentsamples
...