Log in

View Full Version : ivtc question again :P


c0de_v0id
13th September 2002, 03:53
hi, this is my first post here
i have an hkdvd anime which is interlaced mostly with this pattern 1,1,0,0,0(1's are interlaced). of course there are other out-of-pattern interlaced frames as well.(really ****** up :P)
just wondering if there's a way to ivtc it? i mean like delete one of the interlaced frame and then deinterlace the other one?(but then it wont give u 24fps)
or just keep the frame-rate and use deinterlace?
(I tried using IVTC and decomb filter, followed by telecide but telecide didn't do a good job of cleaning up the rest.)
any other combination of filters?
thanks

Guest
13th September 2002, 04:46
You didn't use Decomb correctly, because what you said makes no sense. What script did you use?

c0de_v0id
13th September 2002, 05:01
decimate(mode=2)
telecide()
i think decimate did it right, one of the interlaced frame disappeared. but telecide didn't blend the interlaced ones.

:edit:
if u've seen a hkdvd u'll know.. i think they recorded the episodes to vcr and put those into dvd

wmansir
13th September 2002, 05:40
You have the commands backwards. For IVTC it should be:

Telecide([options])
Decimate([options])

If you just want to deinterlace (no change in frame rate):

FieldDeinterlace([options])


You should really read the help file that comes with the plugin, all options are very well documented.

meleth
13th September 2002, 08:33
Try using decimate(guide=1).

I've found that i get the best reults on anime doing that.

Guest
13th September 2002, 12:26
@meleth

A little faux pas in your post, no? (You meant Telecide().)

@c0de_v0id

Try this script for your anime:

Telecide(guide=1,gthresh=50)
Decimate()

Don't you read help files? :)

meleth
13th September 2002, 12:35
hehe yeah, my mistake :P

Dali Lama
13th September 2002, 12:48
While we are on the topic of IVTC...

@Donald

I am hesitant to use reverse=true in telecide, although I think it makes the IVTC of my movie better. Its a HK Kung Fu film. I have determined that the field order is Bottom first. By this basis alone can I make judgement to use reverse=true? I know in the IT filter it needs such a parameter.

Thanks for the clarification,

Dali

P.S. I think I recall you saying a while back that Decomb doesn't need to know the field order...correct?

Guest
13th September 2002, 14:11
@Dali Lama

Look here for an explanation of the theory of operation of Telecide() and the significance of the reverse option:

http://forum.doom9.org/showthread.php?s=&threadid=31475

In short, yes, Telecide() does not need to know the field order, and the reverse option helps only in some pathological cases, such as where blended fields predominate in only the top or bottom field.

c0de_v0id
13th September 2002, 22:50
thanks you guys...
telecide(gthresh=50,guide=1) works but it didn't totally blended the interlaced lines. i can still see small lines there.
im testing the script with different options right now.. i'll post my results here later

Guest
14th September 2002, 03:46
First use the debug utility to determine if the frames with residual combing are being detected as combed. If they are not, reduce the threshold parameter to Telecide() until they are detected as combed. If they are detected as combed, reduce the dthreshold parameter to Telecide() until the artifacts go away.