-
Notifications
You must be signed in to change notification settings - Fork 18
2012f Day 3
n1ckfg edited this page Sep 9, 2014
·
3 revisions
Video lecture part one: http://youtu.be/LLGxJ4TaS4Q
Video lecture part two: http://youtu.be/dl4u7HziWuU
Time scrubbing example project
Audio to position Expressions example:
var x = transform.position[0];
var y = transform.position[1];
var d = thisComp.layer("Audio Amplitude").effect("Both Channels")("Slider");
[x, y-(d * 50)];
...adding linear scale:
var x = transform.position[0];
var y = transform.position[1];
var d = thisComp.layer("Audio Amplitude").effect("Both Channels")("Slider");
d = linear(d, 2, 13, 0, 200);
[x, y-d]
...using audio to drive Time Remap
var d = thisComp.layer("Audio Amplitude").effect("Both Channels")("Slider");
d = linear(d, 2, 13, 0, 100);
d;
Audio files: AIFF or WAV uncompressed --only use MP3 for distribution.
Keyboard shortcuts: http://help.adobe.com/en_US/aftereffects/cs/using/WSCEBCDB03-0A9C-459e-873E-F5A10520F24A.html
Scripting masks: http://omino.com/pixelblog/2008/12/25/ae-mask-vertices-from-extendscript/