h00z
15th May 2002, 17:21
I was just doing some reading, and I had a few questions I wanted to run by you guys. Are you using any smoothing/sharpening filters in AVISynth, or do you still use the VirtualDub filters? The reason I ask is because I'd like to move as much as I can into my .avs file to speed up my encoding a bit. I know I can import the VD filters into AVISynth, but then I have to do the whole YUY2/RGB/YUY2 conversion thing, which slows me right back down.
I guess what I'm really asking is if there are YUY2 (AVISynth) equivalents to the SmartSmoother/Warpsharp filters. I've read the AVISynth docs, and searched through the forums here (over and over again) and I have seen a ton of options... I am just wondering what you are using and what you think of it.
If it helps any, I almost exclusively encode anime, and I currently use SmartSmoother(3,20) and WarpSharp(30) as a general starting point in VirtualDub.
BTW - Decomb.dll is working great for me! Here is a sample script that shows how I'm using it now:
___________________________________________________________________
# Load Plugins
LoadPlugin("C:\Program Files\DivX Apps\Avisynth\mpeg2dec.dll")
LoadPlugin("C:\Program Files\DivX Apps\Avisynth\decomb.dll")
LoadPlugin("C:\WINDOWS\System32\vobsub.dll")
# Load Video Clip
mpeg2source("D:\cb2\cb2.d2v")
# Decomb.dll Settings
Telecide(chroma=true,gthresh=50,guide=1)
Decimate(cycle=5)
# Crop
Crop(7,0,708,480)
# Smoother
# Need something here to smooth before resize
# Resize
BicubicResize(512,384,0,0.5)
# Sharpener
# Need something here to replace Warpsharp
# Subtitles
VobSub("D:\cb2\vts_04_0")
___________________________________________________________________
Now all I need is a good smoothing filter, and a nice sharpening filter and I'm set :)
I guess what I'm really asking is if there are YUY2 (AVISynth) equivalents to the SmartSmoother/Warpsharp filters. I've read the AVISynth docs, and searched through the forums here (over and over again) and I have seen a ton of options... I am just wondering what you are using and what you think of it.
If it helps any, I almost exclusively encode anime, and I currently use SmartSmoother(3,20) and WarpSharp(30) as a general starting point in VirtualDub.
BTW - Decomb.dll is working great for me! Here is a sample script that shows how I'm using it now:
___________________________________________________________________
# Load Plugins
LoadPlugin("C:\Program Files\DivX Apps\Avisynth\mpeg2dec.dll")
LoadPlugin("C:\Program Files\DivX Apps\Avisynth\decomb.dll")
LoadPlugin("C:\WINDOWS\System32\vobsub.dll")
# Load Video Clip
mpeg2source("D:\cb2\cb2.d2v")
# Decomb.dll Settings
Telecide(chroma=true,gthresh=50,guide=1)
Decimate(cycle=5)
# Crop
Crop(7,0,708,480)
# Smoother
# Need something here to smooth before resize
# Resize
BicubicResize(512,384,0,0.5)
# Sharpener
# Need something here to replace Warpsharp
# Subtitles
VobSub("D:\cb2\vts_04_0")
___________________________________________________________________
Now all I need is a good smoothing filter, and a nice sharpening filter and I'm set :)