markrb
20th March 2002, 08:11
For the last couple of days I have been using the following avs syntax with no problem:
LoadPlugin("C:\PROGRA~1\DVD2SVCD\MPEG2Dec\mpeg2dec.dll")
mpeg2source("F:\spatial\DVD2AV~1.D2V")
Sharpen(.6)
BicubicResize(480,360,0.00,0.60)
AddBorders(0,60,0,60)
ResampleAudio(44100)
Today it refuses to work. CCE keeps crashing with a GPF. It will play in windows Media Player.
If I move Sharpen to after the resize it will work like this.
LoadPlugin("C:\PROGRA~1\DVD2SVCD\MPEG2Dec\mpeg2dec.dll")
mpeg2source("F:\spatial\DVD2AV~1.D2V")
BicubicResize(480,360,0.00,0.60)
Sharpen(.6)
AddBorders(0,60,0,60)
ResampleAudio(44100)
It seems that in general I should use the filter before the resize for the best results. I have uninstalled and re-installed the whole DVD2SVCD package including the mpeg2dec.dll. I also rebooted my PC.
I am really confused because it worked both ways without any changes yesterday.
Thanks,
Mark
LoadPlugin("C:\PROGRA~1\DVD2SVCD\MPEG2Dec\mpeg2dec.dll")
mpeg2source("F:\spatial\DVD2AV~1.D2V")
Sharpen(.6)
BicubicResize(480,360,0.00,0.60)
AddBorders(0,60,0,60)
ResampleAudio(44100)
Today it refuses to work. CCE keeps crashing with a GPF. It will play in windows Media Player.
If I move Sharpen to after the resize it will work like this.
LoadPlugin("C:\PROGRA~1\DVD2SVCD\MPEG2Dec\mpeg2dec.dll")
mpeg2source("F:\spatial\DVD2AV~1.D2V")
BicubicResize(480,360,0.00,0.60)
Sharpen(.6)
AddBorders(0,60,0,60)
ResampleAudio(44100)
It seems that in general I should use the filter before the resize for the best results. I have uninstalled and re-installed the whole DVD2SVCD package including the mpeg2dec.dll. I also rebooted my PC.
I am really confused because it worked both ways without any changes yesterday.
Thanks,
Mark