Swin
13th June 2003, 01:06
Hi,
I fairly new at this so forgive me if I've posted in the wrong group.
I have been converting some AVI files with a frame rate of 29.97 fps to MPG format with a frame rate of 25 fps suitable for a PAL VCD.
I have used a very simple one line command (ConverFPS(25)) in the Avisynth script when running DVD2SCVD to achive this so far but have come across many posts by Xesdeeni with slightly more complicated scripts to achive the same effect. I basically wondered what this kind of script would do and would there be any advantage in using it for this particular type of conversion.
This script was developed by Xesdeeni and easy2Bcheesy here (http://forum.doom9.org/showthread.php?s=&threadid=45459&perpage=20&highlight=ConvertFPS&pagenumber=2)
The final AVI Synth script I used for NTSC to PAL is...
# NTSC (29.97fps) to PAL (25fps)
LoadPlugin("SmoothDeinterlacer.dll")
AVISource("NTSC-Source.avi") # Change to your filename
SeparateFields()
Weave()
SmoothDeinterlace(doublerate=true,lacethresh=1,staticthresh=20)
LanczosResize(720,576)
ChangeFPS(50)
SeparateFields()
SelectEvery(4,1,2) # Change to SelectEvery(4,0,3) if output video looks very jerky
Weave()
ConvertToRGB() # Might not be essential
Stunning NTSC-PAL conversion using VirtualDub!! Seriously guys, the quality has to be seen to be believed.
Many thanks
Swin
I fairly new at this so forgive me if I've posted in the wrong group.
I have been converting some AVI files with a frame rate of 29.97 fps to MPG format with a frame rate of 25 fps suitable for a PAL VCD.
I have used a very simple one line command (ConverFPS(25)) in the Avisynth script when running DVD2SCVD to achive this so far but have come across many posts by Xesdeeni with slightly more complicated scripts to achive the same effect. I basically wondered what this kind of script would do and would there be any advantage in using it for this particular type of conversion.
This script was developed by Xesdeeni and easy2Bcheesy here (http://forum.doom9.org/showthread.php?s=&threadid=45459&perpage=20&highlight=ConvertFPS&pagenumber=2)
The final AVI Synth script I used for NTSC to PAL is...
# NTSC (29.97fps) to PAL (25fps)
LoadPlugin("SmoothDeinterlacer.dll")
AVISource("NTSC-Source.avi") # Change to your filename
SeparateFields()
Weave()
SmoothDeinterlace(doublerate=true,lacethresh=1,staticthresh=20)
LanczosResize(720,576)
ChangeFPS(50)
SeparateFields()
SelectEvery(4,1,2) # Change to SelectEvery(4,0,3) if output video looks very jerky
Weave()
ConvertToRGB() # Might not be essential
Stunning NTSC-PAL conversion using VirtualDub!! Seriously guys, the quality has to be seen to be believed.
Many thanks
Swin