N_F
13th March 2003, 13:21
A couple of days ago I found myself in a situation where I wanted to do something like this.
mpeg2source("%source%")
crop(%values%)
movie=trim(0,203197).lanczosresize(640,272).asharp(1.4,6).convolution3d("movielq")
credits=trim(203198,0).bilinearresize(640,272).convolution3d(0,18,32,12,10,2.8)
return movie+credits
My question is: Will this script to what I want in the order I expect? Is it as simple as reading from left to right?
If it’s not obvious in what order I want them in I’ll make it plain:
Movie
trim(0,203197)
lanczosresize(640,272)
asharp(1.4,6)
convolution3d("movielq")
Credits
trim(203198,0)
bilinearresize(640,272)
convolution3d(0,18,32,12,10,2.8)
So, (1) will my script above do what I want and (2) is there another way than OOP notation to do what I want (other than creating two separate scripts)?
mpeg2source("%source%")
crop(%values%)
movie=trim(0,203197).lanczosresize(640,272).asharp(1.4,6).convolution3d("movielq")
credits=trim(203198,0).bilinearresize(640,272).convolution3d(0,18,32,12,10,2.8)
return movie+credits
My question is: Will this script to what I want in the order I expect? Is it as simple as reading from left to right?
If it’s not obvious in what order I want them in I’ll make it plain:
Movie
trim(0,203197)
lanczosresize(640,272)
asharp(1.4,6)
convolution3d("movielq")
Credits
trim(203198,0)
bilinearresize(640,272)
convolution3d(0,18,32,12,10,2.8)
So, (1) will my script above do what I want and (2) is there another way than OOP notation to do what I want (other than creating two separate scripts)?