Expression To Drop Every 10th Frame In After Effects

In this After Effects tutorial I show you how to add an expression to your footage that will drop every 10th frame. Here is the expression used;

f= timeToFrames();
p = Math.floor(f/1);
framesToTime(p*1.1);

http://www.vimeo.com/7413654

For more information on expressions in After Effects check out aenhancers.com and the tutorials by Harry Frank over at graymachine.com.

Related Posts:

Tags:

2 Responses to “Expression To Drop Every 10th Frame In After Effects”

  1. mars sanford Says:

    hey there!

    Since timetoFrames always returns an intger, the second line is redundant.

    f= timeToFrames();
    framesToTime(f*1.1);

    therefore works.

  2. Brad Chmielewski Says:

    Nice! I figured I had a little to much code there.

Leave a Reply