Stabilization Reducer

What type of scripts do you need?

Moderator: byronnash

Post Reply
scribling
Posts: 143
Joined: May 1st, 2005, 1:52 pm

I'm trying to create an expression that nullifies a stabilization by use of a slider. I'd like the footage to start normal then slowly blend in the stabilization. I tried creating a null and making that the parent with an expression that is driven from the stabilized layer multiplied by a negative slider value. I just can't get it right. Anyone know of a way?

I could also use this as an animation mixer.

Thanks.
scribling
Posts: 143
Joined: May 1st, 2005, 1:52 pm

Adding a slider control to the stabilized footage and then this text to the anchor point as an expression works like a champ.

The slider animates the amout of stabilization from 0 to 100%.

Nab rocks!

Code: Select all

slider = effect("Slider Control")("Slider");
start = [thisComp.width/2,thisComp.height/2];
end = value;

s = clamp(slider/100,0,1);  // between 0 and 1
(1-s)*start + s*end;
Post Reply