From 83c09c8ecc0973a8684897d9b0ac17a4fbac0cb2 Mon Sep 17 00:00:00 2001 From: rogerdpack Date: Thu, 29 Dec 2011 11:48:47 -0700 Subject: [PATCH] raw --- raw/go_upscaling.bat | 12 ++++++++++++ raw/push3.grf | Bin 0 -> 3584 bytes raw/upconvert_from_screen_me2.avs | 19 +++++++++++++++++++ 3 files changed, 31 insertions(+) create mode 100644 raw/go_upscaling.bat create mode 100644 raw/push3.grf create mode 100644 raw/upconvert_from_screen_me2.avs diff --git a/raw/go_upscaling.bat b/raw/go_upscaling.bat new file mode 100644 index 0000000..07f4917 --- /dev/null +++ b/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 diff --git a/raw/push3.grf b/raw/push3.grf new file mode 100644 index 0000000000000000000000000000000000000000..54edf6d57fb1eb8ae36f8ae8c27d28ec6ad898a4 GIT binary patch literal 3584 zcmeHJO-jQ+6#mj$K|xRi7p_9L5=dC5q}D`7brEL8UnPHO`=2XN#XWlyCS2SR`goS39Jy^EH+1Hs2*LeN3DX~Q84d2bTeRTef;+KA+`|d?VI2>+8K+Lo<&iO_ zTK`GTPPE)-n96=%JT?}`zLu3UsqcdHKG3T&|4@#Byy@iamgar_^F11&4e3R!U>V0a z#W`wx2~=^VDB)}YCh~Y>rS@5yJ-!nx;!>ZRcv3V=jSbdsAJ^pY$#3EXCF&|;7yGne z6SJ@l2YU)DadbIn5$+HchzWElbx6!6lwPFtE478b43DPr(m@56>@IcJ7=!$U{yU7P WLh2diB?>Jq(YoY1id}n?uHYB)Lpa3% literal 0 HcmV?d00001 diff --git a/raw/upconvert_from_screen_me2.avs b/raw/upconvert_from_screen_me2.avs new file mode 100644 index 0000000..19c3c29 --- /dev/null +++ b/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