Log in

View Full Version : motionblur script


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 :)

sh0dan
6th June 2005, 21:39
The easiest (and probably fastest) way:

changefps(29.97*7) #Quite close to 200fps will duplicate a few frames
converttoyuy2() #If not already YUY2 or YV12
temporalsoften(3,255,255,0,2)
selectevery(7,3)