Mr.Radar
27th August 2005, 05:33
Recently my VCR took a dive (literally) so I've been capturing episodes of Battlestar Galactica with my computer and burning hem to DVD instead of taping them. The resuls look okay (better than VHS at leasr), but I was wondering if you guys could reccomed me some filters to clean the video up a bit. The main problem is that there's lots of noise and the contrast isn't great either. Here are some pics that demonstrait this:
http://webpages.charter.net/tknott/bsg/bsg1.jpg
http://webpages.charter.net/tknott/bsg/bsg2.jpg
http://webpages.charter.net/tknott/bsg/bsg3.jpg
Here is the script I used for last week's show:
loadplugin("d:\program files\avisynth 2.5\plugins\avisynth_c.dll")
loadCplugin("d:\program files\avisynth 2.5\plugins\SmartDecimate.dll")
#load & join files (DV type 2 in AVI container)
avisource("bsg206.avi.05-08-19_21-11.00.avi") + avisource("bsg206.avi.05-08-19_21-24.00.avi") + avisource("bsg206.avi.05-08-19_21-36.00.avi") + avisource("bsg206.avi.05-08-19_21-49.00.avi") + avisource("bsg206.avi.05-08-19_22-01.00.avi")
#crop off top & bottom (black area bordrerng 16:9 image)
crop(0, 57, 0, -59)
#remove commercals
trim(3005, 17240) + trim(24022, 44460) + trim(49712, 64266) + trim(70455, 84928) + trim(90961, 105374) + trim(110025, 111164)
#cropping results in interlaced file w/ tff
assumetff()
#smartdecimate needs yuy2 or yv12
converttoyuy2()
#recover orignal progressive film-rate (23.976 fps) frames
SmartDecimate(tel=0.80)
#make frames 16:9 anamorphic
lanczosresize(720,480)
#32Hz -> 48KHz
ssrc(48000)
So, anyone have any filter/script reccomeations for me?
http://webpages.charter.net/tknott/bsg/bsg1.jpg
http://webpages.charter.net/tknott/bsg/bsg2.jpg
http://webpages.charter.net/tknott/bsg/bsg3.jpg
Here is the script I used for last week's show:
loadplugin("d:\program files\avisynth 2.5\plugins\avisynth_c.dll")
loadCplugin("d:\program files\avisynth 2.5\plugins\SmartDecimate.dll")
#load & join files (DV type 2 in AVI container)
avisource("bsg206.avi.05-08-19_21-11.00.avi") + avisource("bsg206.avi.05-08-19_21-24.00.avi") + avisource("bsg206.avi.05-08-19_21-36.00.avi") + avisource("bsg206.avi.05-08-19_21-49.00.avi") + avisource("bsg206.avi.05-08-19_22-01.00.avi")
#crop off top & bottom (black area bordrerng 16:9 image)
crop(0, 57, 0, -59)
#remove commercals
trim(3005, 17240) + trim(24022, 44460) + trim(49712, 64266) + trim(70455, 84928) + trim(90961, 105374) + trim(110025, 111164)
#cropping results in interlaced file w/ tff
assumetff()
#smartdecimate needs yuy2 or yv12
converttoyuy2()
#recover orignal progressive film-rate (23.976 fps) frames
SmartDecimate(tel=0.80)
#make frames 16:9 anamorphic
lanczosresize(720,480)
#32Hz -> 48KHz
ssrc(48000)
So, anyone have any filter/script reccomeations for me?