Log in

View Full Version : how to get this script working ?


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

Acaila
8th November 2002, 17:59
You are currently using the VDub version of SmoothHiQ. To make your script work you'll need the avisynth version instead. You can get it here (http://cultact-server.novi.dk/kpo/avisynth/smooth_hiq_as.html).

One update to the script:
Change Temporal=Source.TemporalSoften2(1,5,25).MergeChroma(Source) into Temporal=Source.TemporalSoften2(1,5,0). I only figured that part out after I posted the script. It should be a bit faster now and have the exact same quality as before ;).

iluvatar
8th November 2002, 18:33
thank you Acaila. at this very moment your script roasts my cpus :)

is it within the limits that i only get 1-4 fps on my dual p3 1ghz ?

christian

Acaila
8th November 2002, 20:27
Yup that's normal. It's a slow combination.