View Full Version : avisnth newbie problem
darkangel
26th December 2002, 13:48
i'm new to avisynth & i'm trying to use avisynth and the Convolution3d filter when i load it into cce 2.5 i get an error saying framesize 728x56 not supported even thougth i've not put that size in, i'm sure i'm overlooking something simple i've no problems doing a basic resize.
LoadPlugin("F:\Documents and Settings\Administrator\Desktop\MPEG2Dec3 v0.94\MPEG2Dec3.dll")
LoadPlugin("F:\Program Files\AviSynth2\plugins\Convolution3DYV12.dll")
ConvertToyv12()
AviSource("F:\Documents and Settings\Administrator\Desktop\Wing Commander - DvdRip-DivX.avi")
BicubicResize(448,542,0,0.6,0,4,640,472)
AddBorders(16,17,16,17)
Wilbert
26th December 2002, 14:13
That's a good one. First you don't need the line ConvertToYV12, but it shouldn't do any harm either. Second, what happens if you try the following script:
LoadPlugin("F:\Documents and Settings\Administrator\Desktop\MPEG2Dec3 v0.94\MPEG2Dec3.dll")
LoadPlugin("F:\Program Files\AviSynth2\plugins\Convolution3DYV12.dll")
AviSource("F:\Documents and Settings\Administrator\Desktop\Wing Commander - DvdRip-DivX.avi")
Crop(0,4,640,472)
BicubicResize(448,542,0,0.6)
AddBorders(16,17,16,17)
If you add ConvertToYUY2 as the last line, do you get the same error message?
darkangel
26th December 2002, 15:30
works until i add any other line ie Convolution3d (preset="movieLQ") or ConvertToYUY2 and then crashes cce
matrix
26th December 2002, 17:48
It might not do any good. But...
Are you sure the paths and filenames are correct? I used to get that when the path or filename was incorrect.
Also don't forget rseampleaudio(44100)
Wilbert
26th December 2002, 21:16
It might not do any good. But...
Sometimes spations in the dir./filenames give errors.
darkangel
26th December 2002, 21:36
well sorted it, i reinstalled avisynth 2.07 i used this script thanks all, be back for help soon ;)
LoadPlugin("F:\Program Files\AviSynth2\plugins\MPEG2Dec3.dll")
LoadPlugin("F:\Program Files\AviSynth2\plugins\Convolution3D.dll")
AviSource("F:\Documents and Settings\Administrator\Desktop\Wing Commander - DvdRip-DivX.avi")
BilinearResize(480,576,120,0,400,480)
ConvertToYUY2()
Convolution3d(preset="movieLQ")
ResampleAudio(44100)
ps i don't need the resample do i i'm using dual athlon mp's?
Wilbert
27th December 2002, 00:14
ResampleAudio(44100)
ps i don't need the resample do i i'm using dual athlon mp's?
You might need that due to a bug in CCE (even if you don't process the audio in AviSynth).
vBulletin® v3.8.5, Copyright ©2000-2012, Jelsoft Enterprises Ltd.