Hi everyone hope you’re all doing well and staying safe, I’m getting back into Sonic Pi after a long time away.
I’m running the latest version of the sonic pie pre-release with the latest version of Reaper on macOS Catalina.
In this case I am using Sonic Pi to run a generative sequence in to native instruments complete control in reaper, I’m using the below code:
live_loop :genmidi1 do
set :seed, 0
use_bpm 140
set :seed, (get(:seed) + 971) if tick % 16 == 0
use_random_seed get(:seed)
8.times do
midi scale(:c5, :minor_pentatonic).choose, sustain: 0.7,channel: 1
sleep 1
end
end
With the sustain value 0.7 and above, I find that when I stop running sonic-pi I am experiencing stuck midi notes with reaper, pressing stop in reaper does not stop the MIDI notes from sticking. How can I resolve this problem and what’s causing it?
Your help with this problem would be most welcome respect and blessings Trey.