Log in

View Full Version : Trim problems


Kamui-Dash
23rd June 2003, 23:01
I tried this trim and got "Script Return value was not a video clip"
Can some one please help? Thx in advance.

part1 = Trim(clip,0,847).Undot()
part2 = Trim(clip,848,3042).msharpen(30,30)
part3 = Trim(clip,3043,32116).Undot()
part4 = Trim(clip,32117,34998).msharpen(30,30)
part5 = Trim(clip,34999,58110).Undot()
part6 = Trim(clip,58110,88428).msharpen(30,30)
part = part1+part2+part3+part4+part5+part6

EDIT: I just noticed that the last command was a PART... Im still stuck here please help.

Kamui-Dash
23rd June 2003, 23:16
I changed part with vid and it works now =X

The Edge
23rd June 2003, 23:22
Trim(clip,0,847).Undot() + Trim(clip,848,3042).msharpen(30,30) + Trim(clip,3043,32116).Undot() + Trim(clip,32117,34998).msharpen(30,30) + Trim(clip,34999,58110).Undot() + Trim(clip,58110,88428).msharpen(30,30)

That would have also worked I think.

Bren

esby
24th June 2003, 01:41
you could have used :

return part

at the end of the script
since you are in an ooc structure