junglemike
27th November 2004, 00:11
Hi folx
First, i need to say that i'm a complete newbie in Avisynth usage.
I'm trying to encode a video for my Palm hendheld (480x320 screen)
Here's the script that i use:
LoadPlugin ("D:\Program Files\AviSynth 2.5\plugins\FluxSmooth.dll")
LoadPlugin ("D:\Program Files\AviSynth 2.5\plugins\convolution3d.dll")
avisource("L:\my_movie.avi")
bilinearresize(480,256)
selecteven()
ConvertToYUY2()
Convolution3D (0, 3, 4, 3, 4, 2.8, 0)
FluxSmoothT()
turnleft()
I'm using Xvid and pretty small bitrate - about 200 kbits/sec - (in order to put the file to 128 or 256mb SD card)
That's why i'm trying to use some smoother filters - to encrease compressibility of the file, so it will look better.
When i tried to use convolution - i was told by avisynth that i need a yuv colorspace - so i added a convert function.
But i don't know in what order to use the funtions.
Is there any way to speed it up?
Or maybe there is better way to do it?
TIA
First, i need to say that i'm a complete newbie in Avisynth usage.
I'm trying to encode a video for my Palm hendheld (480x320 screen)
Here's the script that i use:
LoadPlugin ("D:\Program Files\AviSynth 2.5\plugins\FluxSmooth.dll")
LoadPlugin ("D:\Program Files\AviSynth 2.5\plugins\convolution3d.dll")
avisource("L:\my_movie.avi")
bilinearresize(480,256)
selecteven()
ConvertToYUY2()
Convolution3D (0, 3, 4, 3, 4, 2.8, 0)
FluxSmoothT()
turnleft()
I'm using Xvid and pretty small bitrate - about 200 kbits/sec - (in order to put the file to 128 or 256mb SD card)
That's why i'm trying to use some smoother filters - to encrease compressibility of the file, so it will look better.
When i tried to use convolution - i was told by avisynth that i need a yuv colorspace - so i added a convert function.
But i don't know in what order to use the funtions.
Is there any way to speed it up?
Or maybe there is better way to do it?
TIA