Log in

View Full Version : A avs file problem when loading in cce


Spirit UK
12th November 2004, 10:14
When I add the .avs file in to cce all I get is the following line:-

title:
*.avs

file:
1

frames:
240

Duration:
00:00:10:00

Video:
cbr6000

Audio
MPEG Joint Stereo 256kbps


It doesn't matter what I am doing I always get this and basically can't do anything. I checked the file paths in .avs file and everything is ok. The .d2v file is there as well as the main movie vobs, so what could be wrong?

Version is 2.67.00.27

Thanks for any help.

Spirit UK

hendrix
12th November 2004, 15:35
i've seen it before - looks like there's a problem with your script

post your script so we can look at it

Spirit UK
12th November 2004, 16:59
Here is the script I created, everything is in root dir of J: The file name is star.avs

LoadPlugin("J:\MPEG2DEC2.dll")
mpeg2source("J:\sw.d2v")


Cheers

Spirit UK :confused:

Matthew
13th November 2004, 00:37
Try adding this line to the end

If progressive:

ConvertToYUY2()

If interlaced:

ConvertToYUY2(interlaced=true)

hendrix
13th November 2004, 02:40
add this script
----------------------------
function AddAudio(clip v1) {
v2 = Blankclip()
v1 = AudioDub(v1,v2)
return v1
}
----------------------------
and save it as addaudio.avs


make your script like this
-------------------------------
import("path to\addaudio.avs")
LoadPlugin("J:\MPEG2DEC2.dll")
mpeg2source("J:\sw.d2v")
AddAudio()
ConvertToYUY2()
-------------------------------

hopefully this will help

Spirit UK
13th November 2004, 06:29
I've tried both ways and its still the same.

Cheers

Spirit UK :confused:

hendrix
13th November 2004, 06:33
hmmm..ok did you move any files to another folder after creating the .d2v file? - if so then you'll have to move them back.

Spirit UK
13th November 2004, 14:58
No all files have been created in J: root dir, I just simply don't understand what could be wrong, unless its cce?

Spirit UK :(

hendrix
13th November 2004, 15:00
what version of avisynth are you using

Spirit UK
13th November 2004, 15:05
v2.5

hendrix
13th November 2004, 15:12
ok...try this...

1. import the .avs file into CCE

2. double click on the star.avs title to get to the encode settings window

3. in the input files section - click on the setting button

4. double click on the star.avs and the .avs script window will pop up with the error...and it'll show you what line is wrong

Spirit UK
13th November 2004, 15:33
Error is:-

Mpeg2dec2.dll is not an avisynth 2.5 plugin

hendrix
13th November 2004, 16:21
download dgdecode...it's under support utils in the downloads page

Mpeg2dec2.dll isn't compatible with avisynth 2.5 so delete it and replace it with DGDecode.dll and use DGIndex in the place of DVD2Avi, that should help

Spirit UK
13th November 2004, 16:44
I'm running DGindex at the mo.

Spirit UK

Spirit UK
13th November 2004, 16:50
Yes it worked :)

Thanks for your time it is much appreciated.

Cheers

Spirit UK :) :) :)

hendrix
13th November 2004, 16:51
groovy