iluvatar
8th November 2002, 17:17
hi people, atm i'm trying to rip a dvd which is pretty noisy. so i searched this forum and found the following avs-script (arranged by Acaila) which i plan to use with AVISynth v2.06:
Source=MPEG2source("D:\DivX Rip\DivX\X-Men\X-Men_64bit.d2v").Crop16,74,696,432)
Temporal=Source.TemporalSoften2(1,5,25).MergeChroma(Source)
Spatial=SmoothHiQ(Temporal,3,25,10,192,3).MergeLuma(Temporal)
Movie=Spatial.Trim(0,136800).BicubicResize(672,288,0,0.5)
Credits=Trim(Source,136801,0).TemporalSmoother(10).BilinearResize(672,288)
Return Movie+Credits
i did these customizations:
- changed movie name, cropping and resizing
- renamed "TemporalSoften2" -> "TemporalSoften"
- added LoadPlugin("mpeg2dec.dll")
- added LoadVirtualDubPlugin("smoothhiq.vdf", "SmoothHiQ")
when opening this script with VirtualDub v1.4.10 i allways get an error in the line "Spatial=SmoothHiQ(Temporal,3,25,10,192,3).MergeLuma(Temporal)". it seems like SmoothHiQ's parameter list isn't ok. i tried SmoothHiQ v1.1 and SmoothHiQ v2.11 - no success.
could someone please give me a hint for getting this script to work ? what version of SmoothHiQ do i need ?
christian
Source=MPEG2source("D:\DivX Rip\DivX\X-Men\X-Men_64bit.d2v").Crop16,74,696,432)
Temporal=Source.TemporalSoften2(1,5,25).MergeChroma(Source)
Spatial=SmoothHiQ(Temporal,3,25,10,192,3).MergeLuma(Temporal)
Movie=Spatial.Trim(0,136800).BicubicResize(672,288,0,0.5)
Credits=Trim(Source,136801,0).TemporalSmoother(10).BilinearResize(672,288)
Return Movie+Credits
i did these customizations:
- changed movie name, cropping and resizing
- renamed "TemporalSoften2" -> "TemporalSoften"
- added LoadPlugin("mpeg2dec.dll")
- added LoadVirtualDubPlugin("smoothhiq.vdf", "SmoothHiQ")
when opening this script with VirtualDub v1.4.10 i allways get an error in the line "Spatial=SmoothHiQ(Temporal,3,25,10,192,3).MergeLuma(Temporal)". it seems like SmoothHiQ's parameter list isn't ok. i tried SmoothHiQ v1.1 and SmoothHiQ v2.11 - no success.
could someone please give me a hint for getting this script to work ? what version of SmoothHiQ do i need ?
christian