Hi LadyMiles,
LadyMiles wrote:
Quote:
I capture television shows with my ATI AIW 7500 in mpeg2.
What are the best filters to clean up this source FLuxsmooth, Blockbuster, Convulotion ?
|
Here's a script I've been using for LBR when I convert mpeg1 to avi using
VirtualDub with Huff codec. The results are very good.

You may
wish to add TemporalSmoother(1,2) if needed. Adjust this script for KVCD templates.
LegalClip() is used twice to catch stray pixels before and after filtering.
LoadPlugin("E:\DVD Backup\2 - DVD2SVCD\MPEG2DEC\MPEG2DEC2.dll")
LoadPlugin("E:\DVD Backup\2 - DVD2SVCD\BlockBuster\BlockBuster.dll")
LoadPlugin("E:\DVD Backup\2 - DVD2SVCD\LegalClip\LegalClip.dll")
LoadPlugin("E:\DVD Backup\2 - DVD2SVCD\FluxSmooth\FluxSmooth.dll")
AviSource("D:\Temp\capture.avi")
#
ConvertToYUY2()
#
LegalClip()
#
BilinearResize(336,224,0,0,352,240)
#
FluxSmooth(temporal_threshold=7, spatial_threshold=7)
#
# ------ Auto Strength, proportional strength depending on resolution ------
## Remove only one "#" on front of the resolution that matches your encoding.
#
BB_Resolution = 352*240
#BB_Resolution = 352*480
#BB_Resolution = 528*480
#BB_Resolution = 544*480
#BB_Resolution = 704x480
#
BB_StrengthConstant = 352 * 240 * 20 # Base strength
StrengthValue = round(BB_StrengthConstant / BB_Resolution)
Blockbuster( method="noise", detail_min=1, detail_max=10, variance=1 )
Blockbuster( method="sharpen", detail_min=20, detail_max=90, strength=StrengthValue )
#
# -------------------- End Auto Strength ----------------
AddBorders( 8,8,8,8 )
LegalClip()
-black prince