-
Script like “speed effect”
Hello
Can anyone help me write a script?
I would like to cut an event to create the “speed effect”.
Example: 1 frame split, cutting six successive frames, move to the left all the remaining event, cutting the first frame, cutting six successive frames, and so on …
Now I do everything manually.
The generic code could be written:CurrentVideoEvent
For i = 1 to TotalFrames (CurrentVideoEvent) step 1
CurrentVideoEvent (Split) ‘— split frame in current event
For k = i to i + x ‘— (X frames after split frame)
CurrentVideoEvent (Split) ‘— example: move forward 6 frames and cut them
CurrentVideoEvent (MoveToPreviousSplitFrame) ‘— move left the event remain to previous frame
next k
next i
Thank you all
