Log in

View Full Version : Mvanalyse error in MvDenoise


flebber
30th January 2010, 15:10
I am following the script from http://avisynth.org.ru/mvtools/mvtools.html for MvTools. However I receive an error of :MVDEnoise set compensation option (mc) in MVAnalyse

So I did but I still receive that error. This is the script.

LoadCPlugin("C:\Staxrip\Applications\AviSynth plugins\Yadif\yadif.dll")
LoadPlugin("C:\Staxrip\Applications\AviSynth plugins\ffms2\ffms2.dll")

last = FFVideoSource("C:\Documents and Settings\Family\My Documents\Downloads\Wheels - Foo Fighters.avi")
Crop(0,0, -Width % 8,-Height % 8)
ConvertToYV12()
LoadCplugin("C:\Staxrip\Applications\AviSynth plugins\Yadif\yadif.dll")
Yadif()
Crop(14,50,-18,-46)

backward_vec2 = last.MVAnalyse(isb = true, lambda = 1000, delta = 2, mc = false)
backward_vec1 = last.MVAnalyse(isb = true, lambda = 1000, delta = 1, mc = false)
forward_vec1 = last.MVAnalyse(isb = false, lambda = 1000, delta = 1, mc = false)
forward_vec2 = last.MVAnalyse(isb = false, lambda = 1000, delta = 2, mc = false)
last.MVDenoise(backward_vec2,backward_vec1,forward_vec1,forward_vec2,tht=10,thSAD=300)
return last

flebber
30th January 2010, 15:46
Used a smilar script with mvdegrain and it works fine. This is the working script.

LoadCPlugin("C:\Staxrip\Applications\AviSynth plugins\Yadif\yadif.dll")
LoadPlugin("C:\Staxrip\Applications\AviSynth plugins\ffms2\ffms2.dll")

last = FFVideoSource("C:\Documents and Settings\Family\My Documents\My Videos\Tutorial\Investment\Beggining Trading - Informedtrades\Module 5 The Psychology of Trading\Following the Sheep to Slaughter.flv")
Crop(0,0, -Width % 8,-Height % 8)
ConvertToYV12()
LoadCplugin("C:\Staxrip\Applications\AviSynth plugins\Yadif\yadif.dll")
Yadif()
Crop(8,0,-8,-0)

backward_vec3 = last.MVAnalyse(isb = true, delta = 3, pel = 2, overlap=2, sharp=1, idx = 1)
backward_vec2 = last.MVAnalyse(isb = true, delta = 2, pel = 2, overlap=2, sharp=1, idx = 1)
backward_vec1 = last.MVAnalyse(isb = true, delta = 1, pel = 2, overlap=2, sharp=1, idx = 1)
forward_vec1 = last.MVAnalyse(isb = false, delta = 1, pel = 2, overlap=2, sharp=1, idx = 1)
forward_vec2 = last.MVAnalyse(isb = false, delta = 2, pel = 2, overlap=2, sharp=1, idx = 1)
forward_vec3 = last.MVAnalyse(isb = false, delta = 3, pel = 2, overlap=2, sharp=1, idx = 1)
last.MVDegrain3(backward_vec1,forward_vec1,backward_vec2,forward_vec2,backward_vec3,forward_vec3,thSAD=300,idx=1)
MCTemporalDenoise(edgeclean=true, ecrad=4, stabilize=true, maxr=2)
DeHalo_alpha()
LSFmod(defaults="fast")

rkalwaitis
1st February 2010, 22:38
You may not get much assistance with MVDenoise as it is considered obsolete. I think however if you set mc=true as it is set to false by default. This may remedy your problem.

flebber
1st February 2010, 22:49
You may not get much assistance with MVDenoise as it is considered obsolete. I think however if you set mc=true as it is set to false by default. This may remedy your problem.

Ah okay, I was going to try Mdenoise 2.0 but I could n't access the site it was timing out.

Rdit: I will give version 2.0 a go as the site seems to b okay now.