twelve20
10th May 2007, 11:26
I'm a little new to avisynth, and I posted a thread earlier about how to manually deinterlace after ivtc'ing.. with help from some other members, I was able to learn how to do it, but now I'm seeing an error in vdubmod ("out of memory").. my avisynth script is quite long, since this video (telecined ntsc) had a lot of remaining interlaced frames after ivtc'ing.. I'm using ApplyRange to apply a bob deinterlacer (securebob), and am wondering if there is a workaround to make the script shorter so I can load it in vdubmod.. the first few lines of my script are:
loadplugin("dgdecode.dll")
loadplugin("tivtc.dll")
import("mvbob.avs")
mpeg2source("Green Day - american Idiot.d2v")
tfm(pp=0)
tdecimate()
ApplyRange(0, 0, "securebob")
ApplyRange(4, 4, "securebob")
ApplyRange(8, 8, "securebob")
ApplyRange(12, 12, "securebob")
.......and it goes on
any help would greatly be appreciated :)
loadplugin("dgdecode.dll")
loadplugin("tivtc.dll")
import("mvbob.avs")
mpeg2source("Green Day - american Idiot.d2v")
tfm(pp=0)
tdecimate()
ApplyRange(0, 0, "securebob")
ApplyRange(4, 4, "securebob")
ApplyRange(8, 8, "securebob")
ApplyRange(12, 12, "securebob")
.......and it goes on
any help would greatly be appreciated :)