Copy link to clipboard
Copied
hi. so I wanna randomize time remap in after effects on a video layer of 25 seconds. so I used the expression "random(0,25)". it works but it goes too fast, it jumps on every single frame. So i want it to go slower, so i tried the expression "posterizeTime(1)". Now it jumps every one second, that's what I want. the problem is it gives me freezed frames / static images every 1 second. and what I want is for the video to continue playing including the jumps. can anyone tell me how to achieve that keeping it simple... maybe adding somthing else to the expression I dont know? thanks
Try this Time Remap expression:
dur = 1; // duration of each segment
seed = Math.floor(time/dur);
seedRandom(seed,true);
tStart = random(24);
tStart + time - seed*dur;
Copy link to clipboard
Copied
Try this Time Remap expression:
dur = 1; // duration of each segment
seed = Math.floor(time/dur);
seedRandom(seed,true);
tStart = random(24);
tStart + time - seed*dur;
Copy link to clipboard
Copied
works flawlessly. thanks a lot
Find more inspiration, events, and resources on the new Adobe Community
Explore Now