View Single Post
Old 6th December 2020, 08:53   #18767  |  Link
GZZ
Registered User
 
Join Date: Jan 2002
Posts: 581
Quote:
Originally Posted by Pauly Dunne View Post
Here's what they should look like, to work properly :-

(this is my MDgrain3 + enhance details custom filter, which will only work after the latest updates are installed)

Also VERY important, the "address" in red text HAS to match where you have your RipBot located !!!

#Custom
Loadplugin("C:\RipBot264v1.26.0\Tools\AviSynth plugins\mvtools\mvtools2.dll")
super=MSuper(video,pel=2)
bv1=MAnalyse(super,blksize=8,isb=true,delta=1,overlap=4)
bv2=MAnalyse(super,blksize=8,isb=true,delta=2,overlap=4)
bv3=MAnalyse(super,blksize=8,isb=true,delta=3,overlap=4)
fv1=MAnalyse(super,blksize=8,isb=false,delta=1,overlap=4)
fv2=MAnalyse(super,blksize=8,isb=false,delta=2,overlap=4)
fv3=MAnalyse(super,blksize=8,isb=false,delta=3,overlap=4)
video=MDegrain3(video,super,bv1,fv1,bv2,fv2,bv3,fv3,thSAD=800)

#After_Prefetch_Custom
LoadPlugin("%AVISYNTHPLUGINS%\Plugins_JPSDR\Plugins_JPSDR.dll")
LoadPlugin("%AVISYNTHPLUGINS%\CAS\CAS.dll")
Import("%AVISYNTHPLUGINS%\Scripts\MCAS.avs")
video=MCAS(video,1.0)

It is also important to add these type of custom filters to the RipBot264.ini file. eg:-

MTFiltersList=MDegrain1;MDegrain1_details;MDegrain2;MDegrain2_details;MDegrain3;MDegrain3_details;MDegrain4;QTGMC;HDRtoSDR;z_ConvertFormat;

See what that does for you, good luck.
I think I got must of it correct. What is the difference between your MDegrain2 and MDegrain2_details script, what parameter have you changed ?
GZZ is offline   Reply With Quote