View Single Post
Old 12th May 2013, 14:19   #1  |  Link
Max147
Registered User
 
Join Date: May 2013
Posts: 12
mvtools2 is very slow

Hello,

I'm new to this forum, I searched before I ask my question, but I have not found.
I'm trying to encode a bluray with megui, but I think it has a lot of grain, it is an old film that has been remastered quickly.
So I use the "mvtools2" I find effective filter, but the problem is that the encoding is very very slow, 0.92 fps per second. My processor is being used than 15%, this is a I7 970.
Does anyone have an idea to improve the encoding time?
Thank you in advance for your answers.

I attached a copy of my avisynth script.

LoadPlugin("C:\Program Files (x86)\MeGUI_0.3.5_x86_WithoutInstaller_OfflinePackage\tools\avisynth_plugin\mvtools2.dll")
LoadPlugin("C:\Program Files (x86)\MeGUI_0.3.5_x86_WithoutInstaller_OfflinePackage\tools\dgavcindex\DGAVCDecode.dll")
AVCSource("J:\_RIP\beverlly hills cop 2\00051.dga")
#deinterlace
crop(0, 132, 0, -132)
#resize
#denoise
super = MSuper(pel=2, sharp=1)
backward_vec3 = MAnalyse(super, isb = true, delta = 3, overlap=4)
backward_vec2 = MAnalyse(super, isb = true, delta = 2, overlap=4)
backward_vec1 = MAnalyse(super, isb = true, delta = 1, overlap=4)
forward_vec1 = MAnalyse(super, isb = false, delta = 1, overlap=4)
forward_vec2 = MAnalyse(super, isb = false, delta = 2, overlap=4)
forward_vec3 = MAnalyse(super, isb = false, delta = 3, overlap=4)
MDegrain3(super, backward_vec1,forward_vec1,backward_vec2,forward_vec2,backward_vec3,forward_vec3,thSAD=1200)
Max147 is offline   Reply With Quote