I’ve been using the following expression to scale down a video clip from it’s in point
startScale = 100; // percent of Scale at start
endScale = 60; // percent of Scale at end
scaleUpTime = 3; // time to scale up from inPoint in seconds
s = ease(time,inPoint,inPoint+scaleUpTime,startScale,endScale);
[s,s]
However is it possible to adapt this so that I can the scale back up to 100% 3 seconds before the out point of the clip.
Thanks in advance,
Jon