Last updated: 20210425
Turn off all Adobe applications, then..
Download and install:
https://www.fnordware.com/WebM/
That’s it!
Hacks, tips, tricks and best practices for developers
Last updated: 20210425
Turn off all Adobe applications, then..
Download and install:
https://www.fnordware.com/WebM/
That’s it!
quicktime 4444 with alpha
Last updated: 20210225
Instagram post videos: 864×1080 4:5
Reference:
https://blog.snappa.com/instagram-video-format/
Use uni.Glo Fi II
if (comp(“DECAY”).layer(“Controls”).effect(“Moss along Cracks”)(“Checkbox”) > 0) {100}else {0}
Reference:
To set ending keyframe value:
[code]
if (numKeys > 1){
newV2 = comp(“DECAY”).layer(“Grass Controls”).effect(“Wind Speed”)(“Angle”);
v1 = valueAtTime(key(1).time);
v2 = valueAtTime(key(2).time);
linear(value,v1,v2,v1,newV2);
}else{
value
}
[/code]
To set starting keyframe value:
[code]
if (numKeys > 1){
newV2 = comp(“DECAY”).layer(“Grass Controls”).effect(“Wind Speed”)(“Angle”);
v1 = valueAtTime(key(1).time);
v2 = valueAtTime(key(2).time);
linear(value,v2,v1,newV2,v1);
}else{
value
}
[/code]
Reference:
Reference:
Use time or frames to start i.e.:
frameToStart = 39;
if (timeToFrames() > frameToStart)
{ wiggle(2, 500);
} else {
value;
}
That starts at frame 39.
or
timeToStart = 1;
if (time > timeToStart)
{ wiggle(2, 500);
} else {
value;
}
that after 1st second.
Reference:
How To Start And Stop Wiggle In After Effects At Specific Time