-
Random Jump Cuts based on time markers
Hello
I’m trying to edit this expression:segDur = .5;// duration of each “segment” of random time
minVal = inPoint;
maxVal = outPoint – segDur;seed = Math.floor(time/segDur);
segStart = seed*segDur;
seedRandom(seed,true);
startVal = random(minVal,maxVal);
endVal = startVal + segDur;
linear(time,segStart,segStart + segDur, startVal, endVal);To make the jump cuts start and end based on time markers, but with no luck 🙁
Anyone has suggestions?
Many thanks in advancesegDur = .5;// duration of each "segment" of random time
minVal = inPoint;
maxVal = outPoint - segDur;seed = Math.floor(time/segDur);
segStart = seed*segDur;
seedRandom(seed,true);
startVal = random(minVal,maxVal);
endVal = startVal + segDur;
linear(time,segStart,segStart + segDur, startVal, endVal);