Log in

View Full Version : MeGUI crashing, problem with script?


bazz
11th March 2011, 00:54
i am very new to Avisynth and find it mind blowing.
Ive spent hours this week searching for a good script to denoise and sharpen DVD and 720p MKV files alongside MeGUI

i used this script on VOB files yesterday with great success

LoadPlugin("C:\Program Files (x86)\MeGUI\tools\dgindex\DGDecode.dll")
DGDecode_mpeg2source("E:\megui\VTS_01_1.d2v", info=3)
LoadPlugin("C:\Program Files (x86)\MeGUI\tools\avisynth_plugin\ColorMatrix.dll")
ColorMatrix(hints=true, threads=0)
#deinterlace
crop( 0, 10, 0, -8)

Spline36Resize(624,336) # Spline36 (Neutral)

a= last
b=a.degrainmedian(limitY=3, limitUV=5,mode=0).VagueDenoiser(threshold=1.2, method=1, nsteps=6, chromaT=0.8)
SeeSaw(a,b, NRlimit=3, NRlimit2=4, Sstr=1.5, Slimit=5, Spower=5, Sdamplo=6, Szp=16)
Undot()
GradFunkMirror()
Grainfactory3(1,1,1)
ive tried to use the same script on 5 different MKV 720p files and after a few seconds Avisynth crashes
The usual error is
" unable to load directshowsource.dll "

i read on google someone fixed this error by uninstalling MeGUI from program files and running it from elsewhere but that did not work.
Its definetly the script because ive got MeGUI running now with no filters added

can anyone suggest a work around please.

edit, ive noticed its when i go back and add this to the script

a= last
b=a.degrainmedian(limitY=3, limitUV=5,mode=0).VagueDenoiser(threshold=1.2, method=1, nsteps=6, chromaT=0.8)
SeeSaw(a,b, NRlimit=3, NRlimit2=4, Sstr=1.5, Slimit=5, Spower=5, Sdamplo=6, Szp=16)
Undot()

sorry i did post this problem in the Avisynth usage sectionyesterday but still no response
i see now i was wrong to post it there
now im familiar with this forum , i promise no more double posts

subair37
11th March 2011, 11:35
i am very new to Avisynth and find it mind blowing.
Ive spent hours this week searching for a good script to denoise and sharpen DVD and 720p MKV files alongside MeGUI

i used this script on VOB files yesterday with great success


ive tried to use the same script on 5 different MKV 720p files and after a few seconds Avisynth crashes
The usual error is
" unable to load directshowsource.dll "

i read on google someone fixed this error by uninstalling MeGUI from program files and running it from elsewhere but that did not work.
Its definetly the script because ive got MeGUI running now with no filters added

can anyone suggest a work around please.

edit, ive noticed its when i go back and add this to the script



sorry i did post this problem in the Avisynth usage sectionyesterday but still no response
i see now i was wrong to post it there
now im familiar with this forum , i promise no more double posts

what you using this script for MPEG2 encoding using CCE are u loading these script on to a cce or using megui to do a 720p upscale ?

Please state what u doing with these script ?

bazz
11th March 2011, 11:45
im encoding x264 720p movies down to x264 350-500mb rips

i either get a cannot load DirectShowSource.dll or
the script loads in AvsP then i can load and preview in MeGUI
after a few seconds MeGUI crashes.

thanks for the reply ,im desperate to get this or a similar script sorted

bazz
11th March 2011, 12:56
this script worked fine on a 720p MKV i was encoding to avi , i made a sample to test the script that worked BUT i wanted to sharpen so i added seasaw and this is the error i got on crash

DirectShowSource("D:\bd encode\narnia\movie.mkv", fps=23.976, audio=false, convertfps=true)
#deinterlace
#crop
ConvertToYV12()

Spline36Resize(640,352) # Spline36 (Neutral)
LoadPlugin("C:\Program Files (x86)\AviSynth 2.5\plugins\FFT3DFilter.dll")

a= last
b=a.fft3dGPU(mode=1,precision=2, sigma=1.25, bt=4, bw=32, bh=32, ow=16, oh=16). fluxsmoothT(4)
SeeSaw(a,b, NRlimit=3, NRlimit2=4, Sstr=1.5, Slimit=5, Spower=5, Sdamplo=6, Szp=16)

Trim(1000,168438)
SelectRangeEvery(4000,250)


Problem signature:
Problem Event Name: BEX
Application Name: MeGUI.exe
Application Version: 1.0.1911.0
Application Timestamp: 4d330b03
Fault Module Name: DirectShowSource.dll_unloaded
Fault Module Version: 0.0.0.0
Fault Module Timestamp: 494eb91d
Exception Offset: 005d8a1b
Exception Code: c0000005
Exception Data: 00000008
OS Version: 6.1.7601.2.1.0.256.1
Locale ID: 2057
Additional Information 1: 0a9e
Additional Information 2: 0a9e372d3b4ad19135b953a78882e789
Additional Information 3: 0a9e
Additional Information 4: 0a9e372d3b4ad19135b953a78882e789

i left seasaw out and added LSF and it crashed with some avswrapper dll (ithink thats correct) could not ber loaded

Description:
Stopped working

Problem signature:
Problem Event Name: CLR20r3
Problem Signature 01: megui.exe
Problem Signature 02: 1.0.1911.0
Problem Signature 03: 4d330b03
Problem Signature 04: MeGUI
Problem Signature 05: 1.0.1911.0
Problem Signature 06: 4d330b03
Problem Signature 07: eea
Problem Signature 08: 0
Problem Signature 09: System.DllNotFoundException
OS Version: 6.1.7601.2.1.0.256.1
Locale ID: 2057



reinstalling codecs or MeGUI does not help

any ideas anyone?