ammetto che non ho quella versione del filtro...
mi chiedo pero' se non potresti usare TIVTC
passo 1
CODICE
LoadPlugin("c:\avsfilters\dgdecode.dll")
LoadPlugin("c:\avsfilters\tivtc.dll")
d2vpath = "c:\vobs\ep1.d2v"
mpeg2source(d2vpath)
tfm(d2v=d2vpath,output="c:\vobs\ep1-tfm.txt")
tdecimate(mode=4,output="c:\vobs\ep1-tdec.txt")
#metti poi un resize che ti porti il video a 32*32, tanto non ti serve il primo passo...
pointresize(32,32)
passo 2
CODICE
LoadPlugin("c:\avsfilters\dgdecode.dll")
LoadPlugin("c:\avsfilters\tivtc.dll")
d2vpath = "c:\vobs\ep1.d2v"
mpeg2source(d2vpath)
tfm(d2v=d2vpath,input="c:\vobs\ep1-tfm.txt")
# If your source is not anime or cartoon then add
# vfrDec=0 into the line below
tdecimate(mode=5,hybrid=2,input="c:\vobs\ep1-tdec.txt",tfmIn="c:\vobs\ep1-tfm.txt",mkvOut="c:\vobs\ep1-timecodes.txt")
#e poi tutti gli altri filtri.. resize...
ciao
BHH