shoopdabloop
19th April 2009, 23:39
I was trying to make a 60i->24p+simulated motion blur script for half an hour, and I could only get it to work like this:
loadcplugin("c:\program files\avisynth 2.5\plugins\yadif.dll")
loadplugin("c:\program files\avisynth 2.5\plugins\mvtools2.dll")
source = AviSource("Tape 2 - Clip 012.avi").ConvertToYV12().AssumeBFF().Yadif(1).RemoveGrain().Blur(0.16)
super = source.MSuper()
mvbw = MAnalyse(super,isb=true)
mvfw = MAnalyse(super,isb=false)
source.MFlowFps(super,mvbw,mvfw,num=24000,den=1001)
super2 = last.MSuper()
bv = MAnalyse(super,isb=true)
fv = MAnalyse(super,isb=false)
last.MFlowBlur(super2,bv,fv,blur=20)
I'm getting ~6 fps output. Is there any way I can make it faster?
Also, if the original footage was filmed with 1/60 shutter speed, what blur value should I input into MFlowBlur if I want it to look like it was filmed with 1/48 shutter speed?
loadcplugin("c:\program files\avisynth 2.5\plugins\yadif.dll")
loadplugin("c:\program files\avisynth 2.5\plugins\mvtools2.dll")
source = AviSource("Tape 2 - Clip 012.avi").ConvertToYV12().AssumeBFF().Yadif(1).RemoveGrain().Blur(0.16)
super = source.MSuper()
mvbw = MAnalyse(super,isb=true)
mvfw = MAnalyse(super,isb=false)
source.MFlowFps(super,mvbw,mvfw,num=24000,den=1001)
super2 = last.MSuper()
bv = MAnalyse(super,isb=true)
fv = MAnalyse(super,isb=false)
last.MFlowBlur(super2,bv,fv,blur=20)
I'm getting ~6 fps output. Is there any way I can make it faster?
Also, if the original footage was filmed with 1/60 shutter speed, what blur value should I input into MFlowBlur if I want it to look like it was filmed with 1/48 shutter speed?