dragon_warrior
17th October 2010, 16:35
I just wanna encode some 1080i vids to 720p and ran into this problem:
This is a part of my script
LoadPlugin("C:\Program Files\megui\tools\dgavcindex\DGAVCDecode.dll")
AVCSource("E:\HDTV.dga")
ConvertToYV12()
crop( 14, 12, -12, -10)
LoadPlugin("C:\Program Files\megui\tools\avisynth_plugin\nnedi3.dll")
LoadPlugin("C:\Program Files\megui\tools\avisynth_plugin\yadifmod.dll")
YADIFMod(edeint=NNEDI3())
Spline36Resize(1280,720)
I always get dang green lines at the bottom, either in the preview window in MeGUI or the output file. The source is 1920x1080 and if I'm not wrong, doing the crop would give a height of 1080 - (12 + 12) = 1056, which is mod16, and there's no way these dang lines would appear
Btw, if I crop after deinterlace, i.e
LoadPlugin("C:\Program Files\megui\tools\dgavcindex\DGAVCDecode.dll")
AVCSource("E:\HDTV.dga")
ConvertToYV12()
LoadPlugin("C:\Program Files\megui\tools\avisynth_plugin\nnedi3.dll")
LoadPlugin("C:\Program Files\megui\tools\avisynth_plugin\yadifmod.dll")
YADIFMod(edeint=NNEDI3())
crop( 14, 12, -12, -10)
Spline36Resize(1280,720)
it seems these lines crept up. Well, only in the preview window!!! Cuz when I do this, I kept seeing an error: "x264.exe has stopped working" and no file was output
I need help, plz. These are gonna driving me nuts :thanks:
This is a part of my script
LoadPlugin("C:\Program Files\megui\tools\dgavcindex\DGAVCDecode.dll")
AVCSource("E:\HDTV.dga")
ConvertToYV12()
crop( 14, 12, -12, -10)
LoadPlugin("C:\Program Files\megui\tools\avisynth_plugin\nnedi3.dll")
LoadPlugin("C:\Program Files\megui\tools\avisynth_plugin\yadifmod.dll")
YADIFMod(edeint=NNEDI3())
Spline36Resize(1280,720)
I always get dang green lines at the bottom, either in the preview window in MeGUI or the output file. The source is 1920x1080 and if I'm not wrong, doing the crop would give a height of 1080 - (12 + 12) = 1056, which is mod16, and there's no way these dang lines would appear
Btw, if I crop after deinterlace, i.e
LoadPlugin("C:\Program Files\megui\tools\dgavcindex\DGAVCDecode.dll")
AVCSource("E:\HDTV.dga")
ConvertToYV12()
LoadPlugin("C:\Program Files\megui\tools\avisynth_plugin\nnedi3.dll")
LoadPlugin("C:\Program Files\megui\tools\avisynth_plugin\yadifmod.dll")
YADIFMod(edeint=NNEDI3())
crop( 14, 12, -12, -10)
Spline36Resize(1280,720)
it seems these lines crept up. Well, only in the preview window!!! Cuz when I do this, I kept seeing an error: "x264.exe has stopped working" and no file was output
I need help, plz. These are gonna driving me nuts :thanks: