bully`
6th June 2005, 19:54
Hello, I am new quite new too avisynth, and someone gave me a script that converts 120 fps clips into 30 fps clips. The script looks like this:
AviSource("e:\vdub.avi")
converttoyuy2()
x0=selectevery(4,0)
x1=selectevery(4,1)
x2=selectevery(4,2)
x3=selectevery(4,3)
x12=overlay(x1,x2,opacity=0.3)
x03=overlay(x0,x3,opacity=0.3)
x0123=overlay(x12,x03,opacity=0.3)
return x0123
What I would like to know is what lines I should add/change to the script so it can convert 200 fps into 29'7 fps clips?
thanks :)
AviSource("e:\vdub.avi")
converttoyuy2()
x0=selectevery(4,0)
x1=selectevery(4,1)
x2=selectevery(4,2)
x3=selectevery(4,3)
x12=overlay(x1,x2,opacity=0.3)
x03=overlay(x0,x3,opacity=0.3)
x0123=overlay(x12,x03,opacity=0.3)
return x0123
What I would like to know is what lines I should add/change to the script so it can convert 200 fps into 29'7 fps clips?
thanks :)