# Sample script to accompany the "SD to HD with Avisynth" tutorial # at http://www.gyroshot.com/upscale1.htm # # Contact: robert.martens@gmail.com # ###### # This is a comment! From the # symbol to the end of the line, # all of this text is ignored by AviSynth. # Yadif is a specific type of plugin that can't be auto-loaded, so # we have to do it explicitly. Change the path to suit your system. LoadCPlugin("C:\Program Files\AviSynth 2.5\plugins\yadif.dll") # Open the source video, then assume bottom field first field order. # Replace testclip.avi with the name of your own clip as necessary. AVISource("testclip.avi") AssumeBFF() # Convert our input to the YV12 format, treating it as interlaced, # and then call SimpleSlugUpscale with its default settings. ConvertToYV12(interlaced=true) SimpleSlugUpscale()