hi everyone I hope your doing well, thanks for all your help so far.
is there any way to set the volume a sample to 0db? your help with this question would be most welcome, kind regards trey.
hi everyone I hope your doing well, thanks for all your help so far.
is there any way to set the volume a sample to 0db? your help with this question would be most welcome, kind regards trey.
I think that would just be setting the amplitude to 0, either at the start or as it plays.
# playing a sample without sound
sample :bd_tek, amp: 0
sleep 5
# Silencing a sample halfway through
# the sample must be stored in a variable if we want to control it after activation.
s = sample :bass_trance_c
sleep 1
control s, amp: 0
# Any parameter can be controlled like this, not just the amplitude.