Log in

View Full Version : CCE 2.5 rejects avs?


craigslee
7th October 2002, 00:48
DVD2AVI 1.77 was part of the problem...replaced with 1.76

Avisynth 2.06 installed things looking better...

BUT!, This still doesn't work (it looks fine to me?)...

LoadPlugin("C:\Program Files\GordianKnot\MPEG2DEC.dll")
mpeg2source("D:\DVD_ Backup\Inspectorgadget\InspectorGadget_2.d2v")
BilinearResize(320,190,0,3,720,570)
#TemporalSmoother(2,2)
AddBorders(16,49,16,49)
#Trim(0,112789).FadeOut(150)
#ConvertToRGB24 # For TMPGEnc or VFAPI
#ResampleAudio(44100) # CCE 2.5 'crashfix' for Athlons
#== If you want this 'fix' permanently, edit the INI-file:
#== Under [AVSscript] set CCEcrashfix=1

HOWEVER, This does...

LoadPlugin("C:\Program Files\GordianKnot\MPEG2DEC.dll")
mpeg2source("D:\DVD_ Backup\Inspectorgadget\InspectorGadget_2.d2v")
ResampleAudio(44100)


Anything more complex with the latter avs and CCE outright rejects it/crashes!

This simple avs creates way too large a final video only file, now I have to establish why I'm unable to extend the avs?

Any clues/settings welcome!
:(

mmgrover
7th October 2002, 01:00
Did you try uncommenting the
ResampleAudio(44100)

In the First script? (like the second script)



mike

craigslee
7th October 2002, 02:38
Yep...

The second script is the only one I can get CCE 2.5 to recognize. I've also tried Gordian Knot and FitCD 1.05 avs scripts with no luck!

Got me stumped!

craigslee
7th October 2002, 02:50
Go to the CCE forum and find my thread titled: "ECL ???"

So simple (and weird) it defies description

:rolleyes:

mmgrover
7th October 2002, 03:11
Here is the script I use most...

LoadPlugin("C:\Program Files\AviSynth2\plugins\MPEG2DEC2.DLL")
mpeg2source("L:\Brotherhood of the Wolf\Brotherhood of the Wolf.d2v")
BilinearResize(480,480)
ResampleAudio(44100)


You could try this first with out the resize, then with it?


mike