Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
raw
  • Loading branch information
rdp committed Dec 29, 2011
1 parent fc9d415 commit 83c09c8
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 0 deletions.
12 changes: 12 additions & 0 deletions raw/go_upscaling.bat
@@ -0,0 +1,12 @@
mplayer -nocache -geometry 70%x70% -sws 9 -ssf ls=25.0 -ssf cs=7.0 -vf hqdn3d=7:7:7:7,scale=1680:-10:0:0:3 upconvert_from_screen_me2.avs

@rem hqdn3d[=luma_spatial:chroma_spatial:luma_tmp:chroma_tmp]




@rem 0:1:4:4 for DVD LOL
@rem pp=hb:y/vb:y,


@rem mplayer autoq=100 -nocache -geometry 50%x40% -sws 9 -ssf ls=75.0 -ssf cs=7.0 -vf nr=1000,scale=1680:-10:0:0:4 upconvert_from_screen_me2.avs
Binary file added raw/push3.grf
Binary file not shown.
19 changes: 19 additions & 0 deletions raw/upconvert_from_screen_me2.avs
@@ -0,0 +1,19 @@
# from http://avisynth.org/mediawiki/Enhancing_dvd_videos

Video = DirectShowSource("push3.GRF", fps=35, audio=False, framecount=1000000) # fps appears to be a "max" fps
Return 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
# 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

0 comments on commit 83c09c8

Please sign in to comment.