PDA

View Full Version : Nested Dissolves?


Various
16th February 2008, 03:24
Hi folks,

The following did not seem to work. Can anyone tell me why?

a = ImageSource("image1.jpg", fps=30, end=200)
b = ImageSource("image2.jpg", fps=30, end=200)
c = ImageSource("image3.jpg", fps=30, end=200)
d = Dissolve (a,b,c, 40)
e = AviSource("video1.avi")
f = AviSource("video2.avi")
g = Dissolve(d,e,f, 40)

The video and images are the same size and the videos are 30 fps.

Thanks.

stickboy
16th February 2008, 06:04
Hi folks,

The following did not seem to work. Can anyone tell me why?Did you get an error message? If so, what did it say?
The video and images are the same size and the videos are 30 fps.Are you sure they're all exactly 30 fps? Even if they all claim to be 30 fps, they might have slight variances.

Make sure you use AssumeFPS on all of them to guarantee that they have consistent framerates. You can use:
clip1 = clip1.AssumeFPS(clip2)to make sure clip1 has exactly the same framerate as clip2.

Fantacinni
19th February 2008, 10:17
You need add return(g) at last