scmccarthy
4th May 2003, 01:49
Actually, this is a script example of using both DVD2AVI FORCE FILM and not using it with DeComb. There was about a chapter and a half where FORCE FILM did not work, so I made two versions of the d2v files:
LoadPlugin("mpeg2dec3")
LoadPlugin("UnFilter")
LoadPlugin("DeComb")
force=mpeg2source("D:\WEDDNGLB\force.d2v")
none=mpeg2source("D:\WEDDNGLB\none.d2v")
a=trim(force,0,85815)
b=trim(none,107270,127215)
b=telecide(b,post=false,blend=false)
b=decimate(b)
c=trim(force,101773,0)
AudioDub(a+b+c,wavsource("D:\WEDDNGLB\vts_02 AC3 T01 2_0ch 192Kbps 48KHz.wav"))
Crop(4,68,712,360)
LanczosResize(712,396)
Levels(0,1.2,245,0,255)
CropBottom(12)
UnFilter(-15,-8)
Here I applied Decomb to none.d2v. The reason that the numbers in trim() do not seem to line up is because there are five frames in none.d2v for every four in force.d2v. After audiodub(), I can treat everything as I normally do.
Stephen
LoadPlugin("mpeg2dec3")
LoadPlugin("UnFilter")
LoadPlugin("DeComb")
force=mpeg2source("D:\WEDDNGLB\force.d2v")
none=mpeg2source("D:\WEDDNGLB\none.d2v")
a=trim(force,0,85815)
b=trim(none,107270,127215)
b=telecide(b,post=false,blend=false)
b=decimate(b)
c=trim(force,101773,0)
AudioDub(a+b+c,wavsource("D:\WEDDNGLB\vts_02 AC3 T01 2_0ch 192Kbps 48KHz.wav"))
Crop(4,68,712,360)
LanczosResize(712,396)
Levels(0,1.2,245,0,255)
CropBottom(12)
UnFilter(-15,-8)
Here I applied Decomb to none.d2v. The reason that the numbers in trim() do not seem to line up is because there are five frames in none.d2v for every four in force.d2v. After audiodub(), I can treat everything as I normally do.
Stephen