Sha256: 4f5ac54023261eb54246a831e0f1d72133900aac075837039259914f26ad41e6
Contents?: true
Size: 953 Bytes
Versions: 15
Compression:
Stored size: 953 Bytes
Contents
# from http://avisynth.org/mediawiki/Enhancing_dvd_videos Video = DirectShowSource("push2.GRF", fps=160, audio=False, framecount=1000000) # fps appears to be a "max" fps [?] does it drop otherwise? 60 -> 55... Return Video # Video = ConvertToYUY2 (Video) # # # these are the size of your monitor that the output is displayed on. Unless it lags too much, then try experimenting with smaller values # screen_width = 1024 # CHANGE THIS TODO propagate it... # screen_height = 768 # CHANGE THIS # # # note that you can get even better looking images by say, upscaling to 2x your current screen resolution, by uncommenting the following two lines # screen_width = screen_width*2 # screen_height = screen_height*2 # # Video = Lanczos4Resize (Video, screen_width, screen_height) # said to be a good upsampler...hmm... # # Video = Sharpen (Video, 0.78) # Helps sharpen smoothness enlarging does. 0.78 = (1.25*(1024/720))-1 # Return Video
Version data entries
15 entries across 15 versions & 2 rubygems