Log in

View Full Version : I need to create a special video..Help please


Flexy
27th May 2008, 22:34
Hello Guys,

what i need to achieve:

I have two images, test pattern A and test pattern B.

I need to create a video running at exactly 60hz progressive, with each image output alternating per frame:

Frame 1 Image A ---- Frame 2 Image B ---- Frame 3 Image A ... as in: ABABABABABABA.... 60hz

and so forth.

Any idea how i can achieve this easily?


Georg.

Gavino
27th May 2008, 22:43
a=ImageSource("image A.png", end=0)
b=ImageSource("image B.png", end=0)
a+b
Loop(n) # n=no of frame pairs required
AssumeFPS(60)

There are other ways, eg using Interleave.

Flexy
27th May 2008, 23:15
great!! thank you!!