First time here? Check out the FAQ!
x

Adding jitter to BPM in the Chopper

0 votes
225 views
Is there a simple way to add Jitter to the BPM and Duty Cycle in the Chopper?

Or should I add SoundToGlobalControls to them?

Thanks!

Anne
asked Jan 15, 2019 in Using Kyma by anne-la-berge (Adept) (2,170 points)

1 Answer

+1 vote
You could use a TransformEventValues to replace every instance of !BPM with something like this:

{!BPM * (1 + (!Jitter * 1 s random))}

and similarly replace !DutyCycle with

{!DutyCycle * (1 + (!Jitter * 1 s random))}

The TransformEventValues would go to the right of the Chopper and transform all Sounds to its left in the signal flow.
answered Jan 15, 2019 by ssc (Savant) (127,080 points)
Very nice! Thanks.
...