Log in

View Full Version : help needed pure aviaynth N00b


zxsdef
19th January 2003, 00:57
Ok I've installed the AMVapp package which says I do not need to load the dll's(They are in the avisynth plug ins folder)

I have used dvd2avi version 1.76 which was packaged as well.

Here is my script

MPEG2source("c:\familymanD1\PGC1\PGC1.D2V")
telecide()
decimate(mode=1)

When I try to import into CCE it crashes all the time,what am i doing wrong.Not an expert or a beginner but this has me stuffed.
This setting were recommended to my for PAL footage which is what i am using.I'm trying to do familyman tv series as you'll have guessed.
Any form of help needed.

sh0dan
19th January 2003, 01:19
Plaese post your error message.

zxsdef
19th January 2003, 01:52
Ok that previous script gave me xp CCe has encountered problem and must close error did'nt load.
I tried the follwing script to load the dll and this time cce gave me the following error
frame size 936x56 not supported.Frame size upto 720x576
Thing is the frame size is 720x576

LoadPlugin("c:\program fils\AMVapp\Installed files\avisynth\MPEG2DEC.DLL")
mpeg2source("c:familymanD1\pgc1\ep1.d2v")

I loaded this to see if I could get something imported.
The actual plug in is at
("c:\program files\AMVapp\installed files\avisynth\MPEG2DEC.dll") but if I add the e to the end of fil"e"s it gives me the "cce has encountered problems and will now close message?? again
I know this is a fantastic tool I am struggling with it.

wotef
19th January 2003, 11:19
your d2v path is wrong, missing c:\

why don't you just extract all to c:\ripz\ - makes it harder to type stuff wrong!

zxsdef
19th January 2003, 14:20
Ok corrected the c:"\" the clip plays from media player so i assume avisynth is properly installed.but CCE just shuts closes down straight away it is version 2.50.Do I need to run through vafapi first.I tried importing the .d2v file but it says the registry has no handler.I know CCE usually needs vfapi but read somewhere here it should be able import the .d2v file with avisynth installed.

wotef
19th January 2003, 15:16
try moving back down to 2.0x

hakko504
19th January 2003, 15:18
AFAIK CCE needs ResampleAudio(44100) added at the end of the script. It requires an audio stream to be available and this command will fool CCE to think there is audio.

zxsdef
19th January 2003, 16:37
Thanks Hakko504 and Wotef.
Hakko 504 that worked a charm put in the following script and it loaded no probs
loadplugin("c:\plugins\MPEG2DEC.DLL")
MPEG2SOURCE("c:\ripz\rip.d2v")
ResampleAudio(44100)

One finally query if I may,I want to use the decomb plugin as this is an episode of familyman(my aim is create a 1:1 of the 2 discs in series 1) and is PAL.
I was to use decomb with
FieldDeinterlace()

Could you show me how the script should look like.The decomb.dll is in the same directory as the MPEG2DEC.dll.

Thanks again for your help guys I'm almost there now.

wotef
19th January 2003, 16:55
loadplugin("c:\plugins\MPEG2DEC.DLL")
loadplugin("c:\plugins\decomb.dll")
MPEG2SOURCE("c:\ripz\rip.d2v")
fielddeinterlace()
ResampleAudio(44100)

zxsdef
19th January 2003, 17:17
Very much appreciated Wotef.
Thanks again guys my sanity is now restored:D