PDA

View Full Version : Avisynth and cce problem


brawler
12th October 2002, 12:50
i havent been able to get avisynth to work yet. here is the complete procedure i have used to setup my dvd ripping/encoding process:

1: ripped dvd movie files with dvd decryptor (movie vob's only)
2: used IfoEdit to create new IFO's, did the vob extras, and get vts sectors.
3: used dvd2avi with forced film setting to produce a d2v file.
4: created an .avs script to use with cce 2.50 (i also tried this with the newest version of cce).

LoadPlugin("C:\winnt\system32\avisynth.dll")
mpeg2source("C:\GROUNDHOG_DAY\VIDEO_TS\test.d2v")
ResampleAudio(44100)

5: opened cce and added my movie.avs script but cce produced an error:

Frame size 1012x56 is not supported. Supported fram size is up to 720x576.

i also tried to use the other dll file like this:
LoadPlugin("C:\winnt\system32\mpeg2dec_dll")
mpeg2source("C:\GROUNDHOG_DAY\VIDEO_TS\test.d2v")
ResampleAudio(44100)

recieved the same error with a different frame size.

does anyone know what im doing wrong with this whole process? from what i have read, using avisynth is suppose to be faster than the vfapi method so thats why im trying to figure out how to use it.

matrix
12th October 2002, 15:20
Forget the first script. you don't have to load avisynth. Use the second one, and you have to resize your clip.
BecubicResize(480,480,0,0.5) for NTSC or (480x576) for PAL. Or just BilinearResize(480,480)

Edit:

Read this (http://www.avisynth.org/index.php?page=MostCommonFilters) and decide what filter you want to use.

brawler
13th October 2002, 17:02
thanks for the reply matrix. i still have two questions though.

1: when i use this script i get the same error:

LoadPlugin("C:\winnt\system32\mpeg2dec_dll")
mpeg2source("C:\GROUNDHOG_DAY\VIDEO_TS\test.d2v")
BecubicResize(480,480,0,0.5)
ResampleAudio(44100)

2: im thinking about using the SimpleResize plugin but im not sure what the parameters i should use when making a ntsc dvd. maybe:

SimpleResize(480,480)

im confused as to why BecubicResize and SimpleResize shouldnt be 720 x 576?

thanks for your time!

matrix
13th October 2002, 18:23
I made a mistake in the first post, it should be BilinearResize. (I edited afterwards). You have simpleresize in dvd2svcd.
I never did dvd, 480x480 is the resolution of svcd. Yf you're encoding dvd, then I think it should be 720x480 for Ntsc.
I really don't know why doesn't work. That is a very simple script.
Are you sure avisynth is working properly? What version are you using? Mabe you don't have to load the plugin. If you are using 2.06, it does load them automaticly.
Try some searches, also this (http://forum.doom9.org/showthread.php?s=&threadid=35455&highlight=resize) thread might be of some help.

Justinus
14th October 2002, 02:07
@brawler
Did you set parameters of DVD2AVI right? I think you'd double check d2v file again. You might set some thing wrong. With your report that:
Frame size 1012x56 is not supported. Supported fram size is up to 720x576.
It's weird! Did you do any resize in DVD2AVI?

asifanwar
14th October 2002, 03:12
Sometimes I get weird errors like that from CCE and it doesnt make sense. Drop the avs file onto Windows Media Player. That way you will get a slightly more informative error message than the one CCE is giving you. It will tell you the exact line of the script that is causing the problem

Hope this helps.