Log in

View Full Version : Clicking "Picture Quality" causes CCE to crash


frubsen
9th June 2008, 17:14
When using an avs file in CCE, when I go to click on "Picture Quality", CCE just closes.

my avs script is as follows.

LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\MPEG2Dec3.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\plugins\Convolution3D.dll")
DirectshowSource("filenam.avi")
ReInterpolate411()
SeparateFields()
odd=SelectOdd.Convolution3D(1, 6, 10, 6, 8, 2.8, 0)
evn=SelectEven.Convolution3D(1, 6, 10, 6, 8, 2.8, 0)
Interleave(evn,odd)
Weave()
DoubleWeave.SelectOdd()

its an interlaced DVAVI file i want to convert to DVD.

If i load the dv avi file directly into CCE, i am able to click on picture quality and adjust the settings.

I'm using CCE 2.70 SP.

ANy idea why its crashing?

Comatose
11th June 2008, 02:50
It's probably something with your AVS script, as picture quality has a video preview.

Guest
11th June 2008, 03:51
Make sure your script delivers the color space that CCE expects. I forget which one it is. :)

Irakli
11th June 2008, 11:43
Make sure your script delivers the color space that CCE expects. I forget which one it is. :)

It's YUY2.

Guest
11th June 2008, 13:52
So add this to the end of your script:

ConvertToYUY2()

45tripp
11th June 2008, 15:04
the script already returns yuy2.

unless it's returning an error that is.

can you preview the script without trouble elsewhere?

PhillipWyllie
12th June 2008, 07:14
DirectshowSource("filenam.avi"), why not use Avisource("filenam.avi")