PDA

View Full Version : Decomb 5.1 settings for DoItFast4u ??


rkorkie
11th November 2003, 10:14
I've been trying to backup movies requiring decomb.dll. I have tried implementing the latest decomb510.dll but I get errors. This is obvious because some of decomb's command parameters have changed. Short of experimenting with each and every parameter, I'm trying to save some time. Does anyone know what are the best equivalent commands for the following:

Hybrid Content:
LoadPlugin("C:\Program Files\DoItFast4U\new.avs\decomb.dll")
Telecide()
Decimate(mode=1,threshold=3)

Processing Telecine:
LoadPlugin("C:\Program Files\DoItFast4U\new.avs\decomb.dll")
Telecide()
Decimate(cycle=5)

Processing Interlaced:
LoadPlugin("C:\Program Files\DoItFast4U\new.avs\decomb.dll")
FieldDeinterlace()

It's hard to search the forum for this cause you can't search on 1 character words (ie. "5"), so I'm starting a new thread. Hope you can point me to the right place if it's been posted. Thanx all in advance.

Caspar
8th December 2003, 05:57
Telecide(order=x)
Decimate(mode=1,threshold=3)
Where x is 0 or 1:
order (0-1, default none!) defines the field order of the clip. It is very important to set this correctly. The User Manual specifies a reliable procedure for doing so. Use order=0 for bottom field first (bff). Use order=1 for top field first (tff). You must specify order; Decomb throws an exception if you omit this parameter.

Telecide(order=x)
Decimate(cycle=5)


The decomb package comes with full documentation, the above was a copy and paste of it. Maybe you should take a look at the documents that the author, Donald provided. It helps a lot.