Getting that awesome stop motion look in Adobe After Effects
21 November 2012
279 views
No Comment
To get a stop motion effect in After Effects. You can time remap a comp with the following Expression for the Time Remap:
n=2; // Play every 2 frames
m=2; // Play each frame twice
f=timeToFrames(timeRemap);
p=Math.floor(f/2);
framesToTime(p*n);
This can be used to avoid for example your Puppet Tool animation to be too smooth looking!
You can also tweak the expression by changing n and m values, to for example play every 3 frames and play each frame 3 times.














Leave your response!