#Shift all samples in a sound "up" by 32767
def upShift (sound):
for sample in getSamples(sound):
value = getSampleValue(sample)
setSampleValue(sample, value + 32767)
def upShift (sound):
for sample in getSamples(sound):
value = getSampleValue(sample)
setSampleValue(sample, value + 32767)
No comments:
Post a Comment