Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

after effects randomize time remap with expression

New Here ,
Oct 04, 2024 Oct 04, 2024

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

TOPICS
Expressions , How to
460
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Community Expert , Oct 04, 2024 Oct 04, 2024

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;
Translate
Community Expert ,
Oct 04, 2024 Oct 04, 2024

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;
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Oct 05, 2024 Oct 05, 2024
LATEST

works flawlessly. thanks a lot

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines