View Single Post
Old 24th March 2007, 20:47   #1  |  Link
ficofico
Registered User
 
Join Date: Nov 2006
Posts: 146
A very hard work (a lot of filter)

I want to encode 5 hours of mpeg recording using avisynth filter.
I have italy-france ( The final ) football match recorded with my dvdrecording ( sp recording), The mpeg file are interlaced and with a not good quality, I want to encode with x264 insane quality and I'm not afraid for time to spending!!!

I ask for some script improvement, This is what I use at this moment ( the script is using in virtual dub, The returned avi file without compression, next time pass trough megui)

Code:
DGDecode_mpeg2source("K:\Satellite\prove\3-parte.d2v",info=3)

ColorMatrix(hints=true)

mt("mcbob")

YToUV(FFT3DFilter(sigma=3, plane=1, bw=32, bh=32).UToY,\
FFT3DFilter(sigma=3, plane=2, bw=32, bh=32).VToY,\
FFT3DFilter(sigma=2, plane=0, bw=32, bh=32))
YToUV(FFT3DFilter(sigma=3, plane=1, bw=4, bh=4).UToY,\
FFT3DFilter(sigma=3, plane=2, bw=4, bh=4).VToY,\
FFT3DFilter(sigma=2, plane=0, bw=4, bh=4))

mt("Dehalo_alpha")

LimitedSharpenfaster(ss_x=2.0,ss_y=2.0,smode=3,strength=150,overshoot=7)

Lanczosresize(640,512)
400 mb - 9 hours of encoding without recompression!!! I want more

ORIGINAL MPEG FILE
x264 ENCODED FILE

Last edited by ficofico; 24th March 2007 at 21:20.
ficofico is offline   Reply With Quote