d_dave
8th April 2002, 09:29
I'm using Avisynth 1.05. The source is a vob ripped using SmartRipper. Here's my avisynth script:
LoadPlugin("C:\PROGRA~1\GORDIA~1\mpeg2dec.dll")
mpeg2source("D:\steve\01.d2v")
crop(0,5,718,463)
Sharpen(.3)
BicubicResize(432,224,0,.6)
The problem I'm having is w/ the Sharpen filter. Placing the sharpen filter before the resize creates a faint line on the right side of the video. Placing it after the resize creates a very noticable line on the right side of the image. Is there a work-around for using the Avisynth Sharpen filter so that there is NO line made on the resulting video?
I've tested this by playing the .avs file in BSplayer. Without using the Sharpen filter, there is no line.
I've also read the thread entitled "AVISynth blinking line" and was not able to get any ideas as to how to fix this problem. Wondering if i'm using the wrong parameters for Sharpen.
In the meantime I'll be using Virtualdub's sharpen filter though this slows things down a bit.
LoadPlugin("C:\PROGRA~1\GORDIA~1\mpeg2dec.dll")
mpeg2source("D:\steve\01.d2v")
crop(0,5,718,463)
Sharpen(.3)
BicubicResize(432,224,0,.6)
The problem I'm having is w/ the Sharpen filter. Placing the sharpen filter before the resize creates a faint line on the right side of the video. Placing it after the resize creates a very noticable line on the right side of the image. Is there a work-around for using the Avisynth Sharpen filter so that there is NO line made on the resulting video?
I've tested this by playing the .avs file in BSplayer. Without using the Sharpen filter, there is no line.
I've also read the thread entitled "AVISynth blinking line" and was not able to get any ideas as to how to fix this problem. Wondering if i'm using the wrong parameters for Sharpen.
In the meantime I'll be using Virtualdub's sharpen filter though this slows things down a bit.