We just did it for fun
Now you can use all effects and presets from Adobe After Effects directly in Premiere Pro! Animation by keyframe is supported, and even animation using expressions! Free for all Videolancer subscribers on YouTube.
Features
Expressions for Advanced Premiere Pro package
Below we collect the most useful expressions for our free Advanced Premiere Pro package. With these expressions, you can animate effect properties without any keyframes.
Wiggle
For any dimensions:
frequency = 6;
amplitude = 600;
wiggle(frequency, amplitude)
For one dimension only:
frequency = 6;
amplitude = 600;
wig = wiggle(frequency, amplitude);
[wig[0], value[1]]
Pendulum
For properties with two dimensions:
amplitude = 600;
frequency = 3;
x = amplitude * Math.sin(frequency * time);
y = value[0]; // Preserve the original Y position
value + [x, y]
For properties with one dimension:
amplitude = 600;
frequency = 3;
value + amplitude * Math.sin(frequency * time)
Circle
For properties with two dimensions:
radius = 300;
speed = 4;
angle = speed * time;
x = Math.cos(angle) * radius;
y = Math.sin(angle) * radius;
value + [x, y]
Elastic
For properties with two dimensions:
frequency = 3;
amplitude = 600;
decay = 0.75;
elastic = amplitude * Math.sin(time * frequency) / Math.exp(decay * time);
value + [0, elastic]
For properties with one dimension:
frequency = 3;
amplitude = 600;
decay = 0.75;
elastic = amplitude * Math.sin(time * frequency) / Math.exp(decay * time);
value + elastic
Spiral
For properties with two dimensions:
radius = 50;
speed = 5;
angle = time * speed;
spiralRadius = radius * angle;
value + [Math.cos(angle) * spiralRadius, Math.sin(angle) * spiralRadius]










MiguelOwns –
how do i edit properties in 2025?
i cannot modify effects in properties tab for light rays on generate tab
videolancer –
The MOGRT clip that can be customized is inside a sequence that is added to the timeline by the plugin. But I recently released a new version of the plugin, and now you can customize the effects directly in the plugin interface without having to search for the MOGRT clip.
For everything to work correctly, also install the new version of the “Advanced Premiere Pro” preset package.
Mohd Maaz –
the pack has been removed from mega.nz
videolancer –
Sorry for the inconvenience. There were technical problems that prevented us from quickly updating the link. This has now been fixed.
yetivfx –
insane! this is absolutely a game changer and will be saving time in the future for sure!
theres always those times where u just need to use 1 effect in after effects that premiere doesnt have, BUT NOW it is no more!