digitalFAQ.com Forums [Archives]

digitalFAQ.com Forums [Archives] (http://www.digitalfaq.com/archives/)
-   Avisynth Scripting (http://www.digitalfaq.com/archives/avisynth/)
-   -   Avisynth: Filters for TV Captures? (http://www.digitalfaq.com/archives/avisynth/1661-avisynth-filters-tv.html)

LadyMiles 11-21-2002 07:37 PM

Avisynth: Filters for TV Captures?
 
I capture television shows with my ATI AIW 7500 in mpeg2.
What are the best filters to clean up this source FLuxsmooth, Blockbuster, Convulotion ?

black prince 11-21-2002 09:30 PM

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

TKS 11-21-2002 10:07 PM

question?
 
I dont wanna sound stupid (too late) but what do you use to make your avisynth scripts with.. I fooled around with using Gknot to create .avs scripts then use them with tmpgenc...

tks

kwag 11-21-2002 10:20 PM

Hi TKS,

Hand made. Raw power :lol:
Check this thread, which talks about the filters that black prince described above: http://www.kvcd.net/forum/viewtopic.php?t=1604

-kwag

TKS 11-21-2002 10:40 PM

hehe
 
Right from scratch eh? :) Oh well... Ill get a hang of it ..


I have a basic understanding of some of the filters though.. Ive been doing alot of experimenting with Blockbuster... what can i say? NICCEE!!

tks


All times are GMT -5. The time now is 09:53 AM  —  vBulletin © Jelsoft Enterprises Ltd

Site design, images and content © 2002-2024 The Digital FAQ, www.digitalFAQ.com
Forum Software by vBulletin · Copyright © 2024 Jelsoft Enterprises Ltd.