Hi.I am new at this and I tried to encode a movie in MeGui with avisynth scripts but I was not
satisfied with the results in encode.Because the video has a lot of grain the filters didn't
clean all of it.Could you recommend me some stronger denoisers? Also does the script need some
more adjusments?
Original sample:
http://www.sendspace.com/file/vq44k0
Encoded sample:
http://www.sendspace.com/file/ejd3w0
Here's the script:
satisfied with the results in encode.Because the video has a lot of grain the filters didn't
clean all of it.Could you recommend me some stronger denoisers? Also does the script need some
more adjusments?
Original sample:
http://www.sendspace.com/file/vq44k0
Encoded sample:
http://www.sendspace.com/file/ejd3w0
Here's the script:
Code:
LoadPlugin("C:\Program Files (x86)\MeGUI\tools\dgindex\DGDecode.dll")
DGDecode_mpeg2source("D:\VTS_01_2.d2v",info=3)
LoadPlugin("C:\Program Files (x86)\MeGUI\tools\avisynth_plugin\ColorMatrix.dll")
ColorMatrix(hints=true, threads=0)
LoadPlugin("C:\Program Files (x86)\MeGui\tools\avisynth_plugin\FluxSmooth.dll")
FluxSmoothST(7,7) # Medium Noise
#deinterlace
crop(0, 12, 0, -12)
LanczosResize(848,480) # Lanczos (Sharp)
LoadPlugin("C:\Program Files (x86)\MeGUI\tools\avisynth_plugin\deen.dll")
deen()
LoadPlugin("C:\Program Files (x86)\MeGUI\tools\avisynth_plugin\SangNom.dll")
LoadPlugin("C:\Program Files (x86)\MeGUI\tools\avisynth_plugin\mt_masktools-25.dll")
Import("C:\Program Files (x86)\megui\tools\avisynth_plugin\animeivtc2.00.avsi")
maa()
Levels(10,1.5,220,0,255)
LoadPlugin("C:\Program Files (x86)\MeGUI\tools\avisynth_plugin\aWarpSharp2.dll")
MergeChroma(aWarpSharp2(depth=9))
LoadPlugin("C:\Program Files (x86)\MeGUI\tools\avisynth_plugin\mt_masktools-25.dll")
LoadPlugin("C:\Program Files (x86)\MeGUI\tools\avisynth_plugin\RemoveGrainSSE2.dll")
Import("C:\Program Files (x86)\MeGUI\tools\avisynth_plugin\LimitedSharpenFaster.avsi")
LimitedSharpenFaster(ss_x=1.5, ss_y=1.5, strength=120, overshoot=0, undershoot=0, soft=0, edgemode=0)