PDA

View Full Version : MeGUI and deinterlaced filters


SpeakerBR
5th December 2006, 22:32
Hi,

I'm compresing an interlaced video. I'm using Avisynth to make the .avs file to work with it in VirtualDub and do the compression with the Xvid codec. I use MEgui to generate the .avs that I supply the VirtualDub. With it, I cut the video and analyse it, to put the best deinterlaced filter. The problem is that I have two episodes of the same series and MEgui mentions that I have to use a different filter.

After analyse the first episode, the Megui show it to me:

http://img172.imageshack.us/img172/2590/epi01md0.jpg

And the .avs file resulting has got the next lines:

edeintted = last.AssumeTFF().SeparateFields().SelectEven().EEDI2(field=-1)
TDeint(order=1,full=false,edeint=edeintted)


After analyse the second episode, the Megui show it to me:

http://img178.imageshack.us/img178/4315/epi02ig9.jpg

And between the options, I can not select the filter than I use with the first episode. The next image show the options available:

http://img274.imageshack.us/img274/8576/epi02opcionesth5.jpg

The second episode .avs file resulting has got the next lines:

edeintted = AssumeTFF().SeparateFields().SelectEven().EEDI2(field=-1)
tdeintted = TDeint(edeint=edeintted,order=1)
tfm(clip2=tdeintted).tdecimate(hybrid=3)

My question is if this is normal (Than the same program, with a similar video, say that i use another filter). At all cases, the quality of image is good?

I want to know if it's normal to use another filter for a similar video in the same program?. And of the filters I can select, wich one the best image quality?

Thanks very much!

check
5th December 2006, 23:18
is the show an animation or live action?

SpeakerBR
5th December 2006, 23:46
It's a live action.

ADDED: I had try to use the anothers filters: TIVTC and Decomb IVTC, but I the meGUI always write the same .avs.

cbarroso
8th December 2006, 03:56
That is kind of bug. Clear and recheck the deinterlace box and it'll change.

SpeakerBR
8th December 2006, 19:32
That is kind of bug. Clear and recheck the deinterlace box and it'll change.

It's true. Thanks very much.

Now I can test the another filters.