Log in

View Full Version : Gordian Knot Selfcloses


Stan64
5th September 2004, 16:07
I'm trying to do a compressbility check. I run this AVS file:

Import("\Program Files\AviSynth 2.5\plugins\vdub_filters.avsi")
AVISource("Pokémon.Advanced.Swedish.04.avi")

ConvertToRGB()
ComplementParity
separatefields
VD_DeinterlaceSmooth()
VD_SmartSmoother(5, 40, false)
VD_WarpSharp(76)
Crop(2, 0, 718, 576)

Lanczos4Resize(640, 480)
# Aspect Error 0,3%
ConvertToYUY2()

I run XviD with pretty common settings.

manono
6th September 2004, 09:51
Hi-

Add:

SelectRangeEvery(280,14)

to the end of the script for the standard 5% compression test.

And don't forget to add "()" after each command, like:

ComplementParity()
separatefields()

It'll give you a slight boost in encoding speed.