Welcome to Doom9's Forum, THE in-place to be for everyone interested in DVD conversion.

Before you start posting please read the forum rules. By posting to this forum you agree to abide by the rules.

Domains: forum.doom9.org / forum.doom9.net / forum.doom9.se

 

Go Back   Doom9's Forum > Capturing and Editing Video > Avisynth Usage
Register FAQ Today's Posts Search

Reply
 
Thread Tools Search this Thread
Old 26th March 2006, 14:51   #1  |  Link
Nick Less
Registered User
 
Join Date: May 2005
Posts: 47
Framerate changing because of decomb.dll?

I have a problem ith my script. I did it according to the guides here.

Code:
LoadPlugin("c:\Progs\DGDecode.dll")
LoadPlugin("C:\Program Files\GordianKnot\AviSynthPlugins\decomb.dll") 
MPEG2Source("C:\WKWAI\In the mood for love.d2v")
Telecide(order=0)
Decimate(cycle=5)
Crop(2,60,-8,-56)
BilinearResize(688,384)
Everything works and the video comes up great looking after encoding to xvid but the problem is it's framerate is changed to 20 instead 25 that the source has. If i remove decomb.dll line and telecide and decimate lines, the framerate is ok. What do i need to do to make it work at 25? Framerate change has nothing to do with VDub encoding, it's 20 at the time i load it to VDub.

The source is a dvb capture, 544*576, 25FPS, DAR 4:3

I'm completely inexperienced as far as avisynth is concerned, so if there's something else wrong with the script, let me know
Nick Less is offline   Reply With Quote
Old 26th March 2006, 14:57   #2  |  Link
Dreassica
Registered User
 
Join Date: May 2002
Posts: 384
telecide/decimate combo is for NTSc material only, not for pal. U don't need IVTC, u need Deinterlacing, I suggest trying Tdeint instead.
Dreassica is offline   Reply With Quote
Old 26th March 2006, 20:13   #3  |  Link
Guest
Guest
 
Join Date: Jan 2002
Posts: 21,868
Take out the Decimate() call.
Guest is offline   Reply With Quote
Old 26th March 2006, 20:59   #4  |  Link
Nick Less
Registered User
 
Join Date: May 2005
Posts: 47
It works, thanks alot

Now, i've been trying different scripts from the site and came up with something like this, it works and the video looks ok. Can you tell me if ths is ok for deinterlace analogue capture? or should i use different script?

Code:
LoadPlugin("D:\backup\AviSynth\EEDI2\EEDI2.dll")
LoadPlugin("D:\backup\AviSynth\TDeint\TDeint.dll")
LoadPlugin("D:\backup\AviSynth\TIVTC\TIVTC.dll")
MPEG2Source("H:\Capture\1.d2v")
AssumeTFF()
Interp = SeparateFields().SelectEven().EEDI2(field=1)
Deinted=TDeint(order=1,field=1,edeint=Interp)
TFM(mode=6,order=1,PP=7,slow=2,mChroma=true,Clip2=Deinted)
TDecimate(mode=1)
Crop(14,2,-10,-8)
BilinearResize(592,448)
Nick Less is offline   Reply With Quote
Old 27th March 2006, 06:09   #5  |  Link
Lil' Jer
Registered User
 
Join Date: Jan 2006
Posts: 156
Quote:
Originally Posted by Dreassica
telecide/decimate combo is for NTSc material only, not for pal. U don't need IVTC, u need Deinterlacing, I suggest trying Tdeint instead.
Flat out wrong. You can use the frame matcher on field-shifted PAL material. Not to mention the 1-in-25 decimation mode that would be used with PAL material as well.

Last edited by Lil' Jer; 27th March 2006 at 06:18.
Lil' Jer is offline   Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT +1. The time now is 13:27.


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.