jjones3535a
2nd July 2009, 01:51
Hi,
I'm using the wonderful TransAll plugin to create transitions between clips, but I'm having a bit of an issue.
I have 2 clips (all the same frame rate, height, width, color format, etc) that I'd like to have a transition placed in between each. Each clip is also 30 seconds in length and has a frame rate of 5 fps.
I'm using this code:
Clip1 = DirectShowSource("Clip_1.avi")
Clip2 = DirectShowSource("Clip_2.avi")
aa=TransAccord(Clip1,Clip2,15,"hor")
aa
The transition occurs at about 27 seconds, however the total duration is 57 seconds (instead of 60 seconds). It appears that about 3 seconds of Clip2 starts early, while Clip1 is still playing (which accounts for the shorter duration of the total video).
So, how do I call the Transition properly and have the full video duration play?
Also, I tried using this line instead:
aa=TransAccord(Clip1,Clip2,2,"hor")
--> (the 3rd argument is a 2 instead of 15) and this gives the proper duration of the video, but the transition effect is very quick and not really noticeable.
Any help would be greatly appreciated.
Thanks.
I'm using the wonderful TransAll plugin to create transitions between clips, but I'm having a bit of an issue.
I have 2 clips (all the same frame rate, height, width, color format, etc) that I'd like to have a transition placed in between each. Each clip is also 30 seconds in length and has a frame rate of 5 fps.
I'm using this code:
Clip1 = DirectShowSource("Clip_1.avi")
Clip2 = DirectShowSource("Clip_2.avi")
aa=TransAccord(Clip1,Clip2,15,"hor")
aa
The transition occurs at about 27 seconds, however the total duration is 57 seconds (instead of 60 seconds). It appears that about 3 seconds of Clip2 starts early, while Clip1 is still playing (which accounts for the shorter duration of the total video).
So, how do I call the Transition properly and have the full video duration play?
Also, I tried using this line instead:
aa=TransAccord(Clip1,Clip2,2,"hor")
--> (the 3rd argument is a 2 instead of 15) and this gives the proper duration of the video, but the transition effect is very quick and not really noticeable.
Any help would be greatly appreciated.
Thanks.