markrb
20th March 2002, 20:26
For a couple of days I have been doing test encodes with adding the line Sharpen(.6) to the AVIsynth file before the resize as follows.
LoadPlugin("C:\PROGRA~1\DVD2SVCD\MPEG2Dec\mpeg2dec.dll")
mpeg2source("E:\DVD2AV~1.D2V")
Sharpen(.6)
BicubicResize(480,360,0.00,0.60)
AddBorders(0,60,0,60)
Now if I have it there CCE blows up upon loading the AVS file the first time. However if I load the AVS and ecl files manually it works fine.
The only way I can get it to work is to move the Sharpen after the resize, but before the addborder like this:
LoadPlugin("C:\PROGRA~1\DVD2SVCD\MPEG2Dec\mpeg2dec.dll")
mpeg2source("E:\DVD2AV~1.D2V")
BicubicResize(480,360,0.00,0.60)
Sharpen(.6)
AddBorders(0,60,0,60)
I have uninstalled the DVD2SVCD bundle twice and removed CCE as well. I cleaned the registry of all mention of either program before re-installing them. I also tried safe mode and that doesn't work either.
I would like to get this working back the way I originally had it.
My biggest two questions are:
1. Why did this work for two days and then suddenly stop?
2. Why does it work if I do it manually instead of having DVD2SVCD do it?
Thanks,
Mark
LoadPlugin("C:\PROGRA~1\DVD2SVCD\MPEG2Dec\mpeg2dec.dll")
mpeg2source("E:\DVD2AV~1.D2V")
Sharpen(.6)
BicubicResize(480,360,0.00,0.60)
AddBorders(0,60,0,60)
Now if I have it there CCE blows up upon loading the AVS file the first time. However if I load the AVS and ecl files manually it works fine.
The only way I can get it to work is to move the Sharpen after the resize, but before the addborder like this:
LoadPlugin("C:\PROGRA~1\DVD2SVCD\MPEG2Dec\mpeg2dec.dll")
mpeg2source("E:\DVD2AV~1.D2V")
BicubicResize(480,360,0.00,0.60)
Sharpen(.6)
AddBorders(0,60,0,60)
I have uninstalled the DVD2SVCD bundle twice and removed CCE as well. I cleaned the registry of all mention of either program before re-installing them. I also tried safe mode and that doesn't work either.
I would like to get this working back the way I originally had it.
My biggest two questions are:
1. Why did this work for two days and then suddenly stop?
2. Why does it work if I do it manually instead of having DVD2SVCD do it?
Thanks,
Mark