tried to do my first compression on a short AMV in VDMod I'm doing for a friends birthday. I had a simple AVISynth script:
Code: Select all
avisource("myoriginalavi.avi")
ConvertToYV12(interlaced=true)
deen("a3d",4)
mftoon()
crop(8,0,-8,-0)
LanczosResize(384,288)
Code: Select all
avisource("myavifile.avi")
ConvertToYV12(interlaced=true)
deen("a3d",4)
Code: Select all
avisource("mynewavi.avi")
mftoon()
crop(8,0,-8,-0)
LanczosResize(384,288)
I know you aren't suppose to recompress a compressed file, but is the uncompressed AVI file okay to do this two-step process?
not worried about having the 2 large files, nor the time involved, but is it just possible to split a script like shown above without loosing quality in the final product?
thanks in advance
