View Full Version : MT problem


-=KaMaL=-
14th January 2008, 14:04
Hello everybody i have big problem with MT when i add in my script anyone script in little script also SetMTMode(2,8), in 1st pass after few mins xvid_encraw.exe is close automatically (xvid_encraw.exe is the processus of the window where i can see the status of my rip like in pourcent ) but in megui in queue for the status of the job i can see error
please help me thanks in advance also i have in processor intel duo quad q6600 megui version:0.2.6.1043

sh0dan
14th January 2008, 14:29
:script:

tsp
14th January 2008, 14:50
and maybe also the content of the avisynth plugin folder (any .avsi files?)

-=KaMaL=-
14th January 2008, 15:10
no i don't have avsi files

-=KaMaL=-
14th January 2008, 15:20
SetMTMode(2,8)
# PLUGINS
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\MT.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\decomb.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\UnDot.dll")
Import("C:\Program Files\AviSynth 2.5\plugins\LimitedSharpen.avs")

# SOURCE
mpeg2source("D:\VTS_01_1.d2v")

# IVTC
Telecide(order=1,guide=1).Decimate()

# CROPPING
crop(2,58,716,364)

# RESIZING
LanczosResize(704,288)

# DENOISING: choose one combination (or none)
LimitedSharpen(ss_x=1.0,ss_y=1.0,Smode=3,strength=30)

-=KaMaL=-
14th January 2008, 18:03
you see its simple script thanks for your help

tsp
15th January 2008, 00:26
does this script crash also?

# PLUGINS
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\MT.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\DGMPGDec\DGDecode.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\decomb.dll")
LoadPlugin("C:\PROGRA~1\GORDIA~1\AviSynthPlugins\UnDot.dll")
Import("C:\Program Files\AviSynth 2.5\plugins\LimitedSharpen.avs")

# SOURCE
mpeg2source("D:\VTS_01_1.d2v")

# IVTC
Telecide(order=1,guide=1).Decimate()

# CROPPING
crop(2,58,716,364)

# RESIZING
LanczosResize(704,288)

# DENOISING: choose one combination (or none)
mt("LimitedSharpen(ss_x=1.0,ss_y=1.0,Smode=3,strength=30)",8,2)

-=KaMaL=-
15th January 2008, 04:36
yes this script running but im getting 45 fps in 1st pass and 35 fps in 2nd pass is it normal? because normaly without mt i'm getting only 30 to 40 fps also if i want to add in other script like with removegrain or tweak color where i have to put mt script

TweakColor(hue=0.90,sat=0.90,bright=5,startHue=80,endHue=140,maxSat=90,minSat=75)

removegrain(mode=2)

mt("LimitedSharpen(ss_x=1.0,ss_y=1.0,Smode=3,strength=30)",8,2)

thank you very much for your help

tsp
16th January 2008, 00:52
mt enables multithreading for the filter that it calls so that is why it is faster than without mt. Tweakcolor will not work to well with mt but removegrain should be fine.
try
mt("removegrain(mode=2).LimitedSharpen(ss_x=1.0,ss_y=1.0,Smode=3,strength=30)",8,2)

-=KaMaL=-
16th January 2008, 01:00
mt enables multithreading for the filter that it calls so that is why it is faster than without mt. Tweakcolor will not work to well with mt but removegrain should be fine.
try
mt("removegrain(mode=2).LimitedSharpen(ss_x=1.0,ss_y=1.0,Smode=3,strength=30)",8,2)

oh ok thank you very much for your help and also if i want to rip more fast than this script i can like have you other one technic?