Log in

View Full Version : Avisynt+ MT and MEgui = crash


Paky
17th February 2018, 19:06
Hello

Megui last version
Avisynth+ r2580 MT

with this script

SetMemoryMax(2048)

SetFilterMTMode("DEFAULT_MT_MODE", 2)
SetFilterMTMode("DGDecode_mpeg2source",3)

LoadPlugin("C:\NoUAC\Editing Video\MeGUI\tools\dgindex\DGDecode.dll")
DGDecode_mpeg2source("D:\Editing Video\Dvd De Andre_VTS_01_2.d2v", info=3)

LoadPlugin("C:\NoUAC\Editing Video\MeGUI\tools\avisynth_plugin\ColorMatrix.dll")
ColorMatrix(hints=true, interlaced=true, threads=0)

loadplugin("QTGMC\mvtools2.dll")
loadplugin("QTGMC\masktools2.dll")
loadplugin("QTGMC\nnedi3.dll")
loadplugin("QTGMC\RgTools.dll")
import("QTGMC\xMsxYztR.avsi")
import("QTGMC\QTGMC.avsi")


AssumeTFF()
QTGMC( Preset="Slow")

crop(10, 2, -10, -2)

LoadPlugin("C:\NoUAC\Editing Video\MeGUI\tools\avisynth_plugin\Convolution3DYV12.dll")
Convolution3D (preset="MovieLQ")

prefetch(4)

after few minutes crash with this error

https://s14.postimg.org/aca7cw14h/avs_erorr.png

If i remove convolution3D works

why?

StainlessS
18th February 2018, 01:23
Error code 0xC0000005 is Access Violation.
Perhaps other members might be more inclined to answer if the gobble-de-gook was translated into the forum language, ie English.

VS_Fan
18th February 2018, 03:06
Convolution3D is an old filter, it was written in 2002 for avisynth 2.0.

The latest version available is a beta, released in 2003, 15 years ago!, for avisynth 2.5, with no temporal processing and some problems (http://web.archive.org/web/20111205204423/http://hellninjacommando.com/con3d/beta/readme.html).

You can use better 3D denoising filters like fft3Dfilter, DFTtest, or much better MDegrain[n] included in mvtools.