PDA

View Full Version : Inverse Telecline error


gurabli
27th September 2003, 21:16
I am using Gordian Knot 0.28.5.3 beta


I am having problems with the Inverse Telecline option.

Movie to encode: Stephen King’s Storm of the Century.
DVD2AVI shows
29.970 fps
Video type: NTSC
Frame Type: Interlaced

I checked (according to the guide “Force Film, IVTC, and Deinterlacing - what is DVD2AVI trying to tell you and what can you do about it.”) that I have : “ in every 5 frames, you see 2 interlaced frames and 3 non-interlaced (progressive) frames, then it has been telecined and can be IVTC'd (Inverse Telecined)”.

So I have 2 interlaced and 3 non-interlaced frames.
According to this, I made the DVD2AVI project file without FORCED-FILM enabled.
Than in GKnot’s Save&Encode window I set Field Operation to NONE, and after I checked “IVTC in avs”. The result avi file was wrong, remained the same (2 int. 3 prog. Frames).

Than I tried to turn on the Field Operation Inverse Telecline, but that Virtual DubMod reports me an error:
Avisynth open failure:
Script error: Telecide does not have a named argument “order”
storm.avs, Line 24

Here is my .avs file:


#
# Created with Gordian Knot
#
# http://gknot.doom9.org
#
# PLUGINS
SetWorkingDir("C:\PROGRA~1\Gordian Knot\")
LoadPlugin("mpeg2dec3.dll")
LoadPlugin("decomb.dll")
#LoadPlugin("dgbob.dll")
#LoadPlugin("Convolution3d.dll")
#LoadPlugin("FluxSmooth.dll")
#LoadPlugin("TomsMoComp.dll")
#LoadPlugin("VSFilter.dll")
#LoadPlugin("SimpleResize.dll")
#
# SOURCE
mpeg2source("D:\Storm of the\storm.d2v")
#
# TRIM
#trim(startframe,endframe)
#
# IVTC
Telecide(order=1,guide=1).Decimate()
# or use
#IVTC(44,11,95)
#GreedyHMA(1,0,4,0,0,0,0,0)
#
# CROPPING
crop(8,4,706,472)
#
# DEINTERLACING (1)
#FieldDeinterlace()
#FieldDeinterlace(blend=false)
#TomsMoComp(1,5,1)
#
# DEINTERLACING (2)
#SeparateFields().SelectEven()
# or maybe
#DGBob(order=1,mode=0)
# DEINTERLACING (3) - special requests
#GreedyHMA(1,0,0,0,0,0,0,0)
#Telecide()
#SeparateFields()
#
#
# SUBTITLES
#VobSub("FileName")
#
# RESIZING
LanczosResize(544,400)
#
# DENOISING: choose one combination (or none)
# 1) little noise
#Temporalsoften(2,3,3,mode=2,scenechange=6)
#mergechroma(blur(1.3))
#FluxSmooth(5,7)
#
# 2) medium noise
#Temporalsoften(3,5,5,mode=2,scenechange=10)
#Convolution3d("moviehq")
#FluxSmooth(7,7)
#
# 3) heavy noise
#Temporalsoften(4,8,8,mode=2,scenechange=10)
#Convolution3d("movielq")
#FluxSmooth(10,15)
#
# BORDERS
#AddBorders(left,top,right,bottom)
#
# COMPRESSIBILITY CHECK
# !!!!Snip Size now has to be 14 for use in GKnot!
#SelectRangeEvery(280,14)
#
# FOOL CCEnc
#empty = BlankClip()
#AudioDub(last,empty)


I can’t find any answer to my problem in the guides.
How to encode this movie?
What options and in which combinations should I use?
In any case I ca not turn on the Inverse Telecline, it always shows the same error.

Gurabli

jggimi
27th September 2003, 23:04
Your "error" is with Gknot, not DVD2AVI. You have posted in the wrong forum.

You are using Gknot 0.28.5.3 Beta. You must have missed the info.txt file that comes with that release, which states:- GK uses decomb.dll version 5 and dgbob.dll version 1.6 (not included in rippack yet)You must choose one of the following: Remove the "order=1" operand from the Telecide filter in the script.

Install decomb.dll version 5.

Downgrade to the current 0.28.5 release of Gknot.You are correct to use the Inverse Telecine in Gknot's field operation menu, but you need to be sure of what is needed when using a beta version of Gknot. Gknot uses a suite of products that must be integrated together. Alpha and Beta releases are special cases that require additional attention.