“Let them sing” or how to solve the crescendo/decrescendo “problem” manually!
https://youtu.be/j1YyBpfw2wU?si=qJ7fnmOIpNsJ1OSk
(how do you make the youtube window appear in a post? )
I like this, nice happy vibe with an unexpected choir sound and it sounds good.
1 Like
Yes, this is cool.
You could also write a loop to manage the volume:
myvolume = 2.0
live_loop :mastervolume do
set_volume! myvolume
myvolume -= 0.2
if myvolume <= 0
stop
else
sleep 16
end
end
3 Likes
Excellent! thanks Harry @HarryLeBlanc