View Single Post
Old 3rd September 2008, 17:27   #11  |  Link
RjBeals
Resu Deretsiger
 
RjBeals's Avatar
 
Join Date: Nov 2006
Location: SC, USA
Posts: 31
Okay - here's the best I could do on the above clip.

Code:
LoadPlugin("C:\Documents and Settings\bealr0sp\Desktop\Downloads\mvtools-v1.10.2.1\mvtools.dll")
LoadPlugin("C:\Program Files\AviSynth 2.5\filters\TDeint\TDeint.DLL")
source = AVISource("C:\Documents and Settings\...\capture_30sec.avi")

#-----------------DeGrain---------------------
#
# Yup - I would think I would want to Deinterlace, then apply a noise filter? But I followed your suggestion.
#
#

backward_vec2 = source.MVAnalyse(isb = true, delta = 2, pel = 2, overlap=4, sharp=1, idx = 1)
backward_vec1 = source.MVAnalyse(isb = true, delta = 1, pel = 2, overlap=4, sharp=1, idx = 1)
forward_vec1 = source.MVAnalyse(isb = false, delta = 1, pel = 2, overlap=4, sharp=1, idx = 1)
forward_vec2 = source.MVAnalyse(isb = false, delta = 2, pel = 2, overlap=4, sharp=1, idx = 1)
source.MVDegrain2(backward_vec1,forward_vec1,backward_vec2,forward_vec2,thSAD=400,idx=1)

TDeint()    
FadeIO2(30) 
Crop(8, 8, -8, -8) 
Lanczos4Resize(320,240)
Tweak(hue=-6.1, sat=1.0, bright=-13, cont=1.1, coring=true, sse=false)
ENCODE VIDEO (29.97 FPS):
Singlepass XVID at target bitrate of 1000.
Lame (MP3) 128 CBR.

The above 30 second clip ends up at 4,435 KB.
Not Great... I tried 2-pass but it barely made a difference (on this clip that is).
__________________
For a Minute.... I Lost Myself

Last edited by RjBeals; 3rd September 2008 at 17:28. Reason: fixed code.
RjBeals is offline   Reply With Quote