Log in

View Full Version : Problem opening AVS file


Rod
11th April 2005, 03:39
I created a D2V file using DGIndex however QUEnc continues to give me an error message "Couldn't Open .... Line 3" running the following avs script:

LoadPlugin("C:\PROGRA~1\DVD2SVCD\AVISYN~1.5PL\Mpeg2dec\MPEG2D~1.DLL")
LoadPlugin("C:\PROGRA~1\DVD2SVCD\AVISYN~1.5PL\INVERS~1\decomb.dll")
MPEG2Source("I:\MONSTE~1\source\avsdgind.D2V")
Telecide(order=1)
LanczosResize(720,480)
ConvertToYV12()

The D2V file starts as follows:

DGIndexProjectFile08
1
32 I:\monsterAG\source\VTS_13_1.vob

Stream_Type=1
iDCT_Algorithm=5 (1:MMX 2:SSEMMX 3:FPU 4:REF 5:SSE2MMX)
YUVRGB_Scale=1 (0:TVScale 1:PCScale)
Luminance_Filter=0,0 (Gamma, Offset)
Clipping=0,0,0,0 (ClipLeft, ClipRight, ClipTop, ClipBottom)
Aspect_Ratio=4:3
Picture_Size=720x576
Field_Operation=0 (0:None 1:ForcedFILM 2:RawFrames)
Frame_Rate=25000
Location=0,3336D,0,376C2

800 1 0 429615104 0 0 32 32 92 b2 b2 a2
800 1 0 429922304 0 0 32 32 92 b2 b2 a2 b2 b2 a2 b2 b2 a2
800 1 0 430405632 2 5 32 32 92 b2 b2 a2 b2 b2 a2 b2 b2 a2

etc. Any ideas?

Krismen
11th April 2005, 08:09
LoadPlugin("C:\PROGRA~1\DVD2SVCD\AVISYN~1.5PL\Mpeg2dec\MPEG2D~1.DLL")
LoadPlugin("C:\PROGRA~1\DVD2SVCD\AVISYN~1.5PL\INVERS~1\decomb.dll")
MPEG2Source("I:\MONSTE~1\source\avsdgind.D2V")
Telecide(order=1)
LanczosResize(720,480)
ConvertToYV12()

Instead of using "mpeg2dec3.dll" use "dgdecode.dll".

video
11th April 2005, 16:05
Originally posted by Krismen
LoadPlugin("C:\PROGRA~1\DVD2SVCD\AVISYN~1.5PL\Mpeg2dec\MPEG2D~1.DLL")
LoadPlugin("C:\PROGRA~1\DVD2SVCD\AVISYN~1.5PL\INVERS~1\decomb.dll")
MPEG2Source("I:\MONSTE~1\source\avsdgind.D2V")
Telecide(order=1)
LanczosResize(720,480)
ConvertToYV12()

Instead of using "mpeg2dec3.dll" use "dgdecode.dll".

yep, Donald has changed the d2v file format, so the output of dgindex is readable only with dgdecode.dll.

Boulder
11th April 2005, 16:46
By the way, if you already used Force FILM in DGIndex, you don't need Telecide in your script. If you have telecined material, you should place Decimate after Telecide.

Rod
12th April 2005, 03:43
This works now
Thanks!