I am trying to convert an NTSC interlaced video to pal to send overseas. I am using avisynth 2.5.
LoadPlugin("MPEG2DEC3dg.dll")
LoadPlugin("SmoothDeinterlacer.dll")
mpeg2source("d:\st\st1.d2v")
SeparateFields()
Weave()
SmoothDeinterlace(doublerate=true)
#ConvertFPS(50)
ChangeFPS(50)
LanczosResize(720,576)
SeparateFields()
SelectEvery(4,1,2)
Weave()
Converttoyuy2()
I get unrecognized exception on line 9. If I try to use convertfps instead of changefps I get convertfps needs yuy2 input. I tried adding the line converttoyuy2() before this command with no help. I have the plugins in the avisynth directory. any help?
+ Reply to Thread
Results 1 to 5 of 5
-
-
Just as an experiment, try this script with your source...
LoadPlugin("MPEG2DEC3dg.dll")
LoadPlugin("SmoothDeinterlacer.dll")
mpeg2source("d:\st\st1.d2v")
SeparateFields()
LanczosResize(720,288).Weave()
AssumeFPS(25.000, false)
ConvertToYUY2(interlaced=true) -
I changed my script to the following and it seems to load up ok. Does this script seem ok. Again my source is a wedding dvd video that is interlaced.
LoadPlugin("D:\Program Files\AviSynth 2.5\plugins\MPEG2DEC3dg.dll")
LoadPlugin("D:\Program Files\AviSynth 2.5\plugins\SmoothDeinterlacer.dll")
mpeg2source("d:\st\st1.d2v")
SeparateFields()
Weave()
converttoyuy2()
SmoothDeinterlace(doublerate=true)
LanczosResize(720,576)
#ConvertFPS(50)
ChangeFPS(50)
SeparateFields()
SelectEvery(4,1,2)
Weave()
Converttoyuy2()
Similar Threads
-
how to slow down interlaced Ntsc recording of Pal ?
By spiritgumm in forum Video ConversionReplies: 20Last Post: 11th Oct 2010, 19:59 -
NTSC video with a film-like/PAL to NTSC conversion type of look that shouldn't
By Bix in forum RestorationReplies: 34Last Post: 8th Feb 2010, 15:17 -
PAL to NTSC, NTSC to PAL framerate conversion?
By Baldrick in forum Video ConversionReplies: 44Last Post: 5th Dec 2009, 23:31 -
NTSC to PAL, PAL to NTSC framerate conversion?
By Baldrick in forum Video ConversionReplies: 23Last Post: 23rd Apr 2008, 11:19 -
PAL to NTSC DVD Conversion Problem
By squallx404 in forum Newbie / General discussionsReplies: 4Last Post: 8th Oct 2007, 05:16