tomerb
17th May 2007, 16:34
Hey
I'm trying to overlay a video several times on a clip for several frames
I tried doing:
function func1(clip c1, clip c2)
{
Overlay(c1,c2, mode="blend", opacity=0.6, x=60, y=438)
}
clip1 = QTInput("c:\quick.mov",audio=true)
box = BlankClip(width=586,height=99).Blur(0,1)
ApplyRange(clip1,20,180,"overIt", clip1, box)
I keep getting "Script Error: invalid arguments to function "ApplyRange""
The manual says:
ApplyRange (clip, int start_frame, int end_frame, string filtername, args)
and I am doing: ApplyRange(clip1, 20, 180, "OverIt", clip1, box)
as I understand the arguments I pass are correct
btw,
the video file is 44 seconds long
Any help would be much appreciated
I'm trying to overlay a video several times on a clip for several frames
I tried doing:
function func1(clip c1, clip c2)
{
Overlay(c1,c2, mode="blend", opacity=0.6, x=60, y=438)
}
clip1 = QTInput("c:\quick.mov",audio=true)
box = BlankClip(width=586,height=99).Blur(0,1)
ApplyRange(clip1,20,180,"overIt", clip1, box)
I keep getting "Script Error: invalid arguments to function "ApplyRange""
The manual says:
ApplyRange (clip, int start_frame, int end_frame, string filtername, args)
and I am doing: ApplyRange(clip1, 20, 180, "OverIt", clip1, box)
as I understand the arguments I pass are correct
btw,
the video file is 44 seconds long
Any help would be much appreciated