Log in

View Full Version : cce crash (but not like all the others ive read)


Nifty
28th October 2003, 08:59
this is my story
i recently formatted and now i cant seam to open my avs files in cce 2.5 (2.66 opens em but then gives error about no codec for yv12)

but as i prefer 2.5 i would like to open them in that

this is the avs file im tryin to load...it plays perfect in windows media player


directshowsource("dcn-jp2.avi",29.976)
BicubicResize(720,480)
ResampleAudio(44100)

also ive tried

avisource("dcn-jp2.avi",29.976)
BicubicResize(720,480)
ResampleAudio(44100)

both these play fine,so what could the problem be,why dont cce 2.5 like it?

thx for your time in reading this problem
Nifty

RB
28th October 2003, 15:04
AddConvertToYUY2()at the end of your AVS.

Nifty
28th October 2003, 18:38
thx for the reply
i did what u said and i still get cce crashing when i try to load my avs
here my avs

directshowsource("dcn-jp2.avi",29.976)
BicubicResize(720,480)
ResampleAudio(44100)
ConvertToYUY2()

DDogg
29th October 2003, 00:39
Although it does not sound like you are getting that far, make sure and uncheck audio if you get the avs to load. Depending on what CPU you have, audio checked will give you a crash.

Uli
29th October 2003, 11:16
Originally posted by Nifty
...here my avs

directshowsource("dcn-jp2.avi",29.976)
BicubicResize(720,480)
ResampleAudio(44100)
ConvertToYUY2()

What version of avisynth are you using? If it's version 2.08 or 2.5 you have to use the AddAudio() function.
Here is the source:

function AddAudio(clip v1) {
v2 = Blankclip()
v1 = AudioDub(v1,v2)
return v1
}

Save this as a text file with name "addaudio.avsi" in your plugin directory of avisynth and replace the "ResampleAudio(44100)" with addaudio().

greetz, Uli