PDA

View Full Version : Telecide error?


pdottz
7th January 2006, 12:03
here's a weird problem i've been having.

this is part of a script i use for processing my captures from 3:2 ntsc.

LoadPlugin("C:\avisynth\audgraph.dll")
LoadPlugin("C:\avisynth\undot.dll")
LoadPlugin("C:\avisynth\degrainmedian.dll")
AVISource("D:\captures\maincap\grim.avi")
Telecide(order=1,guide=1,post=2)
Crop (4,4,0,0)

this has ALWAYS worked for me with no issues at all...until i installed the new Gordian Knot (newest release, new to me but i guess not so new anymore) using
version() it turns out that avs was 2.5 and i kept getting this error in vdubmod..

Telecide contains no argument called "order"

after uninstalling all avs and isntalling avs 2.56 i get this error now.

There is no function called "Telecide"

can anyone help me with this? or maybe i'm using a different version of avs that doesn't support Telecide as a function anymore. all my captures are 3:2 pulldown and nothing else, so this is the perfect script for my needs. like i pointed out, i never had issues with it before and never had to load another plugin to use Telecide.
thank you :) and as always, any help is appreciated.

manolito
7th January 2006, 12:27
There is no function called "Telecide"
You need "Decomb.dll" from Neuron2's Decomb package in your Avisynth plugin folder. You can find the latest Decomb package here:
http://www.neuron2.net/decomb/decombnew.html
Telecide contains no argument called "order"
The latest verion 5.22 of Telecide does not support the order parameter any more. It gets the field order vom Avisynth instead. You have to use AssumeTFF or AssumeBFF in your script before calling Telecide.

Cheers
manolito

pdottz
7th January 2006, 14:30
thanks manolito.

I have decomb.dll in my avisynth plugin folder. however reinstalling those other times reset the plugin directory i had. i got it working now.
but i probably wouldn't have if you hadn't helped.
once again thanks for the help :)