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 |
|
|
#1 | Link |
|
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)
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
|
|
|
|
|
|
#4 | Link |
|
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)
|
|
|
|
|
|
#5 | Link | |
|
Registered User
Join Date: Jan 2006
Posts: 156
|
Quote:
Last edited by Lil' Jer; 27th March 2006 at 06:18. |
|
|
|
|
![]() |
|
|