Hi, I know this problem has been posted many times on this forum
but I couldn't find an answer to this problem so anyone please help...

I have a PAL DVD+r, I load it up in dvd2avi and here's what I get:

Aspect ratio - 4: 3
Frame Rate - 25.000 fps
Video typ - PAL
Frame type - Interlaced

I followed the VI. PAL (Video) DVD (25i Fps) -> NTSC DVD (29.97i Fps)
guide on http://www.geocities.com/xesdeeni2001/StandardsConversion/index.html
and it seems to be some problem with my script for avisynth.

When I load the script in tmpgenc, I only see the first upper half of the picture. The video also seems to be incomplete.

Here is my script:
LoadPlugin("C:\program\Avisynth\PlugIns\2_5_x\MPEG 2DEC.dll")
LoadPlugin("C:\program\Avisynth\PlugIns\2_5_x\Smoo thDeinterlacer.dll")
MPEG2Source("c:\poison\project.d2v")
SmoothDeinterlace(doublerate=true)
LanczosResize(720,480)
ChangeFPS(59.94) # or ConvertFPS(59.94)
SeparateFields()
SelectEvery(4,1,2)
Weave()
ConvertToRGB()

When I load the d2v files it looks as it should... I was thinking about skipping this avisynth step but I guess it is there for a reason....

Any explanation to exactly what this script do would also be nice, as I've never used avisynth before I don't know much about it...

And also, many other guides I've seen requires you to convert audio also(basically pitching I guess). Why isn't it needed in this guide? Just a thought....

Would be very greatful for some help......

//Peter