View Single Post
Old 20th February 2009, 12:34   #720  |  Link
carlmart
Carlos Martinez
 
Join Date: Aug 2005
Posts: 288
Well, in the end I could make it work. The script that I used, suggested in another forum, was this:

LoadPlugin("C:\video\DGIndex\DGDecode.dll")
LoadPlugin("C:\video\AviSynth 2.58\plugins\RePAL.dll")
LoadCPlugin("C:\video\AviSynth 2.58\plugins\Yadif.dll")
Video = Video.Yadif(Mode=1,Order=1)
Video = Video.RePAL()
Video = Video.AssumeFPS(25) #for HCEnc

Video = Video.ConvertToYV12
Video = Video.Lanczos4Resize(720,480,0,66,0,-66)

The process had some hiccups, saying from time to time that there were some mpeg errors. But to my surprise HCEnc went on and finished the conversion.

Except for those "errors" everything went perfect and I could end up with a corrected video file.

The only problem is that I now will have to get to understand what was done, as I am completely new to this world of scripts.
carlmart is offline   Reply With Quote