TNM
24th April 2003, 10:32
I've just started to use CCE and followed Doom 9 guide. But I couldn't load an avs2.51 script with a mpeg2 clip into CCE! Whenever I dragged and dropped the script into CCE, the program just exited :mad: The script which couldn't be loaded looks like this
loadplugin("C:\Program Files\AviSynth 2.5\plugins for 2.0x\WarpSharp\loadpluginex.dll")
loadplugin("C:\Program Files\AviSynth 2.5\plugins for 2.0x\peachsmoother.dll")
mpeg2source("d:\ps2 movies\the dark aeon.d2v")
crop(32,0,640,480)
converttoyuy2()
PeachSmoother()
FluxSmooth()
While this clip could be loaded and encoded without any problem
loadplugin("C:\Program Files\AviSynth 2.5\plugins for 2.0x\WarpSharp\loadpluginex.dll")
loadplugin("C:\Program Files\AviSynth 2.5\plugins for 2.0x\PeachSmoother.dll")
loadplugin("C:\Program Files\AviSynth 2.5\plugins for 2.0x\coloryuy2.dll")
avisource("d:\ps2 movies\source\Kaido Battle OP.avi")
converttoyuy2()
ColorYUY2(Levels="PC->TV")
textsub("d:\ps2 movies\tnm.ssa")
PeachSmoother(NoiseReduction=45,Stability=20,Spatial=100,NoiseLevel=5.0,Baseline=3.2)
FluxSmooth()
Is it because of MPEG2Dec3 for avs 2.51? Because the above scripts differ mainly in that avs 2.51 plugin...
loadplugin("C:\Program Files\AviSynth 2.5\plugins for 2.0x\WarpSharp\loadpluginex.dll")
loadplugin("C:\Program Files\AviSynth 2.5\plugins for 2.0x\peachsmoother.dll")
mpeg2source("d:\ps2 movies\the dark aeon.d2v")
crop(32,0,640,480)
converttoyuy2()
PeachSmoother()
FluxSmooth()
While this clip could be loaded and encoded without any problem
loadplugin("C:\Program Files\AviSynth 2.5\plugins for 2.0x\WarpSharp\loadpluginex.dll")
loadplugin("C:\Program Files\AviSynth 2.5\plugins for 2.0x\PeachSmoother.dll")
loadplugin("C:\Program Files\AviSynth 2.5\plugins for 2.0x\coloryuy2.dll")
avisource("d:\ps2 movies\source\Kaido Battle OP.avi")
converttoyuy2()
ColorYUY2(Levels="PC->TV")
textsub("d:\ps2 movies\tnm.ssa")
PeachSmoother(NoiseReduction=45,Stability=20,Spatial=100,NoiseLevel=5.0,Baseline=3.2)
FluxSmooth()
Is it because of MPEG2Dec3 for avs 2.51? Because the above scripts differ mainly in that avs 2.51 plugin...