Sha256: 62bad0a7dda6543258286d0d8b507995c48336b63e8327b1fe6ca6ea7d237ebe
Contents?: true
Size: 1.33 KB
Versions: 13
Compression:
Stored size: 1.33 KB
Contents
# from http://avisynth.org/mediawiki/Enhancing_dvd_videos #Video1 = DirectShowSource("push2.GRF", fps=35, audio=False, framecount=1000000) # fps appears to be a "max" fps #Video2 = DirectShowSource("", fps=35, audio=False, framecount=1000000) # fps appears to be a "max" fps #Video1 = DirectShowSource("push2.GRF", fps=35, audio=False, framecount=1000000) # fps appears to be a "max" fps Video1 = DirectShowSource("g:\Video\Sintel_NTSC\title01a.ts", fps=25) Video2 = DirectShowSource("push2.GRF", fps=35, audio=False, framecount=1000000) # fps appears to be a "max" fps Return Overlay(Video1, Video2, 100, 100,opacity=0.5) # # these are the size of your monitor that the output is displayed on. Unless it lags too much, then try experimenting with smaller values # Video = ConvertToYUY2 (Video) # 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
13 entries across 13 versions & 2 rubygems